{"_id":"q-en-vscode-0005f7662b50a0376687cf82b2c38eef3d15c114c08d782dd04ae8edf5c16235","text":".interactive-session .interactive-input-part .interactive-execute-toolbar { height: 22px; /* It's bottom-aligned, make it appear centered within the container */ margin-bottom: 7px; } .interactive-session .interactive-input-part .interactive-execute-toolbar .codicon-debug-stop {"} {"_id":"q-en-vscode-002a0129d70f2b1c829022e7767213e73ad3a1122394013575d05b0b390bca18","text":"@IConfigurationService configurationService: IConfigurationService, @IEditorService editorService: IEditorService, @IBackupFileService backupFileService: IBackupFileService, @IWorkspaceContextService contextService: IWorkspaceContextService, @ILifecycleService lifecycleService: ILifecycleService, ) { const enabled = isWelcomePageEnabled(configurationService); const enabled = isWelcomePageEnabled(configurationService, contextService); if (enabled && lifecycleService.startupKind !== StartupKind.ReloadedWindow) { backupFileService.hasBackups().then(hasBackups => { const activeEditor = editorService.activeEditor;"} {"_id":"q-en-vscode-00f2ddb026b1ecb9d5cd18157679e1490add6873d4b8cda610bf6ddb9ad0dc26","text":"import { mainWindow } from 'vs/base/browser/window'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { TitlebarStyle } from 'vs/platform/window/common/window'; import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences'; // Register Icons const menubarIcon = registerIcon('menuBar', Codicon.layoutMenubar, localize('menuBarIcon', \"Represents the menu bar\"));"} {"_id":"q-en-vscode-010f099e7dfbb3967567683060469b91daf246c5e08c845c70fcf441db3e4b33","text":"* Search text in files across all {@link workspace.workspaceFolders workspace folders} in the workspace. * @param query The query parameters for the search - the search string, whether it's case-sensitive, or a regex, or matches whole words. * @param options An optional set of query options. * @param callback A callback, called for each result * @param callback A callback, called for each {@link TextSearchResultNew result}. This can be a direct match, or context that surrounds a match. * @param token A token that can be used to signal cancellation to the underlying search engine. * @return A thenable that resolves when the search is complete. */"} {"_id":"q-en-vscode-0118275d4ce88f87607abc00cc0ff89feda4f17907980da1e4bf69367c256dd9","text":"if (this._preLaunchInputQueue.length > 0) { this._process.send({ event: 'input', data: this._sanitizeInput(this._preLaunchInputQueue) data: this._preLaunchInputQueue }); this._preLaunchInputQueue = null; }"} {"_id":"q-en-vscode-015f61cf8d5914779a174ceb5c07f8db0c8363d5cdc0a27048ee8f98d8e5e452","text":"private getResourcePath(webviewEditor: vscode.WebviewPanel, resource: vscode.Uri, version: string) { switch (resource.scheme) { case 'data': return encodeURI(resource.toString(true)); return resource.toString(true); case 'git': // Show blank image return encodeURI('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AP///wAI/AL+Sr4t6gAAAABJRU5ErkJggg=='); return 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AP///wAI/AL+Sr4t6gAAAABJRU5ErkJggg=='; default: // Avoid adding cache busting if there is already a query string if (resource.query) { return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString(true)); return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString()); } return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString(true) + `?version=${version}`); return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString() + `?version=${version}`); } }"} {"_id":"q-en-vscode-01769304335197bac0cf85d7dc94b932fefd6c26f0631a38ff5ed1183e99efa7","text":"import * as nls from 'vs/nls'; import { IContextKey, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { editorSelectionBackground, iconForeground, registerColor, transparent } from 'vs/platform/theme/common/colorRegistry'; import { FoldingDecorationProvider } from './foldingDecorations'; import { FoldingRegion, FoldingRegions, FoldRange, FoldSource, ILineRange } from './foldingRanges'; import { SyntaxRangeProvider } from './syntaxRangeProvider';"} {"_id":"q-en-vscode-018634f484874cc5f10e6fbd05598e7236b7fc93a96eff1a83af79e4fc90cb90","text":"@ILabelService private readonly labelService: ILabelService, @IProductService private readonly productService: IProductService, @IBrowserWorkbenchEnvironmentService private readonly environmentService: IBrowserWorkbenchEnvironmentService, @IWorkbenchLayoutService private readonly layoutService: IWorkbenchLayoutService @IWorkbenchLayoutService private readonly layoutService: IWorkbenchLayoutService, @IHostService private readonly hostService: IHostService ) { super();"} {"_id":"q-en-vscode-01ecb5e7f4edab783a20c8411ec0cbbdce358d58a86c94dbe4d8c6eca863d72c","text":"const scrollTop = scrollTopObservable.read(reader); const scrollHeight = scrollHeightObservable.read(reader); const computedAvailableSize = Math.max(0, layoutInfo.height); const computedRepresentableSize = Math.max(0, computedAvailableSize - 2 * 0); const computedRatio = scrollHeight > 0 ? (computedRepresentableSize / scrollHeight) : 0; const computedSliderSize = Math.max(0, Math.floor(layoutInfo.height * computedRatio)); const computedSliderPosition = Math.floor(scrollTop * computedRatio); viewportDomElement.setTop(computedSliderPosition); viewportDomElement.setHeight(computedSliderSize); const scrollBarOptions = this._editors.modified.getOption(EditorOption.scrollbar); const state = new ScrollbarState( scrollBarOptions.verticalHasArrows ? scrollBarOptions.arrowSize : 0, scrollBarOptions.verticalScrollbarSize, 0, layoutInfo.height, scrollHeight, scrollTop ); viewportDomElement.setTop(state.getSliderPosition()); viewportDomElement.setHeight(state.getSliderSize()); } else { viewportDomElement.setTop(0); viewportDomElement.setHeight(0);"} {"_id":"q-en-vscode-0207696b06c3b08601d97b3f9af9422b40c96e5e4f6f26ce9790683ebc6f0363","text":"// Get All types of recommendations, trimmed to show a max of 8 at any given time private async getAllRecommendationsModel(options: IQueryOptions, token: CancellationToken): Promise> { const local = (await this.extensionsWorkbenchService.queryLocal(this.options.server)).map(e => e.identifier.id.toLowerCase()); const localExtensions = await this.extensionsWorkbenchService.queryLocal(this.options.server); const localExtensionIds = localExtensions.map(e => e.identifier.id.toLowerCase()); const allRecommendations = distinct( flatten(await Promise.all(["} {"_id":"q-en-vscode-0216ba0974b9b52c8b1b1499dd0eb670c32cc172a56fa855a0ee15b8be51f1e4","text":"'use strict'; import * as assert from 'assert'; import { IFilter, or, matchesPrefix, matchesStrictPrefix, matchesCamelCase, matchesSubString, matchesContiguousSubString, matchesWords } from 'vs/base/common/filters'; import { IFilter, or, matchesPrefix, matchesStrictPrefix, matchesCamelCase, matchesSubString, matchesContiguousSubString, matchesWords, fuzzyMatchAndScore } from 'vs/base/common/filters'; function filterOk(filter: IFilter, word: string, wordToMatchAgainst: string, highlights?: { start: number; end: number; }[]) { let r = filter(word, wordToMatchAgainst);"} {"_id":"q-en-vscode-0228446eb58de34634f34167f6b1b34f1facac1f2dd40c2aea3b994a2145d80b","text":"interface UriState extends UriComponents { $mid: number; fsPath: string; external: string; fsPath: string; _sep: 1 | undefined; } const _pathSepMarker = isWindows ? 1 : undefined; // tslint:disable-next-line:class-name class _URI extends URI {"} {"_id":"q-en-vscode-02438cd731d9ab41e721cd4608cc25b15679656f1dd21d74ee0f48d0fbb7550e","text":"const workingCopyAdapter = new class implements IWorkingCopy { readonly resource = input.modelUri; get name() { return input.getName(); } readonly capabilities = input.isUntitled() ? WorkingCopyCapabilities.Untitled : 0; readonly capabilities = input.isUntitled() ? WorkingCopyCapabilities.Untitled : WorkingCopyCapabilities.None; readonly onDidChangeDirty = input.onDidChangeDirty; readonly onDidChangeContent = input.onDidChangeContent; isDirty(): boolean { return input.isDirty(); }"} {"_id":"q-en-vscode-025091113d0d7f6eb62090717d56991116af6a61df24ec8b0054de0aacd5ab86","text":"minimap: { enabled: false }, wordWrap: 'on', }; const diffEditorOptions: IDiffEditorConstructionOptions = {"} {"_id":"q-en-vscode-026514efcb130d82d15e2b122664eda70c5dbd18d7298e91a99409bfb4e7538e","text":"moveTo(thisCursor, 1, 8); moveTo(thisCursor, 3, 9, true); moveToBeginningOfLine(thisCursor, false); assertCursor(thisCursor, new Selection(1, 6, 1, 6)); assertCursor(thisCursor, new Selection(3, 5, 3, 5)); }); test('move to beginning of line with selection multiline backward', () => {"} {"_id":"q-en-vscode-026ea3a6fd454023e5bb80b19443129b0b2c5b08993087a0cbb3d2bd92bb18df","text":"this._slider.setHeight(layout.sliderHeight); // Compute horizontal slider coordinates const scrollLeftChars = renderingCtx.scrollLeft / this._model.options.typicalHalfwidthCharacterWidth; const horizontalSliderLeft = Math.min(this._model.options.minimapWidth, Math.round(scrollLeftChars * this._model.options.minimapCharWidth / this._model.options.pixelRatio)); this._sliderHorizontal.setLeft(horizontalSliderLeft); this._sliderHorizontal.setWidth(this._model.options.minimapWidth - horizontalSliderLeft); this._sliderHorizontal.setLeft(0); this._sliderHorizontal.setWidth(this._model.options.minimapWidth); this._sliderHorizontal.setTop(0); this._sliderHorizontal.setHeight(layout.sliderHeight);"} {"_id":"q-en-vscode-0286870667bcf40e942e626f1bd2d8a9ae9b7672bacb1d76b8510a2f95b84324","text":"return []; } return [currentHistoryItemGroup.name, currentHistoryItemGroup.remote?.name ?? '', currentHistoryItemGroup.base?.name ?? '']; return [ currentHistoryItemGroup.name, currentHistoryItemGroup.remote?.name, currentHistoryItemGroup.base?.name] .filter(l => l !== undefined); } private getTooltip(element: SCMHistoryItemViewModelTreeElement): IManagedHoverTooltipMarkdownString {"} {"_id":"q-en-vscode-02a4b0f5d203113c6d6cda6f76869c5e9a3df4049b473e70cad689161c918fb5","text":"resolved \"https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-7.0.1.tgz#8118a32b02735dccd14f893b495fa5389ad7de79\" integrity sha512-zQ5U/nuXAAMsh691FtV0wPz89nSkHbs+IQV8FDk+wew9BlSDhf4UmWGlWJfTR2Ti6xZv87Tj5fENzKf6Qk7aLw== xterm-addon-canvas@0.2.0-beta.15: version \"0.2.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.15.tgz#de863e46410b1de357b153abf1984227777760e4\" integrity sha512-E1pNCDSVTINchwWLysZ9ZD/BPv1WLGV52xRHB00US1PHHELbhtvms+6dZ44WZEDXhtfpptRZ1VBx+QpvfJIuvw== xterm-addon-search@0.10.0-beta.3: version \"0.10.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.3.tgz#5194434d86105637c71f6f20139a9d0b5c1a956a\" integrity sha512-UeGm/ymnp7HUYJJtsP0D+bljOWbdk3MctcLJ+0jv8AmU6YlAzJFtouvYSQrD5SAMyht5CRsvjzFgqic9X02JYg== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.13.0-beta.32: version \"0.13.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.32.tgz#ae7335f788ae611733e03f6ca38280ab7b86d212\" integrity sha512-xOudNzYXaRh9QZ+IigXM5EB3bM8l3/F8F35EpJRYvvsylVxiB6Km8X8l7+nxlWt+uYdnHZs0ka2rvtL8kOP/uw== xterm@5.0.0-beta.32: version \"5.0.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.32.tgz#62bb9902429c0055fd2fd85c9eecfbf1756ed31c\" integrity sha512-OAM1GaBs/chK63Cr86XbVhfVCLLXLpNxxFrv3RK9xoyb9dwiY3gaMxK9jeGzTnrbGLWJb+k5nxaC0rx2YsHvUA== xterm-addon-canvas@0.2.0-beta.17: version \"0.2.0-beta.17\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.17.tgz#e84a86530b20bd3edcce16b4566f346cd186ab4d\" integrity sha512-2ukPdCA92VTFYQRE56ylzvI3cfaQYDWd/Mc4jlEItI6sV/EA5RnUbbP+2sFIx0JlmHK6nVYXXNY2p6QRB7MRew== xterm-addon-search@0.10.0-beta.5: version \"0.10.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.5.tgz#a2cb16bda4ddf8783b80433155ad94f5822271f8\" integrity sha512-kjog7cm1iEZ2XyQFVs3KAvoI2pKoX0cq2WWjL0FuXYXpKQ9vXmfrWSR7PiJ6zpTIRvr6UtaSGKhmZVHLNA79WA== xterm-addon-unicode11@0.4.0-beta.5: version \"0.4.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.5.tgz#3900e66f10d2e506133b61d7421aab6878d32665\" integrity sha512-+g+fuxAd/tkCEJ/jhdnebXKtdPrhsu4VKWNnB/3qM35GbuGQOasmYFYnKL+HYZMpbQ6YqeZcXTVg/wnCTttz0g== xterm-addon-webgl@0.13.0-beta.35: version \"0.13.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.35.tgz#98b5dc102583120de25c7c6e0f35cd34ab6bef98\" integrity sha512-powgeb3ifEZK7zWwLJuE8YRz/Z0UzDrrVA9NTx9mH7+vWxrGt9ZgroychoeCqZBvKMofiUM5vlf1oWdSmsMfzw== xterm@5.0.0-beta.35: version \"5.0.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.35.tgz#3bbf5780c98aaaa6476e7590dff1d8f5014fce9d\" integrity sha512-tzJTel1E/FmB0VQDb44xApVB+ln+BifIbHD4V9x9Z3D9m1cMmPHy8J8efdILkn1TxXGlCl7VC35nG122Qq5exw== "} {"_id":"q-en-vscode-02c7b9348337d919c883688592a43324b9409d3e83feb7b69dc39bd2375948c4","text":"} while(m); return counter; } } No newline at end of file } "} {"_id":"q-en-vscode-02d456e7ce69cc5f1ea48c02ac57ea1bfc074566fb9dd8dedf6ee452c1c2df8f","text":"public setInput(input: FileEditorInput, options?: EditorOptions): TPromise { // We have a current input in this editor and are about to either open a new editor or jump to a different // selection inside the editor. Thus we store the current selection into the navigation history so that // a user can navigate back to the exact position he left off. if (this.input) { const selection = this.getControl().getSelection(); if (selection) { this.historyService.add(this.input, { startLineNumber: selection.startLineNumber, startColumn: selection.startColumn }); } } // Return early for same input unless we force to open const forceOpen = options && options.forceOpen; if (!forceOpen && input.matches(this.input)) {"} {"_id":"q-en-vscode-02e80e61cbe59ad1ecc375fc324d9f40772a7a2ab9ec7ffe58d5f50293f3094d","text":"\"cssnano\": \"^4.1.11\", \"debounce\": \"^1.0.0\", \"deemon\": \"^1.8.0\", \"electron\": \"25.8.0\", \"electron\": \"25.8.1\", \"eslint\": \"8.36.0\", \"eslint-plugin-header\": \"3.1.1\", \"eslint-plugin-jsdoc\": \"^46.5.0\","} {"_id":"q-en-vscode-034b03ecb22a659f1df469d8ba8072354084f69b9b3377cb1131d85a05545974","text":"private gotoDefinition(position: Position, openToSide: boolean): Promise { this.editor.setPosition(position); const action = new DefinitionAction({ openToSide, openInPeek: false, muteMessage: true }, { alias: '', label: '', id: '', precondition: undefined }); const openInPeek = this.editor.getOption(EditorOption.definitionLinkOpensInPeek); const action = new DefinitionAction({ openToSide, openInPeek: openInPeek, muteMessage: true }, { alias: '', label: '', id: '', precondition: undefined }); return this.editor.invokeWithinContext(accessor => action.run(accessor, this.editor)); }"} {"_id":"q-en-vscode-03519048c48bfbd1e56917d64af68be1ad6e1e715a9987e253e3c62b46111bf6","text":" flipped-cursor-mac-2x No newline at end of file \tflipped-cursor-mac "} {"_id":"q-en-vscode-036e392f1a7c4bede131f9573791aabb2df898bab7c14b413aab18b317508d53","text":"} const browserPlugins = [ new optimize.LimitChunkCountPlugin({ maxChunks: 1 }), new CopyWebpackPlugin({ patterns: [ { from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '**/*.ts'] }, noErrorOnMissing: true }"} {"_id":"q-en-vscode-036f8b092fa462a1eb64d793b7a029d975ecd9cbc7b0fcf75044a8a425ea3751","text":"focusNextNotebookCell(cell: IGenericCellViewModel, focus: 'editor' | 'container' | 'output'): Promise; updateOutputHeight(cellInfo: ICommonCellInfo, output: ICellOutputViewModel, height: number, isInit: boolean): void; deltaCellOutputContainerClassNames(diffSide: DiffSide, cellId: string, added: string[], removed: string[]): void; previousChange(): void; nextChange(): void; } export interface IDiffNestedCellViewModel {"} {"_id":"q-en-vscode-037e40508ccac6f329664e7f6e3f8f0646e5a55f3b0afad05522e1cfa944c569","text":"const storedRecents = data as ISerializedRecentlyOpened; if (Array.isArray(storedRecents.entries)) { restoreGracefully(storedRecents.entries, (entry) => { restoreGracefully(storedRecents.entries, entry => { const label = entry.label; const remoteAuthority = entry.remoteAuthority;"} {"_id":"q-en-vscode-0430d88e31c3c72621c1d7ba75dbc1636ae85f6fd6075fd3c1d63c7eca4e1930","text":"position: absolute; width: 100%; height: 100%; background: transparent; background: red; } .monaco-workbench:not(.reduce-motion) .monaco-sash:before {"} {"_id":"q-en-vscode-04937904082fa2a0f4cad504b1ff385d8b225dda2129efc623824298f8449051","text":"return this._textModel.object.isDirty(); } isUntitled(): boolean { return this.textModel?.isUntitled() || false; } isReadonly() { return false; }"} {"_id":"q-en-vscode-049ba039d81f675122ce9994ed403218d61834e73a7106cbce76f7113a3e1c42","text":"private _createBody(parent: HTMLElement): void { this._notebookTopToolbarContainer = document.createElement('div'); this._notebookTopToolbarContainer.classList.add('notebook-toolbar-container'); this._notebookTopToolbarContainer.tabIndex = 0; this._notebookTopToolbarContainer.style.display = 'none'; DOM.append(parent, this._notebookTopToolbarContainer); this._body = document.createElement('div');"} {"_id":"q-en-vscode-04a3b48fe58325c12379c91d75daa89aba7be86c2a6d3bdee716c91276160785","text":"import { isWindows } from 'vs/base/common/platform'; import URI from 'vs/base/common/uri'; import { ltrim } from 'vs/base/common/strings'; import { RunOnceScheduler } from 'vs/base/common/async'; import { memoize } from 'vs/base/common/decorators'; const SMART = true;"} {"_id":"q-en-vscode-04d32f21f1be86ec52dc1ce3e7bc39508e372e1a8b258ba95485d439f7123275","text":"sendText(text: string, addNewLine: boolean): void; /** * Takes a path and returns the properly escaped path to send to the terminal. * On Windows, this included trying to prepare the path for WSL if needed. * * @param path The path to be escaped and formatted. * @returns An escaped version of the path to be execuded in the terminal. */ preparePathForTerminalAsync(path: string): Promise; /** * Write text directly to the terminal, skipping the process if it exists. * @param text The text to write. */"} {"_id":"q-en-vscode-05218e096cffdba3c55cc1230b297e4584ba31eb390948779a8d061f41799627","text":"}); }); // Support resolve keybindings event ipc.on('vscode:resolveKeybindings', (event: any, rawActionIds: string) => { let actionIds: string[] = []; try { actionIds = JSON.parse(rawActionIds); } catch (error) { // should not happen } // Resolve keys using the keybinding service and send back to browser process this.resolveKeybindings(actionIds).done(keybindings => { if (keybindings.length) { ipc.send('vscode:keybindingsResolved', JSON.stringify(keybindings)); } }, () => errors.onUnexpectedError); }); ipc.on('vscode:reportError', (event: any, error: string) => { if (error) { const errorParsed = JSON.parse(error);"} {"_id":"q-en-vscode-05321415aa76d63d7a1209a3f777062a155d05c4ae876541b7ae44a632245f57","text":"import { MenuId, registerAction2, Action2 } from 'vs/platform/actions/common/actions'; import { IInstantiationService, ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { ContextKeyExpr, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; import { IEditorService, SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService'; import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { KeyCode } from 'vs/base/common/keyCodes'; import { EditorPaneDescriptor, IEditorPaneRegistry } from 'vs/workbench/browser/editor';"} {"_id":"q-en-vscode-05427914021d2a4b448765a04ea49ae147e41249469104551fea957b29e7761a","text":"this.commentTheadDisposables.add(this._commentThreadWidget.onDidResize(() => { if (this.currentElement?.cellKind === CellKind.Code && this._commentThreadWidget) { this.currentElement.commentHeight = dom.getClientArea(this._commentThreadWidget.container).height; this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget.getDimensions().height); } })); }"} {"_id":"q-en-vscode-057059b45e0ae1363c5ebee8fad0632d685bed99cf430db49bb11c84749814e8","text":"\"@microsoft/1ds-core-js\": \"^3.2.13\", \"@microsoft/1ds-post-js\": \"^3.2.13\", \"@parcel/watcher\": \"2.1.0\", \"@vscode/deviceid\": \"^0.1.1\", \"@vscode/iconv-lite-umd\": \"0.7.0\", \"@vscode/proxy-agent\": \"^0.19.0\", \"@vscode/ripgrep\": \"^1.15.9\","} {"_id":"q-en-vscode-059be05ad3c14baa77e50d127fd4b7f8e7a6eeee8a25902a8e38a62e5d035554","text":"import { Promises } from 'vs/base/common/async'; import { EditorGroupColumn } from 'vs/workbench/services/editor/common/editorGroupColumn'; import { ViewColumn } from 'vs/workbench/api/common/extHostTypeConverters'; import { isProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; import { checkProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; export interface IExtHostTerminalService extends ExtHostTerminalServiceShape, IDisposable {"} {"_id":"q-en-vscode-05c3fa803efe01b28bc5c316f998b9657cb785f11bd1380d9e80f776d5d4f0b6","text":"assert.ok(matchesWords('gipu', 'Category: Git: Pull', true) === null); assert.deepEqual(matchesWords('pu', 'Category: Git: Pull', true), [{ start: 15, end: 17 }]); }); test('fuzzyMatchAndScore', function () { function assertMatches(pattern: string, word: string, decoratedWord?: string) { let r = fuzzyMatchAndScore(pattern, word); assert.ok(Boolean(r) === Boolean(decoratedWord)); if (r) { const [, matches] = r; let pos = 0; for (let i = 0; i < matches.length; i++) { let actual = matches[i]; let expected = decoratedWord.indexOf('^', pos) - i; assert.equal(actual, expected); pos = expected + 1 + i; } } } assertMatches('no', 'match'); assertMatches('no', ''); assertMatches('', 'match'); assertMatches('BK', 'the_black_knight', 'the_^black_^knight'); assertMatches('bkn', 'the_black_knight', 'the_^black_^k^night'); assertMatches('bt', 'the_black_knight', 'the_^black_knigh^t'); assertMatches('bti', 'the_black_knight'); assertMatches('LLL', 'SVisualLoggerLogsList', 'SVisual^Logger^Logs^List'); assertMatches('LLLL', 'SVisualLoggerLogsList'); assertMatches('sllll', 'SVisualLoggerLogsList', '^SVisua^l^Logger^Logs^List'); assertMatches('sl', 'SVisualLoggerLogsList', '^SVisual^LoggerLogsList'); assertMatches('foobar', 'foobar', '^f^o^o^b^a^r'); assertMatches('fob', 'foobar', '^f^oo^bar'); assertMatches('ob', 'foobar'); assertMatches('gp', 'Git: Pull', '^Git: ^Pull'); assertMatches('gp', 'Git_Git_Pull', '^Git_Git_^Pull'); assertMatches('g p', 'Git: Pull', '^Git:^ ^Pull'); assertMatches('gip', 'Git: Pull', '^G^it: ^Pull'); assertMatches('is', 'isValid', '^i^sValid'); assertMatches('is', 'ImportStatement', '^Import^Statement'); assertMatches('lowrd', 'lowWord', '^l^o^wWo^r^d'); assertMatches('ccm', 'cacmelCase', '^ca^c^melCase'); assertMatches('ccm', 'camelCase'); assertMatches('ccm', 'camelCasecm', '^camel^Casec^m'); }); test('topScore', function () { function assertTopScore(pattern: string, expected: number, ...words: string[]) { let topScore = -1; let topIdx = 0; for (let i = 0; i < words.length; i++) { const word = words[i]; const m = fuzzyMatchAndScore(pattern, word); if (m) { const [score] = m; if (score > topScore) { topScore = score; topIdx = i; } } } assert.equal(topIdx, expected); } assertTopScore('Foo', 1, 'foo', 'Foo', 'foo'); assertTopScore('CC', 1, 'camelCase', 'CamelCase'); assertTopScore('cC', 0, 'camelCase', 'CamelCase'); assertTopScore('cC', 1, 'ccfoo', 'camelCase'); assertTopScore('cC', 1, 'ccfoo', 'camelCase', 'foo-cC-bar'); // issue #17836 assertTopScore('p', 0, 'parse', 'posix', 'pafdsa', 'path', 'p'); assertTopScore('pa', 0, 'parse', 'pafdsa', 'path'); // issue #14583 assertTopScore('log', 3, 'HTMLOptGroupElement', 'ScrollLogicalPosition', 'SVGFEMorphologyElement', 'log'); assertTopScore('e', 2, 'AbstractWorker', 'ActiveXObject', 'else'); // issue #14446 assertTopScore('workbench.sideb', 1, 'workbench.editor.defaultSideBySideLayout', 'workbench.sideBar.location'); // issue #11423 assertTopScore('editor.r', 2, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); // assertTopScore('editor.R', 1, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); // assertTopScore('Editor.r', 0, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); assertTopScore('-mo', 1, '-ms-ime-mode', '-moz-columns'); // // dupe, issue #14861 assertTopScore('convertModelPosition', 0, 'convertModelPositionToViewPosition', 'convertViewToModelPosition'); // // dupe, issue #14942 assertTopScore('is', 0, 'isValidViewletId', 'import statement'); }); });"} {"_id":"q-en-vscode-05d88f77263075663703f4d7e2c1ce34f5f192a732dc8b6fe999972ba39cd4a7","text":"@INotificationService private readonly notificationService: INotificationService, @IStatusbarService private readonly statusbarService: IStatusbarService, @ILayoutService private readonly layoutService: ILayoutService, @IKeybindingService private readonly keybindingService: IKeybindingService @IKeybindingService private readonly keybindingService: IKeybindingService, @IUserActivityService private readonly userActivityService: IUserActivityService, ) { super(); } async withProgress(options: IProgressOptions, task: (progress: IProgress) => Promise, onDidCancel?: (choice?: number) => void): Promise { async withProgress(options: IProgressOptions, originalTask: (progress: IProgress) => Promise, onDidCancel?: (choice?: number) => void): Promise { const { location } = options; const task = (progress: IProgress) => { const activeLock = this.userActivityService.markActive(); return originalTask(progress).finally(() => activeLock.dispose()); }; const handleStringLocation = (location: string) => { const viewContainer = this.viewDescriptorService.getViewContainerById(location); if (viewContainer) {"} {"_id":"q-en-vscode-05dda4954a8629d2e94c8d2d02b8277c2b3bf923d68e4e7953ae7c4f8e8405d3","text":"this.updateIsNew(this.applicationStorage); this.applicationStoragePromise.complete({ indededDb: applicationStorageIndexedDB, storage: this.applicationStorage }); this.applicationStoragePromise.complete({ indexedDb: applicationStorageIndexedDB, storage: this.applicationStorage }); } private async createProfileStorage(profile: IUserDataProfile): Promise {"} {"_id":"q-en-vscode-05e9419c04342addb725370e6be1c1fae7f24629415d596e81abd679ceb78355","text":"'~/foo', 'c:/foo/bar', 'c:foobar', 'c:foobar+more', 'c:foo/barbaz', 'foo/bar', 'foo/bar', 'foobar' 'foobar', 'foobar+more', ]; interface LinkFormatInfo {"} {"_id":"q-en-vscode-05f222f5becaf55a5b8b6448a66ee591111b249e99cc96169bf9b917f1b94708","text":"} private getMarkersTooltip(stats: MarkerStatistics): string { const errorTitle = (n: number) => localize('totalErrors', \"{0} Errors\", n); const warningTitle = (n: number) => localize('totalWarnings', \"{0} Warnings\", n); const infoTitle = (n: number) => localize('totalInfos', \"{0} Infos\", n); const errorTitle = (n: number) => localize('totalErrors', \"Errors: {0}\", n); const warningTitle = (n: number) => localize('totalWarnings', \"Warnings: {0}\", n); const infoTitle = (n: number) => localize('totalInfos', \"Infos: {0}\", n); const titles: string[] = [];"} {"_id":"q-en-vscode-0609121297c6e48c509c6c53e2a9441097046880cbb0ef99282309f524e41ffc","text":"super(); const cellEditorOptions = this._register(new CellEditorOptions(this.notebookEditor, this.notebookEditor.notebookOptions, this.configurationService, this.viewCell.language)); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 2 }); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 500 }); this.cellParts = [...templateData.cellParts, cellEditorOptions, this._outputContainerRenderer]; const editorHeight = this.calculateInitEditorHeight();"} {"_id":"q-en-vscode-067a078c7f72482d3d4424716f74e430c729a8e6b260f1fefdaf2ce221f88a18","text":"} function renderError(outputInfo: OutputItem, container: HTMLElement, ctx: RendererContext & { readonly settings: RenderOptions }): void { clearContainer(container); const element = document.createElement('div'); container.appendChild(element); type ErrorLike = Partial;"} {"_id":"q-en-vscode-073e8c7afdb57f1591c1a9a96daff19f2636c8d93cb5486e43483dec8a054cb1","text":"}; // Update group contexts based on group changes this._register(this.onDidModelChange(e => { const updateGroupContextKeys = (e: IGroupModelChangeEvent) => { switch (e.kind) { case GroupModelChangeKind.GROUP_LOCKED: groupLockedContext.set(this.isLocked);"} {"_id":"q-en-vscode-074f62fd8f9d11a292ed48c8db9be17224a0d23d30548821c55f7bb491542a08","text":"*--------------------------------------------------------------------------------------------*/ import { $, addDisposableListener, append, scheduleAtNextAnimationFrame } from 'vs/base/browser/dom'; import { DomEmitter } from 'vs/base/browser/event'; import { ISashEvent as IBaseSashEvent, Orientation, Sash, SashState } from 'vs/base/browser/ui/sash/sash'; import { SmoothScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement'; import { pushToEnd, pushToStart, range } from 'vs/base/common/arrays';"} {"_id":"q-en-vscode-077a0446e93ecbf7127961da3814905dff1e5ef47f375a479b0c3b497ce0e679","text":"private readonly _wrapLinkHandler: (handler: (event: MouseEvent | undefined, link: string) => void) => XtermLinkMatcherHandler, private readonly _tooltipCallback: (link: TerminalLink, viewportRange: IViewportRange, modifierDownCallback?: () => void, modifierUpCallback?: () => void) => void, private readonly _validationCallback: (link: string[], callback: (result: { uri: URI, link: string, isDirectory: boolean } | undefined) => void) => void, private readonly _testing: boolean, @IInstantiationService private readonly _instantiationService: IInstantiationService, @ICommandService private readonly _commandService: ICommandService, @IWorkspaceContextService private readonly _workspaceContextService: IWorkspaceContextService,"} {"_id":"q-en-vscode-07a4c6bd6355236140b8b61e0d8f6107afc8b9c3bb14f815cf179d9f458cd26c","text":"return super.getActionViewItem(action, options); } override focus(): void { super.focus(); const fakeKeyboardEvent = new KeyboardEvent('keydown'); this._tree.focusFirst(fakeKeyboardEvent); this._tree.domFocus(); } async refresh(): Promise { this._treeViewModel.clearRepositoryState(); await this._updateChildren();"} {"_id":"q-en-vscode-07b1aacb5fbfd847d711ecb56d0e38dd24fa00b8c1c1ec68caa9acb73b7e1610","text":"return welcomeEnabled.value; } } return startupEditor.value === 'welcomePage'; return startupEditor.value === 'welcomePage' || startupEditor.value === 'welcomePageInEmptyWorkbench' && contextService.getWorkbenchState() === WorkbenchState.EMPTY; } export class WelcomePageAction extends Action {"} {"_id":"q-en-vscode-07bcf5614bd1fcaf5f4b8ee3ad7ac36f0e558b5c520bacfb17b7bfddd9917422","text":"} } }); this.registerExtensionAction({ id: ClearLanguageAction.ID, title: ClearLanguageAction.TITLE,"} {"_id":"q-en-vscode-087d2a36dd8f8a4aa95df44b292eec0c5b5e932544485bf7a973a11ec346c14a","text":" { \"comments\": { \"lineComment\": \";\", \"blockComment\": [ \";\", \" \" ] }, \"brackets\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"] ], \"autoClosingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ], \"surroundingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ] } No newline at end of file"} {"_id":"q-en-vscode-092a685e64a6c618d34e91c3d67f8e27fc79711ba633f9b4d9c95740dc2e959a","text":"return args.join(' '); }; if (needsFolderQualification && workspaceFolder) { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executingInFolder', comment: ['The workspace folder the task is running in', 'The task command line or label'] }, 'Executing task in folder {0}: {1}', workspaceFolder.name, `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task in folder {0}: {1}', workspaceFolder.name, `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executing', comment: ['The task command line or label'] }, 'Executing task: {0}', `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task: {0}', `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + taskShellIntegrationOutputSequence; shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + this.taskShellIntegrationOutputSequence; } }"} {"_id":"q-en-vscode-092e05157a3abcca3c6dbbfe53dde4efd1e65e0a6915f435b7a6109de6a04f0e","text":"private registered = false; private continueEditSessionOptions: ContinueEditSessionItem[] = []; private readonly shouldShowViewsContext: IContextKey; constructor( @IEditSessionsWorkbenchService private readonly editSessionsWorkbenchService: IEditSessionsWorkbenchService, @IFileService private readonly fileService: IFileService,"} {"_id":"q-en-vscode-094cf59feea21fd3545702c34043b095cff3e4c9a9269fe0ec3eba203ff51261","text":"test('* star', () => { linkAllowedByRules('https://a.x.org', ['https://*.x.org']); linkAllowedByRules('https://a.b.x.org', ['https://*.x.org']); linkAllowedByRules('https://a.x.org', ['https://a.x.*']); linkAllowedByRules('https://a.x.org', ['https://a.*.org']); linkAllowedByRules('https://a.x.org', ['https://*.*.org']); linkAllowedByRules('https://a.b.x.org', ['https://*.b.*.org']); linkAllowedByRules('https://a.a.b.x.org', ['https://*.b.*.org']); }); test('no scheme', () => {"} {"_id":"q-en-vscode-096274714e91fbbc6b072daa91cfcb0769e19343dd5e0d951995b03c74b317d4","text":"@IInstantiationService private readonly _instantiationService: IInstantiationService, @IConfigurationService private readonly _configurationService: IConfigurationService, @ILifecycleService private readonly _lifecycleService: ILifecycleService, @IContextKeyService _contextKeyService: IContextKeyService, @IContextKeyService private _contextKeyService: IContextKeyService, @IDialogService private readonly _dialogService: IDialogService ) { super();"} {"_id":"q-en-vscode-096833e0f6ad71628128c447aa3c0f55ef3f45e95dce0ad6aff36a5d3a5d0a6e","text":"scheme: 'file', path: '/path/test.file', fsPath: '/path/test.file'.replace(///g, isWindows ? '' : '/'), _sep: isWindows ? 1 : undefined, }); assert.ok(uri.toString());"} {"_id":"q-en-vscode-09ac1570a73b333392bd53e13e9d529ab8c457f3f62398abfb8962ab4fc58661","text":"import { generateUuid } from 'vs/base/common/uuid'; import { getActiveWindow, runWhenWindowIdle } from 'vs/base/browser/dom'; import { mainWindow } from 'vs/base/browser/window'; import { shouldUseEnvironmentVariableCollection } from 'vs/platform/terminal/common/terminalEnvironment'; const enum ProcessConstants { /**"} {"_id":"q-en-vscode-09c90cd730ef1a84708b11e93e0cab810fc6cb840e9923443c13ca7da802e862","text":"overviewRulerLanes = 63, parameterHints = 64, peekWidgetDefaultFocus = 65, quickSuggestions = 66, quickSuggestionsDelay = 67, readOnly = 68, renderControlCharacters = 69, renderIndentGuides = 70, renderFinalNewline = 71, renderLineHighlight = 72, renderValidationDecorations = 73, renderWhitespace = 74, revealHorizontalRightPadding = 75, roundedSelection = 76, rulers = 77, scrollbar = 78, scrollBeyondLastColumn = 79, scrollBeyondLastLine = 80, selectionClipboard = 81, selectionHighlight = 82, selectOnLineNumbers = 83, semanticHighlighting = 84, showFoldingControls = 85, showUnused = 86, snippetSuggestions = 87, smoothScrolling = 88, stopRenderingLineAfter = 89, suggest = 90, suggestFontSize = 91, suggestLineHeight = 92, suggestOnTriggerCharacters = 93, suggestSelection = 94, tabCompletion = 95, useTabStops = 96, wordSeparators = 97, wordWrap = 98, wordWrapBreakAfterCharacters = 99, wordWrapBreakBeforeCharacters = 100, wordWrapColumn = 101, wordWrapMinified = 102, wrappingIndent = 103, wrappingStrategy = 104, editorClassName = 105, pixelRatio = 106, tabFocusMode = 107, layoutInfo = 108, wrappingInfo = 109 definitionLinkOpensInPeek = 66, quickSuggestions = 67, quickSuggestionsDelay = 68, readOnly = 69, renderControlCharacters = 70, renderIndentGuides = 71, renderFinalNewline = 72, renderLineHighlight = 73, renderValidationDecorations = 74, renderWhitespace = 75, revealHorizontalRightPadding = 76, roundedSelection = 77, rulers = 78, scrollbar = 79, scrollBeyondLastColumn = 80, scrollBeyondLastLine = 81, selectionClipboard = 82, selectionHighlight = 83, selectOnLineNumbers = 84, semanticHighlighting = 85, showFoldingControls = 86, showUnused = 87, snippetSuggestions = 88, smoothScrolling = 89, stopRenderingLineAfter = 90, suggest = 91, suggestFontSize = 92, suggestLineHeight = 93, suggestOnTriggerCharacters = 94, suggestSelection = 95, tabCompletion = 96, useTabStops = 97, wordSeparators = 98, wordWrap = 99, wordWrapBreakAfterCharacters = 100, wordWrapBreakBeforeCharacters = 101, wordWrapColumn = 102, wordWrapMinified = 103, wrappingIndent = 104, wrappingStrategy = 105, editorClassName = 106, pixelRatio = 107, tabFocusMode = 108, layoutInfo = 109, wrappingInfo = 110 } export const EditorOptions: { acceptSuggestionOnCommitCharacter: IEditorOption;"} {"_id":"q-en-vscode-09ee8be29094964158f7accc194f42e0aaee4ea4c03e17d091cd5c35bd622c11","text":"return ''; } }, expandOnlyOnTwistieClick: (element: any) => { if (element instanceof CommentsModel || element instanceof ResourceWithCommentThreads) { return false; } return true; }, expandOnlyOnTwistieClick: true, collapseByDefault: false, overrideStyles: options.overrideStyles, filter: options.filter,"} {"_id":"q-en-vscode-09fbfe5a7418850bee125d8d256d752e0ac11653d40e66fb2b1d36dd05c16405","text":"this._onDidCustomEvent = new Emitter(); this.sessionStates = new Map(); this.allProcesses = new Map(); this.fetchThreadsSchedulers = new Map(); this.configurationManager = this.instantiationService.createInstance(ConfigurationManager); this.toDispose.push(this.configurationManager);"} {"_id":"q-en-vscode-0a02e148e08b4dc94f0a9244ed0633e78d5bc9caaec7c88394c8bd8dec3fc0b8","text":"assert.deepStrictEqual(actual, EXPECTED); }); test('cursorWordAccessibilityLeft', () => { const EXPECTED = ['| /* |Just |some |more |text |a+= |3 +|5-|3 + |7 */ '].join('n'); const [text,] = deserializePipePositions(EXPECTED); const actualStops = testRepeatedActionAndExtractPositions( text, new Position(1000, 1000), ed => cursorWordAccessibilityLeft(ed), ed => ed.getPosition()!, ed => ed.getPosition()!.equals(new Position(1, 1)) ); const actual = serializePipePositions(text, actualStops); assert.deepStrictEqual(actual, EXPECTED); }); test('cursorWordAccessibilityRight', () => { const EXPECTED = [' /* |Just |some |more |text |a+= |3 +|5-|3 + |7 */ |'].join('n'); const [text,] = deserializePipePositions(EXPECTED); const actualStops = testRepeatedActionAndExtractPositions( text, new Position(1, 1), ed => cursorWordAccessibilityRight(ed), ed => ed.getPosition()!, ed => ed.getPosition()!.equals(new Position(1, 50)) ); const actual = serializePipePositions(text, actualStops); assert.deepStrictEqual(actual, EXPECTED); }); test('deleteWordLeft for non-empty selection', () => { withTestCodeEditor([ ' tMy First Linet ',"} {"_id":"q-en-vscode-0a3a8b72a7de640d71a93b2d6bb36fefb6df520f5b1a2b2f955411c68cbf728a","text":"}); } public toggleShowBaseAtTop(): void { public toggleShowBaseTop(): void { const showBaseTop = this._layoutMode.value.showBase && this._layoutMode.value.showBaseAtTop; this.setLayout({ ...this._layoutMode.value, showBaseAtTop: !this._layoutMode.value.showBaseAtTop, showBaseAtTop: true, showBase: !showBaseTop, }); } public toggleShowBaseCenter(): void { const showBaseCenter = this._layoutMode.value.showBase && !this._layoutMode.value.showBaseAtTop; this.setLayout({ ...this._layoutMode.value, showBaseAtTop: false, showBase: !showBaseCenter, }); }"} {"_id":"q-en-vscode-0a4cc7c13cf29645da64641a1720f400bf1fc66e0c496252c067c4498eb7aec7","text":"@IClipboardService private readonly _clipboardService: IClipboardService, @IThemeService private readonly _themeService: IThemeService, @IConfigurationService private readonly _configurationService: IConfigurationService, @ILogService private _logService: ILogService @ILogService private _logService: ILogService, @IStorageService private readonly _storageService: IStorageService, ) { this._disposables = []; this._skipTerminalCommands = [];"} {"_id":"q-en-vscode-0a574876194afdd586e6c34621bc5e3c2016d1430599b98fc959c41e28b9775c","text":"} export class TerminalInstance implements ITerminalInstance { private static readonly WINDOWS_EOL_REGEX = /r?n/g; private static readonly EOL_REGEX = /r?n/g; private static _terminalProcessFactory: ITerminalProcessFactory = new StandardTerminalProcessFactory(); private static _lastKnownDimensions: Dimension = null;"} {"_id":"q-en-vscode-0a71d8e29710a9d048619c94dce2ea4bcb7e79ebf713393993906b98124f6edf","text":"// never wrap hidden editor result.wordWrapOverride1 = 'off'; result.wordWrapOverride2 = 'off'; result.stickyScroll = { enabled: false }; } else { result.wordWrapOverride1 = this._options.diffWordWrap; }"} {"_id":"q-en-vscode-0aeab5c39401c4f4944d70e7f898060d77db095cd8dbbec096e0977237540ba6","text":"KeybindingsRegistry.registerCommandAndKeybindingRule({ id: 'scm.clearInput', weight: KeybindingWeight.WorkbenchContrib, when: ContextKeyExpr.has('scmRepository'), when: ContextKeyExpr.and(ContextKeyExpr.has('scmRepository'), SuggestContext.Visible.toNegated()), primary: KeyCode.Escape, handler: async (accessor) => { const scmService = accessor.get(ISCMService);"} {"_id":"q-en-vscode-0b5e1012e696cc3f1faaa1576e2e156226577b9232c4df1f1e52e2bc5863e2ed","text":"this.compressedFocusFirstContext = ExplorerCompressedFirstFocusContext.bindTo(contextKeyService); this.compressedFocusLastContext = ExplorerCompressedLastFocusContext.bindTo(contextKeyService); this.viewHasSomeCollapsibleRootItem = ViewHasSomeCollapsibleRootItemContext.bindTo(contextKeyService); this.viewVisibleContextKey = ExplorerViewletVisibleContext.bindTo(contextKeyService); this.explorerService.registerView(this); }"} {"_id":"q-en-vscode-0b74b36bf35893ffaedf963128abf2bd8935dd6c3405530946283bd28860e99a","text":"\"statusBarItem.remoteBackground\": \"#16825D\", \"sideBarSectionHeader.background\": \"#0000\", \"sideBarSectionHeader.border\": \"#61616130\", \"notebook.cellFocusBackground\": \"#c8ddf150\", \"notebook.focusedCellBackground\": \"#c8ddf150\", \"notebook.cellBorderColor\": \"#dae3e9\", \"notebook.outputContainerBackgroundColor\": \"#c8ddf150\", \"notebook.focusedCellShadow\": \"#00315040\""} {"_id":"q-en-vscode-0b94c53fadd416de2d7f67d36c4087223ae2128c704ecbc80dde5f153aaa1aea","text":".extensions-viewlet > .extensions .extension-list-item.loading > .icon-container { display: none; } .extensions-viewlet.narrow > .extensions .extension-list-item > .icon-container { display: flex; align-items: flex-start; padding-top: 10px; } .extensions-viewlet.narrow > .extensions .extension-list-item > .icon-container > .icon { width: 24px; height: 24px; padding-top: 8px; padding-right: 6px; padding-right: 8px; } .extensions-viewlet:not(.narrow) > .extensions .extension-list-item > .details > .header-container > .header > .extension-remote-badge-container,"} {"_id":"q-en-vscode-0c0a70890751839b230b60d3688683e3918f0d4a88daf4b1816100bd1ec99706","text":"} } }); this.registerExtensionAction({ id: SwitchToReleasedVersionAction.ID, title: SwitchToReleasedVersionAction.TITLE,"} {"_id":"q-en-vscode-0c115a12a19c17f5a5d8b199250201f2e4ac8a10cc346da45181d7fc720f8eee","text":"'type': 'object', 'properties': { 'problems.decorations.enabled': { 'markdownDescription': localize('markers.showOnFile', \"Show Errors & Warnings on files and folder. Overwritten by `#problems.visibility#` when `{0}` is off.\", `problems.visibility`), 'markdownDescription': localize('markers.showOnFile', \"Show Errors & Warnings on files and folder. Overwritten by `#problems.visibility#` when it is off.\"), 'type': 'boolean', 'default': true }"} {"_id":"q-en-vscode-0c15236434ab6523c9ef8fa66be7563758d2f9d956538125f3ad3f770c2e0f88","text":"Range.fromPositions(primaryPosition, primaryEditEndPosition) ); const positionWithinTextEdit = subtractPositions(primaryPosition, primaryEditStartPosition); if (positionWithinTextEdit.lineNumber < 1) { onUnexpectedError(new BugIndicatingError( `positionWithinTextEdit line number should be bigger than 0. Invalid subtraction between ${primaryPosition.toString()} and ${primaryEditStartPosition.toString()}` )); return []; } const secondaryEditText = substringPos(primaryEdit.text, positionWithinTextEdit); return secondaryPositions.map(pos => { const posEnd = addPositions(subtractPositions(pos, primaryEditStartPosition), primaryEditEndPosition);"} {"_id":"q-en-vscode-0c1bad2c264b2245d3c6837c9072a51df7961b2c4eda87d9fa2092386be85a96","text":"dependencies: object-keys \"~0.4.0\" xterm-addon-search@0.9.0-beta.39: version \"0.9.0-beta.39\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.39.tgz#e8376e1485ee7d763c07d1a8f1354114f65b3e3e\" integrity sha512-h45wkecgfqXXoAUqgNytAfSd6g0xNT6rZy/enVaEU0aes7QoL9pxHUKkCry8PP6hs03Slk0VxQ4AGsbSZGvK/w== xterm-addon-search@0.9.0-beta.41: version \"0.9.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.41.tgz#0992da36fe01ff6d71449265a9dabeef7f9d0a3f\" integrity sha512-b1vuWR5JZ8QIiObbKkwSzpzf4x0B9hdzGCHJG+PXWT/xbxk65DOe/X9rgrRyOnCWe5ylQGG4DIHTiREigTp0lg== xterm-addon-serialize@0.7.0-beta.13: version \"0.7.0-beta.13\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.13.tgz#5c859c8657cab7f28405aab1a0715daf54bc7714\" integrity sha512-TYFlm/gds0pOmpzXw7ZWx8Cy48lMaOZZqZgfm5pWU37HPvzfKxXSVdYL1biWpRCH2zCH+3cWmOma8W1pBRr+Eg== xterm-addon-serialize@0.7.0-beta.15: version \"0.7.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.15.tgz#0f7d5f9b423802ac67c2a891d74de530a4fe6a65\" integrity sha512-gO/dxqGgOAuj7DN2ETTeCHyalkb655XogZh5408CmH5D6mjI1lxqVLGUdiFeBVU/OHfWZT2PZ95k06VXqLU5kA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.12.0-beta.41: version \"0.12.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.41.tgz#17dbca975b6e9b34526ebc57f4de59ee295da1b6\" integrity sha512-wvQxC5diMYEJEMaILfz+4CWB2GgtzjzNQRNDnK7R7Y9wDI+P4idDlQKgyH0nA93sl9R4zgqlBVha//wuq4vfZg== xterm-addon-webgl@0.12.0-beta.43: version \"0.12.0-beta.43\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.43.tgz#916ed4e390371403aab0d277097cd8a61be436e8\" integrity sha512-hGXfwT6TOmp0tBDiS/iF8s0SLHLd3shJ5zQyS4HNtq99B5cEhHhwaUAZAfjLt5rnUt0kvqR9YWtGsDux5dWVLA== xterm-headless@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.60.tgz#ccd09a7c69ba487d3fd87d6a8d159f1a6a10e9b2\" integrity sha512-mJ24BRnEDCASJDTGFZysZxiXkCmed3eMFiWCPvIF48LVrqxt1cImoVKBlxqkdgUkHKjfF2c92S1TTBL5aT1I0w== xterm-headless@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.67.tgz#fe44a243974bf307c9a0694114ab45289734c7f9\" integrity sha512-rpxUsE/te2LN4B/erI108uaAhuLTUsnRl9zIZgcqMqZGFRqDUTtyVM05jIA/8A32g06wFd3WioTkeKc6ow+sLg== xterm@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.60.tgz#de89d93153ae3ec17b53f3e5d03b8ea859126081\" integrity sha512-YQjvp4xtSAyNm9+gF4OA5+QzkSWdKMCy4WABETpe7CsrEGx+mJVoXCZ9wgopmvwRXz7DeJvKM5dWz1HPjVLDtA== xterm@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.67.tgz#9a7d79be64469c91bb693b9f5a50b5a22e921cd3\" integrity sha512-4bYTnT6g91N5QId1qPaiSvkpsxMQYpuPdPJItvBZFOcQLTuFSX85x5NeFuDvhNqi33eMFPimyGhzH/JvAV1v/Q== y18n@^3.2.1: version \"3.2.2\""} {"_id":"q-en-vscode-0c5cd6e31fbd51379613a840b1c2de90bc62edf667a5b0d443a6e537d30ebcf3","text":"}); try { const result = await this._proxy.$executeCommand(id, toArgs, retry); const result = await this._proxy.$executeCommand(id, hasBuffers ? new SerializableObjectWithBuffers(toArgs) : toArgs, retry); return revive(result); } catch (e) { // Rerun the command when it wasn't known, had arguments, and when retry"} {"_id":"q-en-vscode-0c75b7e2f66157dba26ea3b5a9f4fad96ea2e2a4981acfaf4d7c1b5f18b7c729","text":"@memoize get onDidChangeFocus() { return Event.map( this._tree.onDidChangeFocus, Event.any(this._tree.onDidChangeFocus, this._onTriggerEmptySelectionOrFocus.event), e => e.elements.filter((e): e is QuickPickItemElement => e instanceof QuickPickItemElement).map(e => e.item) ); }"} {"_id":"q-en-vscode-0cb78a4e7ebf448a7be83beb97f35b1bc61ab54e8d37237671c3862cb47db1c4","text":"group: '', title: nls.localize('actions.clipboard.cutLabel', \"Cut\"), order: 1 }, { menuId: MenuId.SimpleEditorContext, group: CLIPBOARD_CONTEXT_MENU_GROUP, title: nls.localize('actions.clipboard.cutLabel', \"Cut\"), when: EditorContextKeys.writable, order: 1, }] })) : undefined;"} {"_id":"q-en-vscode-0ce672e48279f2ff2215c9cebda2b00efbcaf5fdc6c4dc2d64cd4389cddca4ff","text":"\"type\": \"array\", \"markdownDescription\": \"%config.branchRandomNameDictionary%\", \"items\": { \"type\": \"string\" \"type\": \"string\", \"enum\": [ \"adjectives\", \"animals\", \"colors\", \"numbers\" ], \"enumDescriptions\": [ \"%config.branchRandomNameDictionary.adjectives%\", \"%config.branchRandomNameDictionary.animals%\", \"%config.branchRandomNameDictionary.colors%\", \"%config.branchRandomNameDictionary.numbers%\" ] }, \"default\": [ \"adjectives\","} {"_id":"q-en-vscode-0cefa6152293f5bb16428c93530f613283a88f33b6deb9398c68c6f3b355b7e6","text":"return DOM.isAncestorOfActiveElement(this.container); } getFocus(): ExplorerItem[] { return this.tree.getFocus(); } focusNext(): void { this.tree.focusNext(); } focusLast(): void { this.tree.focusLast(); } getContext(respectMultiSelection: boolean): ExplorerItem[] { return getContext(this.tree.getFocus(), this.tree.getSelection(), respectMultiSelection, this.renderer); }"} {"_id":"q-en-vscode-0d51894f3f941b30596a6d26d5e2a6c07ff4425dbc7d153a0cd33f98175ae777","text":"menu: [{ id: MenuId.ViewTitle, group: 'navigation', order: 3, order: 2, when: ContextKeyExpr.and(ContextKeyExpr.equals('view', VIEW_ID), Constants.InTreeViewKey.toNegated()), }] });"} {"_id":"q-en-vscode-0d993259ad803ec2632abed3c545564719503ecb4d5322bf546ca9b29bf9d73d","text":"}); this.htmlElements.gutterDiv.style.width = '5px'; this.htmlElements.root.classList.add(`result`); this._register( autorunWithStore((reader, store) => {"} {"_id":"q-en-vscode-0d99f85e7ffad93ec688728c0c535c4dadb937c480883cbd8b9b148d94189e29","text":"} picker.contextKey = descriptor?.contextKey; picker.filterValue = (value: string) => value.substring(descriptor ? descriptor.prefix.length : 0); if (descriptor?.placeholder) { picker.ariaLabel = descriptor?.placeholder; } // Pick mode: setup a promise that can be resolved // with the selected items and prevent execution"} {"_id":"q-en-vscode-0da10ffef4e5f9f5c21f086278b7c6b5e7af00db7f48113dbd4d0e81235d84d1","text":"if (configuration.enableTsServerTracing) { if (tsServerTraceDirectory) { this._logger.info(`<${kind}> Trace directory: ${tsServerTraceDirectory}`); this._logger.info(`<${kind}> Trace directory: ${tsServerTraceDirectory.fsPath}`); } else { this._logger.error(`<${kind}> Could not create trace directory`); }"} {"_id":"q-en-vscode-0de42cf19eaee5629794454c165239950e8c581da36519c368d0fca21699f10f","text":"VSCODE_CLI_TARGET: aarch64-unknown-linux-gnu VSCODE_CLI_ARTIFACT: vscode_cli_linux_arm64_cli VSCODE_CLI_ENV: CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc OPENSSL_LIB_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux/lib OPENSSL_INCLUDE_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux/include"} {"_id":"q-en-vscode-0de9ea82e7f91fcfab96a58b411c84ed59183b82acdea32c30b4ddaeafc01bbe","text":"}); } async withNotebookDataProvider(resource: URI): Promise { const [first] = this._notebookProviderInfoStore.getContributedNotebook(resource); if (!first) { async withNotebookDataProvider(resource: URI, viewType?: string): Promise { const providers = this._notebookProviderInfoStore.getContributedNotebook(resource); // If we have a viewtype specified we want that data provider, as the resource won't always map correctly const selected = viewType ? providers.find(p => p.id === viewType) : providers[0]; if (!selected) { throw new Error(`NO contribution for resource: '${resource.toString()}'`); } await this.canResolve(first.id); const result = this._notebookProviders.get(first.id); await this.canResolve(selected.id); const result = this._notebookProviders.get(selected.id); if (!result) { throw new Error(`NO provider registered for view type: '${first.id}'`); throw new Error(`NO provider registered for view type: '${selected.id}'`); } return result; }"} {"_id":"q-en-vscode-0deeb09a2fa7f11fef53e84e516329a270f0cd923dc2209b8fb014f0051aa7ad","text":"const icon = alwaysPrompt ? '$(lock)' : alwaysCommitToNewBranch ? '$(git-branch)' : undefined; // Tooltip (default) let tooltip = !alwaysCommitToNewBranch ? l10n.t('Commit Changes') : l10n.t('Commit Changes to New Branch'); const branch = this.repository.HEAD?.name; let tooltip = alwaysCommitToNewBranch ? l10n.t('Commit Changes to New Branch') : branch ? l10n.t('Commit Changes on '{0}'', branch) : l10n.t('Commit Changes'); // Tooltip (in progress) if (this.repository.operations.isRunning(OperationKind.Commit)) {"} {"_id":"q-en-vscode-0df8414eec05bf35fe7e16475a4e01ce514e996ac16186cb75427a90b2fe4321","text":"} export function regExpLeadsToEndlessLoop(regexp: RegExp): boolean { // Exit early if it's one of these special cases which are meant to match // against an empty string if (regexp.source === \"^\" || regexp.source === \"^$\" || regexp.source === \"$\") { return false; } // We check against an empty string. If the regular expression doesn't advance // (e.g. ends in an endless loop) it will match an empty string. var match = regexp.exec(''); return (match && regexp.lastIndex === 0); }"} {"_id":"q-en-vscode-0e1fd5fd759146a9aeafdec23c5effca824c72cf93a60872960773b40eff7a7a","text":"this.extensionRecommendationsService.getImportantRecommendations(), this.extensionRecommendationsService.getFileBasedRecommendations(), this.extensionRecommendationsService.getOtherRecommendations() ])).filter(extensionId => !isString(extensionId) || !local.includes(extensionId.toLowerCase()))); ])).filter(extensionId => { if (isString(extensionId)) { return !localExtensionIds.includes(extensionId.toLowerCase()); } return !localExtensions.some(localExtension => localExtension.local && this.uriIdentityService.extUri.isEqual(localExtension.local.location, extensionId)); })); const installableRecommendations = await this.getInstallableRecommendations(allRecommendations, { ...options, source: 'recommendations-all', sortBy: undefined }, token); return new PagedModel(installableRecommendations.slice(0, 8)); const result: IExtension[] = []; for (let i = 0; i < installableRecommendations.length && result.length < 8; i++) { const recommendation = allRecommendations[i]; if (isString(recommendation)) { const extension = installableRecommendations.find(extension => areSameExtensions(extension.identifier, { id: recommendation })); if (extension) { result.push(extension); } } else { const extension = installableRecommendations.find(extension => extension.resourceExtension && this.uriIdentityService.extUri.isEqual(extension.resourceExtension.location, recommendation)); if (extension) { result.push(extension); } } } return new PagedModel(result); } private async searchRecommendations(query: Query, options: IQueryOptions, token: CancellationToken): Promise> {"} {"_id":"q-en-vscode-0e2ba53161700f18037d863b906d9a75fe689d73827505eb1d6affdc35e9fdc3","text":"import { isWeb } from 'vs/base/common/platform'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { Codicon } from 'vs/base/common/codicons'; import { IUserDataSyncMachinesService, UserDataSyncMachinesService } from 'vs/platform/userDataSync/common/userDataSyncMachines'; type ExistingSession = IQuickPickItem & { session: AuthenticationSession & { providerId: string } }; type AuthenticationProviderOption = IQuickPickItem & { provider: IAuthenticationProvider };"} {"_id":"q-en-vscode-0e744a441e6e383a8a062a3d23bb7301c9f7867e596d874280d9ee868a051363","text":"export interface UriComponents { scheme: string; authority: string; path: string; query: string; fragment: string; authority?: string; path?: string; query?: string; fragment?: string; } /** * Virtual Key Codes, the value does not hold any inherent meaning."} {"_id":"q-en-vscode-0e78057ffe75beb38a5a66801aa08c7e897ddfd57889d95d995acb9ba1ad5eb4","text":"'activityBar.background': '#181818', 'statusBar.background': '#181818', 'statusBar.noFolderBackground': '#1f1f1f', 'titleBar.border': '#2B2B2B', 'titleBar.inactiveBackground': '#ff0000', 'titleBar.inactiveForeground': '#9D9D9D' }; export const COLOR_THEME_LIGHT_INITIAL_COLORS = { 'activityBar.background': '#f8f8f8', 'statusBar.background': '#f8f8f8', 'statusBar.noFolderBackground': '#f8f8f8' 'statusBar.noFolderBackground': '#f8f8f8', 'titleBar.border': '#E5E5E5', 'titleBar.inactiveBackground': '#F8F8F8', 'titleBar.inactiveForeground': '#8B949E', }; export interface IWorkbenchTheme {"} {"_id":"q-en-vscode-0eb27a643a7ba2bdfcb5e531a2344bf2d64e3f9dcc7a352fb381459b9a732379","text":"const _cursorWordStartRightSelect = new CursorWordStartRightSelect(); const _cursorWordEndRightSelect = new CursorWordEndRightSelect(); const _cursorWordRightSelect = new CursorWordRightSelect(); const _cursorWordAccessibilityLeft = new CursorWordAccessibilityLeft(); const _cursorWordAccessibilityLeftSelect = new CursorWordAccessibilityLeftSelect(); const _cursorWordAccessibilityRight = new CursorWordAccessibilityRight(); const _cursorWordAccessibilityRightSelect = new CursorWordAccessibilityRightSelect(); const _deleteWordLeft = new DeleteWordLeft(); const _deleteWordStartLeft = new DeleteWordStartLeft(); const _deleteWordEndLeft = new DeleteWordEndLeft();"} {"_id":"q-en-vscode-0ec6a43e7fa4d897eca50871c393742a81cf283a9b81b2df32c07865d444833f","text":"display: inline-block; } .monaco-editor .suggest-widget .monaco-list .monaco-list-row:hover>.contents>.main>.right>.readMore { .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused:hover>.contents>.main>.right>.readMore { visibility: visible; }"} {"_id":"q-en-vscode-0f240f9e9c659da486ae0b50c8baf19d48d1252c3ba0ab42e88365e58e4d943c","text":" begin (?x) (*|_)(?=S)\t\t\t\t\t\t\t\t# Open b(*|_)(?=S)\t\t\t\t\t\t\t\t# Open (?= ( <[^>]*+>\t\t\t\t\t\t\t# HTML tags"} {"_id":"q-en-vscode-0f3e851d5ab32220f6308e28ffd733c623973869b6bf2fea297b01def6be3639","text":"} } async $executeCommand(id: string, args: any[], retry: boolean): Promise { async $executeCommand(id: string, args: any[] | SerializableObjectWithBuffers, retry: boolean): Promise { if (args instanceof SerializableObjectWithBuffers) { args = args.value; } for (let i = 0; i < args.length; i++) { args[i] = revive(args[i]); }"} {"_id":"q-en-vscode-0f42ee47e3a04adb33590617146c9d7765e06ccb6971e00294b9ef8da83dc89b","text":" fileTypes ini conf keyEquivalent ^~I name Ini patterns begin (^[ t]+)?(?=#) beginCaptures 1 name punctuation.whitespace.comment.leading.ini end (?!G) patterns begin # beginCaptures 0 name punctuation.definition.comment.ini end n name comment.line.number-sign.ini begin (^[ t]+)?(?=;) beginCaptures 1 name punctuation.whitespace.comment.leading.ini end (?!G) patterns begin ; beginCaptures 0 name punctuation.definition.comment.ini end n name comment.line.semicolon.ini captures 1 name keyword.other.definition.ini 2 name punctuation.separator.key-value.ini match b([a-zA-Z0-9_.-]+)bs*(=) captures 1 name punctuation.definition.entity.ini 3 name punctuation.definition.entity.ini match ^([)(.*?)(]) name entity.name.section.group-title.ini begin ' beginCaptures 0 name punctuation.definition.string.begin.ini end ' endCaptures 0 name punctuation.definition.string.end.ini name string.quoted.single.ini patterns match . name constant.character.escape.ini begin \" beginCaptures 0 name punctuation.definition.string.begin.ini end \" endCaptures 0 name punctuation.definition.string.end.ini name string.quoted.double.ini scopeName source.properties uuid 77DC23B6-8A90-11D9-BAA4-000A9584EC8C No newline at end of file"} {"_id":"q-en-vscode-0f6332c2095dcc3cc7221f0d84adc0be0cc87c723fcbe9d6d4fa323fabe18e26","text":"registerThemingParticipant((theme: IColorTheme, collector: ICssStyleCollector) => { const editorBackgroundColor = theme.getColor(editorBackground)?.transparent(0.7); // Lightbulb Icon const editorLightBulbForegroundColor = theme.getColor(editorLightBulbForeground); if (editorLightBulbForegroundColor) { collector.addRule(` .monaco-editor .contentWidgets ${Codicon.lightBulb.cssSelector} { color: ${editorLightBulbForegroundColor}; background-color: ${editorBackgroundColor}; }`); }"} {"_id":"q-en-vscode-0fafc02937170e70699bfb2d4d9ee2ef8e0b58b2c25e26e6173989b44c0a15d2","text":"autoFindInSelection?: 'never' | 'always' | 'multiline'; addExtraSpaceOnTop?: boolean; /** * Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found * Controls whether the search result and diff result automatically restarts from the beginning (or the end) when no further matches can be found */ loop?: boolean; }"} {"_id":"q-en-vscode-102a6e8adcc10e2595bf2de275f942b97adaf413f323f2fa39a844c2aae718f0","text":"const lineNumber = this.inputModel.getLineCount(); this._inputEditor.setPosition({ lineNumber, column: this.inputModel.getLineMaxColumn(lineNumber) }); } const onDidChangeCursorPosition = () => { const model = this._inputEditor.getModel(); if (!model) { return; } const position = this._inputEditor.getPosition(); if (!position) { return; } const atTop = position.column === 1 && position.lineNumber === 1; this.chatCursorAtTop.set(atTop); this.historyNavigationBackwardsEnablement.set(atTop); this.historyNavigationForewardsEnablement.set(position.equals(getLastPosition(model))); }; this._register(this._inputEditor.onDidChangeCursorPosition(e => onDidChangeCursorPosition())); onDidChangeCursorPosition(); } private initAttachedContext(container: HTMLElement) {"} {"_id":"q-en-vscode-1051fb5ebf0203227eb8222701d8b61980159790916d9e54ab2fdc665f0d1bf8","text":"hasFocus(): boolean { return this._zone.widget.hasFocus(); } needsMargin(): boolean { return true; } }"} {"_id":"q-en-vscode-1068e4b9c0fdfb97eefb9b13bd5b7c005b372ad12524b579df0cd749f2ddda6c","text":"}, menu: [ { id: MenuId.CommandPalette }, { id: MenuId.MenubarViewMenu, group: '5_editor', order: 2 }, { id: MenuId.MenubarAppearanceMenu, group: '4_editor', order: 3 }, { id: MenuId.StickyScrollContext } ] });"} {"_id":"q-en-vscode-107f781f801b0600d40848807b27d42d7655520fee60200bc75ca9083bcf961f","text":"'preview.showPreviewSecuritySelector.title', 'Select security settings for Markdown previews in this workspace'), }); if (!selection) { return; }"} {"_id":"q-en-vscode-10a1c63d42493a53b819cc48c05df9ff82cc3587b4e63cb8f0d2efeb9f9de355","text":" Compare_16x No newline at end of file No newline at end of file"} {"_id":"q-en-vscode-10a8ea6bef9a4ea1c5678a1340cef4077228a3a67c5549fd41e598bdc9aff606","text":"# Install the desktop entry if hash desktop-file-install 2>/dev/null; then desktop-file-install /usr/share/applications/@@NAME@@.desktop desktop-file-install /usr/share/applications/@@NAME@@-url-handler.desktop fi if [ \"@@NAME@@\" != \"code-oss\" ]; then"} {"_id":"q-en-vscode-10ab7cd4fdad0354ee2e8bbf8ccad4695d5f034c5e92e7044f5b03100bf51cca","text":"import { IMarkerData, IMarkerService } from 'vs/platform/markers/common/markers'; import { IRange } from 'vs/editor/common/core/range'; import { ICellExecutionError, ICellExecutionStateChangedEvent, IExecutionStateChangedEvent, INotebookExecutionStateService, NotebookExecutionType } from 'vs/workbench/contrib/notebook/common/notebookExecutionStateService'; import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { CellKind, NotebookSetting } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { INotebookEditor, INotebookEditorContribution } from 'vs/workbench/contrib/notebook/browser/notebookBrowser';"} {"_id":"q-en-vscode-10b760217dbfcd26525468539e260769aafa09ae447067da6f47b1147fa98b28","text":"const is32ProcessOn64Windows = process.env.hasOwnProperty('PROCESSOR_ARCHITEW6432'); const system32Path = `${process.env['windir']}${is32ProcessOn64Windows ? 'Sysnative' : 'System32'}`; const osVersion = (/(d+).(d+).(d+)/g).exec(os.release()); let useWSLexe = false; if (osVersion && osVersion.length === 4) { const buildNumber = parseInt(osVersion[3]); if (buildNumber >= 16299) { useWSLexe = true; } if (TerminalInstance.getWindowsBuildNumber() >= 16299) { useWSLexe = true; } const expectedLocations = {"} {"_id":"q-en-vscode-10bb6b6518e99ee26cfa0eb5f58917469bb21be85d310f0bf684183e883fa330","text":"} public static moveToBeginningOfLine(config: CursorConfiguration, model: ICursorSimpleModel, cursor: SingleCursorState, inSelectionMode: boolean): SingleMoveOperationResult { let lineNumber = cursor.selection.startLineNumber; let lineNumber = cursor.position.lineNumber; let minColumn = model.getLineMinColumn(lineNumber); let firstNonBlankColumn = model.getLineFirstNonWhitespaceColumn(lineNumber) || minColumn; let column: number; if (cursor.selection.startColumn === firstNonBlankColumn) { let relevantColumnNumber = cursor.position.column; if (relevantColumnNumber === firstNonBlankColumn) { column = minColumn; } else { column = firstNonBlankColumn;"} {"_id":"q-en-vscode-10be038e37447b9838f25e4d409b60c947fbffff5e8a0fe27af0fe9b635a1627","text":"@ILogService logService: ILogService ) { super(lifecycleMainService, configurationService, environmentService, requestService, logService); } initialize(): void { super.initialize(); this.onRawError(this.onError, this, this.disposables); this.onRawUpdateAvailable(this.onUpdateAvailable, this, this.disposables); this.onRawUpdateDownloaded(this.onUpdateDownloaded, this, this.disposables);"} {"_id":"q-en-vscode-10c607a6c28723f4f9bbb772511694cfdba33f87f75f8b2a8fea77deba9f017d","text":"// this._logService.debug('match found without corresponding matchIndex', match, matcher); break; } const originalLink = link; const cachedLinkResult = map.get(originalLink); if (cachedLinkResult && !this._testing) { if (typeof cachedLinkResult !== 'string') { result.push(cachedLinkResult); } break; } // Get index, match.index is for the outer match which includes negated chars // therefore we cannot use match.index directly, instead we search the position"} {"_id":"q-en-vscode-113c03acbc46f94b8902912d164434f57cc9ed3f2af43b2f0dc137964e5fe5b9","text":"return localize('trustedFolderWithHostAriaLabel', \"{0} on {1}, trusted\", this.labelService.getUriLabel(item.uri), hostLabel); }, getWidgetAriaLabel: () => localize('trustedFoldersAndWorkspaces', \"Trusted Folders & Workspaces\") }, identityProvider: { getId(element: ITrustedUriItem) { return element.uri.toString(); }, } } ) as WorkbenchTable;"} {"_id":"q-en-vscode-115b1e209905a3aa78d6ee9f8c078dd2dc5a6b9913687d4592d74804cf3e42ca","text":"private globalExcludePattern?: glob.ParsedExpression; constructor(private config: IFileQuery, private provider: FileSearchProviderNew, private sessionToken?: unknown) { constructor(private config: IFileQuery, private provider: FileSearchProviderNew, private sessionLifecycle?: SessionLifecycle) { this.filePattern = config.filePattern; this.includePattern = config.includePattern && glob.parse(config.includePattern); this.maxResults = config.maxResults || undefined;"} {"_id":"q-en-vscode-11652dad63d20c8cd7d554cc5d79ee90753267a7285b216e03d636d0ea9e3de1","text":"pull(): Promise { return this._repository.pull(); } push(head: Branch): Promise { return this._repository.push(head); } pushTo(remote?: string, name?: string, setUpstream: boolean = false): Promise { return this._repository.pushTo(remote, name, setUpstream); } } export class ApiGit implements Git {"} {"_id":"q-en-vscode-11fac228db232e175c9d188e215fbcac559165d137906f9ef4e563ae976902a0","text":"static readonly DebugWatchContext = new MenuId('DebugWatchContext'); static readonly DebugToolBar = new MenuId('DebugToolBar'); static readonly EditorContext = new MenuId('EditorContext'); static readonly SimpleEditorContext = new MenuId('SimpleEditorContext'); static readonly EditorContextCopy = new MenuId('EditorContextCopy'); static readonly EditorContextPeek = new MenuId('EditorContextPeek'); static readonly EditorTitle = new MenuId('EditorTitle');"} {"_id":"q-en-vscode-12195cf00d15cf9a894ad225b33dde99f8eedbd88d4bbc4a390ce7029f6a8aa6","text":"return this.input.selectionEnd === this.input.value.length && this.input.selectionStart === this.input.selectionEnd; } public getSelection(): IRange | null { const selectionStart = this.input.selectionStart; if (selectionStart === null) { return null; } const selectionEnd = this.input.selectionEnd ?? selectionStart; return { start: selectionStart, end: selectionEnd, }; } public enable(): void { this.input.removeAttribute('disabled'); }"} {"_id":"q-en-vscode-123595fd490b35517c46bb9e4d40dca23f357745a43f2f509951740071ff1731","text":"widgetPosition = this._editor.getSelection().getStartPosition().delta(-1); } let needsMargin = false; if (initialRender) { this._zone.value.setContainerMargins(); }"} {"_id":"q-en-vscode-12799a8f1309ccc1abc79bc16b9bbf7617fcd280af4954d0eb88e2abc83755a5","text":"if (!this.url) { return Promise.resolve(undefined); } return this.requestService.request({ url: this.url }, CancellationToken.None).then(context => { // The update server replies with 204 (No Content) when no // update is available - that's all we want to know."} {"_id":"q-en-vscode-1303a9cc2ec7bc3311649e3768531b29700fb22a49f668f130dac9e08b331075","text":"}); } disposeElement(element: ActionBarCell, index: number, templateData: IActionBarTemplateData, height: number | undefined) { templateData.elementDisposable.dispose(); } disposeTemplate(templateData: IActionBarTemplateData): void { templateData.label.dispose(); templateData.actionBar.dispose(); templateData.elementDisposable.dispose(); templateData.button?.dispose(); } }"} {"_id":"q-en-vscode-133e39753973de07a9696f5e4012a6ffc6488cb68bf454cd6d8967b54f7f647e","text":"private _getAccessibleViewHelpDialogContent(providerHasSymbols?: boolean): string { const navigationHint = this._getNavigationHint(); const goToSymbolHint = this._getGoToSymbolHint(providerHasSymbols); const toolbarHint = localize('toolbar', \"Navigate to the toolbar (Shift+Tab)).\"); const toolbarHint = localize('toolbar', \"Navigate to the toolbar (Shift+Tab).\"); const chatHints = this._getChatHints(); let hint = localize('intro', \"In the accessible view, you can:n\");"} {"_id":"q-en-vscode-1345988b63c3a9e0995167531c9215323d7c1e130143e146af023a110aa63fa0","text":"} @command('git.clone') async clone(url?: string): Promise { async clone(url?: string, parentPath?: string): Promise { if (!url) { url = await window.showInputBox({ prompt: localize('repourl', \"Repository URL\"),"} {"_id":"q-en-vscode-1379b2c7fb048cbc569f0052612eb4a643ade7948327a86a53b5437617bfeae4","text":"import { CATEGORIES } from 'vs/workbench/common/actions'; import { ActiveGroupEditorsByMostRecentlyUsedQuickAccess } from 'vs/workbench/browser/parts/editor/editorQuickAccess'; import { IOpenerService } from 'vs/platform/opener/common/opener'; import { EditorResolution, IEditorOptions, ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { EditorResolution, IEditorOptions, IResourceEditorInput, ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { Schemas } from 'vs/base/common/network'; import { SideBySideEditorInput } from 'vs/workbench/common/editor/sideBySideEditorInput'; import { SideBySideEditor } from 'vs/workbench/browser/parts/editor/sideBySideEditor'; import { IJSONSchema } from 'vs/base/common/jsonSchema'; import { IEditorResolverService } from 'vs/workbench/services/editor/common/editorResolverService'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; export const CLOSE_SAVED_EDITORS_COMMAND_ID = 'workbench.action.closeUnmodifiedEditors'; export const CLOSE_EDITORS_IN_GROUP_COMMAND_ID = 'workbench.action.closeEditorsInGroup';"} {"_id":"q-en-vscode-137c31ce60198319a15758b76663d5cbbe577950bb498fd4c112ed54908aa66a","text":" 88cafda8394985e59d3d84cb4a6692ad04d8e32db9ecd6429e748e41526ddad7 *electron-v25.8.0-darwin-arm64-symbols.zip 6e33d3b8041561722ed41777e055a8c15d3f4e61b67367b2618918bcf0cfea76 *electron-v25.8.0-darwin-arm64.zip 438ac9915e062a239fb6d2595323c4783d2c820efc9cbcf3d2c1253d0e057e83 *electron-v25.8.0-darwin-x64-symbols.zip 798907d2a66bc79202c8213c61e7fd147ae2a8c31c485d814950b11d43bbbba8 *electron-v25.8.0-darwin-x64.zip 3243f3764319cff6c942d9f90a86323c36ec05ec51ef01e782c4e9a7194187e1 *electron-v25.8.0-linux-arm64-symbols.zip f24f858b76bf8a2e18419f62e0f891712b2fa541089123e9caa8d5cd67fc3276 *electron-v25.8.0-linux-arm64.zip dc3ff0489a0ebeda56d06b31eeae75dd7321a52bb601069c4475c56462b4814a *electron-v25.8.0-linux-armv7l-symbols.zip 3b7a0c3899f828a5cf30043b73992e90231400b90c1afa700a44f892a55e326b *electron-v25.8.0-linux-armv7l.zip 44803b2487406eca8fff9cec405e9e50bd92a911808dfaaa523b9ef52a0e72d8 *electron-v25.8.0-linux-x64-symbols.zip d54fb2df0ad7318240220aa26327171ed1e891fb296f3c27c58b8b487c4df8eb *electron-v25.8.0-linux-x64.zip bf7be6c0c8d0df06f0ce22e16c97aea823415d7f5cbf0ffdadf65d75feaf3cd8 *electron-v25.8.0-win32-arm64-pdb.zip 5d91757660b44bf30907f9c2b52225ade4d127d0fe48dc83dec134cc06c949f0 *electron-v25.8.0-win32-arm64-symbols.zip d1e6f30a8d8c7aed28d08ddf915d79de6b16b3a0a7c84c45fd3cc0d47f2b7f53 *electron-v25.8.0-win32-arm64.zip e389fef61c14ea0eefad91a9725aa0afd4dbdc982f7b30aba97bd9c2871c2061 *electron-v25.8.0-win32-ia32-pdb.zip 374d6c8897f97fab04e990ecf928e05f643ae33801546bf7d39bf4045b9d8b52 *electron-v25.8.0-win32-ia32-symbols.zip 73fc3382202b70dcaf7928f09a791662de82c701b8f403ed72cc5aa9b1401593 *electron-v25.8.0-win32-ia32.zip 010d248bd2e77585e1fa977e58b016659566de5a91c1e6845c85a7e6e1851bb9 *electron-v25.8.0-win32-x64-pdb.zip 72adb74fd92edff35c177c3c5d96765f230bc7adb8af11b30d5122b9e54c26e1 *electron-v25.8.0-win32-x64-symbols.zip 0051d0f241aedc6cdab4751c60f48758936122796f06c9e3033c7710a531686c *electron-v25.8.0-win32-x64.zip 2956915642c45eb0099228368d0af50e891e4c10014fa4d3d3bcfb135fbb89a7 *ffmpeg-v25.8.0-darwin-arm64.zip 099ee69d44f8ac3802cdd612895f279f7adb043a5b9c9d123479b0f96514a44c *ffmpeg-v25.8.0-darwin-x64.zip bd52d57ff97fb56ac01a3482af905d04f0d4e9c13c53858c6d9f99957eca82da *ffmpeg-v25.8.0-linux-arm64.zip 9b3d09177fa1e63e2a6beecfa70aeec30aeb5c1873ff21128a68051c4e23f95d *ffmpeg-v25.8.0-linux-armv7l.zip edc7b1c9f1a0733f109a2c0375a4e40c5bfe0bf28b7f06dcc76e1ada0aa2f125 *ffmpeg-v25.8.0-linux-x64.zip a58e9480dab981ff973749e9d1e08936b2dd63a4b7f9523c030b1833387a4eb5 *ffmpeg-v25.8.0-win32-arm64.zip 6866b23a4d561c0322aeb7690aae646718c54398739946e352bf80d0dd721bfd *ffmpeg-v25.8.0-win32-ia32.zip 7b906df4ad6252881cf1e58619285b624f74d593379fbc6728e238b852d6abad *ffmpeg-v25.8.0-win32-x64.zip 197a62bdc616148537af5c8f1256563a27a733cae0d41b9a42e9e9f2901cc9ae *electron-v25.8.1-darwin-arm64-symbols.zip 985f4beee009ef6dbe7af75009a1b281aff591b989ee544bd4d2c814f9c4428d *electron-v25.8.1-darwin-arm64.zip 56209b302eb30bff3727dbb74467cb2e6e93e5a99d6939d1c3a7c8320fa26d72 *electron-v25.8.1-darwin-x64-symbols.zip fe61a3221d4c5dc9415dc2cce81010db61bb4a5ab5021d1023f48786dbaf0b28 *electron-v25.8.1-darwin-x64.zip 1b52beba5b1b133cccd253c32648cdfa51659e5db2f20441baafd6a3c8fcb56a *electron-v25.8.1-linux-arm64-symbols.zip 931208419f859f528e19805ae14b5b075213bc40dd20da9e03d8b71d849c147d *electron-v25.8.1-linux-arm64.zip 61929b61541f23b75cca6b1a6764c219499a9799376298cc9061fc1a8716d1e1 *electron-v25.8.1-linux-armv7l-symbols.zip dd3390de2426a1cea9d3176e404b8fb250844a9b0e48cf01822fa66f3c3c4a48 *electron-v25.8.1-linux-armv7l.zip 1812459d2bd0440e35134ddb3f56e8e173a8791db888756d22080ace244248ba *electron-v25.8.1-linux-x64-symbols.zip de556aef0a80a8fe7b2b39d74ab0bdecc65d72bba3b7349460d18ef2a22fa323 *electron-v25.8.1-linux-x64.zip baa1bb8985b09100b1b2b710cea2c3f8e72a7f5d0e3421cbf675c25e732b0d9f *electron-v25.8.1-win32-arm64-pdb.zip 4a22945c2584677a822d8f9eb6cb23e5607b985f85ec7523ab977b73dd6487c2 *electron-v25.8.1-win32-arm64-symbols.zip 567d3188f86176a875fb6562040a3767c638814cf06073e7131495ec681b3957 *electron-v25.8.1-win32-arm64.zip 148589f41cd4175b85138450a0a0e32eef1a519d5cb5f471374e167518a2ed47 *electron-v25.8.1-win32-ia32-pdb.zip f284ac337a8d5e564081fee6d26c2b2f782feed0bcbe29b7507f749da36b6e5c *electron-v25.8.1-win32-ia32-symbols.zip 6737e56588a2707534979e5dcfbf68399971a5e98d4848fa29fb43b7ae1dc378 *electron-v25.8.1-win32-ia32.zip 23c6ef26f7e1914149def7525b728212340fc6befa6bac30eafec8f8229f9e67 *electron-v25.8.1-win32-x64-pdb.zip 3eb3b87587b136e636d82fa4d28015d8ef6709468b3bb33eddae80d83076a053 *electron-v25.8.1-win32-x64-symbols.zip 963c05266bf83bc77f690b75a76855d7b7bc0be9bac4973292f3e7d506fd2c94 *electron-v25.8.1-win32-x64.zip ab608119c4bb4ebcefede6afdd911ef8ea007465ab7d2093a091bdb9ff466236 *ffmpeg-v25.8.1-darwin-arm64.zip 5abaf6356bb40fdfcaf88177e13c50447a48fe7fc6c1c3869cf4536148eb60d4 *ffmpeg-v25.8.1-darwin-x64.zip bd52d57ff97fb56ac01a3482af905d04f0d4e9c13c53858c6d9f99957eca82da *ffmpeg-v25.8.1-linux-arm64.zip 9b3d09177fa1e63e2a6beecfa70aeec30aeb5c1873ff21128a68051c4e23f95d *ffmpeg-v25.8.1-linux-armv7l.zip edc7b1c9f1a0733f109a2c0375a4e40c5bfe0bf28b7f06dcc76e1ada0aa2f125 *ffmpeg-v25.8.1-linux-x64.zip 6b2494dd5bf7f17eec800f41d232506007b36c7cae6f885565e035d3168a0c64 *ffmpeg-v25.8.1-win32-arm64.zip 8b57594cd2065437cf3378e845bae4de3501ebff7f1f1f516fc0aaf09c311c2b *ffmpeg-v25.8.1-win32-ia32.zip 95bb8e167e96bb4f902e6238312e245ed0acfae45eeda471e0f8ad0f0baaac2f *ffmpeg-v25.8.1-win32-x64.zip "} {"_id":"q-en-vscode-137c9b43f03a6f4d98a93ead9b35d8143abb68734a6733fd406f9fc527004460","text":"VSCODE_BUILD_LINUX: ${{ parameters.VSCODE_BUILD_LINUX }} VSCODE_BUILD_LINUX_ALPINE: ${{ parameters.VSCODE_BUILD_LINUX_ALPINE }} - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true)) }}: - job: LinuxArm64 - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true)) }}: - job: LinuxGnuARM pool: vscode-1es-linux steps: - template: ./linux/cli-build-linux.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_LINUX_ARMHF: ${{ parameters.VSCODE_BUILD_LINUX_ARMHF }} VSCODE_BUILD_LINUX_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ARM64 }} - ${{ if eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true) }}: - job: LinuxAlpineARM64 pool: vscode-1es-linux-20.04-arm64 variables: VSCODE_ARCH: arm64 steps: - task: NodeTool@0 displayName: Install Node.js"} {"_id":"q-en-vscode-1392dc841a744cc598ed08077a26e3c4212604cf84537fed0e0dc9e532243635","text":"import { WorkbenchState, IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { coalesce } from 'vs/base/common/arrays'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { isEqual } from 'vs/base/common/resources'; const TextInputActions: IAction[] = [ new Action('undo', nls.localize('undo', \"Undo\"), undefined, true, () => Promise.resolve(document.execCommand('undo'))),"} {"_id":"q-en-vscode-13a87e642f8c635ba38593d887de682fdf8c7f174e76c5f26a51c201cb2da504","text":"const CONFIG_HELP_TEXT_PRE = `// Links matching one or more entries in the list below can be opened without link protection. // The following examples show what entries can look like: // - \"https://microsoft.com\": Matches this specific domain using https // - \"https://microsoft.com:8080\": Matches this specific domain on this port using https // - \"https://microsoft.com:*\": Matches this specific domain on any port using https // - \"https://microsoft.com/foo\": Matches https://microsoft.com/foo and https://microsoft.com/foo/bar, // but not https://microsoft.com/foobar or https://microsoft.com/bar // - \"https://*.microsoft.com\": Match all domains ending in \"microsoft.com\" using https // - \"microsoft.com\": Match this specific domain using either http or https // - \"*.microsoft.com\": Match all domains ending in \"microsoft.com\" using either http or https // - \"http://192.168.0.1: Matches this specific IP using http // - \"http://192.168.0.*: Matches all IP's with this prefix using http // - \"*\": Match all domains using either http or https // `;"} {"_id":"q-en-vscode-1403581b0267ced33ea5fa09545c714d942506a54ee36a31d4a1094e3d838329","text":"} getScopedEnvironmentVariableCollection(scope: vscode.EnvironmentVariableScope | undefined): IEnvironmentVariableCollection { if (this._extension && scope) { // TODO: This should be removed when the env var extension API(s) are stabilized checkProposedApiEnabled(this._extension, 'envCollectionWorkspace'); } const scopedCollectionKey = this.getScopeKey(scope); let scopedCollection = this.scopedCollections.get(scopedCollectionKey); if (!scopedCollection) {"} {"_id":"q-en-vscode-141fb8918348d4e7defcaa1506088af927add37e588d3a27dea59052fb13ba12","text":"}); } await this.storeForwarded(); this.checkExtensionActivationEvents(); this.remoteTunnels.set(key, tunnel); this._onForwardPort.fire(this.forwarded.get(key)!); })); this._register(this.tunnelService.onTunnelClosed(address => { return this.onTunnelClosed(address, TunnelCloseReason.Other); })); this.checkExtensionActivationEvents(); } private extensionHasActivationEvent() {"} {"_id":"q-en-vscode-143eba9da8e65bd001a29f351bd29ba95ee21040a975731a6752f2a000f0a1e9","text":"*/ app.commandLine.appendSwitch('disable-features', 'CalculateNativeWinOcclusion'); /* Following features are enabled from the runtime. * `AutoDisableAccessibility` - https://github.com/microsoft/vscode/issues/162331#issue-1390744354 */ app.commandLine.appendSwitch('enable-features', 'AutoDisableAccessibility'); // Support JS Flags const jsFlags = getJSFlags(cliArgs); if (jsFlags) {"} {"_id":"q-en-vscode-144aa60c92f0976472f3540f04032d75451c152f01cce2742e625e64a7628af5","text":".search-view .monaco-tree .monaco-tree-row:hover:not(.highlighted) .monaco-action-bar, .search-view .monaco-tree .monaco-tree-row.focused .monaco-action-bar { display: inline-block; } .search-view:not(.wide) .monaco-tree .monaco-tree-row .linematch .actionBarContainer { flex: 1; display: block; } .search-view:not(.wide) .monaco-tree .monaco-tree-row .monaco-action-bar { float: right; flex: 1 0 auto; } .search-view .monaco-tree .monaco-tree-row .monaco-action-bar .action-label {"} {"_id":"q-en-vscode-148b77f7ef29f8fcbcaaa12da71ee6324dffd3142c8cb224b09c3b1b472e7bb8","text":"* Provide results that match the given text pattern. * @param query The parameters for this query. * @param options A set of options to consider while searching. * @param progress A progress callback that must be invoked for all results. * @param progress A progress callback that must be invoked for all {@link TextSearchResultNew results}. * These results can be direct matches, or context that surrounds matches. * @param token A cancellation token. */ provideTextSearchResults(query: TextSearchQueryNew, options: TextSearchProviderOptions, progress: Progress, token: CancellationToken): ProviderResult;"} {"_id":"q-en-vscode-14a108cccbe29afbbe8dcd0562975b0977c2a30352cc2de24ebea63f11ef7da8","text":"const replace = DOM.append(parent, DOM.$('span.replaceMatch')); const after = DOM.append(parent, DOM.$('span')); const lineNumber = DOM.append(container, DOM.$('span.matchLineNum')); const actionBarContainer = DOM.append(container, DOM.$('span.actionBarContainer')); const actions = new ActionBar(actionBarContainer, { animated: false }); const actions = new ActionBar(container, { animated: false }); return { parent,"} {"_id":"q-en-vscode-14caf49074ab437040921f37124f3f8542d40a07f5ebb21751ae5d74af30467a","text":"export class WelcomeDialogService implements IWelcomeDialogService { declare readonly _serviceBrand: undefined; private dialog: Dialog | undefined; private disposableStore: DisposableStore = new DisposableStore(); constructor( @ILayoutService private readonly layoutService: ILayoutService, @IInstantiationService private readonly instantiationService: IInstantiationService) { } private static iconWidgetFor(icon: string) { const themeIcon = ThemeIcon.fromId(icon); if (themeIcon) { const widget = $(ThemeIcon.asCSSSelector(themeIcon)); widget.classList.add('icon-widget'); return widget; } return ''; @IDialogService private readonly dialogService: IDialogService) { } async show(welcomeDialogItem: IWelcomeDialogItem): Promise { this.disposableStore.clear(); const renderBody = (parent: HTMLElement) => { parent.classList.add(...('dialog-items')); parent.appendChild(document.createElement('hr')); const renderBody = (icon: string, message: string): MarkdownString => { const mds = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); mds.appendMarkdown(`$(${icon})`); mds.appendMarkdown(message); return mds; }; for (const message of welcomeDialogItem.messages) { const descriptorComponent = $('.dialog-message', {}, WelcomeDialogService.iconWidgetFor(message.icon), $('.description-container', {}, $('.description.description.max-lines-3', { 'x-description-for': 'description' }, ...renderLabelWithIcons(message.message)))); parent.appendChild(descriptorComponent); } const hr = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); hr.appendMarkdown('
');
const actionsContainer = $('div.dialog-action-container'); parent.appendChild(actionsContainer); if (welcomeDialogItem.action) { this.disposableStore.add(this.instantiationService.createInstance(Link, actionsContainer, welcomeDialogItem.action, {})); } }; const link = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); if (welcomeDialogItem.action) { link.appendLink(welcomeDialogItem.action.href, welcomeDialogItem.action.label as string); } this.dialog = new Dialog( this.layoutService.container, welcomeDialogItem.title, [welcomeDialogItem.buttonText], { detail: '', type: 'none', renderBody: renderBody, await this.dialogService.prompt({ type: 'none', message: welcomeDialogItem.title, cancelButton: welcomeDialogItem.buttonText, custom: { disableCloseAction: true, buttonStyles: defaultButtonStyles, checkboxStyles: defaultCheckboxStyles, inputBoxStyles: defaultInputBoxStyles, dialogStyles: defaultDialogStyles }); markdownDetails: [ { markdown: hr, classes: ['hr'] }, ...welcomeDialogItem.messages.map(value => { return { markdown: renderBody(value.icon, value.message), classes: ['message-body'] }; }), { markdown: link, classes: ['link'] } ] } }); this.disposableStore.add(this.dialog); await this.dialog.show(); welcomeDialogItem.onClose?.(); this.disposableStore.dispose(); } }"} {"_id":"q-en-vscode-14f7b8baa52cd63cba5724cde2d48fdf53b6ff25d7e478bf495f36f10bcdf79b","text":"export const INotebookCellOutlineProviderFactory = createDecorator('INotebookCellOutlineProviderFactory'); export interface INotebookCellOutlineProviderFactory { getOrCreate(editor: INotebookEditor, target: OutlineTarget): IReference getOrCreate(editor: INotebookEditor, target: OutlineTarget): IReference; } export class NotebookCellOutlineProviderFactory implements INotebookCellOutlineProviderFactory {"} {"_id":"q-en-vscode-15734889420ff3645dd0854db443e788e149af48e6940dc0ac4564b12d4050d8","text":"} function renderText(outputInfo: OutputItem, container: HTMLElement, ctx: RendererContext & { readonly settings: { readonly lineLimit: number } }): void { clearContainer(container); const contentNode = document.createElement('div'); contentNode.classList.add('output-plaintext'); const text = outputInfo.text();"} {"_id":"q-en-vscode-15b5c8d1ffc28e54355faacc7acd4ea3ee7d18f753862d026d72ccda99265513","text":"for (const panel of this.getPanels()) { this.compositeBar.addComposite(panel, false); } this.activePanelContextKey = ActivePanelContext.bindTo(contextKeyService); this.onDidPanelOpen(this._onDidPanelOpen, this, this.disposables); this.onDidPanelClose(this._onDidPanelClose, this, this.disposables); this.registerListeners(); }"} {"_id":"q-en-vscode-15e61865782abadddc831febfb87ce4bb49466c6069f0b9e3a89fab07329d84a","text":"import * as nls from 'vs/nls'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import Event, { Emitter, chain } from 'vs/base/common/event'; import { KeyCode } from 'vs/base/common/keyCodes'; import { KeyCode, KeyCodeUtils } from 'vs/base/common/keyCodes'; import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import * as dom from 'vs/base/browser/dom'; import * as arrays from 'vs/base/common/arrays';"} {"_id":"q-en-vscode-15f9aa125757aba6286e718302e8a6ee9326998a48e68bfc0f001a820cf5dad4","text":"private updateEnabled() { const settingEnabled = this.configurationService.getValue(NotebookSetting.cellFailureDiagnostics); if (this.enabled && (!settingEnabled || Iterable.isEmpty(this.inlineChatService.getAllProvider()))) { if (this.enabled && (!settingEnabled || Iterable.isEmpty(this.chatAgentService.getAgents()))) { this.enabled = false; this.clearAll(); } else if (!this.enabled && settingEnabled && !Iterable.isEmpty(this.inlineChatService.getAllProvider())) { } else if (!this.enabled && settingEnabled && !Iterable.isEmpty(this.chatAgentService.getAgents())) { this.enabled = true; if (!this.listening) { this.listening = true;"} {"_id":"q-en-vscode-160946255917fa110f344a58a969c76f257f9b948677d88563740f73278c4bd8","text":"private _usedShellIntegrationInjection: boolean = false; get usedShellIntegrationInjection(): boolean { return this._usedShellIntegrationInjection; } private _lineDataEventAddon: LineDataEventAddon | undefined; private readonly _scopedContextKeyService: IContextKeyService; readonly capabilities = new TerminalCapabilityStoreMultiplexer(); readonly statusList: ITerminalStatusList;"} {"_id":"q-en-vscode-161509646240eac214296d9996787181c3a39ed1bf5a845a3410d652f08ada58","text":".pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('BUILD/usr/share/applications/' + product.applicationName + '.desktop')); const desktopUrlHandler = gulp.src('resources/linux/code-url-handler.desktop', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME_SHORT@@', product.nameShort)) .pipe(replace('@@NAME@@', product.applicationName)) .pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('BUILD/usr/share/applications/' + product.applicationName + '-url-handler.desktop')); const appdata = gulp.src('resources/linux/code.appdata.xml', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME@@', product.applicationName))"} {"_id":"q-en-vscode-16aea7002d9e102374e2f660560c3fb1306cbdec6bac2fe3901f24064a9d90a9","text":"resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.5.0.tgz#41c0d96acc1e3bb6c6596eee64e163b6bca74be7\" integrity sha512-Jm4/g4QiTxiKiTbYICQgC791ubhIZyoIwxAIgOW8z8HWFNY+lwk+dwaKEaEeGBfM48Vk8fklsUW9u/PlenYEBg== xterm-addon-webgl@0.15.0-beta.7: version \"0.15.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.7.tgz#ab247b499f61e8eebff92e08ec5ca999d87e06af\" integrity sha512-7WCI/D6uFNp3y9TeTsbSo1h7gCy4h/yP2lWn8ZEjCaiGvO11DbKMq17fbiwaR3YmGWXoRKkcLaNIiqxFnjKO4w== xterm-addon-webgl@0.15.0-beta.8: version \"0.15.0-beta.8\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.8.tgz#2005198582f6f1f4a9b2612b9354c0bcc9f148d8\" integrity sha512-HjTr9bi3FvdOIPaaIpih6qdHX2z+H7sQPluLj5KzwCqRiEVUVRi19dl8SdHjf6dCmN3GahMhjV7D+zxHi2pLTw== xterm-headless@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.30.tgz#f40b950f744111537a6403d33782669b1149fabb\" integrity sha512-aW6yljrcuu74kxg3w1DG1CZJSz38nKY/HOX3YOOE7cqxlkVXM7lltXZFEiF0xXDR0GHcmnEwnFWqA2rDmdhoDA== xterm-headless@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.33.tgz#a1fbed45b0afbd73fbd6bdd22f1f8f7644244f7c\" integrity sha512-h9gdzCl3jGSrq7FoZ+e0qWdSYhhKA3hkyuIMelYWIMz8HihxbLAZHErYKtYyDhgXRLNM2ZpS1sjeXLrDC7m2dA== xterm@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.30.tgz#6f50796d1652a61b30eeed7fa2bdd9c485a7d8ee\" integrity sha512-l1YBwMnakKXd638oxbzEg9Y1sWqxcrm/q7i5gBuWaK8N7Tq1NvF51FCamxXtfdL4dostgw8WoM+/6KRlL53t6A== xterm@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.33.tgz#584fb261ec283573ddb9d3ef4b3ea63a9a359f81\" integrity sha512-HIkQgn0/akWLWLzUJquAeVF1/nqPgqL6KzmhkAOJbOtNHftNZbEK+lDGfzz1dUC/smpXQkKm7X2nn92h3i1tgQ== y18n@^3.2.1: version \"3.2.2\""} {"_id":"q-en-vscode-16afe64d4cd55ec2884390fe89114d869ffd6077117f5cab81a830465770c1a8","text":"import { IFileMatch, IFileSearchProviderStats, IFolderQuery, ISearchCompleteStats, IFileQuery, QueryGlobTester, resolvePatternsForProvider, hasSiblingFn, excludeToGlobPattern, DEFAULT_MAX_SEARCH_RESULTS } from 'vs/workbench/services/search/common/search'; import { FileSearchProviderFolderOptions, FileSearchProviderNew, FileSearchProviderOptions } from 'vs/workbench/services/search/common/searchExtTypes'; import { TernarySearchTree } from 'vs/base/common/ternarySearchTree'; import { Disposable } from 'vs/base/common/lifecycle'; import { OldFileSearchProviderConverter } from 'vs/workbench/services/search/common/searchExtConversionTypes'; interface IInternalFileMatch { base: URI;"} {"_id":"q-en-vscode-16ec75c72dc505571d0a72d501ec83dbcf0dbc61f2b917bf853c367cb4949892","text":"import * as vscode from 'vscode'; import * as nls from 'vscode-nls'; import { Utils } from 'vscode-uri'; import { Command } from '../commandManager'; import { createUriListSnippet, getParentDocumentUri, imageFileExtensions } from '../languageFeatures/dropIntoEditor'; import { coalesce } from '../util/arrays';"} {"_id":"q-en-vscode-16feb4a9601a806d4143501edac795686b28c32d0ca9f3b575c726f64b79cd90","text":"import { Registry } from 'vs/platform/registry/common/platform'; import { TreeView, TreeViewPane } from 'vs/workbench/browser/parts/views/treeView'; import { Extensions, ITreeItem, ITreeViewDataProvider, ITreeViewDescriptor, IViewsRegistry, TreeItemCollapsibleState, TreeViewItemHandleArg, ViewContainer } from 'vs/workbench/common/views'; import { EDIT_SESSIONS_SCHEME, EDIT_SESSIONS_TITLE, IEditSessionsWorkbenchService } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { EDIT_SESSIONS_SCHEME, EDIT_SESSIONS_SHOW_VIEW, EDIT_SESSIONS_SIGNED_IN, EDIT_SESSIONS_TITLE, IEditSessionsWorkbenchService } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { URI } from 'vs/base/common/uri'; import { fromNow } from 'vs/base/common/date'; import { Codicon } from 'vs/base/common/codicons';"} {"_id":"q-en-vscode-171ce414ff754376d8adbd656734ba3858b7e9840635231cee3237056f876cac","text":" [{\"id\":\"AI_ClearCaptureImportanceBonus\",\"kind\":2,\"label\":\"AI_ClearCaptureImportanceBonus\",\"documentation\":\"This clears the importance bonus on this capture point \"},{\"id\":\"AI_ClearImportance\",\"kind\":2,\"label\":\"AI_ClearImportance\",\"documentation\":\"This clears the importance override on this military point \"},{\"id\":\"AI_CreateObjective\",\"kind\":2,\"label\":\"AI_CreateObjective\",\"documentation\":\"Create a new objective for player \"},{\"id\":\"AI_DebugAttackEncounterPositionScoringEnable\",\"kind\":2,\"label\":\"AI_DebugAttackEncounterPositionScoringEnable\",\"documentation\":\"Enables/disables debugging of AI Attack Objective Encounter Position Scoring \"},{\"id\":\"AI_DebugAttackEncounterPositionScoringIsEnabled\",\"kind\":2,\"label\":\"AI_DebugAttackEncounterPositionScoringIsEnabled\",\"documentation\":\"Returns true if AI Attack Objective Encounter Position Scoring is enabled \"},{\"id\":\"AI_DebugLuaEnable\",\"kind\":2,\"label\":\"AI_DebugLuaEnable\",\"documentation\":\"Enables/disables AI Lua Debugging \"},{\"id\":\"AI_DebugLuaIsEnabled\",\"kind\":2,\"label\":\"AI_DebugLuaIsEnabled\",\"documentation\":\"Returns true if AI Lua Debugging is enabled \"},{\"id\":\"AI_DebugRatingEnable\",\"kind\":2,\"label\":\"AI_DebugRatingEnable\",\"documentation\":\"Enables/disables AI Construction Debugging \"},{\"id\":\"AI_DebugRatingIsEnabled\",\"kind\":2,\"label\":\"AI_DebugRatingIsEnabled\",\"documentation\":\"Returns true if AI Construction Debugging is enabled \"},{\"id\":\"AI_DebugRenderAllTaskChildrenEnable\",\"kind\":2,\"label\":\"AI_DebugRenderAllTaskChildrenEnable\",\"documentation\":\"Enables/disables AI Rendering of All Task Children \"},{\"id\":\"AI_DebugRenderAllTaskChildrenIsEnabled\",\"kind\":2,\"label\":\"AI_DebugRenderAllTaskChildrenIsEnabled\",\"documentation\":\"Returns true if AI Rendering of All Task Children is enabled \"},{\"id\":\"AI_DebugSkirmishCaptureEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishCaptureEnable\",\"documentation\":\"Enables/disables AI Skirmish Capture Debugging \"},{\"id\":\"AI_DebugSkirmishCaptureIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishCaptureIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Capture Debugging is enabled \"},{\"id\":\"AI_DebugSkirmishCombatTargetEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishCombatTargetEnable\",\"documentation\":\"Enables/disables AI Skirmish Combat Target Debugging \"},{\"id\":\"AI_DebugSkirmishCombatTargetIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishCombatTargetIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Combat Target Debugging is enabled \"},{\"id\":\"AI_DebugSkirmishObjectiveEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishObjectiveEnable\",\"documentation\":\"Enables/disables AI Skirmish Objective Debugging \"},{\"id\":\"AI_DebugSkirmishObjectiveIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishObjectiveIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Objective Debugging is enabled \"},{\"id\":\"AI_DisableAllEconomyOverrides\",\"kind\":2,\"label\":\"AI_DisableAllEconomyOverrides\",\"documentation\":\"Disable all of the economy overrides for the AI player \"},{\"id\":\"AI_Enable\",\"kind\":2,\"label\":\"AI_Enable\",\"documentation\":\"Enables or Disables an AI player \"},{\"id\":\"AI_EnableAll\",\"kind\":2,\"label\":\"AI_EnableAll\",\"documentation\":\"Enables or Disables all AI players \"},{\"id\":\"AI_EnableEconomyOverride\",\"kind\":2,\"label\":\"AI_EnableEconomyOverride\",\"documentation\":\"Enable or disable the economy override for the AI player \"},{\"id\":\"AI_GetDifficulty\",\"kind\":2,\"label\":\"AI_GetDifficulty\",\"documentation\":\"Gets the difficulty level of this AI player nLevels can be one of: AD_Easy, AD_Standard, AD_Hard, AD_Hardest\"},{\"id\":\"AI_GetPersonality\",\"kind\":2,\"label\":\"AI_GetPersonality\",\"documentation\":\"Get the personality name of this AI player \"},{\"id\":\"AI_GetPersonalityLuaFileName\",\"kind\":2,\"label\":\"AI_GetPersonalityLuaFileName\",\"documentation\":\"Get the personality lua file name of this AI player \"},{\"id\":\"AI_IsAIPlayer\",\"kind\":2,\"label\":\"AI_IsAIPlayer\",\"documentation\":\"Returns true if player is an AI player \"},{\"id\":\"AI_IsEnabled\",\"kind\":2,\"label\":\"AI_IsEnabled\",\"documentation\":\"Returns true if player is a AIPlayer and is enabled \"},{\"id\":\"AI_LockEntity\",\"kind\":2,\"label\":\"AI_LockEntity\",\"documentation\":\"Locks the entity and disables its tactics (if any) and the AI will no longer use this object \"},{\"id\":\"AI_LockSquad\",\"kind\":2,\"label\":\"AI_LockSquad\",\"documentation\":\"Locks the squad and disables its tactics (if any) and the AI will no longer use this object \"},{\"id\":\"AI_LockSquads\",\"kind\":2,\"label\":\"AI_LockSquads\",\"documentation\":\"Locks the squads and disables its tactics (if any) and the AI will no longer use these objects \"},{\"id\":\"AI_RestoreDefaultPersonalitySettings\",\"kind\":2,\"label\":\"AI_RestoreDefaultPersonalitySettings\",\"documentation\":\"Restores the default personality and difficulty settings of this AI player \"},{\"id\":\"AI_SetCaptureImportanceBonus\",\"kind\":2,\"label\":\"AI_SetCaptureImportanceBonus\",\"documentation\":\"This sets importance bonus of the given capture point \"},{\"id\":\"AI_SetDifficulty\",\"kind\":2,\"label\":\"AI_SetDifficulty\",\"documentation\":\"Set the difficulty level of this AI player nLevels can be one of: AD_Easy, AD_Standard, AD_Hard, AD_Hardest\"},{\"id\":\"AI_SetImportance\",\"kind\":2,\"label\":\"AI_SetImportance\",\"documentation\":\"This overrides the default importance of the given military point \"},{\"id\":\"AI_SetPersonality\",\"kind\":2,\"label\":\"AI_SetPersonality\",\"documentation\":\"Set the personality name of this AI player \"},{\"id\":\"AI_UnlockAll\",\"kind\":2,\"label\":\"AI_UnlockAll\",\"documentation\":\"Unlocks all designer locked squads for player \"},{\"id\":\"AI_UnlockEntity\",\"kind\":2,\"label\":\"AI_UnlockEntity\",\"documentation\":\"Unlocks this entity so that AI can use it again \"},{\"id\":\"AI_UnlockSquad\",\"kind\":2,\"label\":\"AI_UnlockSquad\",\"documentation\":\"Unlocks the given squad so the AI can use it again \"},{\"id\":\"AI_UnlockSquads\",\"kind\":2,\"label\":\"AI_UnlockSquads\",\"documentation\":\"Locks the squads and disables its tactics (if any) and the AI will no longer use these objects \"},{\"id\":\"AI_UpdateStatics\",\"kind\":2,\"label\":\"AI_UpdateStatics\",\"documentation\":\"Re-updates the AI in regards to all the static objects in the world (if SCAR creates new strategic points dynamically this will need to be called) \"},{\"id\":\"AIAbilityObjective_AbilityGuidance_SetAbilityPBG\",\"kind\":2,\"label\":\"AIAbilityObjective_AbilityGuidance_SetAbilityPBG\",\"documentation\":\"Set ability for ability objective \"},{\"id\":\"AIObjective_Cancel\",\"kind\":2,\"label\":\"AIObjective_Cancel\",\"documentation\":\"Ends the objective and deletes it. \"},{\"id\":\"AIObjective_CombatGuidance_EnableCombatGarrison\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_EnableCombatGarrison\",\"documentation\":\"Enables/disables squads in combat garrisoning. \"},{\"id\":\"AIObjective_CombatGuidance_EnableRetaliateAttacks\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_EnableRetaliateAttacks\",\"documentation\":\"Enables/disables allowing squads to retaliate against attacking enemies outside the allowed leash area \"},{\"id\":\"AIObjective_CombatGuidance_SetRetaliateAttackTargetAreaRadius\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_SetRetaliateAttackTargetAreaRadius\",\"documentation\":\"Sets the target area radius for the maximum range an enemy can be for a retaliate attack \"},{\"id\":\"AIObjective_DefenseGuidance_AddFacingPosition\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_AddFacingPosition\",\"documentation\":\"Add facing position to objective; used to determine good defensive setup positions. \"},{\"id\":\"AIObjective_DefenseGuidance_EnableIdleGarrison\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_EnableIdleGarrison\",\"documentation\":\"Enables/disables idle squads garrisoning. \"},{\"id\":\"AIObjective_DefenseGuidance_ResetFacingPositions\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_ResetFacingPositions\",\"documentation\":\"Remove all facing positions from objective. \"},{\"id\":\"AIObjective_EngagementGuidance_EnableAggressiveEngagementMove\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_EnableAggressiveEngagementMove\",\"documentation\":\"Enable / disable aggressive move into engagement area \"},{\"id\":\"AIObjective_EngagementGuidance_SetAllowReturnToPreviousStages\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetAllowReturnToPreviousStages\",\"documentation\":\"Enable objective to return to previous stages if they fail to meet conditions for current stage. \"},{\"id\":\"AIObjective_EngagementGuidance_SetCoordinatedSetup\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetCoordinatedSetup\",\"documentation\":\"Enable coordinated arrival or setup of squads at engagement area. \"},{\"id\":\"AIObjective_EngagementGuidance_SetMaxEngagementTime\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetMaxEngagementTime\",\"documentation\":\"Sets max time, in seconds, to accomplish objective, once the target is engaged. \"},{\"id\":\"AIObjective_EngagementGuidance_SetMaxIdleTime\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetMaxIdleTime\",\"documentation\":\"Sets max time, in seconds, to remain idle at objective target, once engaged. \"},{\"id\":\"AIObjective_FallbackGuidance_EnableRetreatOnPinned\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_EnableRetreatOnPinned\",\"documentation\":\"Enable retreat to break supression. \"},{\"id\":\"AIObjective_FallbackGuidance_EnableRetreatOnSuppression\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_EnableRetreatOnSuppression\",\"documentation\":\"Enable retreat to break supression. \"},{\"id\":\"AIObjective_FallbackGuidance_SetEntitiesRemainingThreshold\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetEntitiesRemainingThreshold\",\"documentation\":\"Set entities remaining threshold of encounter [0-N] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackCapacityPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackCapacityPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackCombatRatingPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackCombatRatingPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackSquadHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackSquadHealthPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackVehicleHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackVehicleHealthPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetGlobalFallbackPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetGlobalFallbackPercentage\",\"documentation\":\"Set global fallback threshold (0.0f for individual squad). \"},{\"id\":\"AIObjective_FallbackGuidance_SetGlobalFallbackRetreat\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetGlobalFallbackRetreat\",\"documentation\":\"Set global retreat type (true for retreat; false for fallback). \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatCapacityPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatCapacityPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatCombatRatingPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatCombatRatingPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatHealthPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetTargetPosition\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetTargetPosition\",\"documentation\":\"Set fallback target. \"},{\"id\":\"AIObjective_IsValid\",\"kind\":2,\"label\":\"AIObjective_IsValid\",\"documentation\":\"Determines if objective is still valid. Must be true before calling any other of the AIObjective_* function. Return true if valid, false otherwise. \"},{\"id\":\"AIObjective_MoveGuidance_EnableAggressiveMove\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_EnableAggressiveMove\",\"documentation\":\"Enable / disable aggressive movements on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_ResetPathingLengthFactor\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_ResetPathingLengthFactor\",\"documentation\":\"Reset preference for shorter paths on way to engagement targets, to defaults \"},{\"id\":\"AIObjective_MoveGuidance_ResetSafePathingWeight\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_ResetSafePathingWeight\",\"documentation\":\"Reset preference for safe movements on way to engagement targets, to defaults \"},{\"id\":\"AIObjective_MoveGuidance_SetPathingLengthFactor\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetPathingLengthFactor\",\"documentation\":\"Set preference for shorter paths on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_SetSafePathingWeight\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetSafePathingWeight\",\"documentation\":\"Set preference for safe movements on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_SetSquadCoherenceRadius\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetSquadCoherenceRadius\",\"documentation\":\"Set radius (follow distance) for coordinated move phase (<= 0 disables coordinated movement) \"},{\"id\":\"AIObjective_Notify_ClearCallbacks\",\"kind\":2,\"label\":\"AIObjective_Notify_ClearCallbacks\",\"documentation\":\"Clears all notification callbacks for objective \"},{\"id\":\"AIObjective_Notify_SetPlayerEventObjectiveID\",\"kind\":2,\"label\":\"AIObjective_Notify_SetPlayerEventObjectiveID\",\"documentation\":\"Sets the ID for the notification event sent out by objective \"},{\"id\":\"AIObjective_ResourceGuidance_ClearSquads\",\"kind\":2,\"label\":\"AIObjective_ResourceGuidance_ClearSquads\",\"documentation\":\"Removes all resource squads from objective. \"},{\"id\":\"AIObjective_ResourceGuidance_SquadGroup\",\"kind\":2,\"label\":\"AIObjective_ResourceGuidance_SquadGroup\",\"documentation\":\"Sets the resource squads for objective. \"},{\"id\":\"AIObjective_SetName\",\"kind\":2,\"label\":\"AIObjective_SetName\",\"documentation\":\"Set objective name for debugging. \"},{\"id\":\"AIObjective_TacticFilter_DisableAbility\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_DisableAbility\",\"documentation\":\"Disable ability for all squads in objective \"},{\"id\":\"AIObjective_TacticFilter_DisableAbilityForSquadGroup\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_DisableAbilityForSquadGroup\",\"documentation\":\"Disable ability for squads in objective \"},{\"id\":\"AIObjective_TacticFilter_EnableCloseGround\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_EnableCloseGround\",\"documentation\":\"Enable close ground behaviour (3-stage TACTIC_RushAtTarget) for all squads in objective, running at priority (1..1000) \"},{\"id\":\"AIObjective_TacticFilter_Reset\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_Reset\",\"documentation\":\"Reset all tactic filters for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetAbilityGuidance\",\"documentation\":\"Reset all tactic ability constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetPriority\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetPriority\",\"documentation\":\"Reset tactic priority for all squads in objective \"},{\"id\":\"AIObjective_TacticFilter_ResetTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetTacticGuidance\",\"documentation\":\"Reset all tactic constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetTargetGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetTargetGuidance\",\"documentation\":\"Reset all tactic target constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetAbilityGuidance\",\"documentation\":\"Set tactic ability constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultAbilityGuidance\",\"documentation\":\"Set default tactic ability constraints for objective (ability specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultTacticGuidance\",\"documentation\":\"Set default tactic constraints for objective (tactic specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultTargetGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultTargetGuidance\",\"documentation\":\"Set default target constraints for objective (target specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetPriority\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetPriority\",\"documentation\":\"Set tactic priority for all squads in objective; negative priority disables \"},{\"id\":\"AIObjective_TacticFilter_SetPriorityForSquadGroup\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetPriorityForSquadGroup\",\"documentation\":\"Set tactic priority for squads in objective \"},{\"id\":\"AIObjective_TacticFilter_SetTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetTacticGuidance\",\"documentation\":\"Set tactic constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetTargetPolicy\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetTargetPolicy\",\"documentation\":\"Set tactic target priority for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetArea\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetArea\",\"documentation\":\"Sets engagement area radius around the target. \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetEntity\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetEntity\",\"documentation\":\"Sets target Entity for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetLeash\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetLeash\",\"documentation\":\"Sets leash radius around target where squads should stay within. \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPathByName\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPathByName\",\"documentation\":\"Sets target patrol path for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPathWander\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPathWander\",\"documentation\":\"Sets random wander target patrol for objective; delaySecs is the time in secs to pause at each random point \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPosition\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPosition\",\"documentation\":\"Sets target position for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetSquad\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetSquad\",\"documentation\":\"Sets target Squad for objective \"},{\"id\":\"BeginnerHint_AddOpportunity\",\"kind\":2,\"label\":\"BeginnerHint_AddOpportunity\",\"documentation\":\"Add an opportunity that may get highlighted by the hint manager system on easier difficulty modes. THIS IS NOT MP-SAFE! \"},{\"id\":\"BeginnerHint_RemoveAllOpportunities\",\"kind\":2,\"label\":\"BeginnerHint_RemoveAllOpportunities\",\"documentation\":\"Remove all opportunities in one fell swoop! \"},{\"id\":\"BeginnerHint_RemoveOpportunity\",\"kind\":2,\"label\":\"BeginnerHint_RemoveOpportunity\",\"documentation\":\"Remove an opportunity, either by ID or all opportunities at a location \"},{\"id\":\"BP_GetAbilityBlueprint\",\"kind\":2,\"label\":\"BP_GetAbilityBlueprint\",\"documentation\":\"Returns an ability property bag group. \"},{\"id\":\"BP_GetCamouflageStanceBlueprint\",\"kind\":2,\"label\":\"BP_GetCamouflageStanceBlueprint\",\"documentation\":\"Returns a camouflage stance property bag group. \"},{\"id\":\"BP_GetCriticalBlueprint\",\"kind\":2,\"label\":\"BP_GetCriticalBlueprint\",\"documentation\":\"Returns a critical property bag group. \"},{\"id\":\"BP_GetEntityBlueprint\",\"kind\":2,\"label\":\"BP_GetEntityBlueprint\",\"documentation\":\"Returns an entity property bag group. \"},{\"id\":\"BP_GetID\",\"kind\":2,\"label\":\"BP_GetID\",\"documentation\":\"Returns an ID that uniquely identifies this pbg \"},{\"id\":\"BP_GetMoveTypeBlueprint\",\"kind\":2,\"label\":\"BP_GetMoveTypeBlueprint\",\"documentation\":\"Returns a move type property bag group. \"},{\"id\":\"BP_GetName\",\"kind\":2,\"label\":\"BP_GetName\",\"documentation\":\"Return the short name of the group nExample name would be \"ally_mad_minute_ability\"\"},{\"id\":\"BP_GetPropertyBagGroupCount\",\"kind\":2,\"label\":\"BP_GetPropertyBagGroupCount\",\"documentation\":\"Return the number of property bag groups of the same type nExample type would be PBG_Critical\"},{\"id\":\"BP_GetPropertyBagGroupPathName\",\"kind\":2,\"label\":\"BP_GetPropertyBagGroupPathName\",\"documentation\":\"Return the path name of the group at the specified index nExample name would be \"abilitiesally_mad_minute_ability\"\"},{\"id\":\"BP_GetSlotItemBlueprint\",\"kind\":2,\"label\":\"BP_GetSlotItemBlueprint\",\"documentation\":\"Returns a slot item property bag group. \"},{\"id\":\"BP_GetSquadBlueprint\",\"kind\":2,\"label\":\"BP_GetSquadBlueprint\",\"documentation\":\"Returns a squad property bag group. \"},{\"id\":\"BP_GetUpgradeBlueprint\",\"kind\":2,\"label\":\"BP_GetUpgradeBlueprint\",\"documentation\":\"Returns an upgrade property bag group. \"},{\"id\":\"BP_GetWeaponBlueprint\",\"kind\":2,\"label\":\"BP_GetWeaponBlueprint\",\"documentation\":\"Returns a weapon property bag group. \"},{\"id\":\"EBP_Exists\",\"kind\":2,\"label\":\"EBP_Exists\",\"documentation\":\"Returns true if an entity blueprint exists with the given name. \"},{\"id\":\"SBP_Exists\",\"kind\":2,\"label\":\"SBP_Exists\",\"documentation\":\"Returns true if a squad blueprint exists with the given name. \"},{\"id\":\"Camera_CyclePositions\",\"kind\":2,\"label\":\"Camera_CyclePositions\",\"documentation\":\"Moves the camera through a list of positions. \"},{\"id\":\"Camera_Follow\",\"kind\":2,\"label\":\"Camera_Follow\",\"documentation\":\"Set the camera to follow an sgroup/squad/egroup/entity. nThe camera will follow them until the player takes control again.\"},{\"id\":\"Camera_MoveTo\",\"kind\":2,\"label\":\"Camera_MoveTo\",\"documentation\":\"Move the camera to an entity/marker/pos/egroup/sgroup/squad nThis function canNOT be called through a CTRL object in NISlets.\"},{\"id\":\"Camera_MoveToIfClose\",\"kind\":2,\"label\":\"Camera_MoveToIfClose\",\"documentation\":\"Slightly refocus the camera to rest on an entity/squad/squad/sgroup/egroup/pos/marker if it's close by. nThis function can be called through a CTRL object in NISlets.\"},{\"id\":\"Camera_SetDefault\",\"kind\":2,\"label\":\"Camera_SetDefault\",\"documentation\":\"Helper function to set the default camera parameters nIf the parameter is nil, the particular property is not modified\"},{\"id\":\"Cmd_AbandonTeamWeapon\",\"kind\":2,\"label\":\"Cmd_AbandonTeamWeapon\",\"documentation\":\"Order a squad group to abandon their current team weapon if they have it and they could (tuning value in attribute editor) \"},{\"id\":\"Cmd_Ability\",\"kind\":2,\"label\":\"Cmd_Ability\",\"documentation\":\"Sends an ability command to a player, egroup or sgroup. extra parameters are provided if the ability requires them. \"},{\"id\":\"Cmd_AttachSquads\",\"kind\":2,\"label\":\"Cmd_AttachSquads\",\"documentation\":\"Attach the squad from sgroupnameAttachee to sgroupname. Both SGroups must contain only one squad. \"},{\"id\":\"Cmd_Attack\",\"kind\":2,\"label\":\"Cmd_Attack\",\"documentation\":\"Issues an attack command to an SGroup \"},{\"id\":\"Cmd_AttackMove\",\"kind\":2,\"label\":\"Cmd_AttackMove\",\"documentation\":\"Order a squad group to attack move to a position (anything whose position can be queried). can be queued, can follow a plan, can search for cover within a radius \"},{\"id\":\"Cmd_AttackMoveThenCapture\",\"kind\":2,\"label\":\"Cmd_AttackMoveThenCapture\",\"documentation\":\"Command attacker sgroup to attack move to strategic point target; when it is capturable, the sgroup would capture it \"},{\"id\":\"Cmd_CaptureTeamWeapon\",\"kind\":2,\"label\":\"Cmd_CaptureTeamWeapon\",\"documentation\":\"Order a squad group to capture team weapon entity group. \"},{\"id\":\"Cmd_Construct\",\"kind\":2,\"label\":\"Cmd_Construct\",\"documentation\":\"Orders a squad to contruct a building at specified position, or to continue construction on an existing building. nThe command also checks to see if a building already exists at the location, and the squad will continue building it, if it is of the correct type.\"},{\"id\":\"Cmd_CriticalHit\",\"kind\":2,\"label\":\"Cmd_CriticalHit\",\"documentation\":\"Applies critical hit to entity/squad/sgroup/egroup nPlayer id doesn't have to be the owner as the applied entities but need to make sure the player is still alive\"},{\"id\":\"Cmd_DetonateDemolitions\",\"kind\":2,\"label\":\"Cmd_DetonateDemolitions\",\"documentation\":\"Detonates a building's demolitions \"},{\"id\":\"Cmd_EjectOccupants\",\"kind\":2,\"label\":\"Cmd_EjectOccupants\",\"documentation\":\"Orders an EGroup or SGroup to kick out its occupants. If no position is specified, the occupants stay at the exit. \"},{\"id\":\"Cmd_Garrison\",\"kind\":2,\"label\":\"Cmd_Garrison\",\"documentation\":\"Order a squad group to load at a random entity or squad of the group noverload is a flag that will allow the hold entity to ignore maximum slot check\"},{\"id\":\"Cmd_InstantReinforceUnit\",\"kind\":2,\"label\":\"Cmd_InstantReinforceUnit\",\"documentation\":\"Sends a instant reinforce command to all squads in a group. count represents the number of commands to send. nNote: This function bypasses pre-reqs, costs and the production queue\"},{\"id\":\"Cmd_InstantReinforceUnitPos\",\"kind\":2,\"label\":\"Cmd_InstantReinforceUnitPos\",\"documentation\":\"Sends a instant reinforce command to all squads in a group. count represents the number of commands to send. spawnlocation is where the reinforced unit will spawn. You can optionally find a hidden position by specifying a checktype (CHECK_OFFCAMERA, CHECK_IN_FOW or CHECK_BOTH), and what to do if a hidden position can't be found (SPAWN_ATMARKER, SPAWN_ATSQUAD, or DO_NOTHING) - SPAWN_ATMARKER is the default. nNote: This function bypasses pre-reqs and costs and the production queue\"},{\"id\":\"Cmd_InstantSetupTeamWeapon\",\"kind\":2,\"label\":\"Cmd_InstantSetupTeamWeapon\",\"documentation\":\"Order a squad group to instant setup their team weapon \"},{\"id\":\"Cmd_InstantUpgrade\",\"kind\":2,\"label\":\"Cmd_InstantUpgrade\",\"documentation\":\"Sends an instant upgrade command to a player, egroup or sgroup. accepts a single upgrade or table of upgrades. \"},{\"id\":\"Cmd_Move\",\"kind\":2,\"label\":\"Cmd_Move\",\"documentation\":\"Move a squad group to a given position. nSupports facing, 'offset' movement, and can find cover. The sgroup can be deleted when in proximity of a marker (it assumes a proximity of 5 if you forget to set one on the marker)\"},{\"id\":\"Cmd_MoveAwayFromPos\",\"kind\":2,\"label\":\"Cmd_MoveAwayFromPos\",\"documentation\":\"Move a squad group out of a position to a certain radius nAll squads in the group will move away from the centre position from its current position\"},{\"id\":\"Cmd_MoveToAndDespawn\",\"kind\":2,\"label\":\"Cmd_MoveToAndDespawn\",\"documentation\":\"Moves a squad group to the indicated Marker and destroys it. \"},{\"id\":\"Cmd_MoveToClosestMarker\",\"kind\":2,\"label\":\"Cmd_MoveToClosestMarker\",\"documentation\":\"Moves a squad group to the closest marker in a list/table of MarkerIDs. \"},{\"id\":\"Cmd_MoveToThenCapture\",\"kind\":2,\"label\":\"Cmd_MoveToThenCapture\",\"documentation\":\"Command attacker sgroup to attack move to strategic point target; when it is capturable, the sgroup would capture it \"},{\"id\":\"Cmd_RecrewVehicle\",\"kind\":2,\"label\":\"Cmd_RecrewVehicle\",\"documentation\":\"Order a squad group to recrew an abandoned vehicle. \"},{\"id\":\"Cmd_ReinforceUnit\",\"kind\":2,\"label\":\"Cmd_ReinforceUnit\",\"documentation\":\"Sends a reinforce command to all squads in a group. count represents the number of commands to send. nNote: To reinforce squad bypassing the pre-reqs and costs use Cmd_InstantReinforceUnit.\"},{\"id\":\"Cmd_ReinforceUnitPos\",\"kind\":2,\"label\":\"Cmd_ReinforceUnitPos\",\"documentation\":\"Sends a reinforce command to all squads in a group. count represents the number of commands to send. spawnlocation is where the reinforced unit will spawn. You can optionally find a hidden position by specifying a checktype (CHECK_OFFCAMERA, CHECK_IN_FOW or CHECK_BOTH), and what to do if a hidden position can't be found (SPAWN_ATMARKER, SPAWN_ATSQUAD, or DO_NOTHING) - SPAWN_ATMARKER is the default. nTo reinforce squads bypassing the pre-reqs and costs use Cmd_InstantReinforceUnit \"},{\"id\":\"Cmd_Retreat\",\"kind\":2,\"label\":\"Cmd_Retreat\",\"documentation\":\"Order a squad group to retreat, optionally to a specific location. The sgroup can be deleted when in proximity of a marker (it assumes a proximity of 5 if you forget to set one on the marker) nvulnerableRetreat will make retreating squads take more damage\"},{\"id\":\"Cmd_RevertOccupiedBuilding\",\"kind\":2,\"label\":\"Cmd_RevertOccupiedBuilding\",\"documentation\":\"Order a squad group to revert occupied building \"},{\"id\":\"Cmd_SetDemolitions\",\"kind\":2,\"label\":\"Cmd_SetDemolitions\",\"documentation\":\"Orders a squad group to place demolition charges on a building (egroup). Function does nothing if egroup cannot be detonated, or player can't afford the demolitions \"},{\"id\":\"Cmd_SquadCamouflageStance\",\"kind\":2,\"label\":\"Cmd_SquadCamouflageStance\",\"documentation\":\"Sends an camouflage stance command to all squads in a group. stanceid should be the number returned by Util_GetCamouflageStanceID( stancename ) \"},{\"id\":\"Cmd_SquadPath\",\"kind\":2,\"label\":\"Cmd_SquadPath\",\"documentation\":\"Send a command to the squad to follow a path. Can wait at each waypoint. The sgroup can be deleted when in proximity of a marker if you pass in the marker as the 7th argument (it assumes a proximity of 5 if you forget to set one on the marker) nloop can be: LOOP_NONE, LOOP_NORMAL, LOOP_TOGGLE_DIRECTION\"},{\"id\":\"Cmd_SquadPatrolMarker\",\"kind\":2,\"label\":\"Cmd_SquadPatrolMarker\",\"documentation\":\"Causes a squad to patrol a marker attacking any enemies that come within its radius. If used on circular markers, the radius must be at least 5. To stop the squad from patrolling the marker, use Cmd_Stop. \"},{\"id\":\"Cmd_StaggeredRetreat\",\"kind\":2,\"label\":\"Cmd_StaggeredRetreat\",\"documentation\":\"Retreats large numbers of units in a staggered, realistic manner. nvulnerableRetreat will make retreating squads take more damage\"},{\"id\":\"Cmd_Stop\",\"kind\":2,\"label\":\"Cmd_Stop\",\"documentation\":\"Sends a stop command to egroup or sgroup. \"},{\"id\":\"Cmd_Surrender\",\"kind\":2,\"label\":\"Cmd_Surrender\",\"documentation\":\"Orders a squad to surrender and awards the local player with an appropriate number of action points nThe command will also overwrite the exit position as well, if you do not want the squads to exit at the map entry point.\"},{\"id\":\"Cmd_UngarrisonSquad\",\"kind\":2,\"label\":\"Cmd_UngarrisonSquad\",\"documentation\":\"Orders an sgroup to exit the building or vehicle that it's in. If no position is specified, the sgroup stays at the exit. \"},{\"id\":\"Cmd_Upgrade\",\"kind\":2,\"label\":\"Cmd_Upgrade\",\"documentation\":\"Sends an upgrade command to a player, egroup or sgroup. accepts a single upgrade or table of upgrades. \"},{\"id\":\"Command_Entity\",\"kind\":2,\"label\":\"Command_Entity\",\"documentation\":\" Send a entity command to a entity group(CMD_DefaultAction, CMD_Stop, CMD_Destroy, CMD_BuildSquad, CMD_CancelProduction, CMD_RallyPoint, CMD_AttackForced) n Entity commands are mostly used for buildings etc. If you need to issue commands to units, use the Squad_Command function.\"},{\"id\":\"Command_EntityAbility\",\"kind\":2,\"label\":\"Command_EntityAbility\",\"documentation\":\"Send an entity ability command (CMD_Ability) to an entity \"},{\"id\":\"Command_EntityBuildSquad\",\"kind\":2,\"label\":\"Command_EntityBuildSquad\",\"documentation\":\" Send a squad command to a entity group with custom data \"},{\"id\":\"Command_EntityEntity\",\"kind\":2,\"label\":\"Command_EntityEntity\",\"documentation\":\"Send a entity-based command to an entity group. n Use this function to issue orders that require a entity to an entity group (eg. order a building to attack another building)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityExt\",\"kind\":2,\"label\":\"Command_EntityExt\",\"documentation\":\" Send a squad command to a squad group with custom data \"},{\"id\":\"Command_EntityPos\",\"kind\":2,\"label\":\"Command_EntityPos\",\"documentation\":\"Send a position command to an entity group. n Use this function to issue orders that require a position to an entity group (eg. set a rally point for a building)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityPosAbility\",\"kind\":2,\"label\":\"Command_EntityPosAbility\",\"documentation\":\"Send a positional ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require a position to player\"},{\"id\":\"Command_EntityPosDirAbility\",\"kind\":2,\"label\":\"Command_EntityPosDirAbility\",\"documentation\":\"Send a positional/directional ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require a position and a direction to player\"},{\"id\":\"Command_EntityPosSquad\",\"kind\":2,\"label\":\"Command_EntityPosSquad\",\"documentation\":\"Send a dual target (position and squad) command to an entity group. n Use this function to issue orders that require a position and a squad to an entity group (eg. unloading squad from hold)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntitySquad\",\"kind\":2,\"label\":\"Command_EntitySquad\",\"documentation\":\"Send a squad-based command to an entity group. n Use this function to issue orders that require a squad to an entity group (eg. order a building to attack a squad)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityTargetEntityAbility\",\"kind\":2,\"label\":\"Command_EntityTargetEntityAbility\",\"documentation\":\"Send an entity-targeting ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require an entity target to an entity\"},{\"id\":\"Command_EntityTargetSquadAbility\",\"kind\":2,\"label\":\"Command_EntityTargetSquadAbility\",\"documentation\":\"Send an squad-targeting ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require an entity target to an entity\"},{\"id\":\"Command_EntityUpgrade\",\"kind\":2,\"label\":\"Command_EntityUpgrade\",\"documentation\":\" Send a squad command to a entity group with custom data \"},{\"id\":\"Command_Player\",\"kind\":2,\"label\":\"Command_Player\",\"documentation\":\" Send a player command to a player n PCMD_Ability\"},{\"id\":\"Command_PlayerAbility\",\"kind\":2,\"label\":\"Command_PlayerAbility\",\"documentation\":\"Send a player ability command (PCMD_Ability) to a player \"},{\"id\":\"Command_PlayerEntity\",\"kind\":2,\"label\":\"Command_PlayerEntity\",\"documentation\":\"Send an entity command to a player. \"},{\"id\":\"Command_PlayerEntityCriticalHit\",\"kind\":2,\"label\":\"Command_PlayerEntityCriticalHit\",\"documentation\":\" Send a player command to itself to act upon single with custom parameter and index data (PCMD_CriticalHit) n This is a special command for SCAR and debug feature\"},{\"id\":\"Command_PlayerExt\",\"kind\":2,\"label\":\"Command_PlayerExt\",\"documentation\":\" Send a player command to a player with a custom flag \"},{\"id\":\"Command_PlayerPos\",\"kind\":2,\"label\":\"Command_PlayerPos\",\"documentation\":\"Send a position command to a player. n Use this function to issue orders that require a position to player)<BR/> See Command_Player for a list of all the possible playerCommands.\"},{\"id\":\"Command_PlayerPosAbility\",\"kind\":2,\"label\":\"Command_PlayerPosAbility\",\"documentation\":\"Send a positional ability command (PCMD_Ability) to a player n Use this function to issue ability orders that require a position to player\"},{\"id\":\"Command_PlayerPosDirAbility\",\"kind\":2,\"label\":\"Command_PlayerPosDirAbility\",\"documentation\":\"Send a positional/directional ability command (PCMD_Ability) to a player n Use this function to issue ability orders that require a position and a direction to player\"},{\"id\":\"Command_PlayerPosExt\",\"kind\":2,\"label\":\"Command_PlayerPosExt\",\"documentation\":\"Send a position command to a player with extra info n Use this function to issue orders that require a position to player<BR/> See Command_Player for a list of all the possible playerCommands.\"},{\"id\":\"Command_PlayerSquadConstructBuilding\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructBuilding\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct the building at specific position and facing nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadConstructFence\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructFence\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct fences from posStart to posEnd nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadConstructField\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructField\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct a field ranging from posStart to posEnd nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadCriticalHit\",\"kind\":2,\"label\":\"Command_PlayerSquadCriticalHit\",\"documentation\":\" Send a player command to itself to act upon all entities in the sgroup with custom parameter and index data (PCMD_CriticalHit) n This is a special command for SCAR & debug use\"},{\"id\":\"Command_PlayerUpgrade\",\"kind\":2,\"label\":\"Command_PlayerUpgrade\",\"documentation\":\"Sends an upgrade command to a player \"},{\"id\":\"Command_Squad\",\"kind\":2,\"label\":\"Command_Squad\",\"documentation\":\" Send a squad command to a squad group n SCMD_DefaultAction, SCMD_Move, SCMD_Stop, SCMD_Destroy, SCMD_BuildStructure, SCMD_Capture, SCMD_Attack, SCMD_ReinforceUnit, SCMD_Upgrade, SCMD_CancelProduction SCMD_AttackMove, SCMD_Ability SCMD_Load,SCMD_UnloadSquads, SCMD_DoPlan SCMD_SlotItemRemove, SCMD_InstantReinforceUnit, SCMD_InstantUpgrade\"},{\"id\":\"Command_SquadAbility\",\"kind\":2,\"label\":\"Command_SquadAbility\",\"documentation\":\"Send a ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadAttackMovePos\",\"kind\":2,\"label\":\"Command_SquadAttackMovePos\",\"documentation\":\"Send a position ATTACK MOVE command to a squad group with custom data \"},{\"id\":\"Command_SquadDoCustomPlan\",\"kind\":2,\"label\":\"Command_SquadDoCustomPlan\",\"documentation\":\"Send a custom squad AI plan command to the squad to execute the plan specified towards the position \"},{\"id\":\"Command_SquadDoCustomPlanTarget\",\"kind\":2,\"label\":\"Command_SquadDoCustomPlanTarget\",\"documentation\":\"Send a custom squad AI plan command to the squad to execute the plan specified towards the position \"},{\"id\":\"Command_SquadEntity\",\"kind\":2,\"label\":\"Command_SquadEntity\",\"documentation\":\"Send an entity command to a squad group. n Use this function to isssue an entity-based command to a squad group.<BR/> See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadEntityAbility\",\"kind\":2,\"label\":\"Command_SquadEntityAbility\",\"documentation\":\"Send a entity ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadEntityAttack\",\"kind\":2,\"label\":\"Command_SquadEntityAttack\",\"documentation\":\"Send an entity command ATTACK to a squad group. n Use this function to issue an entity-based command to a squad group with custom FOW check flag. (eg. order a squad to attack a building)<BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadEntityBool\",\"kind\":2,\"label\":\"Command_SquadEntityBool\",\"documentation\":\"Send a entity command to a squad group with custom BOOLEAN data \"},{\"id\":\"Command_SquadEntityExt\",\"kind\":2,\"label\":\"Command_SquadEntityExt\",\"documentation\":\"Send a entity command to a squad group with custom data \"},{\"id\":\"Command_SquadEntityLoad\",\"kind\":2,\"label\":\"Command_SquadEntityLoad\",\"documentation\":\"Send special squad command to a squad group with squad load parameters n This is a special command for loading squads into building (entity) holds (SCMD_Load, SCMD_InstantLoad)\"},{\"id\":\"Command_SquadExt\",\"kind\":2,\"label\":\"Command_SquadExt\",\"documentation\":\" Send a squad command to a squad group with custom data \"},{\"id\":\"Command_SquadMovePos\",\"kind\":2,\"label\":\"Command_SquadMovePos\",\"documentation\":\"Send a move to position command for a squad group. n Use this function to issue move orders that require a position to a squad group\"},{\"id\":\"Command_SquadMovePosFacing\",\"kind\":2,\"label\":\"Command_SquadMovePosFacing\",\"documentation\":\"Send a move-facing command to a squad group \"},{\"id\":\"Command_SquadPos\",\"kind\":2,\"label\":\"Command_SquadPos\",\"documentation\":\"Send a position command to a squad group. n Use this function to issue orders that require a position to a squad group (eg. order a squad to move to position, or attack position)<BR/> See Command_Squad for a list of all the possible squadCommands.\"},{\"id\":\"Command_SquadPosAbility\",\"kind\":2,\"label\":\"Command_SquadPosAbility\",\"documentation\":\"Send a positional ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadPosExt\",\"kind\":2,\"label\":\"Command_SquadPosExt\",\"documentation\":\"Send a position command to a squad group with custom data \"},{\"id\":\"Command_SquadPositionAttack\",\"kind\":2,\"label\":\"Command_SquadPositionAttack\",\"documentation\":\"Send an position command ATTACK to a squad group. n Use this function to issue an position-based command to a squad group with custom FOW check flag. (eg. order a squad to attack a building)<BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquad\",\"kind\":2,\"label\":\"Command_SquadSquad\",\"documentation\":\"Send an squad-based command to a squad group. n Use this function to issue a squad-based command to a squad group. <BR/> See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquadAbility\",\"kind\":2,\"label\":\"Command_SquadSquadAbility\",\"documentation\":\"Send a squad ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadSquadAttack\",\"kind\":2,\"label\":\"Command_SquadSquadAttack\",\"documentation\":\"Send an squad-based command to a squad group. n Use this function to issue a squad-based command to a squad group with special boolean flag. (eg. order a squad to attack another squad)<BR/> If bCheckFOW is set to false, the squad would be able to attack other squads hidden in FOW <BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquadExt\",\"kind\":2,\"label\":\"Command_SquadSquadExt\",\"documentation\":\"Send a squad command to a squad group with custom data \"},{\"id\":\"Command_SquadSquadLoad\",\"kind\":2,\"label\":\"Command_SquadSquadLoad\",\"documentation\":\"Send special squad command to a squad group with squad load parameters n This is a special command for loading squads into vehicle (squad) holds (SCMD_Load, SCMD_InstantLoad)\"},{\"id\":\"Command_SquadUpgrade\",\"kind\":2,\"label\":\"Command_SquadUpgrade\",\"documentation\":\"Sends an upgrade command to a squad group. \"},{\"id\":\"AutoCinematic\",\"kind\":2,\"label\":\"AutoCinematic\",\"documentation\":\"Toggles all cinematic related settings. true = go to cinematic, false = go back to normal \"},{\"id\":\"AutoReinforce_AddSGroup\",\"kind\":2,\"label\":\"AutoReinforce_AddSGroup\",\"documentation\":\"Adds an SGroup to the auto-reinforce functions \"},{\"id\":\"AutoReinforce_RemoveAll\",\"kind\":2,\"label\":\"AutoReinforce_RemoveAll\",\"documentation\":\"Stops monitoring all squads from the auto-reinforce functions \"},{\"id\":\"AutoReinforce_RemoveSGroup\",\"kind\":2,\"label\":\"AutoReinforce_RemoveSGroup\",\"documentation\":\"Removes an SGroup from the auto-reinforce functions \"},{\"id\":\"AutoRetreat_AddSGroup\",\"kind\":2,\"label\":\"AutoRetreat_AddSGroup\",\"documentation\":\"Sets an sgroup to retreat to the given destination or building once pinned for a certain duration, or reduced to a third of it's original size nThe optional threshold value should be a percentage (between 0.0 and 1.0) - when the member count drops below this, they retreat\"},{\"id\":\"AutoRetreat_RemoveAll\",\"kind\":2,\"label\":\"AutoRetreat_RemoveAll\",\"documentation\":\"Stops monitoring all squads from the auto-retreat functions \"},{\"id\":\"AutoRetreat_RemoveSGroup\",\"kind\":2,\"label\":\"AutoRetreat_RemoveSGroup\",\"documentation\":\"Removes a squad from being monitored by the auto-retreat functions \"},{\"id\":\"BridgeTerritory_Add\",\"kind\":2,\"label\":\"BridgeTerritory_Add\",\"documentation\":\"Add a bridge to the Bridge Territory Manager. nbridgepoint, bank1point and bank2point should be egroups each containing one territory flagnReferences: [Bridge+Territory+Manager]\"},{\"id\":\"Ceasefire_AddSGroup\",\"kind\":2,\"label\":\"Ceasefire_AddSGroup\",\"documentation\":\"Stops an SGroup from auto-targetting, until one of their members is explicity given an attack order or Ceasefire_RemoveSGroup() is called (at which point they all start firing again) nYou can optionally specify a function that will be called when the ceasefire is broken by the game (rather than by calling Ceasefire_RemoveSGroup)\"},{\"id\":\"Ceasefire_RemoveSGroup\",\"kind\":2,\"label\":\"Ceasefire_RemoveSGroup\",\"documentation\":\"Removes the ceasefire effect from an sgroup. This may already have been removed by issuing an attack order directly to the group. \"},{\"id\":\"FireTargettingArtillery\",\"kind\":2,\"label\":\"FireTargettingArtillery\",\"documentation\":\"Uses targettingData to determine if a target has moved or not and progressively homes-in on it. nSee DesignerLib.scar for details on targettingData values.\"},{\"id\":\"Game_DefaultGameRestore\",\"kind\":2,\"label\":\"Game_DefaultGameRestore\",\"documentation\":\"Restores various aspects of the single player game after loading a mission from a save game \"},{\"id\":\"Game_GetGameRestoreCallbackExists\",\"kind\":2,\"label\":\"Game_GetGameRestoreCallbackExists\",\"documentation\":\"Checks whether a callback \"},{\"id\":\"Game_RemoveGameRestoreCallback\",\"kind\":2,\"label\":\"Game_RemoveGameRestoreCallback\",\"documentation\":\"Removes a callback from being called on game restore \"},{\"id\":\"Game_SetGameRestoreCallback\",\"kind\":2,\"label\":\"Game_SetGameRestoreCallback\",\"documentation\":\"Adds a function and set of arguments to be automatically called during restore from a saved game. Maxiumum of 9 parameters. Callback will be called like this: Callback(arg[1], arg[2], ...) \"},{\"id\":\"Resources_Disable\",\"kind\":2,\"label\":\"Resources_Disable\",\"documentation\":\"Disables any resource income - useful to stop resources accruing during the opening movie \"},{\"id\":\"Resources_Enable\",\"kind\":2,\"label\":\"Resources_Enable\",\"documentation\":\"Re-enables resource income. \"},{\"id\":\"ShootTheSky_AddSyncWeapon\",\"kind\":2,\"label\":\"ShootTheSky_AddSyncWeapon\",\"documentation\":\"Forces a sync weapon to shoot at the sky, so long as it's manned by a given player. \"},{\"id\":\"ShootTheSky_RemoveAll\",\"kind\":2,\"label\":\"ShootTheSky_RemoveAll\",\"documentation\":\"Stops all sync weapons from going through their \"shooting at the sky\" routine. \"},{\"id\":\"ShootTheSky_RemoveSyncWeapon\",\"kind\":2,\"label\":\"ShootTheSky_RemoveSyncWeapon\",\"documentation\":\"Removes a sync weapon from the \"shoot at the sky\" system. It can then target people again. \"},{\"id\":\"SmokeEntrance_Do\",\"kind\":2,\"label\":\"SmokeEntrance_Do\",\"documentation\":\"Triggers smoke to come in from the map edge, at the position and direction of the given marker \"},{\"id\":\"Table_Contains\",\"kind\":2,\"label\":\"Table_Contains\",\"documentation\":\"Checks if a table contains the specified item \"},{\"id\":\"Table_Copy\",\"kind\":2,\"label\":\"Table_Copy\",\"documentation\":\"Copies the contents of the original table returns a new table with the contents of that table \"},{\"id\":\"Table_GetRandomItem\",\"kind\":2,\"label\":\"Table_GetRandomItem\",\"documentation\":\"Returns a random item from a table. You can return multiple items (without duplicates) by passing in an optional number parameter. \"},{\"id\":\"TeamWeapon_AddGroup\",\"kind\":2,\"label\":\"TeamWeapon_AddGroup\",\"documentation\":\"Add a gun to the gun manager. The manager will take care of turning it around to attack units. Turntime is how often the weapon can turn (default 10 seconds), Total Responses is how many times he will adjust before stopping. nIf you pass in an EGroup, it will automatically find or create a corresponding SGroup with sg_ instead of the eg_ prefix.nReferences: [AT+Gun+Manager]\"},{\"id\":\"TeamWeapon_RemoveDirections\",\"kind\":2,\"label\":\"TeamWeapon_RemoveDirections\",\"documentation\":\"Remove's the direction settings for a gun, turning it into a fire-at-anything type. nUse this if you are relocating a gun. Also removes any special first-trigger speech if you have any hooked up, as it may no longer be suitable if you're moving it.nReferences: [AT+Gun+Manager]\"},{\"id\":\"TeamWeapon_RemoveGroup\",\"kind\":2,\"label\":\"TeamWeapon_RemoveGroup\",\"documentation\":\"Remove a gun from the gun manager. nReferences: [AT+Gun+Manager]\"},{\"id\":\"EGroup_Add\",\"kind\":2,\"label\":\"EGroup_Add\",\"documentation\":\"Adds an entity to the end of a group if the group doesnt already have it. \"},{\"id\":\"EGroup_AddEGroup\",\"kind\":2,\"label\":\"EGroup_AddEGroup\",\"documentation\":\"Appends the entities in one group to another group. n All entities from 'grouptoadd' will be added to 'group'.<BR/> If 'group' already contains an entity from 'grouptoadd' it will not be added.<BR/> This function does not clear the contents of 'grouptoadd'.<BR/> Example: Add group2 (0, 10, 11, 22) to group1 (1, 11, 20) --> group1 would now be (1, 11, 20, 0, 10, 22)<BR/>\"},{\"id\":\"EGroup_CanSeeEGroup\",\"kind\":2,\"label\":\"EGroup_CanSeeEGroup\",\"documentation\":\"Returns true if ALL or ANY entities in a group can see ALL or ANY entities in a given egroup. \"},{\"id\":\"EGroup_CanSeeSGroup\",\"kind\":2,\"label\":\"EGroup_CanSeeSGroup\",\"documentation\":\"Returns true if ALL or ANY entities in a group can see ALL or ANY squads in a given sgroup. \"},{\"id\":\"EGroup_Clear\",\"kind\":2,\"label\":\"EGroup_Clear\",\"documentation\":\"Removes all entities from a group \"},{\"id\":\"EGroup_Compare\",\"kind\":2,\"label\":\"EGroup_Compare\",\"documentation\":\"Returns true if the contents of the two groups are equal. Order of the entities does not matter. \"},{\"id\":\"EGroup_ContainsBlueprints\",\"kind\":2,\"label\":\"EGroup_ContainsBlueprints\",\"documentation\":\"Check if a group contains ALL or ANY of the blueprints. \"},{\"id\":\"EGroup_ContainsEGroup\",\"kind\":2,\"label\":\"EGroup_ContainsEGroup\",\"documentation\":\"Returns true if EGroup1 contains ANY or ALL of EGroup2 \"},{\"id\":\"EGroup_ContainsEntity\",\"kind\":2,\"label\":\"EGroup_ContainsEntity\",\"documentation\":\"Returns true if EGroup contains a particular EntityID \"},{\"id\":\"EGroup_Count\",\"kind\":2,\"label\":\"EGroup_Count\",\"documentation\":\"Returns the total number of spawned and despawned entities in a group. \"},{\"id\":\"EGroup_CountAlive\",\"kind\":2,\"label\":\"EGroup_CountAlive\",\"documentation\":\"Get the number of alive entities (both spawned and despawned) \"},{\"id\":\"EGroup_CountDeSpawned\",\"kind\":2,\"label\":\"EGroup_CountDeSpawned\",\"documentation\":\"Returns the number of despawned entities in a group. \"},{\"id\":\"EGroup_CountSpawned\",\"kind\":2,\"label\":\"EGroup_CountSpawned\",\"documentation\":\"Returns the number of spawned entities in a group. \"},{\"id\":\"EGroup_Create\",\"kind\":2,\"label\":\"EGroup_Create\",\"documentation\":\"Returns a new entity group with the given name. n Entity groups are used for buildings and objects such as rocks and trees.<BR/> If you need to issue orders to a group vehicles or units you must use a SquadGroupObs.\"},{\"id\":\"EGroup_CreateIfNotFound\",\"kind\":2,\"label\":\"EGroup_CreateIfNotFound\",\"documentation\":\"Find a entity group from name. Creates a new one with given name if it doesnt exist. \"},{\"id\":\"EGroup_CreateKickerMessage\",\"kind\":2,\"label\":\"EGroup_CreateKickerMessage\",\"documentation\":\"Create and display kicker message on the each entity in the egroup to the player \"},{\"id\":\"EGroup_DeSpawn\",\"kind\":2,\"label\":\"EGroup_DeSpawn\",\"documentation\":\"Despawn all spawned entities in a group. \"},{\"id\":\"EGroup_Destroy\",\"kind\":2,\"label\":\"EGroup_Destroy\",\"documentation\":\"Manually destroy a group that you dont need anymore. \"},{\"id\":\"EGroup_DestroyAllEntities\",\"kind\":2,\"label\":\"EGroup_DestroyAllEntities\",\"documentation\":\"Destroys all spawned and despawned entities in a group. n Be careful not to confuse this with EGroup_Destroy which destroys the group and NOT the items it contains. This function will destroy spawned and despawned items in a group\"},{\"id\":\"EGroup_Duplicate\",\"kind\":2,\"label\":\"EGroup_Duplicate\",\"documentation\":\"Duplicates an EGroup n Creates a copy of egroup1 in egroup2. The function will clear egroup2 beforehand if necessary.\"},{\"id\":\"EGroup_EnableMinimapIndicator\",\"kind\":2,\"label\":\"EGroup_EnableMinimapIndicator\",\"documentation\":\"Enables or disables the minimap indicator for all entities in a group \"},{\"id\":\"EGroup_EnableUIDecorator\",\"kind\":2,\"label\":\"EGroup_EnableUIDecorator\",\"documentation\":\"Enable or disable decorators on all entities in the egroup. Sets selection visuals as well unless enableSelection is specified. \"},{\"id\":\"EGroup_Exists\",\"kind\":2,\"label\":\"EGroup_Exists\",\"documentation\":\"Returns true if the entity group with the given name exists \"},{\"id\":\"EGroup_Filter\",\"kind\":2,\"label\":\"EGroup_Filter\",\"documentation\":\"Filters an EGroup by blueprint. n Blueprints can be provided by name or by ID, and in a table if you want to filter on more than one type. Setting filtertype to FILTER_KEEP results in the group only containing entities of the types listed in the blueprint table. Setting filtertype to FILTER_REMOVE will strip those same entities out and leave those that aren't of the types listed.\"},{\"id\":\"EGroup_FilterUnderConstruction\",\"kind\":2,\"label\":\"EGroup_FilterUnderConstruction\",\"documentation\":\"Filters an EGroup by construction status. n Setting filtertype to FILTER_KEEP results in the group only containing those entities that are in the process of being built. Setting filtertype to FILTER_REMOVE will strip those same entities out and leave those that are complete.\"},{\"id\":\"EGroup_ForEach\",\"kind\":2,\"label\":\"EGroup_ForEach\",\"documentation\":\"Call a lua function for each item in a group. Function will recieve (groupid, itemindex, itemid) and should return true to break or false to continue. n function Rule_Test( )<BR/> <TAB/>local DespawnEntity = function( egroupid, itemindex, entityID )<BR/> <TAB/><TAB/>Entity_Despawn( entityID )<BR/> <TAB/>end<BR/><BR/> <TAB/>EGroup_ForEach( EGroup_FromName(\"eg_PlayersHQ\"), DespawnEntity )<BR/> end<BR/> Note: This function iterates over SPAWNED ENTITIES ONLY.\"},{\"id\":\"EGroup_ForEachAllOrAny\",\"kind\":2,\"label\":\"EGroup_ForEachAllOrAny\",\"documentation\":\"Call a lua function for each item in a group. Function will receive (groupid, itemindex, itemid) and should return a bool. n Only use this to TEST conditions on entities. DO NOT use this to perform operations on all entities, since it may not call your function on all entities (due to short circuit evaluation). This is used for checking if ALL or ANY items in a group match a given predicate. (eg. Are all items in a group chaos marines)<BR/> Note: This function iterates over SPAWNED ENTITIES ONLY.\"},{\"id\":\"EGroup_ForEachAllOrAnyEx\",\"kind\":2,\"label\":\"EGroup_ForEachAllOrAnyEx\",\"documentation\":\"Same as EGroup_ForEachAllOrAny except you have a choice to iterate over spawned entities, despawned entities, or both. \"},{\"id\":\"EGroup_ForEachEx\",\"kind\":2,\"label\":\"EGroup_ForEachEx\",\"documentation\":\"Same as EGroup_ForEach except you have a choice to iterate over spawned entities, despawned entities, or both. \"},{\"id\":\"EGroup_FromName\",\"kind\":2,\"label\":\"EGroup_FromName\",\"documentation\":\"Find an entity group with a given name. \"},{\"id\":\"EGroup_GetAvgHealth\",\"kind\":2,\"label\":\"EGroup_GetAvgHealth\",\"documentation\":\"Returns the average health of all units in a entity group. nThis uses the \"proper\" measure of health for panel buildings, so should accurately reflect what the user sees.\"},{\"id\":\"EGroup_GetDeSpawnedEntityAt\",\"kind\":2,\"label\":\"EGroup_GetDeSpawnedEntityAt\",\"documentation\":\"Returns the despawned entity at the given index. n Use EGroup_GetSpawnedEntityAt if you want the spawned items in the group<BR/> Use index 1 to get the first entity in the group.<BR/> It is an error if index > EGroup_GetCountDeSpawned()<BR/>\"},{\"id\":\"EGroup_GetInvulnerable\",\"kind\":2,\"label\":\"EGroup_GetInvulnerable\",\"documentation\":\"Check invulnerablity state for ALL or ANY entity in an entity group. n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"EGroup_GetLastAttacker\",\"kind\":2,\"label\":\"EGroup_GetLastAttacker\",\"documentation\":\"Gets the last attacker(s) for all the entities in an EGroup Gets the last attacker for all the squads in an SGroup and stores that in SGroupAttacker \"},{\"id\":\"EGroup_GetName\",\"kind\":2,\"label\":\"EGroup_GetName\",\"documentation\":\"Returns the name of a given entity group. \"},{\"id\":\"EGroup_GetOffsetPosition\",\"kind\":2,\"label\":\"EGroup_GetOffsetPosition\",\"documentation\":\"Returns a position (a certain distance away) relative to an entity's current position/orientation. see LuaConsts.scar for explanation of 'offset' parameter \"},{\"id\":\"EGroup_GetPosition\",\"kind\":2,\"label\":\"EGroup_GetPosition\",\"documentation\":\"Returns the center position of an entity group. \"},{\"id\":\"EGroup_GetRandomSpawnedEntity\",\"kind\":2,\"label\":\"EGroup_GetRandomSpawnedEntity\",\"documentation\":\"Get a random spawned entity from egroup \"},{\"id\":\"EGroup_GetSequence\",\"kind\":2,\"label\":\"EGroup_GetSequence\",\"documentation\":\"Builds a table of EGroupIDs that are named in a sequence. i.e. a name of \"eg_building\" will find groups \"eg_building1\", \"eg_building2\" and so on, up until it looks for a group that isn't there. \"},{\"id\":\"EGroup_GetSpawnedEntityAt\",\"kind\":2,\"label\":\"EGroup_GetSpawnedEntityAt\",\"documentation\":\"Returns the spawned entity at the given index. n Use EGroup_GetDeSpawnedEntityAt if you want the despawned items in the group<BR/> Use index 1 to get the first entity in the group.<BR/> It is an error if index > EGroup_GetCountSpawned()<BR/>\"},{\"id\":\"EGroup_GetSpawnedEntityFilter\",\"kind\":2,\"label\":\"EGroup_GetSpawnedEntityFilter\",\"documentation\":\"Get the first spawned entity from egroup that meets the condition (a function that takes an entity) \"},{\"id\":\"EGroup_GetSpread\",\"kind\":2,\"label\":\"EGroup_GetSpread\",\"documentation\":\"Returns the distance from the centre of the group of the entity that furthest out. \"},{\"id\":\"EGroup_GetSquadsHeld\",\"kind\":2,\"label\":\"EGroup_GetSquadsHeld\",\"documentation\":\"Returns an sgroup containing all squads held by any entities in an egroup \"},{\"id\":\"EGroup_HasUpgrade\",\"kind\":2,\"label\":\"EGroup_HasUpgrade\",\"documentation\":\"Returns whether ANY or ALL entities in an EGroup have the specified upgrade \"},{\"id\":\"EGroup_Hide\",\"kind\":2,\"label\":\"EGroup_Hide\",\"documentation\":\"Hide or show all entities in an EGroup nBool should be true to hide, false to show\"},{\"id\":\"EGroup_InstantCaptureStrategicPoint\",\"kind\":2,\"label\":\"EGroup_InstantCaptureStrategicPoint\",\"documentation\":\"Change the ownership of a Strategic Point \"},{\"id\":\"EGroup_InstantRevertOccupiedBuilding\",\"kind\":2,\"label\":\"EGroup_InstantRevertOccupiedBuilding\",\"documentation\":\"Reverts an occupied building \"},{\"id\":\"EGroup_Intersection\",\"kind\":2,\"label\":\"EGroup_Intersection\",\"documentation\":\"Performs a group intersection. n Only entities that are in both groups will be added to 'group'.<BR/> The contents of 'grouptointersect' will not be changed.<BR/> Example: group = (1,2,3,4,5,6) grouptointersect = (2,4,6,8,10) --> group will now equal (2,4,6)\"},{\"id\":\"EGroup_IsBurning\",\"kind\":2,\"label\":\"EGroup_IsBurning\",\"documentation\":\"Checks if ANY or ALL entities in an egroup are on fire (ignition threshold exceeded) \"},{\"id\":\"EGroup_IsCapturedByPlayer\",\"kind\":2,\"label\":\"EGroup_IsCapturedByPlayer\",\"documentation\":\"Returns true if all or any strategic points in a group have been captured. Use ANY or ALL. nThis function will ignore all entities that cannot be captured and will return false if no entities in the group can be captured.\"},{\"id\":\"EGroup_IsCapturedByTeam\",\"kind\":2,\"label\":\"EGroup_IsCapturedByTeam\",\"documentation\":\"Returns true if all or any strategic points in a group have been captured. Use ANY or ALL. nThis function will ignore all entities that cannot be captured and will return false if no entities in the group can be captured.\"},{\"id\":\"EGroup_IsDoingAttack\",\"kind\":2,\"label\":\"EGroup_IsDoingAttack\",\"documentation\":\"Returns true if ALL or ANY entities are attacking within the time \"},{\"id\":\"EGroup_IsEmpty\",\"kind\":2,\"label\":\"EGroup_IsEmpty\",\"documentation\":\"Returns true if a named entity group contains no spawned or despawned entities \"},{\"id\":\"EGroup_IsHoldingAny\",\"kind\":2,\"label\":\"EGroup_IsHoldingAny\",\"documentation\":\"Returns whether any entity in an EGroup has a hold on anything \"},{\"id\":\"EGroup_IsInCover\",\"kind\":2,\"label\":\"EGroup_IsInCover\",\"documentation\":\"Returns true if ALL or ANY entities are in cover. \"},{\"id\":\"EGroup_IsMoving\",\"kind\":2,\"label\":\"EGroup_IsMoving\",\"documentation\":\"Returns true if ANY or ALL entities in an EGroup are moving. \"},{\"id\":\"EGroup_IsOnScreen\",\"kind\":2,\"label\":\"EGroup_IsOnScreen\",\"documentation\":\"Returns true if ANY or ALL (use those keywords) of the enities in the group are present onscreen. You can pass in a percentage of the screen to check, so 0.8 would be a centered rectangle occupying 80% of the screen. \"},{\"id\":\"EGroup_IsProducingSquads\",\"kind\":2,\"label\":\"EGroup_IsProducingSquads\",\"documentation\":\"Returns true if ALL or ANY entities in a group are currently producing squads nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"EGroup_IsSpawned\",\"kind\":2,\"label\":\"EGroup_IsSpawned\",\"documentation\":\"Checks if ANY or ALL entities in an group are currently spawned or not. \"},{\"id\":\"EGroup_IsUnderAttack\",\"kind\":2,\"label\":\"EGroup_IsUnderAttack\",\"documentation\":\"Returns true if ALL or ANY entities are under attack within the time \"},{\"id\":\"EGroup_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"EGroup_IsUnderAttackByPlayer\",\"documentation\":\"Check if the entities are attacked by the player \"},{\"id\":\"EGroup_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"EGroup_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if ALL or ANY entities are under attack from a direction within the time. see LuaConsts.scar for types of directions. you can pass in a table of offsets \"},{\"id\":\"EGroup_IsUsingAbility\",\"kind\":2,\"label\":\"EGroup_IsUsingAbility\",\"documentation\":\"Checks if ANY or ALL squads within an EGroup are using an ability nalso used for emplacements/entities that are built but function through the use of squads. Does not check WHAT ability a squad is using. \"},{\"id\":\"EGroup_Kill\",\"kind\":2,\"label\":\"EGroup_Kill\",\"documentation\":\"Kill all entities in an EGroup \"},{\"id\":\"EGroup_NotifyOnPlayerDemolition\",\"kind\":2,\"label\":\"EGroup_NotifyOnPlayerDemolition\",\"documentation\":\"Calls a function when any entity in an EGroup gets destroyed by the player clicking the \"Detonate me\" button \"},{\"id\":\"EGroup_Remove\",\"kind\":2,\"label\":\"EGroup_Remove\",\"documentation\":\"Removes an entity from a group. \"},{\"id\":\"EGroup_RemoveDemolitions\",\"kind\":2,\"label\":\"EGroup_RemoveDemolitions\",\"documentation\":\"Removes all demolition charges on an egroup \"},{\"id\":\"EGroup_RemoveGroup\",\"kind\":2,\"label\":\"EGroup_RemoveGroup\",\"documentation\":\"Remove from the first SGroup all squads contained in the second SGroup. SGroup2 remains untouched. \"},{\"id\":\"EGroup_RemoveUpgrade\",\"kind\":2,\"label\":\"EGroup_RemoveUpgrade\",\"documentation\":\"Removes upgrade(s) from an egroup \"},{\"id\":\"EGroup_ReSpawn\",\"kind\":2,\"label\":\"EGroup_ReSpawn\",\"documentation\":\"Respawn all despawned entities in a group. \"},{\"id\":\"EGroup_SetAnimatorAction\",\"kind\":2,\"label\":\"EGroup_SetAnimatorAction\",\"documentation\":\"Trigger animation action for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorEvent\",\"kind\":2,\"label\":\"EGroup_SetAnimatorEvent\",\"documentation\":\"Set animation event for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorState\",\"kind\":2,\"label\":\"EGroup_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorVariable\",\"kind\":2,\"label\":\"EGroup_SetAnimatorVariable\",\"documentation\":\"Set animation variable value for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAutoTargetting\",\"kind\":2,\"label\":\"EGroup_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"EGroup_SetAvgHealth\",\"kind\":2,\"label\":\"EGroup_SetAvgHealth\",\"documentation\":\"Sets the health of each unit in an entity group to a given percent [0.0, 1.0]. \"},{\"id\":\"EGroup_SetCrushable\",\"kind\":2,\"label\":\"EGroup_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an egroup \"},{\"id\":\"EGroup_SetDemolitions\",\"kind\":2,\"label\":\"EGroup_SetDemolitions\",\"documentation\":\"Instantly wires a building for demolitions \"},{\"id\":\"EGroup_SetHealthMinCap\",\"kind\":2,\"label\":\"EGroup_SetHealthMinCap\",\"documentation\":\"Set the minimum health for this entity nThis is usually set to zero, any higher value prevents the entity from having its health reduced below this given value\"},{\"id\":\"EGroup_SetInvulnerable\",\"kind\":2,\"label\":\"EGroup_SetInvulnerable\",\"documentation\":\"Enable/Disable invulnerablity for an entire entity group. Use true and false for simple on/off, or use a number between 0.0 and 1.0 for more precise control on how much damage an entity can take before it takes no more. nThe optional reset_time is used to automatically remove invulnerability after a set time. If invulnerable, both health and critical damage are disabled.\"},{\"id\":\"EGroup_SetPlayerOwner\",\"kind\":2,\"label\":\"EGroup_SetPlayerOwner\",\"documentation\":\"Changes the player owner for all spawned and despawned entities of an EGroup. nStrategic/capturable point does not support setting player owner directly\"},{\"id\":\"EGroup_SetRallyPoint\",\"kind\":2,\"label\":\"EGroup_SetRallyPoint\",\"documentation\":\"Set the rally point for this entity nThis is usually set to zero, any higher value prevents the entity from having its health reduced below this given value\"},{\"id\":\"EGroup_SetRecrewable\",\"kind\":2,\"label\":\"EGroup_SetRecrewable\",\"documentation\":\"Sets all entities in an egroup to be recrewable or not when abandoned \"},{\"id\":\"EGroup_SetSelectable\",\"kind\":2,\"label\":\"EGroup_SetSelectable\",\"documentation\":\"Set player selectable state of entities in the egroup \"},{\"id\":\"EGroup_SetSharedProductionQueue\",\"kind\":2,\"label\":\"EGroup_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"EGroup_SetStrategicPointNeutral\",\"kind\":2,\"label\":\"EGroup_SetStrategicPointNeutral\",\"documentation\":\"Sets a strategic point to neutral (not owned by any team) \"},{\"id\":\"EGroup_SetWorldOwned\",\"kind\":2,\"label\":\"EGroup_SetWorldOwned\",\"documentation\":\"Makes an egroup neutral \"},{\"id\":\"EGroup_Single\",\"kind\":2,\"label\":\"EGroup_Single\",\"documentation\":\"Creates an entity group containing a single entity n Creates an EGroup containing just one entity, creating the group if it doesn't exist and clearing it if it does. It returns the name of the EGroup.\"},{\"id\":\"SGroup_HasEntityUpgrade\",\"kind\":2,\"label\":\"SGroup_HasEntityUpgrade\",\"documentation\":\"Returns true if ANY or ALL of the squad's entities have the specified upgrade \"},{\"id\":\"Ai:GetEncountersBySGroup\",\"kind\":2,\"label\":\"Ai:GetEncountersBySGroup\",\"documentation\":\"Finds all encounters that contain ANY or ALL squads within the given sgroup. \"},{\"id\":\"Ai:GetEncountersBySquad\",\"kind\":2,\"label\":\"Ai:GetEncountersBySquad\",\"documentation\":\"Finds all encounters that contain ANY or ALL squads within the given sgroup. \"},{\"id\":\"AI_DisableAllEncounters\",\"kind\":2,\"label\":\"AI_DisableAllEncounters\",\"documentation\":\"Disables all encounters \"},{\"id\":\"AI_EnableAllEncounters\",\"kind\":2,\"label\":\"AI_EnableAllEncounters\",\"documentation\":\"Enables all encounters \"},{\"id\":\"AI_GetActiveEncounters\",\"kind\":2,\"label\":\"AI_GetActiveEncounters\",\"documentation\":\"Returns a table with all active (not dead) encounters. \"},{\"id\":\"AI_GetNumEncounters\",\"kind\":2,\"label\":\"AI_GetNumEncounters\",\"documentation\":\"Returns the number of alive encounters currently managed by the AI manager. \"},{\"id\":\"AI_IsMatchingDifficulty\",\"kind\":2,\"label\":\"AI_IsMatchingDifficulty\",\"documentation\":\"Returns True if the current AI_Manager difficulty matches any in a given list. \"},{\"id\":\"AI_OverrideDifficulty\",\"kind\":2,\"label\":\"AI_OverrideDifficulty\",\"documentation\":\"Overrides the current difficulty setting (only for the AI Manager). Pass 'nil' to reset to Game_GetSPDifficulty() value \"},{\"id\":\"AI_RemoveAllEncounters\",\"kind\":2,\"label\":\"AI_RemoveAllEncounters\",\"documentation\":\"Disables all encounters, then clears out the encounter list \"},{\"id\":\"AI_SetDebugLevel\",\"kind\":2,\"label\":\"AI_SetDebugLevel\",\"documentation\":\"Set the level of debug information shown but Ai:Print(). \"},{\"id\":\"AI_SetStaggeredSpawnDelay\",\"kind\":2,\"label\":\"AI_SetStaggeredSpawnDelay\",\"documentation\":\"Sets the delay to use when using staggeredSpawn for encounters. The new interval will take effect immediately. \"},{\"id\":\"AI_ToggleDebugData\",\"kind\":2,\"label\":\"AI_ToggleDebugData\",\"documentation\":\"Toggle encounter/goal debug information on screen. \"},{\"id\":\"AI_ToggleDebugPrint\",\"kind\":2,\"label\":\"AI_ToggleDebugPrint\",\"documentation\":\"Toggle printing console debug information for encounters. \"},{\"id\":\"AIAbilityGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for ability goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter ability goal values. \"},{\"id\":\"AIAbilityGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for ability goals. defaultGoalData is cloned; any values specified are used for unspecified encounter ability goal values. \"},{\"id\":\"AIAbilityGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for ability goals. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter ability goal value. \"},{\"id\":\"AIAbilityGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for ability goals. overrideGoalData is cloned; any values specified are used for encounter ability goal values. \"},{\"id\":\"AIAttackGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for attack goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter attack goal values. \"},{\"id\":\"AIAttackGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for attack goals. defaultGoalData is cloned; any values specified are used for unspecified encounter attack goal values. \"},{\"id\":\"AIAttackGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for attack goals. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter attack goal value. \"},{\"id\":\"AIAttackGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for attack goals. overrideGoalData is cloned; any values specified are used for encounter attack goal values. \"},{\"id\":\"AIBaseGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter goal values. \"},{\"id\":\"AIBaseGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data. defaultGoalData is cloned; any values specified are used for unspecified encounter goal values. \"},{\"id\":\"AIBaseGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter goal value. \"},{\"id\":\"AIBaseGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data. overrideGoalData is cloned; any values specified are used for encounter goal values. \"},{\"id\":\"AIDefendGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for defend goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter defend goal values. \"},{\"id\":\"AIDefendGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for defend goals. defaultGoalData is cloned; any values specified are used for unspecified encounter defend goal values. \"},{\"id\":\"AIDefendGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for defend goals. modifyGoalData is cloned; values specified via keyname_Multiply are used for the numeric keyname encounter defend goal value. \"},{\"id\":\"AIDefendGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for defend goals. overrideGoalData is cloned; any values specified are used for encounter defend goal values. \"},{\"id\":\"AIMoveGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for move goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter move goal values. \"},{\"id\":\"AIMoveGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for move goals. defaultGoalData is cloned; any values specified are used for unspecified encounter move goal values. \"},{\"id\":\"AIMoveGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for move goals. modifyGoalData is cloned; values specified via keyname_Multiply are used for the numeric keyname encounter move goal value. \"},{\"id\":\"AIMoveGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for move goals. overrideGoalData is cloned; any values specified are used for encounter move goal values. \"},{\"id\":\"Encounter:AddSgroup\",\"kind\":2,\"label\":\"Encounter:AddSgroup\",\"documentation\":\"Adds an sgroup to an encounter \"},{\"id\":\"Encounter:ClearGoal\",\"kind\":2,\"label\":\"Encounter:ClearGoal\",\"documentation\":\"Clears the current goal. \"},{\"id\":\"Encounter:ConvertSgroup\",\"kind\":2,\"label\":\"Encounter:ConvertSgroup\",\"documentation\":\"Create a new encounter from an SGroup, with default encounter data nEncounter player is derived from sgroup; all squads in sgroup must be owned by same player.\"},{\"id\":\"Encounter:Create\",\"kind\":2,\"label\":\"Encounter:Create\",\"documentation\":\"Create a new encounter from encounter data. If spawnNow is true, spawns specified units immediately. nSee: http://relicwiki/display/REL/Ai+Encounters\"},{\"id\":\"Encounter:CreateAbility\",\"kind\":2,\"label\":\"Encounter:CreateAbility\",\"documentation\":\"Create a new encounter with a generic Ability goal. \"},{\"id\":\"Encounter:CreateAttack\",\"kind\":2,\"label\":\"Encounter:CreateAttack\",\"documentation\":\"Create a new encounter with a generic Attack goal. \"},{\"id\":\"Encounter:CreateBasic\",\"kind\":2,\"label\":\"Encounter:CreateBasic\",\"documentation\":\"Create a new basic encounter. \"},{\"id\":\"Encounter:CreateDefend\",\"kind\":2,\"label\":\"Encounter:CreateDefend\",\"documentation\":\"Create a new encounter with a generic Defend goal. \"},{\"id\":\"Encounter:CreateMove\",\"kind\":2,\"label\":\"Encounter:CreateMove\",\"documentation\":\"Create a new encounter with a generic Move goal. \"},{\"id\":\"Encounter:CreatePatrol\",\"kind\":2,\"label\":\"Encounter:CreatePatrol\",\"documentation\":\"Create a new encounter with a generic Patrol goal. npathLoop can be: LOOP_NONE, LOOP_NORMAL, LOOP_TOGGLE_DIRECTION\"},{\"id\":\"Encounter:Disable\",\"kind\":2,\"label\":\"Encounter:Disable\",\"documentation\":\"Stops running the encounter and clears the current goal. \"},{\"id\":\"Encounter:Enable\",\"kind\":2,\"label\":\"Encounter:Enable\",\"documentation\":\"Starts encounter running (encounters are enabled by default) if it was disabled previously. \"},{\"id\":\"Encounter:GetGoalData\",\"kind\":2,\"label\":\"Encounter:GetGoalData\",\"documentation\":\"Gets clone of current goal data. May be nil. \"},{\"id\":\"Encounter:GetSgroup\",\"kind\":2,\"label\":\"Encounter:GetSgroup\",\"documentation\":\"Gets the encounter's sgroup. Caution: sgroup may be empty \"},{\"id\":\"Encounter:RemoveOnDeath\",\"kind\":2,\"label\":\"Encounter:RemoveOnDeath\",\"documentation\":\"Clears the encounter's onDeath callback. If includeUnits is set to true, it clears onDeath callbacks for units as well. \"},{\"id\":\"Encounter:RestartGoal\",\"kind\":2,\"label\":\"Encounter:RestartGoal\",\"documentation\":\"If encounter has a goal, but no currently running objective, restarts the goal. nReturns true if goal was restarted, false otherwise.\"},{\"id\":\"Encounter:SetGoal\",\"kind\":2,\"label\":\"Encounter:SetGoal\",\"documentation\":\"Creates encounter goal from goal data; goals determine unit objectives and behaviours. nSee: http://relicwiki/display/REL/Ai+Goal\"},{\"id\":\"Encounter:SetGoalOnSuccess\",\"kind\":2,\"label\":\"Encounter:SetGoalOnSuccess\",\"documentation\":\"Set the goal's OnSuccess callback. \"},{\"id\":\"Encounter:SetOnDeath\",\"kind\":2,\"label\":\"Encounter:SetOnDeath\",\"documentation\":\"Sets a new onDeath callback for the encounter \"},{\"id\":\"Encounter:Spawn\",\"kind\":2,\"label\":\"Encounter:Spawn\",\"documentation\":\"Spawns the units within an. Does nothing if the encounter has already been spawned. \"},{\"id\":\"Encounter:UpdateGoal\",\"kind\":2,\"label\":\"Encounter:UpdateGoal\",\"documentation\":\"Sets the goal data for the encounter. If encounter has a goal with a running objective, updates the goal. nUse GetGoalData() to get \"},{\"id\":\"MergeClone\",\"kind\":2,\"label\":\"MergeClone\",\"documentation\":\"Merge clones two table (recursively) into a single table combining into a new table allowing for unadulterated use of the data \"},{\"id\":\"Entity_ApplyCritical\",\"kind\":2,\"label\":\"Entity_ApplyCritical\",\"documentation\":\"Trigger a critical hit on an entity \"},{\"id\":\"Entity_BuildingPanelInfo\",\"kind\":2,\"label\":\"Entity_BuildingPanelInfo\",\"documentation\":\"Displays info about the panel that is intersected by the passed in ray \"},{\"id\":\"Entity_CanAttackNow\",\"kind\":2,\"label\":\"Entity_CanAttackNow\",\"documentation\":\"Returns whether an entity can attack a target without moving or turning. \"},{\"id\":\"Entity_CancelProductionQueueItem\",\"kind\":2,\"label\":\"Entity_CancelProductionQueueItem\",\"documentation\":\"Cancels an item in a production queue. Index 0 is the currently producing item. \"},{\"id\":\"Entity_CanLoadSquad\",\"kind\":2,\"label\":\"Entity_CanLoadSquad\",\"documentation\":\"Check if the entity can load squad or not \"},{\"id\":\"Entity_CanLoadSquadAndAttackCurrentTarget\",\"kind\":2,\"label\":\"Entity_CanLoadSquadAndAttackCurrentTarget\",\"documentation\":\"Check if the entity can load squad and shoot its target after loading (This function should only be called by AI) \"},{\"id\":\"Entity_CanSeeEntity\",\"kind\":2,\"label\":\"Entity_CanSeeEntity\",\"documentation\":\"Returns true if the distance between a target entity and the source entity is less than it entity's sight distance. There is no LOS or FOW check. nTry Player_CanSeeEntity() if you care about LOS or FOW.\"},{\"id\":\"Entity_CanSeeSquad\",\"kind\":2,\"label\":\"Entity_CanSeeSquad\",\"documentation\":\"Returns true if the distance between a target squad and the source entity is less than it entity's sight distance. There is no LOS or FOW check. nTry Player_CanSeeSquad() if you care about LOS or FOW.\"},{\"id\":\"Entity_ClearPostureSuggestion\",\"kind\":2,\"label\":\"Entity_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to an entity \"},{\"id\":\"Entity_ClearTagDebug\",\"kind\":2,\"label\":\"Entity_ClearTagDebug\",\"documentation\":\"Clears the tagged entity used for debugging \"},{\"id\":\"Entity_CompleteUpgrade\",\"kind\":2,\"label\":\"Entity_CompleteUpgrade\",\"documentation\":\"Instantly adds an upgrade to a given entity \"},{\"id\":\"Entity_Create\",\"kind\":2,\"label\":\"Entity_Create\",\"documentation\":\"Creates an entity at a given position and assigns it to a given player. 'blueprint' is a string value containing the name of the entity blueprint. This function does not spawn the entity so you will need to call Entity_Spawn to see this entity \"},{\"id\":\"Entity_CreateENV\",\"kind\":2,\"label\":\"Entity_CreateENV\",\"documentation\":\"Creates an entity at a given position and assigns it to a given player. 'blueprint' is a string value containing the name of the entity blueprint. This function spawns the entity so there is no need to call Entity_Spawn \"},{\"id\":\"Entity_DeSpawn\",\"kind\":2,\"label\":\"Entity_DeSpawn\",\"documentation\":\"DeSpawn the entity at its current position \"},{\"id\":\"Entity_Destroy\",\"kind\":2,\"label\":\"Entity_Destroy\",\"documentation\":\"Remove an entity from the world and destroy it. \"},{\"id\":\"Entity_DisableBuildingDeath\",\"kind\":2,\"label\":\"Entity_DisableBuildingDeath\",\"documentation\":\"Disables the death of the given entity building, only works for panel based destructible buldings n\"},{\"id\":\"Entity_DoBuildingDamageRay\",\"kind\":2,\"label\":\"Entity_DoBuildingDamageRay\",\"documentation\":\"Damages this entity but only if its a destructible building ndmgType of 0 is damage accessory, 1 is damage panel, 2 is destroy panel and 3 is destroy radius\"},{\"id\":\"Entity_EnableAttention\",\"kind\":2,\"label\":\"Entity_EnableAttention\",\"documentation\":\"Sets whether an entity pays attention to its surroundings \"},{\"id\":\"Entity_EnableProductionQueue\",\"kind\":2,\"label\":\"Entity_EnableProductionQueue\",\"documentation\":\"Sets whether an entity can produce anything (including upgrades) \"},{\"id\":\"Entity_EnableStrategicPoint\",\"kind\":2,\"label\":\"Entity_EnableStrategicPoint\",\"documentation\":\"Sets whether an strategic point is active \"},{\"id\":\"Entity_ForceConstruct\",\"kind\":2,\"label\":\"Entity_ForceConstruct\",\"documentation\":\"Force constructs this entity but only if its a building \"},{\"id\":\"Entity_FromWorldID\",\"kind\":2,\"label\":\"Entity_FromWorldID\",\"documentation\":\"Get an entity from a mission editor ID. \"},{\"id\":\"Entity_GetActiveCommand\",\"kind\":2,\"label\":\"Entity_GetActiveCommand\",\"documentation\":\"Returns the active entity command. \"},{\"id\":\"Entity_GetBlueprint\",\"kind\":2,\"label\":\"Entity_GetBlueprint\",\"documentation\":\"Returns the entity's blueprint \"},{\"id\":\"Entity_GetBuildingProgress\",\"kind\":2,\"label\":\"Entity_GetBuildingProgress\",\"documentation\":\"Returns the construction progress (with range [0.0, 1.0] for a given entity. Returns 0.0 if the entity is not a building. \"},{\"id\":\"Entity_GetCoverValue\",\"kind\":2,\"label\":\"Entity_GetCoverValue\",\"documentation\":\"Get cover safety value from the where the entity is standing. The safety value is number from -.5 to .5. nHigher value means better cover. If the entity doesn't have cover_ext, value of 0 would be returned\"},{\"id\":\"Entity_GetGameID\",\"kind\":2,\"label\":\"Entity_GetGameID\",\"documentation\":\"Returns the entities unique id in the world \"},{\"id\":\"Entity_GetHeading\",\"kind\":2,\"label\":\"Entity_GetHeading\",\"documentation\":\"Returns the heading of the entity. The heading is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_GetHealth\",\"kind\":2,\"label\":\"Entity_GetHealth\",\"documentation\":\"Returns the health of an entity. nHealth will be zero for entities with no health extension.\"},{\"id\":\"Entity_GetHealthMax\",\"kind\":2,\"label\":\"Entity_GetHealthMax\",\"documentation\":\"Returns the max health of an entity. nMax health will be zero for entities with no health extension.\"},{\"id\":\"Entity_GetHealthPercentage\",\"kind\":2,\"label\":\"Entity_GetHealthPercentage\",\"documentation\":\"Returns the percentage health, taking into account destructible buildings nHealth will be zero for entities with no health extension nor building destruction\"},{\"id\":\"Entity_GetInvulnerable\",\"kind\":2,\"label\":\"Entity_GetInvulnerable\",\"documentation\":\"Check if the entity is invulnerable or not \"},{\"id\":\"Entity_GetInvulnerableMinCap\",\"kind\":2,\"label\":\"Entity_GetInvulnerableMinCap\",\"documentation\":\"Returns the invulnerable point in terms of percentage nFor buildings, retrieve the percentage value of healthy below which no more panels could be destroyed\"},{\"id\":\"Entity_GetInvulnerableToCritical\",\"kind\":2,\"label\":\"Entity_GetInvulnerableToCritical\",\"documentation\":\"get if an entity is invulnerable to critical effects \"},{\"id\":\"Entity_GetLastAttacker\",\"kind\":2,\"label\":\"Entity_GetLastAttacker\",\"documentation\":\"Find the last squad attacker on this entity. If found, the squad is added to the sgroup \"},{\"id\":\"Entity_GetLastAttackers\",\"kind\":2,\"label\":\"Entity_GetLastAttackers\",\"documentation\":\"Find the squad attackers on this entity from the last seconds specified. If found, the squads are added to the sgroup. Building attackers are ignored \"},{\"id\":\"Entity_GetMaxCaptureCrewSize\",\"kind\":2,\"label\":\"Entity_GetMaxCaptureCrewSize\",\"documentation\":\"Gets the maximum capture crew size from a recrewable entity \"},{\"id\":\"Entity_GetOffsetPosition\",\"kind\":2,\"label\":\"Entity_GetOffsetPosition\",\"documentation\":\"Returns a position relative to an entity's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Entity_GetPlayerOwner\",\"kind\":2,\"label\":\"Entity_GetPlayerOwner\",\"documentation\":\"Returns the Player owner of the given entity. Entity MUST NOT be owned by the world. nUse World_OwnsEntity to make sure entity is not owned by the world before calling this function\"},{\"id\":\"Entity_GetPosition\",\"kind\":2,\"label\":\"Entity_GetPosition\",\"documentation\":\"Returns the position of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_GetProductionQueueItem\",\"kind\":2,\"label\":\"Entity_GetProductionQueueItem\",\"documentation\":\"Returns the blueprint for a production queue item with index. \"},{\"id\":\"Entity_GetProductionQueueItemType\",\"kind\":2,\"label\":\"Entity_GetProductionQueueItemType\",\"documentation\":\"Returns the production type (PITEM_Upgrade, PITEM_Spawn, PITEM_SquadUpgrade, PITEM_SquadReinforce, PITEM_PlayerUpgrade) for a production queue item with index. \"},{\"id\":\"Entity_GetProductionQueueSize\",\"kind\":2,\"label\":\"Entity_GetProductionQueueSize\",\"documentation\":\"Returns the number of items in the entities production queue. nIt is an error to call this function on an entity that does not have a production queue.<BR/> Use Entity_HasProductionQueue to check that the entity has a queue.\"},{\"id\":\"Entity_GetResourceType\",\"kind\":2,\"label\":\"Entity_GetResourceType\",\"documentation\":\"Returns the resource type of this point nreturns RT_Fuel, RT_Munition, RT_Action, RT_Command, RT_Popcap, RT_Invalid. NOTE: only works on player owned points\"},{\"id\":\"Entity_GetSightInnerHeight\",\"kind\":2,\"label\":\"Entity_GetSightInnerHeight\",\"documentation\":\"Returns the inner sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightInnerRadius\",\"kind\":2,\"label\":\"Entity_GetSightInnerRadius\",\"documentation\":\"Returns the inner sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightOuterHeight\",\"kind\":2,\"label\":\"Entity_GetSightOuterHeight\",\"documentation\":\"Returns the outer sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightOuterRadius\",\"kind\":2,\"label\":\"Entity_GetSightOuterRadius\",\"documentation\":\"Returns the outer sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSquad\",\"kind\":2,\"label\":\"Entity_GetSquad\",\"documentation\":\"Returns the Squad for the passed Entity. (May be nullptr) \"},{\"id\":\"Entity_GetSquadsHeld\",\"kind\":2,\"label\":\"Entity_GetSquadsHeld\",\"documentation\":\"Adds squads held by an entity to an SGroup \"},{\"id\":\"Entity_GetTotalPanelCount\",\"kind\":2,\"label\":\"Entity_GetTotalPanelCount\",\"documentation\":\"Gets the total number of panels in a building (returns 0 for anything but panel based destructible buldings) \"},{\"id\":\"Entity_GetUndestroyedPanelCount\",\"kind\":2,\"label\":\"Entity_GetUndestroyedPanelCount\",\"documentation\":\"Gets the current number of undestroyed panels in a building (returns 0 for anything but panel based destructible buldings) \"},{\"id\":\"Entity_GetWeaponBlueprint\",\"kind\":2,\"label\":\"Entity_GetWeaponBlueprint\",\"documentation\":\"Returns a weapon hardpoint ( 0 indexed ) \"},{\"id\":\"Entity_GetWeaponHardpointCount\",\"kind\":2,\"label\":\"Entity_GetWeaponHardpointCount\",\"documentation\":\"Returns how many hardpoints an entity has \"},{\"id\":\"Entity_HasAnyCritical\",\"kind\":2,\"label\":\"Entity_HasAnyCritical\",\"documentation\":\"Return true if the entity has any critical applied to it \"},{\"id\":\"Entity_HasCritical\",\"kind\":2,\"label\":\"Entity_HasCritical\",\"documentation\":\"Return true if the entity has the given criticalID applied to it \"},{\"id\":\"Entity_HasProductionQueue\",\"kind\":2,\"label\":\"Entity_HasProductionQueue\",\"documentation\":\"Returns true if an entity has a production queue. \"},{\"id\":\"Entity_HasUpgrade\",\"kind\":2,\"label\":\"Entity_HasUpgrade\",\"documentation\":\"Return true if the entity has purchased the specified upgrade. \"},{\"id\":\"Entity_InstantCaptureStrategicPoint\",\"kind\":2,\"label\":\"Entity_InstantCaptureStrategicPoint\",\"documentation\":\"Strategic point will be captured instantly by the team of the supplied player \"},{\"id\":\"Entity_InstantRevertOccupiedBuilding\",\"kind\":2,\"label\":\"Entity_InstantRevertOccupiedBuilding\",\"documentation\":\"Reverts an occupied building \"},{\"id\":\"Entity_IsAlive\",\"kind\":2,\"label\":\"Entity_IsAlive\",\"documentation\":\"Returns true if entity is still alive \"},{\"id\":\"Entity_IsAttacking\",\"kind\":2,\"label\":\"Entity_IsAttacking\",\"documentation\":\"Returns true if the entity is attacking within the time nTime is in seconds\"},{\"id\":\"Entity_IsBuilding\",\"kind\":2,\"label\":\"Entity_IsBuilding\",\"documentation\":\"Returns true if the given entity is a building \"},{\"id\":\"Entity_IsBurning\",\"kind\":2,\"label\":\"Entity_IsBurning\",\"documentation\":\"Returns true if the given entity is burning (buildings on fire or non-buildings with burn_exts) \"},{\"id\":\"Entity_IsCamouflaged\",\"kind\":2,\"label\":\"Entity_IsCamouflaged\",\"documentation\":\"Returns whether the entity is camouflaged. \"},{\"id\":\"Entity_IsCapturableBuilding\",\"kind\":2,\"label\":\"Entity_IsCapturableBuilding\",\"documentation\":\"Returns true if the entity is a capturable building \"},{\"id\":\"Entity_IsCasualty\",\"kind\":2,\"label\":\"Entity_IsCasualty\",\"documentation\":\"Returns true if entity is a casualty else false \"},{\"id\":\"Entity_IsCuttable\",\"kind\":2,\"label\":\"Entity_IsCuttable\",\"documentation\":\"Returns whether this entity is cuttable \"},{\"id\":\"Entity_IsDemolitionReady\",\"kind\":2,\"label\":\"Entity_IsDemolitionReady\",\"documentation\":\"Returns whether this entity's demolition charges are ready to be detonated \"},{\"id\":\"Entity_IsEBPBuilding\",\"kind\":2,\"label\":\"Entity_IsEBPBuilding\",\"documentation\":\"Returns true if the given blueprint is a building \"},{\"id\":\"Entity_IsEBPObjCover\",\"kind\":2,\"label\":\"Entity_IsEBPObjCover\",\"documentation\":\"Returns true if the given blueprint is objcover \"},{\"id\":\"Entity_IsHardpointActive\",\"kind\":2,\"label\":\"Entity_IsHardpointActive\",\"documentation\":\"Returns whether a hardpoint is active ( 0 indexed ) \"},{\"id\":\"Entity_IsHoldingAny\",\"kind\":2,\"label\":\"Entity_IsHoldingAny\",\"documentation\":\"Check if the entity has a hold on anything \"},{\"id\":\"Entity_IsInCover\",\"kind\":2,\"label\":\"Entity_IsInCover\",\"documentation\":\"Returns true if entity is in cover. \"},{\"id\":\"Entity_IsMoving\",\"kind\":2,\"label\":\"Entity_IsMoving\",\"documentation\":\"Returns whether an entity is moving. \"},{\"id\":\"Entity_IsOfType\",\"kind\":2,\"label\":\"Entity_IsOfType\",\"documentation\":\"Determines if this entity is of the given type. Types are defined in type_ext/unit_type_list \"},{\"id\":\"Entity_IsPartOfSquad\",\"kind\":2,\"label\":\"Entity_IsPartOfSquad\",\"documentation\":\"Returns true if the entity is part of a squad \"},{\"id\":\"Entity_IsPlane\",\"kind\":2,\"label\":\"Entity_IsPlane\",\"documentation\":\"Returns whether an entity is a plane (has a flight extension) \"},{\"id\":\"Entity_IsSlotItem\",\"kind\":2,\"label\":\"Entity_IsSlotItem\",\"documentation\":\"Return true if the entity is a slot item \"},{\"id\":\"Entity_IsSoldier\",\"kind\":2,\"label\":\"Entity_IsSoldier\",\"documentation\":\"Returns whether an entity is a soldier \"},{\"id\":\"Entity_IsSpawned\",\"kind\":2,\"label\":\"Entity_IsSpawned\",\"documentation\":\"if entity is spawned return true \"},{\"id\":\"Entity_IsStartingPosition\",\"kind\":2,\"label\":\"Entity_IsStartingPosition\",\"documentation\":\"Returns true if the entity is a starting position \"},{\"id\":\"Entity_IsStrategicPoint\",\"kind\":2,\"label\":\"Entity_IsStrategicPoint\",\"documentation\":\"Returns true if the entity is a strategic point. \"},{\"id\":\"Entity_IsStrategicPointCapturedBy\",\"kind\":2,\"label\":\"Entity_IsStrategicPointCapturedBy\",\"documentation\":\"Returns true if strategic point is captured by the team of the player provided. \"},{\"id\":\"Entity_IsSyncWeapon\",\"kind\":2,\"label\":\"Entity_IsSyncWeapon\",\"documentation\":\"Return true if the entity is a team weapon \"},{\"id\":\"Entity_IsUnderAttack\",\"kind\":2,\"label\":\"Entity_IsUnderAttack\",\"documentation\":\"Returns true if the entity is under attack. \"},{\"id\":\"Entity_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"Entity_IsUnderAttackByPlayer\",\"documentation\":\"Returns true if the entity is under attack by a certain player \"},{\"id\":\"Entity_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"Entity_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if the entity was under attack from a certain direction (8 offset types, see LuaConsts.scar) \"},{\"id\":\"Entity_IsValid\",\"kind\":2,\"label\":\"Entity_IsValid\",\"documentation\":\"Check if an entity with the given ID can be found in the world \"},{\"id\":\"Entity_IsVaultable\",\"kind\":2,\"label\":\"Entity_IsVaultable\",\"documentation\":\"Returns whether an entity can be vaulted \"},{\"id\":\"Entity_IsVehicle\",\"kind\":2,\"label\":\"Entity_IsVehicle\",\"documentation\":\"Returns whether an entity is a vehicle \"},{\"id\":\"Entity_IsVictoryPoint\",\"kind\":2,\"label\":\"Entity_IsVictoryPoint\",\"documentation\":\"Returns true if entityID is a victory point \"},{\"id\":\"Entity_Kill\",\"kind\":2,\"label\":\"Entity_Kill\",\"documentation\":\"Kill the entity. Sets health to 0, and triggers death effects. \"},{\"id\":\"Entity_NotifyOnPlayerDemolition\",\"kind\":2,\"label\":\"Entity_NotifyOnPlayerDemolition\",\"documentation\":\"Calls a function when an entity gets destroyed by the player clicking the \"Detonate me\" button next to an entity. \"},{\"id\":\"Entity_RemoveBoobyTraps\",\"kind\":2,\"label\":\"Entity_RemoveBoobyTraps\",\"documentation\":\"Removes all booby-traps on this entity \"},{\"id\":\"Entity_RemoveCritical\",\"kind\":2,\"label\":\"Entity_RemoveCritical\",\"documentation\":\"Remove a critical from a given entity \"},{\"id\":\"Entity_RemoveDemolitions\",\"kind\":2,\"label\":\"Entity_RemoveDemolitions\",\"documentation\":\"Removes all demolition charges on an entity \"},{\"id\":\"Entity_RemoveUpgrade\",\"kind\":2,\"label\":\"Entity_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from an entity \"},{\"id\":\"Entity_SetAnimatorAction\",\"kind\":2,\"label\":\"Entity_SetAnimatorAction\",\"documentation\":\"Trigger animation action for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorActionParameter\",\"kind\":2,\"label\":\"Entity_SetAnimatorActionParameter\",\"documentation\":\"Set animation action parameter for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorEvent\",\"kind\":2,\"label\":\"Entity_SetAnimatorEvent\",\"documentation\":\"Set animation event for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorState\",\"kind\":2,\"label\":\"Entity_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorVariable\",\"kind\":2,\"label\":\"Entity_SetAnimatorVariable\",\"documentation\":\"Set animation variable value for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetBuildingVisualFireState\",\"kind\":2,\"label\":\"Entity_SetBuildingVisualFireState\",\"documentation\":\"Set the visual fire state of a building (doesn't actually set the building on fire) \"},{\"id\":\"Entity_SetCrushable\",\"kind\":2,\"label\":\"Entity_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an entity \"},{\"id\":\"Entity_SetCrushMode\",\"kind\":2,\"label\":\"Entity_SetCrushMode\",\"documentation\":\"Changes the crush mode of a given entity. Entity must have a crush extension. \"},{\"id\":\"Entity_SetDemolitions\",\"kind\":2,\"label\":\"Entity_SetDemolitions\",\"documentation\":\"Fully wires this entity for demolitions, if it's set up to be demolishable. 'player' is the one that owns the demolitions and can detonate them. \"},{\"id\":\"Entity_SetEnableCasualty\",\"kind\":2,\"label\":\"Entity_SetEnableCasualty\",\"documentation\":\"\"},{\"id\":\"Entity_SetHeading\",\"kind\":2,\"label\":\"Entity_SetHeading\",\"documentation\":\"Sets the heading of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_SetHealth\",\"kind\":2,\"label\":\"Entity_SetHealth\",\"documentation\":\"Set the health of an entity. healthPercent must be in the range [0.0, 1.0]. \"},{\"id\":\"Entity_SetInvulnerable\",\"kind\":2,\"label\":\"Entity_SetInvulnerable\",\"documentation\":\"Set invulnerability on the entity. Reset time is in seconds. If it it set, the invulnerability will expire after this time. \"},{\"id\":\"Entity_SetInvulnerableMinCap\",\"kind\":2,\"label\":\"Entity_SetInvulnerableMinCap\",\"documentation\":\"Make an entity invulnerable to physical damage when health is below the minimum health percentage nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Entity_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"Entity_SetInvulnerableToCritical\",\"documentation\":\"set an entity invulnerable to critical effects. Invulnerable to critical also means that kills a entity will not have effect \"},{\"id\":\"Entity_SetOnFire\",\"kind\":2,\"label\":\"Entity_SetOnFire\",\"documentation\":\"Sets an object on fire (also works on buildings) \"},{\"id\":\"Entity_SetPlayerOwner\",\"kind\":2,\"label\":\"Entity_SetPlayerOwner\",\"documentation\":\"Changes the owner of the given squad. nThis function doesn't work with strategic/capturable point\"},{\"id\":\"Entity_SetPosition\",\"kind\":2,\"label\":\"Entity_SetPosition\",\"documentation\":\"Sets the position of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_SetProjectileCanExplode\",\"kind\":2,\"label\":\"Entity_SetProjectileCanExplode\",\"documentation\":\"Sets whether or not a projectile can explode. \"},{\"id\":\"Entity_SetRecrewable\",\"kind\":2,\"label\":\"Entity_SetRecrewable\",\"documentation\":\"Sets an entity to be recrewable or not when it becomes abandoned \"},{\"id\":\"Entity_SetSharedProductionQueue\",\"kind\":2,\"label\":\"Entity_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"Entity_SetStrategicPointNeutral\",\"kind\":2,\"label\":\"Entity_SetStrategicPointNeutral\",\"documentation\":\"Sets a strategic point to neutral (not owned by any team) \"},{\"id\":\"Entity_SetWorldOwned\",\"kind\":2,\"label\":\"Entity_SetWorldOwned\",\"documentation\":\"Makes an entity neutral \"},{\"id\":\"Entity_SimHide\",\"kind\":2,\"label\":\"Entity_SimHide\",\"documentation\":\"Shows/hides the entity in the simulation \"},{\"id\":\"Entity_Spawn\",\"kind\":2,\"label\":\"Entity_Spawn\",\"documentation\":\"Spawn the entity at its current position \"},{\"id\":\"Entity_StopAbility\",\"kind\":2,\"label\":\"Entity_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Entity_SuggestPosture\",\"kind\":2,\"label\":\"Entity_SuggestPosture\",\"documentation\":\"Suggests a posture to an entity, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"Entity_SupportsDemolition\",\"kind\":2,\"label\":\"Entity_SupportsDemolition\",\"documentation\":\"Returns whether this entity is set up to have demolitions placed on it \"},{\"id\":\"Entity_TagDebug\",\"kind\":2,\"label\":\"Entity_TagDebug\",\"documentation\":\"Tags the entity to be used for debugging \"},{\"id\":\"Entity_VisHide\",\"kind\":2,\"label\":\"Entity_VisHide\",\"documentation\":\"Hides or shows an entity visually. \"},{\"id\":\"Misc_DoWeaponHitEffectOnPosition\",\"kind\":2,\"label\":\"Misc_DoWeaponHitEffectOnPosition\",\"documentation\":\"Do weapon hit effect on the ground nWeaponID is the property bag group id; if penetrated is set to false, deflection effect would be played instead\"},{\"id\":\"Misc_GetTerrainHeight\",\"kind\":2,\"label\":\"Misc_GetTerrainHeight\",\"documentation\":\"Returns the terrain height at the top-down co-ordinate specified (for terrain entities can walk on only) \"},{\"id\":\"Misc_ToggleEntities\",\"kind\":2,\"label\":\"Misc_ToggleEntities\",\"documentation\":\"Hide all world entities for NIS performance debugging. \"},{\"id\":\"ModMisc_MakeCasualtyAction\",\"kind\":2,\"label\":\"ModMisc_MakeCasualtyAction\",\"documentation\":\"Make the passed entity a casualty by triggering the MakeCasualtyAction \"},{\"id\":\"ModMisc_MakeWreckAction\",\"kind\":2,\"label\":\"ModMisc_MakeWreckAction\",\"documentation\":\"Make the passed entity a wreck by triggering the MakeWreckAction \"},{\"id\":\"ModMisc_OOCAction\",\"kind\":2,\"label\":\"ModMisc_OOCAction\",\"documentation\":\"Make the passed entity go out of control nTriggers an OutOfControlAction on the unit. Does not trigger any actions associated with an OOC weapon hit critical, just the OOC action.\"},{\"id\":\"UI_EnableEntityDecorator\",\"kind\":2,\"label\":\"UI_EnableEntityDecorator\",\"documentation\":\"Turn on or off entity decorator. The default is decorator enabled. \"},{\"id\":\"UI_EnableEntityMinimapIndicator\",\"kind\":2,\"label\":\"UI_EnableEntityMinimapIndicator\",\"documentation\":\"Turn on or off entity minimap indicator. The default is enabled. \"},{\"id\":\"UI_EnableEntitySelectionVisuals\",\"kind\":2,\"label\":\"UI_EnableEntitySelectionVisuals\",\"documentation\":\"Turn on or off entity selection visuals. The default is visuals enabled. \"},{\"id\":\"UI_EnableSquadDecorator\",\"kind\":2,\"label\":\"UI_EnableSquadDecorator\",\"documentation\":\"Turn on or off squad decorator. The default is decorator enabled. \"},{\"id\":\"UI_EnableSquadMinimapIndicator\",\"kind\":2,\"label\":\"UI_EnableSquadMinimapIndicator\",\"documentation\":\"Turn on or off squad minimap indicator. The default is enabled. \"},{\"id\":\"UI_GetAbilityIconName\",\"kind\":2,\"label\":\"UI_GetAbilityIconName\",\"documentation\":\"Returns the icon name for a given ability \"},{\"id\":\"Event_CreateAND\",\"kind\":2,\"label\":\"Event_CreateAND\",\"documentation\":\"Creates a Callback Event that triggers when ALL of the specified events are triggered. nOriginal events are removed.\"},{\"id\":\"Event_CreateOR\",\"kind\":2,\"label\":\"Event_CreateOR\",\"documentation\":\"Creates a Callback Event that triggers when ANY of the specified events are triggered. nOriginal events are removed.\"},{\"id\":\"Event_ElementOnScreen\",\"kind\":2,\"label\":\"Event_ElementOnScreen\",\"documentation\":\"Callback given callback function with data, when the given squad/entity/position is on screen. nCallback data parameter is agumented with: _player = PlayerID player, _element = SGroup/EGroup element\"},{\"id\":\"Event_EncounterIsDead\",\"kind\":2,\"label\":\"Event_EncounterIsDead\",\"documentation\":\"Trigger a Callback when an encounter is killed. nCallback parameter data augmented with: _encounterID, the encounter's reference\"},{\"id\":\"Event_Exists\",\"kind\":2,\"label\":\"Event_Exists\",\"documentation\":\"checks to see if the given event currently exists \"},{\"id\":\"Event_GroupBurning\",\"kind\":2,\"label\":\"Event_GroupBurning\",\"documentation\":\"Callback given callback function with data, when the egroup is burning nCallback parameter data augmented with: _group = EGroup/Entity group/entityID\"},{\"id\":\"Event_GroupIsDead\",\"kind\":2,\"label\":\"Event_GroupIsDead\",\"documentation\":\"Callback given callback function with data, when group is dead (empty). nCallback parameter data augmented with: _group = EGroup/SGroup group. Optional Retreating param will check if the unit is retreating as an alternate (for team weapons)\"},{\"id\":\"Event_GroupIsNotPinned\",\"kind\":2,\"label\":\"Event_GroupIsNotPinned\",\"documentation\":\"Callback given callback function with data, when group is not pinned nCallback parameter data augmented with: _group = SGroup group. Note: being suppressed counts as not being pinned\"},{\"id\":\"Event_GroupIsNotSuppressed\",\"kind\":2,\"label\":\"Event_GroupIsNotSuppressed\",\"documentation\":\"Callback given callback function with data, when group is not suppressed. nCallback parameter data augmented with: _group = SGroup group. Note: being pinned counts as not being suppressed.\"},{\"id\":\"Event_GroupIsPinned\",\"kind\":2,\"label\":\"Event_GroupIsPinned\",\"documentation\":\"Callback given callback function with data, when group is pinned nCallback parameter data augmented with: _group = SGroup group. \"},{\"id\":\"Event_GroupIsSuppressed\",\"kind\":2,\"label\":\"Event_GroupIsSuppressed\",\"documentation\":\"Callback given callback function with data, when group is suppressed. nCallback parameter data augmented with: _group = SGroup group. \"},{\"id\":\"Event_GroupLeftAlive\",\"kind\":2,\"label\":\"Event_GroupLeftAlive\",\"documentation\":\"Callback given callback function with data, when the amount of entities left in a group drops below amount. nCallback parameter data augmented with: _group = EGroup/SGroup group, _amount = Int amount\"},{\"id\":\"Event_IsDoingAttack\",\"kind\":2,\"label\":\"Event_IsDoingAttack\",\"documentation\":\"Callback given callback function with data, when group is doing an attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_IsEngaged\",\"kind\":2,\"label\":\"Event_IsEngaged\",\"documentation\":\"Callback given callback function with data, when group is doing an attack or is under attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_IsHoldingAny\",\"kind\":2,\"label\":\"Event_IsHoldingAny\",\"documentation\":\"Callback given callback function with data, when an element is holding anything or nothing. nCallback parameter data augmented with: _target = EGroup/SGroup/Entity/Squad target, _empty = Bool isEmpty\"},{\"id\":\"Event_IsInHold\",\"kind\":2,\"label\":\"Event_IsInHold\",\"documentation\":\"Callback given callback function with data, when a target element is in a hold or not. nCallback parameter data augmented with: _target = SGroup/Squad target, _inHold = Bool inHold\"},{\"id\":\"Event_IsSelected\",\"kind\":2,\"label\":\"Event_IsSelected\",\"documentation\":\"Callback when a target element is selected. nCallback parameter data augmented with: _target = EGroup/Entity/SGroup/Squad target, _all = Bool ANY/ALL\"},{\"id\":\"Event_IsUnderAttack\",\"kind\":2,\"label\":\"Event_IsUnderAttack\",\"documentation\":\"Callback given callback function with data, when group is under attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_NarrativeEventsNotRunning\",\"kind\":2,\"label\":\"Event_NarrativeEventsNotRunning\",\"documentation\":\"Callback given callback function with data, a narrative event is running. \"},{\"id\":\"Event_NarrativeEventsRunning\",\"kind\":2,\"label\":\"Event_NarrativeEventsRunning\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_OnHealth\",\"kind\":2,\"label\":\"Event_OnHealth\",\"documentation\":\"Callback given callback function with data, when an element's health falls below (or above if higher is true) given threshold. \"},{\"id\":\"Event_PlayerBuildingCount\",\"kind\":2,\"label\":\"Event_PlayerBuildingCount\",\"documentation\":\"Callback given function with data, when player has greater than or equal to amountOfBuildings nCallback parameter data augmented with: _player = PlayerID player, _amountOfBuildings = Int amountOfBuildings\"},{\"id\":\"Event_PlayerCanNotSeeElement\",\"kind\":2,\"label\":\"Event_PlayerCanNotSeeElement\",\"documentation\":\"Callback given callback function with data, when the given player can not see the element. nCallback data parameter is augmented with: _player = PlayerID player, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_PlayerCanSeeElement\",\"kind\":2,\"label\":\"Event_PlayerCanSeeElement\",\"documentation\":\"Callback given callback function with data, when the given player can see the element. nCallback data parameter is augmented with: _player = PlayerID player, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_PlayerDoesntOwnTerritory\",\"kind\":2,\"label\":\"Event_PlayerDoesntOwnTerritory\",\"documentation\":\"Callback given callback function with data, when player owns none of the given territories. nCallback parameter data augmented with: _player = PlayerID player, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_PlayerOwnsElement\",\"kind\":2,\"label\":\"Event_PlayerOwnsElement\",\"documentation\":\"Callback given function with data, when player owns the given element nCallback parameter data augmented with: _player = PlayerID player, _element = Entity/EGroup/Squad/SGroup element\"},{\"id\":\"Event_PlayerOwnsTerritory\",\"kind\":2,\"label\":\"Event_PlayerOwnsTerritory\",\"documentation\":\"Callback given callback function with data, when player owns all given territories. nCallback parameter data augmented with: _player = PlayerID player, _territory = sectorID/EGroup/Entity/Table of a capture point\"},{\"id\":\"Event_PlayerResourceLevel\",\"kind\":2,\"label\":\"Event_PlayerResourceLevel\",\"documentation\":\"Callback given callback function with data, when player has more than amount of resourceType. nCallback data parameter is augmented with: _player = PlayerID player, _resourceType = ResourceType resourceType, _amount = Int amount\"},{\"id\":\"Event_PlayerSquadCount\",\"kind\":2,\"label\":\"Event_PlayerSquadCount\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_Proximity\",\"kind\":2,\"label\":\"Event_Proximity\",\"documentation\":\"Callback given callback function with data when target enters location. nCallback data parameter augmented with (could be nil): _result_location = Pos/Marker/Table/SGroup/EGroup/SectorID proximity position.\"},{\"id\":\"Event_Remove\",\"kind\":2,\"label\":\"Event_Remove\",\"documentation\":\"Remove the given callback \"},{\"id\":\"Event_RemoveAll\",\"kind\":2,\"label\":\"Event_RemoveAll\",\"documentation\":\"Remove all existing callback events. \"},{\"id\":\"Event_TeamBuildingCount\",\"kind\":2,\"label\":\"Event_TeamBuildingCount\",\"documentation\":\"Callback given function with data, when player has greater than or equal to amountOfBuildings nCallback parameter data augmented with: _player = PlayerID player, _amountOfBuildings = Int amountOfBuildings\"},{\"id\":\"Event_TeamCanNotSeeElement\",\"kind\":2,\"label\":\"Event_TeamCanNotSeeElement\",\"documentation\":\"Callback given callback function with data, when the given team can not see the element. nCallback data parameter is augmented with: _team = TeamID team, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_TeamCanSeeElement\",\"kind\":2,\"label\":\"Event_TeamCanSeeElement\",\"documentation\":\"Callback given callback function with data, when the given team can see the element. nCallback data parameter is augmented with: _team = TeamID team, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_TeamDoesntOwnTerritory\",\"kind\":2,\"label\":\"Event_TeamDoesntOwnTerritory\",\"documentation\":\"Callback given callback function with data, when a team owns none of the given territories. nCallback parameter data augmented with: _team = TeamID team, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_TeamOwnsElement\",\"kind\":2,\"label\":\"Event_TeamOwnsElement\",\"documentation\":\"Callback given function with data, when a team owns the given element nCallback parameter data augmented with: _team = TeamID team, _element = Entity/EGroup/Squad/SGroup element\"},{\"id\":\"Event_TeamOwnsTerritory\",\"kind\":2,\"label\":\"Event_TeamOwnsTerritory\",\"documentation\":\"Callback given callback function with data, when a team owns all given territories. nCallback parameter data augmented with: _team = TeamID team, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_TeamResourceLevel\",\"kind\":2,\"label\":\"Event_TeamResourceLevel\",\"documentation\":\"Callback given callback function with data, when a team has a combined amount more than amount of resourceType. nCallback data parameter is augmented with: _team = TeamID team, _resourceType = ResourceType resourceType, _amount = Int amount\"},{\"id\":\"Event_TeamSquadCount\",\"kind\":2,\"label\":\"Event_TeamSquadCount\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_Timer\",\"kind\":2,\"label\":\"Event_Timer\",\"documentation\":\"Callback given callback function with data, after a specified delay. nDelay can be a table containing two numbers and will randomly select a delay from between the two\"},{\"id\":\"Event_ToggleDebug\",\"kind\":2,\"label\":\"Event_ToggleDebug\",\"documentation\":\"Toggles the ScarEvent debugger ON and OFF \"},{\"id\":\"Event_View\",\"kind\":2,\"label\":\"Event_View\",\"documentation\":\"Calls the view_manager on a ScarEvent with a specific ID. \"},{\"id\":\"EventHandler_AssignEncounterGoal\",\"kind\":2,\"label\":\"EventHandler_AssignEncounterGoal\",\"documentation\":\"Callback helper function for assigning a goal to an Encounter. Name of \"parameters\": 'goalData', 'encounter'. nExample usage: Event_*(EventHandler_AssignEncounterGoal, {encounter = myEncounter, goalData = myGoalData}, ...\"},{\"id\":\"EventHandler_ObjectiveComplete\",\"kind\":2,\"label\":\"EventHandler_ObjectiveComplete\",\"documentation\":\"Callback helper function for completing an objective. Received \"parameters\": Table objective, Bool showTitle, Bool skipIntel nExample usage: Event_*(EventHandler_ObjectiveComplete, {objective = objectiveID}, ...\"},{\"id\":\"EventHandler_ObjectiveStart\",\"kind\":2,\"label\":\"EventHandler_ObjectiveStart\",\"documentation\":\"Callback helper function for starting an objective, name of objective parameter is objective, additional \"parameters\": Bool showTitle, Bool skipIntel nExample usage: Event_*(EventHandler_ObjectiveStart, {objective = objectiveID, showTitle = true, skipIntel = true}, ...\"},{\"id\":\"EventHandler_RemoveHint\",\"kind\":2,\"label\":\"EventHandler_RemoveHint\",\"documentation\":\"Callback helper function for removing in-game hints. Name of hintpointID parameter is 'hint'. Can receive a table of ID's. nExample usage: Event_*(EventHandler_RemoveHint, {hint = hp_hintPointID}, ...\"},{\"id\":\"EventHandler_RemoveMinimapBlip\",\"kind\":2,\"label\":\"EventHandler_RemoveMinimapBlip\",\"documentation\":\"Callback helper function for removing in minimap blips, name of blipID parameter is blip nExample usage: Event_*(EventHandler_RemoveMinimapBlip, {blip = blipID}, ...\"},{\"id\":\"EventHandler_RemoveObjectiveUI\",\"kind\":2,\"label\":\"EventHandler_RemoveObjectiveUI\",\"documentation\":\"Callback helper function that removes objective UI elements, name of \"parameters\": objective, element nExample usage: Event_*(Objective_RemoveUIElements, {element = elementID, objective = objectiveID}, ...\"},{\"id\":\"EventHandler_Retreat\",\"kind\":2,\"label\":\"EventHandler_Retreat\",\"documentation\":\"Callback helper function that causes the input group to retreat, name of \"parameters\": group, location, deleteAtMarker, queued nExample usage: Event_*(EventHandler_Retreat, {group = sg_group, location = mkr_option, deleteAtMarker = true, queued = false}, ...\"},{\"id\":\"EventHandler_StaggeredRetreat\",\"kind\":2,\"label\":\"EventHandler_StaggeredRetreat\",\"documentation\":\"Callback helper function that causes the input group to retreat, name of \"parameters\": group, location, maxTries nExample usage: Event_*(EventHandler_Retreat, {group = sg_group, location = mkr_option, maxTries = 8}, ...\"},{\"id\":\"EventHandler_StartIntel\",\"kind\":2,\"label\":\"EventHandler_StartIntel\",\"documentation\":\"Callback helper function for Intel events, name of intel parameter is intel nExample usage: Event_*(EventHandler_StartIntel, {intel = EVENTS.Speech01}, ...\"},{\"id\":\"EventHandler_StartNislet\",\"kind\":2,\"label\":\"EventHandler_StartNislet\",\"documentation\":\"Callback helper function for Intel Nislet events, name of intel parameter is intel nExample usage: Event_*(EventHandler_StartIntel, {intel = EVENTS.Nislet01}, ...\"},{\"id\":\"EventHandler_StopFlashing\",\"kind\":2,\"label\":\"EventHandler_StopFlashing\",\"documentation\":\"Callback helper function for removing UI flashing. Name of ID parameter is flashID nExample usage: Event_*(EventHandler_StopFlashing, {flashID = myFlashID}, ...\"},{\"id\":\"FOW_PlayerExploreAll\",\"kind\":2,\"label\":\"FOW_PlayerExploreAll\",\"documentation\":\"Explores entire map for one player \"},{\"id\":\"FOW_PlayerRevealAll\",\"kind\":2,\"label\":\"FOW_PlayerRevealAll\",\"documentation\":\"Reveal FOW for specified player \"},{\"id\":\"FOW_PlayerRevealArea\",\"kind\":2,\"label\":\"FOW_PlayerRevealArea\",\"documentation\":\"Reveals a circular area for the given player over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until unreveal is called )\"},{\"id\":\"FOW_PlayerUnExploreAll\",\"kind\":2,\"label\":\"FOW_PlayerUnExploreAll\",\"documentation\":\"Unexplores entire map for one player \"},{\"id\":\"FOW_PlayerUnRevealAll\",\"kind\":2,\"label\":\"FOW_PlayerUnRevealAll\",\"documentation\":\"Use to undo a FOW_RevealAll for specified player \"},{\"id\":\"FOW_PlayerUnRevealArea\",\"kind\":2,\"label\":\"FOW_PlayerUnRevealArea\",\"documentation\":\"UnReveals a circular area for a given player. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. \"},{\"id\":\"FOW_RevealAll\",\"kind\":2,\"label\":\"FOW_RevealAll\",\"documentation\":\"Reveal FOW for all players \"},{\"id\":\"FOW_RevealArea\",\"kind\":2,\"label\":\"FOW_RevealArea\",\"documentation\":\"Reveals a circular area for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until unreveal is called )\"},{\"id\":\"FOW_RevealEGroup\",\"kind\":2,\"label\":\"FOW_RevealEGroup\",\"documentation\":\"Reveals an entity groups line of sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entities are dead )\"},{\"id\":\"FOW_RevealEGroupOnly\",\"kind\":2,\"label\":\"FOW_RevealEGroupOnly\",\"documentation\":\"Reveals an entity groups in FOW for all alive players over a given duration. nPass in a duration of -1 for indefinite duration ( until the entities are dead )\"},{\"id\":\"FOW_RevealEntity\",\"kind\":2,\"label\":\"FOW_RevealEntity\",\"documentation\":\"Reveals an entities line of sight (LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entity is dead )\"},{\"id\":\"FOW_RevealMarker\",\"kind\":2,\"label\":\"FOW_RevealMarker\",\"documentation\":\"Reveals an area the size of a given markers proximity at that markers position for a given amount of time. Pass in a duration of 1 for indefinite duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nThis function will reveal the FOW for ALL alive players. This does not work with markers with rectangular proximity type\"},{\"id\":\"FOW_RevealSGroup\",\"kind\":2,\"label\":\"FOW_RevealSGroup\",\"documentation\":\"Reveals a squad groups line of sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the squads are dead )\"},{\"id\":\"FOW_RevealSGroupOnly\",\"kind\":2,\"label\":\"FOW_RevealSGroupOnly\",\"documentation\":\"Reveals a squad groups in fow for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the squads are dead )\"},{\"id\":\"FOW_RevealSquad\",\"kind\":2,\"label\":\"FOW_RevealSquad\",\"documentation\":\"Reveals a squads line if sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entity is dead )\"},{\"id\":\"FOW_RevealTerritory\",\"kind\":2,\"label\":\"FOW_RevealTerritory\",\"documentation\":\"Reveals a territory to a player \"},{\"id\":\"FOW_UnRevealAll\",\"kind\":2,\"label\":\"FOW_UnRevealAll\",\"documentation\":\"Use to undo a FOW_RevealAll \"},{\"id\":\"FOW_UnRevealArea\",\"kind\":2,\"label\":\"FOW_UnRevealArea\",\"documentation\":\"UnReveals a circular area for all alive players. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. \"},{\"id\":\"FOW_UnRevealMarker\",\"kind\":2,\"label\":\"FOW_UnRevealMarker\",\"documentation\":\"Unreveals an area the size of a given markers proximity at that markers position. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nThis does not work with markers with rectangular proximity type\"},{\"id\":\"FOW_UnRevealTerritory\",\"kind\":2,\"label\":\"FOW_UnRevealTerritory\",\"documentation\":\"Unreveals a territory sector \"},{\"id\":\"EGroup_CreateTable\",\"kind\":2,\"label\":\"EGroup_CreateTable\",\"documentation\":\"Returns a table of egroups NOT in the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"EGroup_GetWBTable\",\"kind\":2,\"label\":\"EGroup_GetWBTable\",\"documentation\":\"Returns a table of egroups from the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"Marker_GetNonSequentialTable\",\"kind\":2,\"label\":\"Marker_GetNonSequentialTable\",\"documentation\":\"Returns a fixed size table of markers from the world builder. Markers that do not exist in the WB, will be nil in the table. This is why we call it 'non-sequential' \"},{\"id\":\"Marker_GetTable\",\"kind\":2,\"label\":\"Marker_GetTable\",\"documentation\":\"Returns a table of markers from the world builder. Creates as many as it finds nmkr_table = Marker_GetTable( 'mkr_%d' ) -- creates a table with 3 markers named 'mkr_1', 'mkr_2', and 'mkr_3' (and so on) from the WB<BR/><BR/> mkr_table2 = Marker_GetTable( 'mkr_%02d' ) -- creates a table with 3 markers named 'mkr_01', 'mkr_02', 'mkr_03' (and so on) from the WB<BR/><BR/> mkr_table3 = Marker_GetTable( 'mkr_%03d_patrol' ) -- creates a table with 3 markers named 'mkr_001_patrol', 'mkr_002_patrol' (and so on) from the WB<BR/><BR/>\"},{\"id\":\"SGroup_CreateTable\",\"kind\":2,\"label\":\"SGroup_CreateTable\",\"documentation\":\"Returns a table of sgroups NOT in the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"SGroup_GetWBTable\",\"kind\":2,\"label\":\"SGroup_GetWBTable\",\"documentation\":\"Returns a table of sgroups from the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"Marker_DoesNumberAttributeExist\",\"kind\":2,\"label\":\"Marker_DoesNumberAttributeExist\",\"documentation\":\"Returns true if a generic number attribute exists for the marker type. \"},{\"id\":\"Marker_DoesStringAttributeExist\",\"kind\":2,\"label\":\"Marker_DoesStringAttributeExist\",\"documentation\":\"Returns true if a generic string attribute exists for the marker type. \"},{\"id\":\"Marker_Exists\",\"kind\":2,\"label\":\"Marker_Exists\",\"documentation\":\"Returns true if marker exists. If you don't care about the type, pass in an empty string ( \"\" ) \"},{\"id\":\"Marker_FromName\",\"kind\":2,\"label\":\"Marker_FromName\",\"documentation\":\"Returns a ScarMarker from the Mission Editor. If you don't care about the type, pass in an empty string ( \"\" ) n The type is defined in the markers list of the mission editor when placing markers.<BR/> You will need the result of this function to call any functions that start with Marker_\"},{\"id\":\"Marker_GetDirection\",\"kind\":2,\"label\":\"Marker_GetDirection\",\"documentation\":\"Returns a vector for the marker direction \"},{\"id\":\"Marker_GetName\",\"kind\":2,\"label\":\"Marker_GetName\",\"documentation\":\"Returns the name of a given marker. This value gets set in the Mission Editor. \"},{\"id\":\"Marker_GetNumberAttribute\",\"kind\":2,\"label\":\"Marker_GetNumberAttribute\",\"documentation\":\"Returns a generic number attribute defined in a marker. n Different marker types have different attributes. Note: All marker types have Name and Proximity. Do not use this function to retrieve these values, use Marker_GetName and Marker_GetProximity instead.\"},{\"id\":\"Marker_GetPosition\",\"kind\":2,\"label\":\"Marker_GetPosition\",\"documentation\":\"Returns the position of a given marker. \"},{\"id\":\"Marker_GetProximityRadius\",\"kind\":2,\"label\":\"Marker_GetProximityRadius\",\"documentation\":\"Returns the proximity radius of a given marker. Only for marker with proximity type PT_Circle. This value gets set in the Mission Editor. \"},{\"id\":\"Marker_GetProximityType\",\"kind\":2,\"label\":\"Marker_GetProximityType\",\"documentation\":\"Returns the proximity type of a given marker. The possible results are PT_Circle and PT_Rectangle \"},{\"id\":\"Marker_GetSequence\",\"kind\":2,\"label\":\"Marker_GetSequence\",\"documentation\":\"Builds a table of MarkerIDs that are named in a sequence. i.e. a name of \"spot\" will find markers \"spot1\", \"spot2\" and so on, up until it looks for a marker that isn't there. \"},{\"id\":\"Marker_GetStringAttribute\",\"kind\":2,\"label\":\"Marker_GetStringAttribute\",\"documentation\":\"Returns a generic string attribute defined in a marker. Different marker types can have different attributes. Note: All marker types have Name and Proximity. Do not use this function to retrieve these values, use Marker_GetName and Marker_GetProximity instead. See markertypes.lua for a listing of all the marker types.\"},{\"id\":\"Marker_GetType\",\"kind\":2,\"label\":\"Marker_GetType\",\"documentation\":\"Returns the typename of a given marker. This is the typename from the Mission Editor (name displayed when placing markers) \"},{\"id\":\"Marker_InProximity\",\"kind\":2,\"label\":\"Marker_InProximity\",\"documentation\":\"Returns true if the given position is in the markers proximity radius or proximity rectangle (depending on the type). \"},{\"id\":\"Modifier_IsEnabledOnEGroup\",\"kind\":2,\"label\":\"Modifier_IsEnabledOnEGroup\",\"documentation\":\"Checks if a modifier is enabled on all or any entities in an egroup \"},{\"id\":\"Modifier_Remove\",\"kind\":2,\"label\":\"Modifier_Remove\",\"documentation\":\"Remove an applied modifier. \"},{\"id\":\"Modifier_RemoveAllFromEGroup\",\"kind\":2,\"label\":\"Modifier_RemoveAllFromEGroup\",\"documentation\":\"Removes all SCAR-applied modifiers for a specific EGroup. \"},{\"id\":\"Modifier_RemoveAllFromSGroup\",\"kind\":2,\"label\":\"Modifier_RemoveAllFromSGroup\",\"documentation\":\"Removes all SCAR-applied modifiers for a specific SGroup. \"},{\"id\":\"Modify_AbilityDelayTime\",\"kind\":2,\"label\":\"Modify_AbilityDelayTime\",\"documentation\":\"Modifies the initial delay time of an ability \"},{\"id\":\"Modify_AbilityDurationTime\",\"kind\":2,\"label\":\"Modify_AbilityDurationTime\",\"documentation\":\"Modifies the duration of an ability \"},{\"id\":\"Modify_AbilityManpowerCost\",\"kind\":2,\"label\":\"Modify_AbilityManpowerCost\",\"documentation\":\"Modifies the manpower cost of an ability \"},{\"id\":\"Modify_AbilityMaxCastRange\",\"kind\":2,\"label\":\"Modify_AbilityMaxCastRange\",\"documentation\":\"Modifies the maximum casting range of an ability. NOTE: it assumes that the actions that the ability executes can also handle the modified range \"},{\"id\":\"Modify_AbilityMinCastRange\",\"kind\":2,\"label\":\"Modify_AbilityMinCastRange\",\"documentation\":\"Modifies the minimum casting range of an ability. NOTE: it assumes that the actions that the ability executes can also handle the modified range \"},{\"id\":\"Modify_AbilityMunitionsCost\",\"kind\":2,\"label\":\"Modify_AbilityMunitionsCost\",\"documentation\":\"Modifies the munitions cost of an ability \"},{\"id\":\"Modify_AbilityRechargeTime\",\"kind\":2,\"label\":\"Modify_AbilityRechargeTime\",\"documentation\":\"Modifies the recharge time of an ability \"},{\"id\":\"Modify_Armor\",\"kind\":2,\"label\":\"Modify_Armor\",\"documentation\":\"Modifies a squad or entity's armor \"},{\"id\":\"Modify_CaptureTime\",\"kind\":2,\"label\":\"Modify_CaptureTime\",\"documentation\":\"Modifies the capture time of all strategic points in an EGroup. DO NOT USE THIS FUNCTION. \"},{\"id\":\"Modify_DisableHold\",\"kind\":2,\"label\":\"Modify_DisableHold\",\"documentation\":\"Enable or disable hold (garrisoning) for an egroup or sgroup \"},{\"id\":\"Modify_Enable_ParadropReinforcements\",\"kind\":2,\"label\":\"Modify_Enable_ParadropReinforcements\",\"documentation\":\"Allows paratroopers to reinforce from the sky. Set to true to enable, false to disable. \"},{\"id\":\"Modify_EntityBuildTime\",\"kind\":2,\"label\":\"Modify_EntityBuildTime\",\"documentation\":\"Modifies the time taken to build a particular EBP. This only affects the given player. \"},{\"id\":\"Modify_EntityCost\",\"kind\":2,\"label\":\"Modify_EntityCost\",\"documentation\":\"Modifies the cost of an entity for a particular player. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Modify_PlayerExperienceReceived\",\"kind\":2,\"label\":\"Modify_PlayerExperienceReceived\",\"documentation\":\"Modifies the veterancy experience received by a player \"},{\"id\":\"Modify_PlayerProductionRate\",\"kind\":2,\"label\":\"Modify_PlayerProductionRate\",\"documentation\":\"Modifies the production rate of a player. \"},{\"id\":\"Modify_PlayerResourceCap\",\"kind\":2,\"label\":\"Modify_PlayerResourceCap\",\"documentation\":\"Modifies a player's resource cap. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel. Possible math types are MUT_Multiplication, MUT_Addition. \"},{\"id\":\"Modify_PlayerResourceGift\",\"kind\":2,\"label\":\"Modify_PlayerResourceGift\",\"documentation\":\"Modifies a player's resource bonus received (ie. one-time resource gifts) Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Modify_PlayerResourceRate\",\"kind\":2,\"label\":\"Modify_PlayerResourceRate\",\"documentation\":\"Modifies a player's incoming resource rate. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action. Possible math types are MUT_Multiplication, MUT_Addition. \"},{\"id\":\"Modify_PlayerSightRadius\",\"kind\":2,\"label\":\"Modify_PlayerSightRadius\",\"documentation\":\"Modifies the sight radius for a player. \"},{\"id\":\"Modify_ProductionRate\",\"kind\":2,\"label\":\"Modify_ProductionRate\",\"documentation\":\"Modifies the production rate of all factories in an EGroup \"},{\"id\":\"Modify_ProjectileDelayTime\",\"kind\":2,\"label\":\"Modify_ProjectileDelayTime\",\"documentation\":\"Modifies a projectile's delay_detonate_time. \"},{\"id\":\"Modify_ReceivedAccuracy\",\"kind\":2,\"label\":\"Modify_ReceivedAccuracy\",\"documentation\":\"Modifies the chance of a squad/entity being hit \"},{\"id\":\"Modify_ReceivedDamage\",\"kind\":2,\"label\":\"Modify_ReceivedDamage\",\"documentation\":\"Modifies the damage a squad/entity receives. \"},{\"id\":\"Modify_ReceivedSuppression\",\"kind\":2,\"label\":\"Modify_ReceivedSuppression\",\"documentation\":\"Modifies the rate at which a squad gets suppressed \"},{\"id\":\"Modify_SetUpgradeCost\",\"kind\":2,\"label\":\"Modify_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. This only affects the given player \"},{\"id\":\"Modify_SightRadius\",\"kind\":2,\"label\":\"Modify_SightRadius\",\"documentation\":\"Modifies the sight radius for an egroup or an sgroup. \"},{\"id\":\"Modify_SquadAvailability\",\"kind\":2,\"label\":\"Modify_SquadAvailability\",\"documentation\":\"Modifies the availability limit of a squad type for any given player \"},{\"id\":\"Modify_SquadCaptureRate\",\"kind\":2,\"label\":\"Modify_SquadCaptureRate\",\"documentation\":\"Modifies a squad's rate at which it will capture a strategic point. \"},{\"id\":\"Modify_SquadTypeSightRadius\",\"kind\":2,\"label\":\"Modify_SquadTypeSightRadius\",\"documentation\":\"Modifies the sight radius of a squad type for any given player \"},{\"id\":\"Modify_TargetPriority\",\"kind\":2,\"label\":\"Modify_TargetPriority\",\"documentation\":\"Modifies the target priority of a squad or entity group from the attacker. The value is an addition \"},{\"id\":\"Modify_TeamWeapon\",\"kind\":2,\"label\":\"Modify_TeamWeapon\",\"documentation\":\"Modifies a sync weapon only. nThe hardpoint defaults to \"hardpoint_01\"\"},{\"id\":\"Modify_TerritoryRadius\",\"kind\":2,\"label\":\"Modify_TerritoryRadius\",\"documentation\":\"Modifies the territory radius for an egroup or an sgroup. \"},{\"id\":\"Modify_UnitSpeed\",\"kind\":2,\"label\":\"Modify_UnitSpeed\",\"documentation\":\"Modifies the maximum speed for a vehicle. This has no effect on infantry. \"},{\"id\":\"Modify_UnitVeterancyValue\",\"kind\":2,\"label\":\"Modify_UnitVeterancyValue\",\"documentation\":\"Modifies the Veterancy Experience value of the target SGroup, EGroup, Entity, or Squad. Mathtype is Multiplication by default \"},{\"id\":\"Modify_UpgradeBuildTime\",\"kind\":2,\"label\":\"Modify_UpgradeBuildTime\",\"documentation\":\"Modifies the build time for a particular upgrade. This only affects the given player. \"},{\"id\":\"Modify_Upkeep\",\"kind\":2,\"label\":\"Modify_Upkeep\",\"documentation\":\"Modifies the upkeep for a player \"},{\"id\":\"Modify_VehicleRepairRate\",\"kind\":2,\"label\":\"Modify_VehicleRepairRate\",\"documentation\":\"Modifies the vehicle repair rate of all a player's engineers \"},{\"id\":\"Modify_VehicleRotationSpeed\",\"kind\":2,\"label\":\"Modify_VehicleRotationSpeed\",\"documentation\":\"Modifies the vehicle rotation speed \"},{\"id\":\"Modify_VehicleTurretRotationSpeed\",\"kind\":2,\"label\":\"Modify_VehicleTurretRotationSpeed\",\"documentation\":\"Modifies the turret rotation speed of a vehicle squad nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_Vulnerability\",\"kind\":2,\"label\":\"Modify_Vulnerability\",\"documentation\":\"Increases the received accuracy, penetration, and damage on a squad by the scalefactor. For example, a scalefactor of 2 means that the squad gets 2x the received accuracy, 2x the received penetration, and 2x the received damage. \"},{\"id\":\"Modify_WeaponAccuracy\",\"kind\":2,\"label\":\"Modify_WeaponAccuracy\",\"documentation\":\"Modifies a squad's weapon accuracy. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponBurstLength\",\"kind\":2,\"label\":\"Modify_WeaponBurstLength\",\"documentation\":\"Modifies a squad's weapon burst length (time). nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponBurstRateOfFire\",\"kind\":2,\"label\":\"Modify_WeaponBurstRateOfFire\",\"documentation\":\"Modifies a squad's weapon rate of fire. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponCooldown\",\"kind\":2,\"label\":\"Modify_WeaponCooldown\",\"documentation\":\"Modifies a squad's weapon cooldown time. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponDamage\",\"kind\":2,\"label\":\"Modify_WeaponDamage\",\"documentation\":\"Modifies a squad's weapon damage. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponEnabled\",\"kind\":2,\"label\":\"Modify_WeaponEnabled\",\"documentation\":\"Enables or disables a weapon hardpoint nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponPenetration\",\"kind\":2,\"label\":\"Modify_WeaponPenetration\",\"documentation\":\"Modifies a squad's weapon penetration. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponRange\",\"kind\":2,\"label\":\"Modify_WeaponRange\",\"documentation\":\"Modifies a squad's weapon range. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponReload\",\"kind\":2,\"label\":\"Modify_WeaponReload\",\"documentation\":\"Modifies a squad's weapon reload time. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponScatter\",\"kind\":2,\"label\":\"Modify_WeaponScatter\",\"documentation\":\"Modifies a squad's weapon scatter. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponSuppression\",\"kind\":2,\"label\":\"Modify_WeaponSuppression\",\"documentation\":\"Modifies a squad's weapon suppression. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"MP_BlizzardInit\",\"kind\":2,\"label\":\"MP_BlizzardInit\",\"documentation\":\"Initializes and starts cold weather and blizzard mechanics, taking in atmosphere presets to use in each condition. Uses MP values by default. Defaults to NOT starting in blizzard conditions. nYou need to add import(\"Systems/BlizzardMulitplayer.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"Objective_AddPing\",\"kind\":2,\"label\":\"Objective_AddPing\",\"documentation\":\"Adds a tactical map ping to an objective \"},{\"id\":\"Objective_AddUIElements\",\"kind\":2,\"label\":\"Objective_AddUIElements\",\"documentation\":\"Adds multiple UI elements on one position. 'pos' can be group/entity/squad/marker. worldArrow adds a 3D arrow which points to the thing in the world. hintpointText adds a hint point that appears on the thing when moused over. If you're adding an arrow or a hintpoint, this thing will be among those potentially pointed to by the 2D HUD arrow. objectiveArrowOffset is an offset applied to the arrow's position (you can specify a height offset or a 3D position offset). \"},{\"id\":\"Objective_AreAllPrimaryObjectivesComplete\",\"kind\":2,\"label\":\"Objective_AreAllPrimaryObjectivesComplete\",\"documentation\":\"Returns whether all primary objectives have been completed. \"},{\"id\":\"Objective_Complete\",\"kind\":2,\"label\":\"Objective_Complete\",\"documentation\":\"'Completes' an objective. Wrapper function for Objective_SetState with a few other features. If you do not want the objective title to be shown on screen, pass in 'false' for bShowTitle nIncludes managing the blips and triggers the OnComplete() function as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_COMPLTE event.\"},{\"id\":\"Objective_Fail\",\"kind\":2,\"label\":\"Objective_Fail\",\"documentation\":\"'Fails' an objective. Wrapper function for Objective_SetState with a few other features. nIncludes managing the blips and triggers the OnFail() function as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_FAIL event.\"},{\"id\":\"Objective_GetCounter\",\"kind\":2,\"label\":\"Objective_GetCounter\",\"documentation\":\"Returns the current count associated with this objective. \"},{\"id\":\"Objective_GetTimerSeconds\",\"kind\":2,\"label\":\"Objective_GetTimerSeconds\",\"documentation\":\"Returns the amount of seconds on the timer (time remaining or time elapsed, based on the type of timer used) \"},{\"id\":\"Objective_IncreaseCounter\",\"kind\":2,\"label\":\"Objective_IncreaseCounter\",\"documentation\":\"Increases the counter that is associated with this objective in the UI. You can provide an amount to increase by. \"},{\"id\":\"Objective_IsComplete\",\"kind\":2,\"label\":\"Objective_IsComplete\",\"documentation\":\"Returns whether an objective is complete \"},{\"id\":\"Objective_IsCounterSet\",\"kind\":2,\"label\":\"Objective_IsCounterSet\",\"documentation\":\"Returns true if a counter has been set for this objective \"},{\"id\":\"Objective_IsFailed\",\"kind\":2,\"label\":\"Objective_IsFailed\",\"documentation\":\"Returns whether an objective is failed \"},{\"id\":\"Objective_IsStarted\",\"kind\":2,\"label\":\"Objective_IsStarted\",\"documentation\":\"Returns whether an objective has been started. Completed objectives will return true. \"},{\"id\":\"Objective_IsTimerSet\",\"kind\":2,\"label\":\"Objective_IsTimerSet\",\"documentation\":\"Returns true if a timer has been set for this objective \"},{\"id\":\"Objective_IsVisible\",\"kind\":2,\"label\":\"Objective_IsVisible\",\"documentation\":\"Returns whether an objective is visible or not. \"},{\"id\":\"Objective_PauseTimer\",\"kind\":2,\"label\":\"Objective_PauseTimer\",\"documentation\":\"Pauses the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_Register\",\"kind\":2,\"label\":\"Objective_Register\",\"documentation\":\"'Registers' an objective. Wrapper function for Objective_Create with a few other features. nIncludes pings as defined by the objective table created in the main scar file. You can pass in a team or player, so that the objective only applies to it.\"},{\"id\":\"Objective_RemovePing\",\"kind\":2,\"label\":\"Objective_RemovePing\",\"documentation\":\"Removes a tactical map ping from an objective \"},{\"id\":\"Objective_RemoveUIElements\",\"kind\":2,\"label\":\"Objective_RemoveUIElements\",\"documentation\":\"Removes a group of UI elements that were added by Objective_AddUIElements \"},{\"id\":\"Objective_ResumeTimer\",\"kind\":2,\"label\":\"Objective_ResumeTimer\",\"documentation\":\"Resume the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_SetAlwaysShowDetails\",\"kind\":2,\"label\":\"Objective_SetAlwaysShowDetails\",\"documentation\":\"Sets whether this objective always shows detailed text, the HUD arrow, or the hintpoints. There can only be one objective at a time that forces the HUD arrow to show up. If you pass in 'nil' for hud_arrow then its behavior is not affected. \"},{\"id\":\"Objective_SetCounter\",\"kind\":2,\"label\":\"Objective_SetCounter\",\"documentation\":\"Sets a counter that is associated with this objective in the UI. You can provide a 'maximum' so that it shows up as \"1 of 5\" \"},{\"id\":\"Objective_Show\",\"kind\":2,\"label\":\"Objective_Show\",\"documentation\":\"Shows or hides an objective from the UI and tactical map \"},{\"id\":\"Objective_Start\",\"kind\":2,\"label\":\"Objective_Start\",\"documentation\":\"Shows an objective to the player and activates it nIncludes pings and FOW as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_START event.\"},{\"id\":\"Objective_StartTimer\",\"kind\":2,\"label\":\"Objective_StartTimer\",\"documentation\":\"Starts a timer that is associated with this objective in the UI. Use COUNT_DOWN or COUNT_UP for the 'direction' parameter \"},{\"id\":\"Objective_StopCounter\",\"kind\":2,\"label\":\"Objective_StopCounter\",\"documentation\":\"Stops the objective's counter. If a counter has not been set, it does nothing. \"},{\"id\":\"Objective_StopTimer\",\"kind\":2,\"label\":\"Objective_StopTimer\",\"documentation\":\"Stops the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_TogglePings\",\"kind\":2,\"label\":\"Objective_TogglePings\",\"documentation\":\"Toggles minimap blips on or off. \"},{\"id\":\"Objective_UpdateText\",\"kind\":2,\"label\":\"Objective_UpdateText\",\"documentation\":\"Updates the title and description for the objective. If you only want to set one of them, pass in nil for the other \"},{\"id\":\"Cmd_StopSquadsOnly\",\"kind\":2,\"label\":\"Cmd_StopSquadsOnly\",\"documentation\":\"Pass in a group to command to 'stop'. Pass in a squad state to filter by. \"},{\"id\":\"OpGameSetup\",\"kind\":2,\"label\":\"OpGameSetup\",\"documentation\":\"Operation Setup function registers all valid players nOpGameSetup() should be called by the individual Operation files It creates a master table _Op.PDT meant to be used by Op Utility files only It returns this table so that the Operation file can use and manipulate its own\"},{\"id\":\"OpNPC_AddSupportGroup\",\"kind\":2,\"label\":\"OpNPC_AddSupportGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_AddSyncWpnGroup\",\"kind\":2,\"label\":\"OpNPC_AddSyncWpnGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_AddTeamWpnGroup\",\"kind\":2,\"label\":\"OpNPC_AddTeamWpnGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_IsGroupActive\",\"kind\":2,\"label\":\"OpNPC_IsGroupActive\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_Name\",\"kind\":2,\"label\":\"OpNPC_Name\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpNPC_RemoveGroup\",\"kind\":2,\"label\":\"OpNPC_RemoveGroup\",\"documentation\":\"Removes the indicated sub table from the NPC Support Manager n\"},{\"id\":\"OpNPC_RetreatGroup\",\"kind\":2,\"label\":\"OpNPC_RetreatGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_SetGroupActive\",\"kind\":2,\"label\":\"OpNPC_SetGroupActive\",\"documentation\":\"Changes the state of the indicated sub table to the value provided n\"},{\"id\":\"OpPlayer_Action\",\"kind\":2,\"label\":\"OpPlayer_Action\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpUtil_AddModifier\",\"kind\":2,\"label\":\"OpUtil_AddModifier\",\"documentation\":\"Applies the indicated modifier type to the specified group or player \"},{\"id\":\"OpUtil_AddResourcesToTeam\",\"kind\":2,\"label\":\"OpUtil_AddResourcesToTeam\",\"documentation\":\"Works with _Op.PDT, takes a playerID or team and gives that team OR the enemy team lots of resources \"},{\"id\":\"OpUtil_AssignSquadSameTypeControlGroup\",\"kind\":2,\"label\":\"OpUtil_AssignSquadSameTypeControlGroup\",\"documentation\":\"Trys to assign a squad to a control group with the sametype of squad \"},{\"id\":\"OpUtil_AssignSquadUnusedControlGroup\",\"kind\":2,\"label\":\"OpUtil_AssignSquadUnusedControlGroup\",\"documentation\":\"Assigns the squads within a sgroup to free control group \"},{\"id\":\"OpUtil_ClearPlayZone\",\"kind\":2,\"label\":\"OpUtil_ClearPlayZone\",\"documentation\":\"Removes the 'Playable Zone' set by OpUtil_SetPlayZone \"},{\"id\":\"OpUtil_EgroupIsCapturedByTeam\",\"kind\":2,\"label\":\"OpUtil_EgroupIsCapturedByTeam\",\"documentation\":\"Tracks a syncweapon ID and destroys the weapon if it ever becomes un-crewed \"},{\"id\":\"OpUtil_EnemyEGroupArrowManager\",\"kind\":2,\"label\":\"OpUtil_EnemyEGroupArrowManager\",\"documentation\":\"Displays an arrow with a text message over a random building that's part of an EGroup of buildings nUseful when you want to highlight a group of buildings that you want to destroy as an objective but don't want to highlight every building at once.\"},{\"id\":\"OpUtil_FindNearestCapturePoint\",\"kind\":2,\"label\":\"OpUtil_FindNearestCapturePoint\",\"documentation\":\"Finds the nearest captureable point to the sgroup nWill only compare to Registered Captureable Points, will return 'nil' if there are none in range\"},{\"id\":\"OpUtil_InvulnerableAdd\",\"kind\":2,\"label\":\"OpUtil_InvulnerableAdd\",\"documentation\":\"Adds an SGroup from a list of units to be tracked for invulnerability nSpecified SGroup will turn invulnerable when it reaches a specified number of survivors OR if the average health of the squad is <20% (under the hood, as a safety measure). If no number is entered the SGroup is assumed to be instantly invulnerable. The percentage is the average health of an sgroup, and will override the number of total members, and thus is optional. \"},{\"id\":\"OpUtil_InvulnerableRemove\",\"kind\":2,\"label\":\"OpUtil_InvulnerableRemove\",\"documentation\":\"Removes an SGroup from a list of units to be tracked for invulnerability nIf you want an SGroup to not be tracked anymore in terms of invulnerability use this function\"},{\"id\":\"OpUtil_LogSyncWpn\",\"kind\":2,\"label\":\"OpUtil_LogSyncWpn\",\"documentation\":\"Tracks a syncweapon ID and destroys the weapon if it ever becomes un-crewed \"},{\"id\":\"OpUtil_ReturnEnemyNPC\",\"kind\":2,\"label\":\"OpUtil_ReturnEnemyNPC\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns an enemy NPC \"},{\"id\":\"OpUtil_ReturnHumanPlayer\",\"kind\":2,\"label\":\"OpUtil_ReturnHumanPlayer\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns a Human player \"},{\"id\":\"OpUtil_ReturnNPCPlayer\",\"kind\":2,\"label\":\"OpUtil_ReturnNPCPlayer\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns a Non-Human player \"},{\"id\":\"OpUtil_ReturnRace\",\"kind\":2,\"label\":\"OpUtil_ReturnRace\",\"documentation\":\"Works with _Op.PDT, takes a player and returns the race \"},{\"id\":\"OpUtil_ReturnTeam\",\"kind\":2,\"label\":\"OpUtil_ReturnTeam\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns the team \"},{\"id\":\"OpUtil_SetPlayZone\",\"kind\":2,\"label\":\"OpUtil_SetPlayZone\",\"documentation\":\"Sets a 'playable zone' in the area and keeps all Human players within it \"},{\"id\":\"OpUtil_TeamOwnsEntity\",\"kind\":2,\"label\":\"OpUtil_TeamOwnsEntity\",\"documentation\":\"Checks to see if an egroup is owned by a team \"},{\"id\":\"OpVP_AddPenaltyGroup\",\"kind\":2,\"label\":\"OpVP_AddPenaltyGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpVP_Name\",\"kind\":2,\"label\":\"OpVP_Name\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpVP_RegisterCaptureablePoints\",\"kind\":2,\"label\":\"OpVP_RegisterCaptureablePoints\",\"documentation\":\"Registers a single egroup or a table of egroups as a captureable point nTracks the various states of the points, neutral or team owner\"},{\"id\":\"OpVP_RegisterPointDefense\",\"kind\":2,\"label\":\"OpVP_RegisterPointDefense\",\"documentation\":\"Add a set egroups and defensive formations to defend them n\"},{\"id\":\"OpVP_RemoveGroup\",\"kind\":2,\"label\":\"OpVP_RemoveGroup\",\"documentation\":\"Removes the indicated sub table from the VP Support Manager n\"},{\"id\":\"UI_PopUpMessage\",\"kind\":2,\"label\":\"UI_PopUpMessage\",\"documentation\":\"Auto-generate a popup message with callbacks. See OpUtil.scar for an example of how to use this function. nIf no buttons are defined it defaults to a 'Close' button that triggers no action.\"},{\"id\":\"Util_ProductionRestriction\",\"kind\":2,\"label\":\"Util_ProductionRestriction\",\"documentation\":\"Prevents the construction of squads or enities based on blueprint tables passed into the function. nCalling the function multiple times will stomp any previously data passed into the function.\"},{\"id\":\"Util_TutorialIntel\",\"kind\":2,\"label\":\"Util_TutorialIntel\",\"documentation\":\"Auto-generate a Tutorial Intel Event. Called individually or using the traditional table format. nSee Util_AutoIntel() Takes a table of parameters defining speaker(s)/line(s) or pass in Actor/String/Button/Sticky/Input\"},{\"id\":\"Player_AddAbility\",\"kind\":2,\"label\":\"Player_AddAbility\",\"documentation\":\"Add an ability to a player \"},{\"id\":\"Player_AddAbilityLockoutZone\",\"kind\":2,\"label\":\"Player_AddAbilityLockoutZone\",\"documentation\":\"Specifies a marker where an ability cannot be used. This only applies to abilities where you use the cursor to pick a location in the world (like a location to paradrop at). \"},{\"id\":\"Player_AddResource\",\"kind\":2,\"label\":\"Player_AddResource\",\"documentation\":\"Add resource to player, as opposed to just setting it. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Player_AddSquadsToSGroup\",\"kind\":2,\"label\":\"Player_AddSquadsToSGroup\",\"documentation\":\"For the given player, get all of the squads gathered into a squadgroup of your naming. nSquads will be added to given squad group. If the given squad group does not exist it will be created.\"},{\"id\":\"Player_AddUnspentCommandPoints\",\"kind\":2,\"label\":\"Player_AddUnspentCommandPoints\",\"documentation\":\"Gives the player new command points to spent on \"},{\"id\":\"Player_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Player_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY of a players squads are in proximity of a marker \"},{\"id\":\"Player_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnEntity\",\"documentation\":\"Tests if the player can currently use an ability on target entity \"},{\"id\":\"Player_CanCastAbilityOnPlayer\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnPlayer\",\"documentation\":\"Tests if the player can currently use an ability on target player \"},{\"id\":\"Player_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnPosition\",\"documentation\":\"Tests if the player can currently use an ability on target position \"},{\"id\":\"Player_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnSquad\",\"documentation\":\"Tests if the player can currently use an ability on target squad \"},{\"id\":\"Player_CanSeeEGroup\",\"kind\":2,\"label\":\"Player_CanSeeEGroup\",\"documentation\":\"Returns true if a player can see ALL or ANY items in an egroup \"},{\"id\":\"Player_CanSeeEntity\",\"kind\":2,\"label\":\"Player_CanSeeEntity\",\"documentation\":\"Returns true if a player can see a given entity (revealed in FOW) \"},{\"id\":\"Player_CanSeePosition\",\"kind\":2,\"label\":\"Player_CanSeePosition\",\"documentation\":\"Returns true if a player can see a given position. \"},{\"id\":\"Player_CanSeeSGroup\",\"kind\":2,\"label\":\"Player_CanSeeSGroup\",\"documentation\":\"Returns true if a player can see ALL or ANY items in an sgroup \"},{\"id\":\"Player_CanSeeSquad\",\"kind\":2,\"label\":\"Player_CanSeeSquad\",\"documentation\":\"Returns true if a player can see ALL or ANY units in a given squad (revealed in FOW) nSet all to true to check that ALL units are visible or set to false to check for ANY.\"},{\"id\":\"Player_ClearArea\",\"kind\":2,\"label\":\"Player_ClearArea\",\"documentation\":\"Any of the player's units in the marker area move out of the area, and can be made invulnerable for a bit whilst they do it nYou can replace the marker with a position and a range - i.e. Player_ClearArea(player, pos, range, invulnerable)\"},{\"id\":\"Player_ClearAvailabilities\",\"kind\":2,\"label\":\"Player_ClearAvailabilities\",\"documentation\":\"Clears item, command and construction menu availabilities for the player. \"},{\"id\":\"Player_ClearPopCapOverride\",\"kind\":2,\"label\":\"Player_ClearPopCapOverride\",\"documentation\":\"Clears the pop cap override so that modifiers can take effect again \"},{\"id\":\"Player_CompleteUpgrade\",\"kind\":2,\"label\":\"Player_CompleteUpgrade\",\"documentation\":\"Finish upgrade for a player \"},{\"id\":\"Player_DoParadrop\",\"kind\":2,\"label\":\"Player_DoParadrop\",\"documentation\":\"Do a paradrop with custom parameters for this player. This is similar to regular paradrop ability without any prereq check n sgroup is the SGroup that the newly created squad would be added to dropHeight is Height in metres the paratroopers are dropped from. dropDrift is Horizontal distance in metres from where the paratroopers are dropped from. blueprint is the blueprint to spawn. It could be squad or entity maxSquadEntityCount is the number of squad members to spawn. 0 means default is used maxDeathOnBuilding is the number of entities allowed to die when landing on buildings Example: local id = SBP.ALLIED_AIRBOURNE Player_DoParadrop( g_player1, sg_soldier1, Marker_GetPosition( marker4 ), 100.0, 10.0, id, 3, 2 )\"},{\"id\":\"Player_FindFirstEnemyPlayer\",\"kind\":2,\"label\":\"Player_FindFirstEnemyPlayer\",\"documentation\":\"Searches the player list in the world and returns the id of the first enemy player \"},{\"id\":\"Player_FromId\",\"kind\":2,\"label\":\"Player_FromId\",\"documentation\":\"Returns a player given a player id from the ME. \"},{\"id\":\"Player_GetAIType\",\"kind\":2,\"label\":\"Player_GetAIType\",\"documentation\":\"Returns the type of the given player if it is an AI. \"},{\"id\":\"Player_GetAll\",\"kind\":2,\"label\":\"Player_GetAll\",\"documentation\":\"Creates/Clears groups that contain all of a player's units and buildings. Defaults - sg_allsquads and eg_allentities nFills an SGroup with all of the given player's squads, and an EGroup with all the player's entities. If you don't provide and groups, then it defaults to using sg_allsquads and eg_allentities.\"},{\"id\":\"Player_GetAllEntitiesNearMarker\",\"kind\":2,\"label\":\"Player_GetAllEntitiesNearMarker\",\"documentation\":\"Gather together all of a player's entities that are in proximity to a marker, a position, or within a territory sector into an EGroup. The EGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Player_GetAllSquadsNearMarker\",\"kind\":2,\"label\":\"Player_GetAllSquadsNearMarker\",\"documentation\":\"Gather together all of a player's squads that are in proximity to a marker, a position, or within a territory sector into an SGroup. The SGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Player_GetBuildingID\",\"kind\":2,\"label\":\"Player_GetBuildingID\",\"documentation\":\"Returns the entityID of the first player owned building listed in the table. nThis only looks at completed buildings\"},{\"id\":\"Player_GetBuildingsCount\",\"kind\":2,\"label\":\"Player_GetBuildingsCount\",\"documentation\":\"Returns the total number of buildings owned by this player. \"},{\"id\":\"Player_GetBuildingsCountExcept\",\"kind\":2,\"label\":\"Player_GetBuildingsCountExcept\",\"documentation\":\"Returns the total number of buildings owned by this player (with exclusions). \"},{\"id\":\"Player_GetBuildingsCountOnly\",\"kind\":2,\"label\":\"Player_GetBuildingsCountOnly\",\"documentation\":\"Returns the number of buildings owned by this player (inclusive). \"},{\"id\":\"Player_GetCurrentPopulation\",\"kind\":2,\"label\":\"Player_GetCurrentPopulation\",\"documentation\":\"Use capType CT_Personnel to get current squad cap, CT_Vehicle to get current vehicle cap, CT_Medic to get current medic cap \"},{\"id\":\"Player_GetDisplayName\",\"kind\":2,\"label\":\"Player_GetDisplayName\",\"documentation\":\"Returns the players UI name. \"},{\"id\":\"Player_GetEntities\",\"kind\":2,\"label\":\"Player_GetEntities\",\"documentation\":\"Returns an EntityGroupObs containing all the players entities. n This function returns a 'global' entity group with the name '__Player%dEntities', where %d is the player ID. This means that you should never need to destroy it./n However, if you do destroy it, it will be recreated the next time this function is called.\"},{\"id\":\"Player_GetEntitiesFromType\",\"kind\":2,\"label\":\"Player_GetEntitiesFromType\",\"documentation\":\"Returns an EGroup containing all of the players entities of a specific unit_type (as defined by the type_ext on the entity) nThis function returns a new EGroup to allow tracking of different types. \"},{\"id\":\"Player_GetEntityConcentration\",\"kind\":2,\"label\":\"Player_GetEntityConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of entities owned by a player. nThis function is slow, so don't call it very often\"},{\"id\":\"Player_GetEntityCount\",\"kind\":2,\"label\":\"Player_GetEntityCount\",\"documentation\":\"Returns the number of entities a player currently owns \"},{\"id\":\"Player_GetEntityName\",\"kind\":2,\"label\":\"Player_GetEntityName\",\"documentation\":\"Returns the name of an entity a player currently owns \"},{\"id\":\"Player_GetID\",\"kind\":2,\"label\":\"Player_GetID\",\"documentation\":\"Returns the id of the player \"},{\"id\":\"Player_GetMaxPopulation\",\"kind\":2,\"label\":\"Player_GetMaxPopulation\",\"documentation\":\"Use capType CT_Personnel to get max squad cap or CT_VehicleCap to get max vehicle cap. \"},{\"id\":\"Player_GetNumStrategicPoints\",\"kind\":2,\"label\":\"Player_GetNumStrategicPoints\",\"documentation\":\"Returns the number of strategic points (not objectives) this player owns \"},{\"id\":\"Player_GetNumVictoryPoints\",\"kind\":2,\"label\":\"Player_GetNumVictoryPoints\",\"documentation\":\"Returns the number of strategic objectives this player owns \"},{\"id\":\"Player_GetPopulationPercentage\",\"kind\":2,\"label\":\"Player_GetPopulationPercentage\",\"documentation\":\"Gets the current personnel or vehicle population as a percetange of the current max-cap. The captype is either CT_Personnel or CT_Vehicle. ncaptype is CT_Personnel by default.\"},{\"id\":\"Player_GetRace\",\"kind\":2,\"label\":\"Player_GetRace\",\"documentation\":\"Returns the race index for the given player. \"},{\"id\":\"Player_GetRaceName\",\"kind\":2,\"label\":\"Player_GetRaceName\",\"documentation\":\"Returns the name of the race for a given player and always in english \"},{\"id\":\"Player_GetRelationship\",\"kind\":2,\"label\":\"Player_GetRelationship\",\"documentation\":\"Returns the relationship between 2 players. \"},{\"id\":\"Player_GetResource\",\"kind\":2,\"label\":\"Player_GetResource\",\"documentation\":\"Returns the amount of resources a given player has. \"},{\"id\":\"Player_GetResourceRate\",\"kind\":2,\"label\":\"Player_GetResourceRate\",\"documentation\":\"Returns the amount of resources a given player is getting per second. \"},{\"id\":\"Player_GetSquadConcentration\",\"kind\":2,\"label\":\"Player_GetSquadConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of squads owned by a player. nThis function is slow, so don't call it very often\"},{\"id\":\"Player_GetSquadCount\",\"kind\":2,\"label\":\"Player_GetSquadCount\",\"documentation\":\"Returns the number of squads a player currently owns \"},{\"id\":\"Player_GetSquads\",\"kind\":2,\"label\":\"Player_GetSquads\",\"documentation\":\"Returns a SquadGroupObs containing all the players units. n This function returns a 'global' squad group with the name '__Player%dSquads', where %d is the player ID. This means that you should never need to destroy it./n However, if you do destroy it, it will be recreated the next time this function is called.\"},{\"id\":\"Player_GetStartingPosition\",\"kind\":2,\"label\":\"Player_GetStartingPosition\",\"documentation\":\"Returns the starting position for this player \"},{\"id\":\"Player_GetStrategicPointCaptureProgress\",\"kind\":2,\"label\":\"Player_GetStrategicPointCaptureProgress\",\"documentation\":\"Returns a value (-1.0 to 1.0) of how close a point is to being controlled by the team of the player provided nProgress between -1.0 and 0 means an enemy has progress toward owning a point. Values between 0 and 1.0 represent progress being made toward capture. 1.0 is a team controlled point. -1.0 is an enemy controlled point.\"},{\"id\":\"Player_GetTeam\",\"kind\":2,\"label\":\"Player_GetTeam\",\"documentation\":\"Get the team a player is on \"},{\"id\":\"Player_GetUnitCount\",\"kind\":2,\"label\":\"Player_GetUnitCount\",\"documentation\":\"Returns the current number of units the player has. \"},{\"id\":\"Player_GetUpgradeCost\",\"kind\":2,\"label\":\"Player_GetUpgradeCost\",\"documentation\":\"Returns the cost of an upgrade. \"},{\"id\":\"Player_HasAbility\",\"kind\":2,\"label\":\"Player_HasAbility\",\"documentation\":\"Tests to see if a player has an ability \"},{\"id\":\"Player_HasBuilding\",\"kind\":2,\"label\":\"Player_HasBuilding\",\"documentation\":\"Returns true if this player owns any buildings listed in the table. nThis only looks at completed buildings - use Player_HasBuildingUnderConstruction to see if the player is building something\"},{\"id\":\"Player_HasBuildingsExcept\",\"kind\":2,\"label\":\"Player_HasBuildingsExcept\",\"documentation\":\"Returns true if this player owns any buildings. (with exclusions). \"},{\"id\":\"Player_HasBuildingUnderConstruction\",\"kind\":2,\"label\":\"Player_HasBuildingUnderConstruction\",\"documentation\":\"Returns true if this player owns any buildings listed in the table currently under construction. \"},{\"id\":\"Player_HasCapturingSquadNearStrategicPoint\",\"kind\":2,\"label\":\"Player_HasCapturingSquadNearStrategicPoint\",\"documentation\":\"Returns true if the given player has units that are able to capture in the capturable area of the given strategic point \"},{\"id\":\"Player_HasLost\",\"kind\":2,\"label\":\"Player_HasLost\",\"documentation\":\"Checks to see if a player has lost (if player owns any squads and any buildings contained in blueprints) nPass in a table of blueprints of buildings that the player must have in order to be considered \"alive\". Ambient buildings are already take into consideration since they must be occupied by a squad.\"},{\"id\":\"Player_HasMapEntryPosition\",\"kind\":2,\"label\":\"Player_HasMapEntryPosition\",\"documentation\":\"Returns whether a player has a map entry position \"},{\"id\":\"Player_HasUpgrade\",\"kind\":2,\"label\":\"Player_HasUpgrade\",\"documentation\":\"Return true if the squad has purchased the specified upgrade. \"},{\"id\":\"Player_IsAlive\",\"kind\":2,\"label\":\"Player_IsAlive\",\"documentation\":\"Returns true if player is still alive and false if player is dead. Will error if playerIdx is an invalid index. \"},{\"id\":\"Player_IsAllied\",\"kind\":2,\"label\":\"Player_IsAllied\",\"documentation\":\"Returns true if the players are allied and false if they are not. \"},{\"id\":\"Player_IsHuman\",\"kind\":2,\"label\":\"Player_IsHuman\",\"documentation\":\"Returns whether a player is human controlled (local or remote), not dead, and not replaced by an AI \"},{\"id\":\"Player_NumUpgradeComplete\",\"kind\":2,\"label\":\"Player_NumUpgradeComplete\",\"documentation\":\"Returns the number of upgrades that this player has. \"},{\"id\":\"Player_OwnsEGroup\",\"kind\":2,\"label\":\"Player_OwnsEGroup\",\"documentation\":\"Returns true if a given player owns ALL or ANY items in a group \"},{\"id\":\"Player_OwnsEntity\",\"kind\":2,\"label\":\"Player_OwnsEntity\",\"documentation\":\"Returns true if a given player owns an entity \"},{\"id\":\"Player_OwnsSGroup\",\"kind\":2,\"label\":\"Player_OwnsSGroup\",\"documentation\":\"Returns true if a given player owns ALL or ANY items in a group \"},{\"id\":\"Player_OwnsSquad\",\"kind\":2,\"label\":\"Player_OwnsSquad\",\"documentation\":\"Returns true if a given player owns a squad \"},{\"id\":\"Player_RemoveAbilityLockoutZone\",\"kind\":2,\"label\":\"Player_RemoveAbilityLockoutZone\",\"documentation\":\"Removes a marker that was previously a lockout zone. \"},{\"id\":\"Player_RemoveUpgrade\",\"kind\":2,\"label\":\"Player_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from a player \"},{\"id\":\"Player_ResetResource\",\"kind\":2,\"label\":\"Player_ResetResource\",\"documentation\":\"Reset the resource amount for a given player to zero. Also reset team weapon \"},{\"id\":\"Player_RestrictAddOnList\",\"kind\":2,\"label\":\"Player_RestrictAddOnList\",\"documentation\":\"Restrict a list of addons. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_RestrictBuildingList\",\"kind\":2,\"label\":\"Player_RestrictBuildingList\",\"documentation\":\"Restrict a list of buildings. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_RestrictResearchList\",\"kind\":2,\"label\":\"Player_RestrictResearchList\",\"documentation\":\"Restrict a list of research items. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_SetAbilityAvailability\",\"kind\":2,\"label\":\"Player_SetAbilityAvailability\",\"documentation\":\"Sets the availability of an ability. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetAllCommandAvailabilityInternal\",\"kind\":2,\"label\":\"Player_SetAllCommandAvailabilityInternal\",\"documentation\":\"Sets availability of ALL entity, squad and player commands. \"},{\"id\":\"Player_SetCommandAvailability\",\"kind\":2,\"label\":\"Player_SetCommandAvailability\",\"documentation\":\"Sets the availability of entity, squad and player commands. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetConstructionMenuAvailability\",\"kind\":2,\"label\":\"Player_SetConstructionMenuAvailability\",\"documentation\":\"Sets the availability of a construction menu. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetDefaultSquadMoodMode\",\"kind\":2,\"label\":\"Player_SetDefaultSquadMoodMode\",\"documentation\":\"Set default squad mood mode which can be overrided by squad level mood mode settings \"},{\"id\":\"Player_SetEntityProductionAvailability\",\"kind\":2,\"label\":\"Player_SetEntityProductionAvailability\",\"documentation\":\"Sets the availability of an entity production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetHeatGainRate\",\"kind\":2,\"label\":\"Player_SetHeatGainRate\",\"documentation\":\"Set the heat gain rate per second for this player. Heat is gained when near a heat source or garrisoned. \"},{\"id\":\"Player_SetHeatLossRate\",\"kind\":2,\"label\":\"Player_SetHeatLossRate\",\"documentation\":\"Set the heat loss rate per second for this player. Heat is lost when not garrisoned and not near a heat source and not in valid cover. A value of 0 turns off the Cold System for all squads belonging to this player. It will also reset all squads to the default heat level. \"},{\"id\":\"Player_SetMaxCapPopulation\",\"kind\":2,\"label\":\"Player_SetMaxCapPopulation\",\"documentation\":\"Sets the current personnel or vehicle max-cap for a player. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nyou will have to call Player_SetMaxPopulation to adjust the current max population to do this.\"},{\"id\":\"Player_SetMaxPopulation\",\"kind\":2,\"label\":\"Player_SetMaxPopulation\",\"documentation\":\"Sets the current personnel or vehicle cap for a player. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nNote that any modifiers that adjust the current cap will be applied on top of this. Also note, the current cap cannot go higher than the max cap.\"},{\"id\":\"Player_SetPopCapOverride\",\"kind\":2,\"label\":\"Player_SetPopCapOverride\",\"documentation\":\"Sets a pop cap override that ignores any modifiers. \"},{\"id\":\"Player_SetResource\",\"kind\":2,\"label\":\"Player_SetResource\",\"documentation\":\"Set the resource amount for a given player. Ignores income cap and resource sharing. \"},{\"id\":\"Player_SetSquadProductionAvailability\",\"kind\":2,\"label\":\"Player_SetSquadProductionAvailability\",\"documentation\":\"Sets the availability of a squad production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetUpgradeAvailability\",\"kind\":2,\"label\":\"Player_SetUpgradeAvailability\",\"documentation\":\"Sets the availability of an upgrade. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetUpgradeCost\",\"kind\":2,\"label\":\"Player_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. \"},{\"id\":\"Player_SpawnGlider\",\"kind\":2,\"label\":\"Player_SpawnGlider\",\"documentation\":\"Spawns a glider and returns it \"},{\"id\":\"Player_StopAbility\",\"kind\":2,\"label\":\"Player_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Player_StopEarningActionPoints\",\"kind\":2,\"label\":\"Player_StopEarningActionPoints\",\"documentation\":\"Prevents a player from earning any action points (and by extention, command points) \"},{\"id\":\"Player_Triangulate\",\"kind\":2,\"label\":\"Player_Triangulate\",\"documentation\":\"Returns the enemy squads and entities within a player's radio beacons. Radio beacons are shared among team members. \"},{\"id\":\"Actor_Clear\",\"kind\":2,\"label\":\"Actor_Clear\",\"documentation\":\"Clear ties between an actor and any units \"},{\"id\":\"Actor_PlaySpeech\",\"kind\":2,\"label\":\"Actor_PlaySpeech\",\"documentation\":\"Plays a speech event for a given actor WITH a portrait and subtitle nBe VERY careful how you use the 'blockInput' parameter. It blocks all input except mouse movement, a few critical keyboard keys, and the Continue and Menu buttons. So you should always allow a continue button when blocking input. You shouldn't block input for a sticky subtitle! If the speech file is not available, a placeholder time will be calculated for the message using the number of words and the message will be displayed for that length of time.<BR/> Actors: ACTOR.GenericAlly, ACTOR.GenericAxis, ACTOR.Keller, ACTOR.McKay, ACTOR.Conti, ACTOR.Franks, ACTOR.Peoples, ACTOR.Coogi, etc...\"},{\"id\":\"Actor_PlaySpeechWithoutPortrait\",\"kind\":2,\"label\":\"Actor_PlaySpeechWithoutPortrait\",\"documentation\":\"Plays a speech event for a given actor WITHOUT a portrait or subtitle. See Actor_PlaySpeech for more details \"},{\"id\":\"Actor_SetFromSGroup\",\"kind\":2,\"label\":\"Actor_SetFromSGroup\",\"documentation\":\"Tie an entire sgroup to an actor, so audio comes from a squad member \"},{\"id\":\"Actor_SetFromSquad\",\"kind\":2,\"label\":\"Actor_SetFromSquad\",\"documentation\":\"Tie a single squad to an actor, so audio comes from a squad member \"},{\"id\":\"Prox_AreEntitiesNearMarker\",\"kind\":2,\"label\":\"Prox_AreEntitiesNearMarker\",\"documentation\":\"Returns true if ANY or ALL entities from a group are in range of a given position, marker, or territory sector. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_ArePlayerMembersNearMarker\",\"kind\":2,\"label\":\"Prox_ArePlayerMembersNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a player's members (i.e. individual guys, not squads as a whole) are in range of a given position, marker, or territory sector. DO NOT USE THIS FUNCTION UNLESS YOU ABSOLUTELY HAVE TO!! nYou MUST specify a range if you are using a position rather than a marker.\"},{\"id\":\"Prox_ArePlayersNearMarker\",\"kind\":2,\"label\":\"Prox_ArePlayersNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a player's squads are in range of a given position, marker, or territory sector. THIS FUNCTION IS VERY SLOW. DO NOT USE THIS UNLESS ABSOLUTELY NECESSARY. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreSquadMembersNearMarker\",\"kind\":2,\"label\":\"Prox_AreSquadMembersNearMarker\",\"documentation\":\"Returns true if ANY or ALL squad members (i.e. individual guys, not squads as a whole) from a group are in range of a given position, marker, or territory sector. DO NOT USE THIS FUNCTION UNLESS YOU ABSOLUTELY HAVE TO!! nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Prox_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY or ALL squads from a group are in range of a given position, marker, or territory sector nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreTeamsNearMarker\",\"kind\":2,\"label\":\"Prox_AreTeamsNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a teams's squads are in range of a given position, marker, or territory sector. THIS FUNCTION IS VERY SLOW. DO NOT USE THIS UNLESS ABSOLUTELY NECESSARY. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_EGroupEGroup\",\"kind\":2,\"label\":\"Prox_EGroupEGroup\",\"documentation\":\"Returns the distance between two entity groups. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_EGroupSGroup\",\"kind\":2,\"label\":\"Prox_EGroupSGroup\",\"documentation\":\"Returns the distance between an entity group and a squad group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_EntitiesInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_EntitiesInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY entities are in proximity of a given entity group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_GetRandomPosition\",\"kind\":2,\"label\":\"Prox_GetRandomPosition\",\"documentation\":\"Takes something (Entity, Squad, SGroup, EGroup, Position) in, then returns a random position nMinimum is ignored if it is greater than the radius\"},{\"id\":\"Prox_MarkerEGroup\",\"kind\":2,\"label\":\"Prox_MarkerEGroup\",\"documentation\":\"Returns the distance between a marker and an entity group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_MarkerSGroup\",\"kind\":2,\"label\":\"Prox_MarkerSGroup\",\"documentation\":\"Returns the distance between a marker and a squad group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfPlayerSquads\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfPlayerSquads\",\"documentation\":\"Checks if ALL or ANY players entities are in proximity of a given squad group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY players entities are in proximity of a given squad group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfPlayerEntities\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfPlayerEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given players entities. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfPlayerSquads\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfPlayerSquads\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given players squads. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given squad group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_SGroupSGroup\",\"kind\":2,\"label\":\"Prox_SGroupSGroup\",\"documentation\":\"Returns the distance between two squad groups. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_SquadsInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_SquadsInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_SquadsInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_SquadsInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY squads are in proximity of a given squad group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Rule_Add\",\"kind\":2,\"label\":\"Rule_Add\",\"documentation\":\"Add a rule to be executed every frame. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddDelayedInterval\",\"kind\":2,\"label\":\"Rule_AddDelayedInterval\",\"documentation\":\"Add a rule to be executed at every 'interval' seconds, after an initial delay. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddDelayedIntervalEx\",\"kind\":2,\"label\":\"Rule_AddDelayedIntervalEx\",\"documentation\":\"Add a rule to be executed 'calls' times, at every 'interval' seconds, after an initial delay. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddEGroupEvent\",\"kind\":2,\"label\":\"Rule_AddEGroupEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'EGroup'Event types are: GE_EntityKilled \"},{\"id\":\"Rule_AddEntityEvent\",\"kind\":2,\"label\":\"Rule_AddEntityEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'entity' nEvent types are: GE_EntityKilled\"},{\"id\":\"Rule_AddGlobalEvent\",\"kind\":2,\"label\":\"Rule_AddGlobalEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened, regardless of source nEvent types are: GE_PlayerBeingAttacked\"},{\"id\":\"Rule_AddInterval\",\"kind\":2,\"label\":\"Rule_AddInterval\",\"documentation\":\"Add a rule to be executed at every 'interval' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddIntervalEx\",\"kind\":2,\"label\":\"Rule_AddIntervalEx\",\"documentation\":\"Add a rule to be executed 'calls' times, at every 'interval' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddOneShot\",\"kind\":2,\"label\":\"Rule_AddOneShot\",\"documentation\":\"Add a rule to be executed once, after 'delay' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddPlayerEvent\",\"kind\":2,\"label\":\"Rule_AddPlayerEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'player' nEvent types are: GE_PlayerBeingAttacked\"},{\"id\":\"Rule_AddSGroupEvent\",\"kind\":2,\"label\":\"Rule_AddSGroupEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on squads in the 'sgroup' nEvent types are: GE_SquadKilled, GE_SquadPinned, GE_SquadCommandIssued, GE_AbilityExecuted\"},{\"id\":\"Rule_AddSquadEvent\",\"kind\":2,\"label\":\"Rule_AddSquadEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'squad' nEvent types are: GE_SquadKilled, GE_SquadPinned, GE_SquadCommandIssued, GE_AbilityExecuted\"},{\"id\":\"Rule_ChangeInterval\",\"kind\":2,\"label\":\"Rule_ChangeInterval\",\"documentation\":\"Change 'interval' seconds of an existing rule \"},{\"id\":\"Rule_Exists\",\"kind\":2,\"label\":\"Rule_Exists\",\"documentation\":\"Test if a rule is currently active \"},{\"id\":\"Rule_Remove\",\"kind\":2,\"label\":\"Rule_Remove\",\"documentation\":\"Remove a currently active rule (this does not remove any event rules) \"},{\"id\":\"Rule_RemoveAll\",\"kind\":2,\"label\":\"Rule_RemoveAll\",\"documentation\":\"Kills all rules below a certain priority. The default is to remove ALL rules. \"},{\"id\":\"Rule_RemoveEGroupEvent\",\"kind\":2,\"label\":\"Rule_RemoveEGroupEvent\",\"documentation\":\"Remove an active event rule for entities in the 'egroup' \"},{\"id\":\"Rule_RemoveEntityEvent\",\"kind\":2,\"label\":\"Rule_RemoveEntityEvent\",\"documentation\":\"Remove an active event rule for the 'entity' \"},{\"id\":\"Rule_RemoveGlobalEvent\",\"kind\":2,\"label\":\"Rule_RemoveGlobalEvent\",\"documentation\":\"Remove an active event rule that's been applied 'globally' \"},{\"id\":\"Rule_RemoveIfExist\",\"kind\":2,\"label\":\"Rule_RemoveIfExist\",\"documentation\":\"Remove a currently active rule if it exists(this does not remove any event rules) \"},{\"id\":\"Rule_RemoveMe\",\"kind\":2,\"label\":\"Rule_RemoveMe\",\"documentation\":\"Remove a currently executing rule (only works inside a rule function) \"},{\"id\":\"Rule_RemovePlayerEvent\",\"kind\":2,\"label\":\"Rule_RemovePlayerEvent\",\"documentation\":\"Remove an active event rule for the 'player' \"},{\"id\":\"Rule_RemoveSGroupEvent\",\"kind\":2,\"label\":\"Rule_RemoveSGroupEvent\",\"documentation\":\"Remove an active event rule for squads in the 'sgroup' \"},{\"id\":\"Rule_RemoveSquadEvent\",\"kind\":2,\"label\":\"Rule_RemoveSquadEvent\",\"documentation\":\"Remove an active event rule for the 'squad' \"},{\"id\":\"Setup_Player\",\"kind\":2,\"label\":\"Setup_Player\",\"documentation\":\"Initializes the all of the players settings in one function and returns the playerID. n In most cases you will call this function from OnGameSetup and store the returned playerId in a global variable. The player index should be in the range [1 , (numPlayers)].<BR/><BR/> Valid player races: \"Allied Airborne Company\", \"Allied Assault Company\", \"Allied Rifle Company\", \"Allied Tank Company\", \"Axis Armored Company\",\"Axis Heavy Tank Company\", \"Axis Infantry Company\",\"Axis Pioneer Company\"<BR/><BR/> Example:<BR/>function OnGameSetup( )<BR/><TAB/>g_player1 = Setup_Player(0, \"PlayerDisplayName\", \"Allied Assault Company\", 1)<BR/> <TAB/>-- g_player2 and g_player3 will be on the same team (allies)<BR/> <TAB/>g_player2 = Setup_Player(1, \"$20000\", \"Axis Infantry Company\", 2)<BR/> <TAB/>g_player3 = Setup_Player(2, \"$20001\", \"Axis Infantry Company\", 2)<BR/> --? The team ID starts from one!!end\"},{\"id\":\"Cmd_StopSquadsExcept\",\"kind\":2,\"label\":\"Cmd_StopSquadsExcept\",\"documentation\":\"Pass in a group to command to 'stop'. Pass in booleans for capturing and building \"},{\"id\":\"Misc_IsEGroupOnScreen\",\"kind\":2,\"label\":\"Misc_IsEGroupOnScreen\",\"documentation\":\"Test whether ANY or ALL of an EGroup is on screen currently (not strict) \"},{\"id\":\"Misc_IsSGroupOnScreen\",\"kind\":2,\"label\":\"Misc_IsSGroupOnScreen\",\"documentation\":\"Test whether ANY or ALL of an SGroup is on screen currently (not strict) \"},{\"id\":\"SGroup_Add\",\"kind\":2,\"label\":\"SGroup_Add\",\"documentation\":\"Adds an squadron to the end of a group if the group doesnt already have it. \"},{\"id\":\"SGroup_AddAbility\",\"kind\":2,\"label\":\"SGroup_AddAbility\",\"documentation\":\"Adds an ability to all squads in an sgroup. \"},{\"id\":\"SGroup_AddGroup\",\"kind\":2,\"label\":\"SGroup_AddGroup\",\"documentation\":\"Same as EGroup_AddGroup. Note: You cannot mix squad groups and entity groups. \"},{\"id\":\"SGroup_AddGroups\",\"kind\":2,\"label\":\"SGroup_AddGroups\",\"documentation\":\"Add a list of multiple sgroups into an existing group. \"},{\"id\":\"SGroup_AddLeaders\",\"kind\":2,\"label\":\"SGroup_AddLeaders\",\"documentation\":\"Adds a leader to all squads in a group that can take a leader. nThis function will bypass all cost and queue prereqs\"},{\"id\":\"SGroup_AddSlotItemToDropOnDeath\",\"kind\":2,\"label\":\"SGroup_AddSlotItemToDropOnDeath\",\"documentation\":\"Add to the list of slot items to drop when any one of the squads is wiped out nSGroup_AddSlotItemToDropOnDeath( squadid, item, false )\"},{\"id\":\"SGroup_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnEntity\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target squad \"},{\"id\":\"SGroup_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnPosition\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target position \"},{\"id\":\"SGroup_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnSquad\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target entity \"},{\"id\":\"SGroup_CanInstantReinforceNow\",\"kind\":2,\"label\":\"SGroup_CanInstantReinforceNow\",\"documentation\":\"Return true if ANY or ALL of a group can reinforce now \"},{\"id\":\"SGroup_CanSeeSGroup\",\"kind\":2,\"label\":\"SGroup_CanSeeSGroup\",\"documentation\":\"Returns true if ALL or ANY squads in a group can see ALL or ANY squads in a target sgroup. \"},{\"id\":\"SGroup_Clear\",\"kind\":2,\"label\":\"SGroup_Clear\",\"documentation\":\"Removes all entities from a group. \"},{\"id\":\"SGroup_ClearPostureSuggestion\",\"kind\":2,\"label\":\"SGroup_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to a squad \"},{\"id\":\"SGroup_Compare\",\"kind\":2,\"label\":\"SGroup_Compare\",\"documentation\":\"Returns true if the contents of the two groups are equal. Order of the entities does not matter. \"},{\"id\":\"SGroup_CompleteEntityUpgrade\",\"kind\":2,\"label\":\"SGroup_CompleteEntityUpgrade\",\"documentation\":\"Applies an upgrade to all squad entities in an sgroup. \"},{\"id\":\"SGroup_ContainsBlueprints\",\"kind\":2,\"label\":\"SGroup_ContainsBlueprints\",\"documentation\":\"Check if a group contains ALL or ANY of the blueprints. \"},{\"id\":\"SGroup_ContainsSGroup\",\"kind\":2,\"label\":\"SGroup_ContainsSGroup\",\"documentation\":\"Returns true if SGroup1 contains ANY or ALL of SGroup2 \"},{\"id\":\"SGroup_ContainsSquad\",\"kind\":2,\"label\":\"SGroup_ContainsSquad\",\"documentation\":\"Returns true if SGroup contains a particular SquadID \"},{\"id\":\"SGroup_Count\",\"kind\":2,\"label\":\"SGroup_Count\",\"documentation\":\"Returns the total number of spawned and despawned squads in a group. nNOTE: SGroup_Count does not count the individual soldiers in an SGroup. For that, use SGroup_TotalMembersCount\"},{\"id\":\"SGroup_CountDeSpawned\",\"kind\":2,\"label\":\"SGroup_CountDeSpawned\",\"documentation\":\"Returns the number of despawned squads in a group. \"},{\"id\":\"SGroup_CountSpawned\",\"kind\":2,\"label\":\"SGroup_CountSpawned\",\"documentation\":\"Returns the number of spawned squads in a group. \"},{\"id\":\"SGroup_Create\",\"kind\":2,\"label\":\"SGroup_Create\",\"documentation\":\"Returns a new squadron group with the given name. n Squad groups are used for all units and vehicles. You can issue orders such as move and attack to an entire squad group. If you want a group for buildings or objects such as trees, use an EntityGroupObs instead.<BR/> Note that you are allowed to have unamed squadgroups or squadgroups with the samename. Be careful not to create duplicates of your squad group when you dont intend to. To be safe, you can check if the SquadGroupObs you want to create exists using SGroup_Exists( )\"},{\"id\":\"SGroup_CreateIfNotFound\",\"kind\":2,\"label\":\"SGroup_CreateIfNotFound\",\"documentation\":\"Find a squad group from name. Creates a new one with given name if it doesnt exist. \"},{\"id\":\"SGroup_CreateKickerMessage\",\"kind\":2,\"label\":\"SGroup_CreateKickerMessage\",\"documentation\":\"Create and display kicker message on the each squad in the sgroup to the player \"},{\"id\":\"SGroup_DeSpawn\",\"kind\":2,\"label\":\"SGroup_DeSpawn\",\"documentation\":\"Despawn all spawned squads in a group. \"},{\"id\":\"SGroup_Destroy\",\"kind\":2,\"label\":\"SGroup_Destroy\",\"documentation\":\"Manually destroy a group that you dont need anymore. \"},{\"id\":\"SGroup_DestroyAllInMarker\",\"kind\":2,\"label\":\"SGroup_DestroyAllInMarker\",\"documentation\":\"Destroys all items in a group that are in proximity to a given marker. \"},{\"id\":\"SGroup_DestroyAllSquads\",\"kind\":2,\"label\":\"SGroup_DestroyAllSquads\",\"documentation\":\"Destroys all spawned and despawned squads in a group. n Be careful not to confuse this with SGroup_Destroy which destroys the group and NOT the squads it contains. This function will destroy spawned and despawned items in a group\"},{\"id\":\"SGroup_DisableCombatPlans\",\"kind\":2,\"label\":\"SGroup_DisableCombatPlans\",\"documentation\":\"Disables all current combat plans for the squads in the sgroup \"},{\"id\":\"SGroup_Duplicate\",\"kind\":2,\"label\":\"SGroup_Duplicate\",\"documentation\":\"Duplicates an SGroup n Creates a copy of sgroup1 in sgroup2. The function will clear sgroup2 beforehand if necessary.\"},{\"id\":\"SGroup_EnableAttention\",\"kind\":2,\"label\":\"SGroup_EnableAttention\",\"documentation\":\"Sets whether an entity pays attention to its surroundings \"},{\"id\":\"SGroup_EnableMinimapIndicator\",\"kind\":2,\"label\":\"SGroup_EnableMinimapIndicator\",\"documentation\":\"Enable or disable minimap indicator on all squads in the sgroup \"},{\"id\":\"SGroup_EnableSurprise\",\"kind\":2,\"label\":\"SGroup_EnableSurprise\",\"documentation\":\"Enables or disables the surprise feature for an sgroup \"},{\"id\":\"SGroup_EnableUIDecorator\",\"kind\":2,\"label\":\"SGroup_EnableUIDecorator\",\"documentation\":\"Enable or disable decorators on all squads in the sgroup \"},{\"id\":\"SGroup_Exists\",\"kind\":2,\"label\":\"SGroup_Exists\",\"documentation\":\"Returns true if the squad group with the given name exists \"},{\"id\":\"SGroup_FaceEachOther\",\"kind\":2,\"label\":\"SGroup_FaceEachOther\",\"documentation\":\"Makes two SGroups face each other \"},{\"id\":\"SGroup_FaceMarker\",\"kind\":2,\"label\":\"SGroup_FaceMarker\",\"documentation\":\"Makes a SGroup face a marker. \"},{\"id\":\"SGroup_Filter\",\"kind\":2,\"label\":\"SGroup_Filter\",\"documentation\":\"Filters an SGroup by blueprint. n Blueprints can be provided by name or by ID, and in a table if you want to filter on more than one type. Setting filtertype to FILTER_KEEP results in the group only containing squads of the types listed in the blueprint table. Setting filtertype to FILTER_REMOVE will strip those same squads out and leave those that aren't of the types listed. Setting splitSGroup will move any squads being KEEP or REMOVE to it. This SGroup will NOT be cleared beforehand.\"},{\"id\":\"SGroup_FilterCount\",\"kind\":2,\"label\":\"SGroup_FilterCount\",\"documentation\":\"Pass in a group and it will filter it down to the indicated number \"},{\"id\":\"SGroup_FilterThreat\",\"kind\":2,\"label\":\"SGroup_FilterThreat\",\"documentation\":\"Searches an SGroup and finds the first threat within the table (searching first to last) and removes all other SBPs. n Optional parameter bEmpty can be set to true, will clear the SGroup if none of the SBPS in the table are found.\"},{\"id\":\"SGroup_ForEach\",\"kind\":2,\"label\":\"SGroup_ForEach\",\"documentation\":\"Call a lua function for each item in a group. Function will recieve (groupid, itemindex, itemid) and should return true to break or false to continue. n function Rule_Test( )<BR/> <TAB/>local DespawnSquad = function( sgroupid, itemindex, squadID )<BR/> <TAB/><TAB/>Squad_Despawn( squadID )<BR/> <TAB/>end<BR/><BR/> <TAB/>SGroup_ForEach( SGroup_FromName(\"sg_Squads\"), DespawnSquad )<BR/> end<BR/><BR/> This functions iterates over spawned squads only.\"},{\"id\":\"SGroup_ForEachAllOrAny\",\"kind\":2,\"label\":\"SGroup_ForEachAllOrAny\",\"documentation\":\"Call a lua function for each item in a group. Function will receive (groupid, itemindex, itemid) and should return a bool. n Only use this to TEST conditions on squads. DO NOT use this to perform operations on all squads, since it may not call your function on all squads (due to short circuit evaluation). This is used for checking if ALL or ANY items in a group match a given predicate. (eg. Are all items in a group chaos marines)<BR/> This functions iterates over spawned squads only.\"},{\"id\":\"SGroup_ForEachAllOrAnyEx\",\"kind\":2,\"label\":\"SGroup_ForEachAllOrAnyEx\",\"documentation\":\"Same as SGroup_ForEachAllOrAny except you have a choice to iterate over spawned squads, despawned squads, or both. \"},{\"id\":\"SGroup_ForEachEx\",\"kind\":2,\"label\":\"SGroup_ForEachEx\",\"documentation\":\"Same as SGroup_ForEach except you have a choice to iterate over spawned squads, despawned squads, or both. \"},{\"id\":\"SGroup_FromName\",\"kind\":2,\"label\":\"SGroup_FromName\",\"documentation\":\"Find an squadron group with a given name. \"},{\"id\":\"SGroup_GetAvgHealth\",\"kind\":2,\"label\":\"SGroup_GetAvgHealth\",\"documentation\":\"Returns the average health of all units in a squad group. nIt now uses the same health measure that's used by the UI, so it does take into account fallen members of a squad\"},{\"id\":\"SGroup_GetAvgLoadout\",\"kind\":2,\"label\":\"SGroup_GetAvgLoadout\",\"documentation\":\"Returns the average loadout of all squads in a group as a percent [0.0, 1.0]. nExample: A group of squads with loadouts of 4/8 and 1/1 would return 0.75\"},{\"id\":\"SGroup_GetDeSpawnedSquadAt\",\"kind\":2,\"label\":\"SGroup_GetDeSpawnedSquadAt\",\"documentation\":\"Returns the despawned squad at a certain position in the group. n This is a one-based index (use index 1 to get the first squad in the group.) It is an error if index > SGroup_GetDeSpawnedCount().\"},{\"id\":\"SGroup_GetGarrisonedBuildingEntity\",\"kind\":2,\"label\":\"SGroup_GetGarrisonedBuildingEntity\",\"documentation\":\"Get the entity id of the building that any squad of the sgroup is garrisoned in \"},{\"id\":\"SGroup_GetHoldEGroup\",\"kind\":2,\"label\":\"SGroup_GetHoldEGroup\",\"documentation\":\"Gets all the entities that an SGroup may occupy and adds them to the EGroupHold \"},{\"id\":\"SGroup_GetHoldSGroup\",\"kind\":2,\"label\":\"SGroup_GetHoldSGroup\",\"documentation\":\"Gets all the squads that an SGroup may occupy and adds them to the SGroupHold \"},{\"id\":\"SGroup_GetInvulnerable\",\"kind\":2,\"label\":\"SGroup_GetInvulnerable\",\"documentation\":\"Check invulnerablity state for ALL or ANY squads in a squad group. n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"SGroup_GetLastAttacker\",\"kind\":2,\"label\":\"SGroup_GetLastAttacker\",\"documentation\":\"Gets the last attacker(s) for all the squads in an SGroup Gets the last attacker for all the squads in an SGroup and stores that in SGroupAttacker \"},{\"id\":\"SGroup_GetLoadedVehicleSquad\",\"kind\":2,\"label\":\"SGroup_GetLoadedVehicleSquad\",\"documentation\":\"Get the squad id of the vehicle squad that any squad of the sgroup is loaded in \"},{\"id\":\"SGroup_GetName\",\"kind\":2,\"label\":\"SGroup_GetName\",\"documentation\":\"Returns the name of a given squad group. \"},{\"id\":\"SGroup_GetNumSlotItem\",\"kind\":2,\"label\":\"SGroup_GetNumSlotItem\",\"documentation\":\"Get the number of slot items with the same ID that the squads in the sgroup own \"},{\"id\":\"SGroup_GetOffsetPosition\",\"kind\":2,\"label\":\"SGroup_GetOffsetPosition\",\"documentation\":\"Returns a position (a certain distance away) relative to a squad's current position/orientation. see LuaConsts.scar for explanation of 'offset' parameter \"},{\"id\":\"SGroup_GetPosition\",\"kind\":2,\"label\":\"SGroup_GetPosition\",\"documentation\":\"Returns the center position of a squad group. nDespawned squads are ignored.\"},{\"id\":\"SGroup_GetRandomSpawnedSquad\",\"kind\":2,\"label\":\"SGroup_GetRandomSpawnedSquad\",\"documentation\":\"Get a random spawned squad from sgroup \"},{\"id\":\"SGroup_GetSequence\",\"kind\":2,\"label\":\"SGroup_GetSequence\",\"documentation\":\"Builds a table of SGroupIDs that are named in a sequence. i.e. a name of \"sg_killer\" will find groups \"sg_killer1\", \"sg_killer2\" and so on, up until it looks for a group that isn't there. \"},{\"id\":\"SGroup_GetSpawnedSquadAt\",\"kind\":2,\"label\":\"SGroup_GetSpawnedSquadAt\",\"documentation\":\"Returns the spawned squad at a certain position in the group. n This is a one-based index (use index 1 to get the first squad in the group.) It is an error if index > SGroup_GetSpawnedCount().\"},{\"id\":\"SGroup_GetSpread\",\"kind\":2,\"label\":\"SGroup_GetSpread\",\"documentation\":\"Returns the distance from the centre of the group of the unit that furthest out. \"},{\"id\":\"SGroup_GetSquadsHeld\",\"kind\":2,\"label\":\"SGroup_GetSquadsHeld\",\"documentation\":\"Returns an sgroup containing all squads held by any squad in an sgroup \"},{\"id\":\"SGroup_GetSuppression\",\"kind\":2,\"label\":\"SGroup_GetSuppression\",\"documentation\":\"Get the suppression level for the first squad in the sgroup \"},{\"id\":\"SGroup_GetVeterancyExperience\",\"kind\":2,\"label\":\"SGroup_GetVeterancyExperience\",\"documentation\":\"Get the veterancy experience value for the first squad in the sgroup \"},{\"id\":\"SGroup_GetVeterancyRank\",\"kind\":2,\"label\":\"SGroup_GetVeterancyRank\",\"documentation\":\"Get the veterancy rank for the first squad in the sgroup \"},{\"id\":\"SGroup_HasCritical\",\"kind\":2,\"label\":\"SGroup_HasCritical\",\"documentation\":\"Returns true if ANY or ALL of the squads in the SGroup have the specified critical \"},{\"id\":\"SGroup_HasLeader\",\"kind\":2,\"label\":\"SGroup_HasLeader\",\"documentation\":\"Check if ALL or ANY squads in a sgroup have a leader n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"SGroup_HasSquadBlueprint\",\"kind\":2,\"label\":\"SGroup_HasSquadBlueprint\",\"documentation\":\"Check if ALL or ANY of the squads in a group have a specific blueprint. \"},{\"id\":\"SGroup_HasTeamWeapon\",\"kind\":2,\"label\":\"SGroup_HasTeamWeapon\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are carrying some kind of team weapon \"},{\"id\":\"SGroup_HasUpgrade\",\"kind\":2,\"label\":\"SGroup_HasUpgrade\",\"documentation\":\"Returns whether ANY or ALL squads in an SGroup have the specified upgrade \"},{\"id\":\"SGroup_Hide\",\"kind\":2,\"label\":\"SGroup_Hide\",\"documentation\":\"Hide or show all entities in all squads in an SGroup nBool should be true to hide, false to show\"},{\"id\":\"SGroup_IncreaseVeterancyExperience\",\"kind\":2,\"label\":\"SGroup_IncreaseVeterancyExperience\",\"documentation\":\"Increase squad veterancy experience for all squads in the sgroup. Can do silent promotion (no sound/UI). Can skip modifiers, giving you direct control of experience gained. \"},{\"id\":\"SGroup_IncreaseVeterancyRank\",\"kind\":2,\"label\":\"SGroup_IncreaseVeterancyRank\",\"documentation\":\"Increase squad veterancy rank for all squads in the sgroup. By default, increases rank by 1. Can do silent promotion (no sound/UI. ex: mass rank insrease at mission start) \"},{\"id\":\"SGroup_Intersection\",\"kind\":2,\"label\":\"SGroup_Intersection\",\"documentation\":\"Same as EGroup_Intersection. Note: You cannot mix squad groups and entity groups. n Only squads that are in both groups will be added to 'group'.<BR/> The contents of 'grouptointersect' will not be changed.<BR/> Example: group = (1,2,3,4,5,6) grouptointersect = (2,4,6,8,10) --> group will now equal (2,4,6)\"},{\"id\":\"SGroup_IsAlive\",\"kind\":2,\"label\":\"SGroup_IsAlive\",\"documentation\":\"Returns true if a named squad group is not empty and its average health is > 0.0 \"},{\"id\":\"SGroup_IsAttackMoving\",\"kind\":2,\"label\":\"SGroup_IsAttackMoving\",\"documentation\":\"Returns true if ANY or ALL squads in an SGroup are attack moving. \"},{\"id\":\"SGroup_IsCamouflaged\",\"kind\":2,\"label\":\"SGroup_IsCamouflaged\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are camouflaged \"},{\"id\":\"SGroup_IsCapturing\",\"kind\":2,\"label\":\"SGroup_IsCapturing\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are capturing \"},{\"id\":\"SGroup_IsConstructingBuilding\",\"kind\":2,\"label\":\"SGroup_IsConstructingBuilding\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently constructing a building. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsDoingAbility\",\"kind\":2,\"label\":\"SGroup_IsDoingAbility\",\"documentation\":\"Returns if ANY or ALL members of an SGroup are doing an ability \"},{\"id\":\"SGroup_IsDoingAttack\",\"kind\":2,\"label\":\"SGroup_IsDoingAttack\",\"documentation\":\"Returns true if ALL or ANY squads are attacking within the time. \"},{\"id\":\"SGroup_IsDugIn\",\"kind\":2,\"label\":\"SGroup_IsDugIn\",\"documentation\":\"Returns true if ANY or ALL of the squads in the SGroup is dug in (or in the process of digging in) \"},{\"id\":\"SGroup_IsEmpty\",\"kind\":2,\"label\":\"SGroup_IsEmpty\",\"documentation\":\"Returns true if a named squad group is empty \"},{\"id\":\"SGroup_IsFemale\",\"kind\":2,\"label\":\"SGroup_IsFemale\",\"documentation\":\"Returns true if ANY or ALL squads are female \"},{\"id\":\"SGroup_IsHoldingAny\",\"kind\":2,\"label\":\"SGroup_IsHoldingAny\",\"documentation\":\"Returns whether any entity in an SGroup has a hold on anything \"},{\"id\":\"SGroup_IsIdle\",\"kind\":2,\"label\":\"SGroup_IsIdle\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are idle \"},{\"id\":\"SGroup_IsInCover\",\"kind\":2,\"label\":\"SGroup_IsInCover\",\"documentation\":\"Returns the percentage of the SGroup members that are in cover. Alternatively, specify ANY or ALL as a second parameter to return true/false. \"},{\"id\":\"SGroup_IsInfiltrated\",\"kind\":2,\"label\":\"SGroup_IsInfiltrated\",\"documentation\":\"Returns true if ALL or ANY squads in a group are infiltrated \"},{\"id\":\"SGroup_IsInHoldEntity\",\"kind\":2,\"label\":\"SGroup_IsInHoldEntity\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are garrisoned in an entity (building) \"},{\"id\":\"SGroup_IsInHoldSquad\",\"kind\":2,\"label\":\"SGroup_IsInHoldSquad\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are garrisoned in a squad (transport vehicle) \"},{\"id\":\"SGroup_IsMoving\",\"kind\":2,\"label\":\"SGroup_IsMoving\",\"documentation\":\"Returns true if ANY or ALL squads in an SGroup are moving. \"},{\"id\":\"SGroup_IsOnScreen\",\"kind\":2,\"label\":\"SGroup_IsOnScreen\",\"documentation\":\"Returns true if ANY or ALL (use those keywords) of the squads in the group are present onscreen. You can pass in a percentage of the screen to check, so 0.8 would be a centered rectangle occupying 80% of the screen. \"},{\"id\":\"SGroup_IsPinned\",\"kind\":2,\"label\":\"SGroup_IsPinned\",\"documentation\":\"Returns true if ANY or ALL of a group is pinned \"},{\"id\":\"SGroup_IsReinforcing\",\"kind\":2,\"label\":\"SGroup_IsReinforcing\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently calling for reinforcments. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsRetreating\",\"kind\":2,\"label\":\"SGroup_IsRetreating\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are currently retreating \"},{\"id\":\"SGroup_IsSettingDemolitions\",\"kind\":2,\"label\":\"SGroup_IsSettingDemolitions\",\"documentation\":\"Returns true if ANY or ALL squads are setting demolitions \"},{\"id\":\"SGroup_IsSuppressed\",\"kind\":2,\"label\":\"SGroup_IsSuppressed\",\"documentation\":\"Returns true is ANY or ALL of a group is suppressed \"},{\"id\":\"SGroup_IsUnderAttack\",\"kind\":2,\"label\":\"SGroup_IsUnderAttack\",\"documentation\":\"Returns true if ALL or ANY squads are under attack within the time. \"},{\"id\":\"SGroup_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"SGroup_IsUnderAttackByPlayer\",\"documentation\":\"Check if the squads are attacked by the player \"},{\"id\":\"SGroup_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"SGroup_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if ALL or ANY squads are under attack from a direction within the time. see LuaConsts.scar for types of directions. you can pass in a table of directions \"},{\"id\":\"SGroup_IsUpgrading\",\"kind\":2,\"label\":\"SGroup_IsUpgrading\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently upgrading. You can pass in nil for upgradeid if it doesn't matter what is being upgraded. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsUsingAbility\",\"kind\":2,\"label\":\"SGroup_IsUsingAbility\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are using an ability nDoes not check WHAT ability a squad is using.\"},{\"id\":\"SGroup_Kill\",\"kind\":2,\"label\":\"SGroup_Kill\",\"documentation\":\"Kills all squads in an SGroup. This kills them 'naturally', as opposed to SGroup_DestroyAllSquads() which makes them blink out of existance. \"},{\"id\":\"SGroup_Remove\",\"kind\":2,\"label\":\"SGroup_Remove\",\"documentation\":\"Removes an squadron from a group. \"},{\"id\":\"SGroup_RemoveGroup\",\"kind\":2,\"label\":\"SGroup_RemoveGroup\",\"documentation\":\"Remove from the first SGroup all squads contained in the second SGroup. SGroup2 remains untouched. \"},{\"id\":\"SGroup_RemoveUpgrade\",\"kind\":2,\"label\":\"SGroup_RemoveUpgrade\",\"documentation\":\"Removes upgrade(s) from an sgroup \"},{\"id\":\"SGroup_ReSpawn\",\"kind\":2,\"label\":\"SGroup_ReSpawn\",\"documentation\":\"Respawn all despawned squads in a group. \"},{\"id\":\"SGroup_RestoreCombatPlans\",\"kind\":2,\"label\":\"SGroup_RestoreCombatPlans\",\"documentation\":\"Restore all current combat plans for the squads in the sgroup \"},{\"id\":\"SGroup_RewardActionPoints\",\"kind\":2,\"label\":\"SGroup_RewardActionPoints\",\"documentation\":\"Give action points to the squad \"},{\"id\":\"SGroup_SetAnimatorState\",\"kind\":2,\"label\":\"SGroup_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an SGroup. Please only use this for simple animations \"},{\"id\":\"SGroup_SetAutoTargetting\",\"kind\":2,\"label\":\"SGroup_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"SGroup_SetAvgHealth\",\"kind\":2,\"label\":\"SGroup_SetAvgHealth\",\"documentation\":\"Sets the health of each squad in a squad group to a given percent [0.0, 1.0]. \"},{\"id\":\"SGroup_SetAvgMorale\",\"kind\":2,\"label\":\"SGroup_SetAvgMorale\",\"documentation\":\"Sets the moral of each squad in a squad group to a given percent [0.0, 1.0]. \"},{\"id\":\"SGroup_SetCrushable\",\"kind\":2,\"label\":\"SGroup_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an sgroup \"},{\"id\":\"SGroup_SetInvulnerable\",\"kind\":2,\"label\":\"SGroup_SetInvulnerable\",\"documentation\":\"Enable/Disable invulnerablity for an entire SGroup. Use true and false for simple on/off, or use a number between 0.0 and 1.0 for more precise control on how much damage a squad can take before it takes no more. nThe optional reset_time is used to automatically remove invulnerability after a set time. If invulnerable, both health and critical damage are disabled.\"},{\"id\":\"SGroup_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"SGroup_SetInvulnerableToCritical\",\"documentation\":\"Enable/Disable invulnerablity to criticals for an entire SGroup. \"},{\"id\":\"SGroup_SetMoodMode\",\"kind\":2,\"label\":\"SGroup_SetMoodMode\",\"documentation\":\"Set soldier mood mode. Mode could be MM_Auto, MM_ForceCalm or MM_ForceTense \"},{\"id\":\"SGroup_SetMoveType\",\"kind\":2,\"label\":\"SGroup_SetMoveType\",\"documentation\":\"Set the move type for an SGroup - find the move types in the MOVETYPE table in LuaConsts.scar \"},{\"id\":\"SGroup_SetPlayerOwner\",\"kind\":2,\"label\":\"SGroup_SetPlayerOwner\",\"documentation\":\"Changes the player owner of spawned and despawned squads in an SGroup. \"},{\"id\":\"SGroup_SetRecrewable\",\"kind\":2,\"label\":\"SGroup_SetRecrewable\",\"documentation\":\"Sets all squads in as sgroup to be recrewable or not when abandoned \"},{\"id\":\"SGroup_SetSelectable\",\"kind\":2,\"label\":\"SGroup_SetSelectable\",\"documentation\":\"Set player selectable state of squads in the sgroup \"},{\"id\":\"SGroup_SetSharedProductionQueue\",\"kind\":2,\"label\":\"SGroup_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"SGroup_SetSuppression\",\"kind\":2,\"label\":\"SGroup_SetSuppression\",\"documentation\":\"Set the suppression level for all squads in the sgroup \"},{\"id\":\"SGroup_SetTeamWeaponCapturable\",\"kind\":2,\"label\":\"SGroup_SetTeamWeaponCapturable\",\"documentation\":\"Set team weapon in the squads to be capturable or not \"},{\"id\":\"SGroup_SetVeterancyDisplayVisibility\",\"kind\":2,\"label\":\"SGroup_SetVeterancyDisplayVisibility\",\"documentation\":\"Sets the visibility of in-game veterancy art for the squads in given SGroup \"},{\"id\":\"SGroup_SetWorldOwned\",\"kind\":2,\"label\":\"SGroup_SetWorldOwned\",\"documentation\":\"Makes an sgroup neutral \"},{\"id\":\"SGroup_Single\",\"kind\":2,\"label\":\"SGroup_Single\",\"documentation\":\"Creates a squad group containing a single squad n Creates an SGroup containing just one squad, creating the group if it doesn't exist and clearing it if it does. It returns the name of the SGroup.\"},{\"id\":\"SGroup_SnapFaceEachOther\",\"kind\":2,\"label\":\"SGroup_SnapFaceEachOther\",\"documentation\":\"Makes two SGroups face each other at no time \"},{\"id\":\"SGroup_SuggestPosture\",\"kind\":2,\"label\":\"SGroup_SuggestPosture\",\"documentation\":\"Suggests a posture to an SGroup, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"SGroup_TotalMembersCount\",\"kind\":2,\"label\":\"SGroup_TotalMembersCount\",\"documentation\":\"Returns the total count of all members of all the squads in a given SGroup. \"},{\"id\":\"SGroup_WarpToMarker\",\"kind\":2,\"label\":\"SGroup_WarpToMarker\",\"documentation\":\"Warps all members of an SGroup immediately to a marker \"},{\"id\":\"SGroup_WarpToPos\",\"kind\":2,\"label\":\"SGroup_WarpToPos\",\"documentation\":\"Warps all members of an SGroup immediately to a new position \"},{\"id\":\"Util_Grab\",\"kind\":2,\"label\":\"Util_Grab\",\"documentation\":\"Grabs the selected squads/entities and returns them in a group. Only works with -dev. nTries to return an SGroup first. If it's empty, it will return an EGroup. (Both types can't be selected at the same time)\"},{\"id\":\"SGroup_FacePosition\",\"kind\":2,\"label\":\"SGroup_FacePosition\",\"documentation\":\"Works like Squad_FacePosition. All Squads will face the same direction, with the squad the closest to the center determining the direction. nThis function works on spawned squads only.\"},{\"id\":\"SGroup_SnapFacePosition\",\"kind\":2,\"label\":\"SGroup_SnapFacePosition\",\"documentation\":\"Works like SGroup_FacePosition except with no interpolation. All Squads will face the same direction, with the squad the closest to the center determining the direction. nThis function works on spawned squads only.\"},{\"id\":\"Squad_AddAbility\",\"kind\":2,\"label\":\"Squad_AddAbility\",\"documentation\":\"Allows the squad to use this ability \"},{\"id\":\"Squad_AddSlotItemToDropOnDeath\",\"kind\":2,\"label\":\"Squad_AddSlotItemToDropOnDeath\",\"documentation\":\"Add to the list of slot items to drop when this squad is wiped out nSquad_AddSlotItemToDropOnDeath( squadid, item, false )\"},{\"id\":\"Squad_CanCaptureStrategicPoint\",\"kind\":2,\"label\":\"Squad_CanCaptureStrategicPoint\",\"documentation\":\"Returns true if squad can capture stategic point \"},{\"id\":\"Squad_CanCaptureTeamWeapon\",\"kind\":2,\"label\":\"Squad_CanCaptureTeamWeapon\",\"documentation\":\"True if the squad can capture the entity sync weapon \"},{\"id\":\"Squad_CanCastAbilityOnEGroup\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnEGroup\",\"documentation\":\"Test whether a squad can be ordered to do this ability on any member of the target EGroup \"},{\"id\":\"Squad_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnEntity\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnPosition\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CanCastAbilityOnSGroup\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnSGroup\",\"documentation\":\"Test whether a squad can be ordered to do this ability on any member of the target SGroup \"},{\"id\":\"Squad_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnSquad\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CancelProductionQueueItem\",\"kind\":2,\"label\":\"Squad_CancelProductionQueueItem\",\"documentation\":\"Cancels an item in a production queue. Index 0 is the currently producing item. \"},{\"id\":\"Squad_CanHold\",\"kind\":2,\"label\":\"Squad_CanHold\",\"documentation\":\"Checks whether a squad can hold any squad \"},{\"id\":\"Squad_CanInstantReinforceNow\",\"kind\":2,\"label\":\"Squad_CanInstantReinforceNow\",\"documentation\":\"Returns true if the squad is available to be reinforced \"},{\"id\":\"Squad_CanLoadSquad\",\"kind\":2,\"label\":\"Squad_CanLoadSquad\",\"documentation\":\"Checks whether a squad can load another squad \"},{\"id\":\"Squad_CanPickupSlotItem\",\"kind\":2,\"label\":\"Squad_CanPickupSlotItem\",\"documentation\":\"True if the squad can pickup the entity slot item \"},{\"id\":\"Squad_CanRecrew\",\"kind\":2,\"label\":\"Squad_CanRecrew\",\"documentation\":\"True if the squad can recrew the entity \"},{\"id\":\"Squad_CanSeeEntity\",\"kind\":2,\"label\":\"Squad_CanSeeEntity\",\"documentation\":\"Returns true if the distance between a target entity and the source squad is less than it squad's sight distance. There is no LOS or FOW check. nTry Player_CanSeeEntity() if you care about LOS or FOW.\"},{\"id\":\"Squad_CanSeeSquad\",\"kind\":2,\"label\":\"Squad_CanSeeSquad\",\"documentation\":\"Returns true if the distance between a target squad and the source squad is less than it squad's sight distance. There is no LOS or FOW check. nTry Player_CanSeeSquad() if you care about LOS or FOW.\"},{\"id\":\"Squad_ClearPostureSuggestion\",\"kind\":2,\"label\":\"Squad_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to a squad \"},{\"id\":\"Squad_CompleteUpgrade\",\"kind\":2,\"label\":\"Squad_CompleteUpgrade\",\"documentation\":\"Instantly adds an upgrade to a given squad \"},{\"id\":\"Squad_Count\",\"kind\":2,\"label\":\"Squad_Count\",\"documentation\":\"Returns the number of units currently in a squad (spawned AND despawned!!) \"},{\"id\":\"Squad_CreateAndSpawnToward\",\"kind\":2,\"label\":\"Squad_CreateAndSpawnToward\",\"documentation\":\"Create a squad, spawn it and assign it to a player. n This will create a squad of size 'loadoutCount' and of unit type 'unit_base' (from squad blueprint)<BR/> Note: loadoutCount will be clipped to loadoutMin and loadoutMax from the squad blueprint. A loudoutCount of zero means create the whole squad as is.\"},{\"id\":\"Squad_DeSpawn\",\"kind\":2,\"label\":\"Squad_DeSpawn\",\"documentation\":\"Despawn the entire squad at its current position. \"},{\"id\":\"Squad_Destroy\",\"kind\":2,\"label\":\"Squad_Destroy\",\"documentation\":\"Remove an squad from the world and destroy it. \"},{\"id\":\"Squad_EnableProductionQueue\",\"kind\":2,\"label\":\"Squad_EnableProductionQueue\",\"documentation\":\"Sets whether a squad can produce anything (including upgrades) \"},{\"id\":\"Squad_EnableSurprise\",\"kind\":2,\"label\":\"Squad_EnableSurprise\",\"documentation\":\"Enables or disables the surprise feature on thie given squad \"},{\"id\":\"Squad_EntityAt\",\"kind\":2,\"label\":\"Squad_EntityAt\",\"documentation\":\"ZERO-BASED get of entities out of squads \"},{\"id\":\"Squad_FacePosition\",\"kind\":2,\"label\":\"Squad_FacePosition\",\"documentation\":\"Set the rotation of all troopers in a squad to face the position. nThe center of the squad will face the position and all other troops will use the same rotation as the from center vector.<BR/><BR/> This function works on spawned squads only.\"},{\"id\":\"Squad_FaceSquad\",\"kind\":2,\"label\":\"Squad_FaceSquad\",\"documentation\":\"Get 2 squads to face each other. This function works on spawned squads only. \"},{\"id\":\"Squad_FindCover\",\"kind\":2,\"label\":\"Squad_FindCover\",\"documentation\":\"Tries to find cover within a certain radius of a position. If no cover is found, it returns the position used for the search. \"},{\"id\":\"Squad_FindCoverCompareCurrent\",\"kind\":2,\"label\":\"Squad_FindCoverCompareCurrent\",\"documentation\":\"Tries to find cover within a certain radius of a position, traveling a max distance to get there, and possibly comparing against current position's cover. If no cover is found, it returns the position used for the search. \"},{\"id\":\"Squad_FromWorldID\",\"kind\":2,\"label\":\"Squad_FromWorldID\",\"documentation\":\"Get a squad from a mission editor ID. \"},{\"id\":\"Squad_GetActiveCommand\",\"kind\":2,\"label\":\"Squad_GetActiveCommand\",\"documentation\":\"Returns the active squad command. \"},{\"id\":\"Squad_GetAttackPlan\",\"kind\":2,\"label\":\"Squad_GetAttackPlan\",\"documentation\":\"Get name of current Squad AI attack plan \"},{\"id\":\"Squad_GetAttackTargets\",\"kind\":2,\"label\":\"Squad_GetAttackTargets\",\"documentation\":\"Find the squad member current or forced targets. If found, the targets squads are added to the sgroup. Entity targets like buildings are ignored \"},{\"id\":\"Squad_GetBlueprint\",\"kind\":2,\"label\":\"Squad_GetBlueprint\",\"documentation\":\"Returns the name of the squad blueprint (from the attribute editor) \"},{\"id\":\"Squad_GetDestination\",\"kind\":2,\"label\":\"Squad_GetDestination\",\"documentation\":\"Returns the squad's destination, if it's moving. IMPORTANT: you must only call this function if Squad_HasDestination has returned true. \"},{\"id\":\"Squad_GetGameID\",\"kind\":2,\"label\":\"Squad_GetGameID\",\"documentation\":\"Returns an integer containing the unqiue squad ID for this squad. \"},{\"id\":\"Squad_GetHeading\",\"kind\":2,\"label\":\"Squad_GetHeading\",\"documentation\":\"Returns the average heading of the spawned units in the squad. The heading is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Squad_GetHealth\",\"kind\":2,\"label\":\"Squad_GetHealth\",\"documentation\":\"Returns the current health of a squad. nThe current health of the squad is the total health of each entity in that squad.\"},{\"id\":\"Squad_GetHealthMax\",\"kind\":2,\"label\":\"Squad_GetHealthMax\",\"documentation\":\"Returns the max health of the squad. n The max health of a squad is the max health of each entity in that squad. This means that the max health of a squad may change when entities are added or removed from the squad.<BR/><BR/>\"},{\"id\":\"Squad_GetHealthPercentage\",\"kind\":2,\"label\":\"Squad_GetHealthPercentage\",\"documentation\":\"Returns how much of an original squad's health is left, accounting for deaths (ex: a squad of 3 riflemen would be at 50% health, since they started with 6 members) Note: This is the same percentage that the UI uses. \"},{\"id\":\"Squad_GetHoldEntity\",\"kind\":2,\"label\":\"Squad_GetHoldEntity\",\"documentation\":\"Get which building (entity) is the squad garrisoned nPlease use Squad_IsInHold() to check first\"},{\"id\":\"Squad_GetHoldSquad\",\"kind\":2,\"label\":\"Squad_GetHoldSquad\",\"documentation\":\"Get which vehicle (squad) is the squad garrisoned nPlease use Squad_IsInHold() to check first\"},{\"id\":\"Squad_GetInvulnerable\",\"kind\":2,\"label\":\"Squad_GetInvulnerable\",\"documentation\":\"Check if the squad is invulnerable or not \"},{\"id\":\"Squad_GetInvulnerableEntityCount\",\"kind\":2,\"label\":\"Squad_GetInvulnerableEntityCount\",\"documentation\":\"Returns the number of invulnerable member \"},{\"id\":\"Squad_GetInvulnerableMinCap\",\"kind\":2,\"label\":\"Squad_GetInvulnerableMinCap\",\"documentation\":\"Returns the highest invulnerable min cap percentage from members of the squad. \"},{\"id\":\"Squad_GetLastAttacker\",\"kind\":2,\"label\":\"Squad_GetLastAttacker\",\"documentation\":\"Find the last squad attacker on this squad. If found, the squad is added to the sgroup \"},{\"id\":\"Squad_GetLastAttackers\",\"kind\":2,\"label\":\"Squad_GetLastAttackers\",\"documentation\":\"Find the squad attackers on this squad from the last seconds specified. If found, the squads are added to the sgroup. Building attackers are ignored \"},{\"id\":\"Squad_GetLastEntityAttacker\",\"kind\":2,\"label\":\"Squad_GetLastEntityAttacker\",\"documentation\":\"Find the last entity attacker on this squad. If found, the entity added to egroup \"},{\"id\":\"Squad_GetMax\",\"kind\":2,\"label\":\"Squad_GetMax\",\"documentation\":\"Returns the max number of units allowed in the squad \"},{\"id\":\"Squad_GetNumSlotItem\",\"kind\":2,\"label\":\"Squad_GetNumSlotItem\",\"documentation\":\"Get the number of slot items with the same ID that the squad has nSquad_GetNumSlotItem( squadid, item )\"},{\"id\":\"Squad_GetOffsetPosition\",\"kind\":2,\"label\":\"Squad_GetOffsetPosition\",\"documentation\":\"Returns a position relative to a squad's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Squad_GetPinnedPlan\",\"kind\":2,\"label\":\"Squad_GetPinnedPlan\",\"documentation\":\"Get name of current Squad AI reaction plan \"},{\"id\":\"Squad_GetPlayerOwner\",\"kind\":2,\"label\":\"Squad_GetPlayerOwner\",\"documentation\":\"Returns the Player owner of the given squad. Squad MUST NOT be owned by the world. \"},{\"id\":\"Squad_GetPosition\",\"kind\":2,\"label\":\"Squad_GetPosition\",\"documentation\":\"Returns the average position of the spawned units in the squad. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Squad_GetPositionDeSpawned\",\"kind\":2,\"label\":\"Squad_GetPositionDeSpawned\",\"documentation\":\"Returns the average position of the despawned AND spawned units in the squad. \"},{\"id\":\"Squad_GetProductionQueueItem\",\"kind\":2,\"label\":\"Squad_GetProductionQueueItem\",\"documentation\":\"Returns the blueprint for a production queue item with index. \"},{\"id\":\"Squad_GetProductionQueueItemType\",\"kind\":2,\"label\":\"Squad_GetProductionQueueItemType\",\"documentation\":\"Returns the production type (PITEM_Upgrade, PITEM_Spawn, PITEM_SquadUpgrade, PITEM_SquadReinforce, PITEM_PlayerUpgrade) for a production queue item with index. \"},{\"id\":\"Squad_GetProductionQueueSize\",\"kind\":2,\"label\":\"Squad_GetProductionQueueSize\",\"documentation\":\"Returns the number of items in the squad's production queue. nIt is an error to call this function on a squad that does not have a production queue.<BR/> Use Squad_HasProductionQueue to check that the squad has a queue.\"},{\"id\":\"Squad_GetReactionPlan\",\"kind\":2,\"label\":\"Squad_GetReactionPlan\",\"documentation\":\"Get name of current Squad AI reaction plan \"},{\"id\":\"Squad_GetRetaliationPlan\",\"kind\":2,\"label\":\"Squad_GetRetaliationPlan\",\"documentation\":\"Get name of current Squad AI retaliation plan \"},{\"id\":\"Squad_GetSlotItemAt\",\"kind\":2,\"label\":\"Squad_GetSlotItemAt\",\"documentation\":\"Returns the ID of the slot item. Use Squad_GetSlotItemCount to determine how many slot items the squad has. The first index is 1 \"},{\"id\":\"Squad_GetSlotItemCount\",\"kind\":2,\"label\":\"Squad_GetSlotItemCount\",\"documentation\":\"Returns how many slot items this squad has \"},{\"id\":\"Squad_GetSlotItemsTable\",\"kind\":2,\"label\":\"Squad_GetSlotItemsTable\",\"documentation\":\"Returns a table of SlotItem ID's that this squad currently owns \"},{\"id\":\"Squad_GetSquadsHeld\",\"kind\":2,\"label\":\"Squad_GetSquadsHeld\",\"documentation\":\"Adds all squads held by 'squad' to an sgroup \"},{\"id\":\"Squad_GetSuppression\",\"kind\":2,\"label\":\"Squad_GetSuppression\",\"documentation\":\"Check current squad suppresion level. Return value from 0 to 1 \"},{\"id\":\"Squad_GetVeterancyExperience\",\"kind\":2,\"label\":\"Squad_GetVeterancyExperience\",\"documentation\":\"Get current squad veterancy experience \"},{\"id\":\"Squad_GetVeterancyRank\",\"kind\":2,\"label\":\"Squad_GetVeterancyRank\",\"documentation\":\"Get current squad veterancy rank. \"},{\"id\":\"Squad_GiveSlotItem\",\"kind\":2,\"label\":\"Squad_GiveSlotItem\",\"documentation\":\"Gives a slot item to the squad. Can fail due to not enough slots left \"},{\"id\":\"Squad_GiveSlotItemsFromTable\",\"kind\":2,\"label\":\"Squad_GiveSlotItemsFromTable\",\"documentation\":\"Gives all slot items in a table to the squad. The table should come from Squad_GetSlotItemsTable \"},{\"id\":\"Squad_HasActiveCommand\",\"kind\":2,\"label\":\"Squad_HasActiveCommand\",\"documentation\":\"Returns true if there's an active command currently for the squad \"},{\"id\":\"Squad_HasAnyCritical\",\"kind\":2,\"label\":\"Squad_HasAnyCritical\",\"documentation\":\"Return true if any entity in the squad has any critical applied to it \"},{\"id\":\"Squad_HasCritical\",\"kind\":2,\"label\":\"Squad_HasCritical\",\"documentation\":\"Check if a squad has a critical or not \"},{\"id\":\"Squad_HasDestination\",\"kind\":2,\"label\":\"Squad_HasDestination\",\"documentation\":\"Returns whether this squad is moving and has a destination \"},{\"id\":\"Squad_HasProductionQueue\",\"kind\":2,\"label\":\"Squad_HasProductionQueue\",\"documentation\":\"Returns true if a squad has a production queue. \"},{\"id\":\"Squad_HasSlotItem\",\"kind\":2,\"label\":\"Squad_HasSlotItem\",\"documentation\":\"Check if a squad has a specific slot item \"},{\"id\":\"Squad_HasTeamWeapon\",\"kind\":2,\"label\":\"Squad_HasTeamWeapon\",\"documentation\":\"Returns true if the squad is carrying some kind of team weapon \"},{\"id\":\"Squad_HasUpgrade\",\"kind\":2,\"label\":\"Squad_HasUpgrade\",\"documentation\":\"Return true if the squad has purchased the specified upgrade. \"},{\"id\":\"Squad_IncreaseVeterancyExperience\",\"kind\":2,\"label\":\"Squad_IncreaseVeterancyExperience\",\"documentation\":\"Increase current squad veterancy experience \"},{\"id\":\"Squad_IncreaseVeterancyRank\",\"kind\":2,\"label\":\"Squad_IncreaseVeterancyRank\",\"documentation\":\"Increase current squad veterancy rank \"},{\"id\":\"Squad_InstantSetupTeamWeapon\",\"kind\":2,\"label\":\"Squad_InstantSetupTeamWeapon\",\"documentation\":\"Stops current squads activity and instant setup the team weapon if they have one \"},{\"id\":\"Squad_IsAttacking\",\"kind\":2,\"label\":\"Squad_IsAttacking\",\"documentation\":\"Returns true if any unit in the squad is attacking within the time nTime is in seconds\"},{\"id\":\"Squad_IsCamouflaged\",\"kind\":2,\"label\":\"Squad_IsCamouflaged\",\"documentation\":\"Returns whether ANY entity in the squad is camouflaged \"},{\"id\":\"Squad_IsDoingAbility\",\"kind\":2,\"label\":\"Squad_IsDoingAbility\",\"documentation\":\"True if squad is currently performing the given ability \"},{\"id\":\"Squad_IsFemale\",\"kind\":2,\"label\":\"Squad_IsFemale\",\"documentation\":\"Returns whether the passed in squad is female \"},{\"id\":\"Squad_IsHoldingAny\",\"kind\":2,\"label\":\"Squad_IsHoldingAny\",\"documentation\":\"Check if the squad has a hold on anything (use this on vehicles) \"},{\"id\":\"Squad_IsInCover\",\"kind\":2,\"label\":\"Squad_IsInCover\",\"documentation\":\"Returns true if ALL or ANY troopers in a squad are in cover. nSet all to true to check if all troopers are in cover or set to false to check if any.\"},{\"id\":\"Squad_IsInHoldEntity\",\"kind\":2,\"label\":\"Squad_IsInHoldEntity\",\"documentation\":\"Check if the squad is garrisoned in entity (building) \"},{\"id\":\"Squad_IsInHoldSquad\",\"kind\":2,\"label\":\"Squad_IsInHoldSquad\",\"documentation\":\"Check if the squad is loaded in squad (vehicle \"},{\"id\":\"Squad_IsMoving\",\"kind\":2,\"label\":\"Squad_IsMoving\",\"documentation\":\"Returns whether any entity in the squad is moving \"},{\"id\":\"Squad_IsPinned\",\"kind\":2,\"label\":\"Squad_IsPinned\",\"documentation\":\"True if squad is currently pinned \"},{\"id\":\"Squad_IsReinforcing\",\"kind\":2,\"label\":\"Squad_IsReinforcing\",\"documentation\":\"Returns true if the squad is currently reinforcing. This function will return false if the squad does not have a reinforce ext. \"},{\"id\":\"Squad_IsRetreating\",\"kind\":2,\"label\":\"Squad_IsRetreating\",\"documentation\":\"Returns true if the squad is currently retreating \"},{\"id\":\"Squad_IsSuppressed\",\"kind\":2,\"label\":\"Squad_IsSuppressed\",\"documentation\":\"True if squad is currently suppressed \"},{\"id\":\"Squad_IsUnderAttack\",\"kind\":2,\"label\":\"Squad_IsUnderAttack\",\"documentation\":\"Returns true if any unit in the squad is under attack within the time nTime is in seconds\"},{\"id\":\"Squad_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"Squad_IsUnderAttackByPlayer\",\"documentation\":\"Returns true if squad is under attack by enemy from a particular player nTime is in seconds\"},{\"id\":\"Squad_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"Squad_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if the squad was under attack from a certain direction (8 offset types, see LuaConsts.scar) \"},{\"id\":\"Squad_IsUpgrading\",\"kind\":2,\"label\":\"Squad_IsUpgrading\",\"documentation\":\"Returns true if the squad is currently upgrading something specific. \"},{\"id\":\"Squad_IsUpgradingAny\",\"kind\":2,\"label\":\"Squad_IsUpgradingAny\",\"documentation\":\"Returns true if the squad is currently upgrading anything. \"},{\"id\":\"Squad_IsValid\",\"kind\":2,\"label\":\"Squad_IsValid\",\"documentation\":\"Check if a squad with the given ID can be found in the world \"},{\"id\":\"Squad_Kill\",\"kind\":2,\"label\":\"Squad_Kill\",\"documentation\":\"Kill whole squad. Sets health to 0, and triggers death effects. \"},{\"id\":\"Squad_RemoveAbility\",\"kind\":2,\"label\":\"Squad_RemoveAbility\",\"documentation\":\"Removes an ability that was previously added by Squad_AddAbility. You cannot remove static abilities (from AE: squad_ability_ext) \"},{\"id\":\"Squad_RemoveUpgrade\",\"kind\":2,\"label\":\"Squad_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from a squad \"},{\"id\":\"Squad_RewardActionPoints\",\"kind\":2,\"label\":\"Squad_RewardActionPoints\",\"documentation\":\"Give squad action points \"},{\"id\":\"Squad_SetAnimatorState\",\"kind\":2,\"label\":\"Squad_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for a squad Please only use this for simple animations \"},{\"id\":\"Squad_SetAttackPlan\",\"kind\":2,\"label\":\"Squad_SetAttackPlan\",\"documentation\":\"Set overriding Squad AI attack plan \"},{\"id\":\"Squad_SetHealth\",\"kind\":2,\"label\":\"Squad_SetHealth\",\"documentation\":\"Set the health of all units in a squad. Health must be in range [0.0, 1.0] \"},{\"id\":\"Squad_SetInvulnerable\",\"kind\":2,\"label\":\"Squad_SetInvulnerable\",\"documentation\":\"Set invulnerability on the squad. Reset time is in seconds. If it it set, the invulnerability will expire after this time. \"},{\"id\":\"Squad_SetInvulnerableEntityCount\",\"kind\":2,\"label\":\"Squad_SetInvulnerableEntityCount\",\"documentation\":\"Make a squad invulnerable to physical damage when number of members drop to or below specified count. nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Squad_SetInvulnerableMinCap\",\"kind\":2,\"label\":\"Squad_SetInvulnerableMinCap\",\"documentation\":\"Make a squad invulnerable to physical damage. nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Squad_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"Squad_SetInvulnerableToCritical\",\"documentation\":\"set invulnerability to critical effect for all entities in the entire squad. Invulnerable to critical also means that kills a entity will not have effect \"},{\"id\":\"Squad_SetMoodMode\",\"kind\":2,\"label\":\"Squad_SetMoodMode\",\"documentation\":\"Set soldier mood mode. \"},{\"id\":\"Squad_SetMoveType\",\"kind\":2,\"label\":\"Squad_SetMoveType\",\"documentation\":\"Sets the squad's move type \"},{\"id\":\"Squad_SetPinnedPlan\",\"kind\":2,\"label\":\"Squad_SetPinnedPlan\",\"documentation\":\"Set overriding Squad AI pinned plan \"},{\"id\":\"Squad_SetPlayerOwner\",\"kind\":2,\"label\":\"Squad_SetPlayerOwner\",\"documentation\":\"Changes the owner of the given squad. \"},{\"id\":\"Squad_SetPosition\",\"kind\":2,\"label\":\"Squad_SetPosition\",\"documentation\":\"Moves the squad to an arbitrary new position \"},{\"id\":\"Squad_SetReactionPlan\",\"kind\":2,\"label\":\"Squad_SetReactionPlan\",\"documentation\":\"Set overriding Squad AI reaction plan \"},{\"id\":\"Squad_SetRecrewable\",\"kind\":2,\"label\":\"Squad_SetRecrewable\",\"documentation\":\"Set entity inside the squad to be recrewable or not when it becomes abandoned \"},{\"id\":\"Squad_SetRetaliationPlan\",\"kind\":2,\"label\":\"Squad_SetRetaliationPlan\",\"documentation\":\"Set overriding Squad AI idle retaliation plan \"},{\"id\":\"Squad_SetSharedProductionQueue\",\"kind\":2,\"label\":\"Squad_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"Squad_SetSuppression\",\"kind\":2,\"label\":\"Squad_SetSuppression\",\"documentation\":\"Set current squad suppresion level. Suppression value value from 0 to 1 \"},{\"id\":\"Squad_SetVeterancyDisplayVisibility\",\"kind\":2,\"label\":\"Squad_SetVeterancyDisplayVisibility\",\"documentation\":\"Turn on/off display of the unit portrait veterancy stars \"},{\"id\":\"Squad_SetWorldOwned\",\"kind\":2,\"label\":\"Squad_SetWorldOwned\",\"documentation\":\"Makes a squad neutral \"},{\"id\":\"Squad_Spawn\",\"kind\":2,\"label\":\"Squad_Spawn\",\"documentation\":\"Spawn the entire squad at a given position \"},{\"id\":\"Squad_SpawnToward\",\"kind\":2,\"label\":\"Squad_SpawnToward\",\"documentation\":\"Spawn the entire squad at a given position \"},{\"id\":\"Squad_Split\",\"kind\":2,\"label\":\"Squad_Split\",\"documentation\":\"Split the squad into 2. The new squad size is specified by the number passed in nThe new squad size is specified by the number passed in.\"},{\"id\":\"Squad_StopAbility\",\"kind\":2,\"label\":\"Squad_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Squad_SuggestPosture\",\"kind\":2,\"label\":\"Squad_SuggestPosture\",\"documentation\":\"Suggests a posture to a squad, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"Squad_WarpToPos\",\"kind\":2,\"label\":\"Squad_WarpToPos\",\"documentation\":\"Warps a squad immediately to a new position \"},{\"id\":\"Stats_BuildingsLost\",\"kind\":2,\"label\":\"Stats_BuildingsLost\",\"documentation\":\"Returns how many buildings a player has lost \"},{\"id\":\"Stats_InfantryLost\",\"kind\":2,\"label\":\"Stats_InfantryLost\",\"documentation\":\"Returns how many infantry a player has lost \"},{\"id\":\"Stats_KillsTotal\",\"kind\":2,\"label\":\"Stats_KillsTotal\",\"documentation\":\"Returns a player's total kills \"},{\"id\":\"Stats_PlayerAt\",\"kind\":2,\"label\":\"Stats_PlayerAt\",\"documentation\":\"Returns player id at given index \"},{\"id\":\"Stats_PlayerCount\",\"kind\":2,\"label\":\"Stats_PlayerCount\",\"documentation\":\"Returns how many players in the game \"},{\"id\":\"Stats_ResGathered\",\"kind\":2,\"label\":\"Stats_ResGathered\",\"documentation\":\"Returns how many resources a player has gathered \"},{\"id\":\"Stats_ResSpent\",\"kind\":2,\"label\":\"Stats_ResSpent\",\"documentation\":\"Returns how many resources a player has spent \"},{\"id\":\"Stats_SoldiersKilled\",\"kind\":2,\"label\":\"Stats_SoldiersKilled\",\"documentation\":\"Returns how many soldiers a player has killed \"},{\"id\":\"Stats_StructuresKilled\",\"kind\":2,\"label\":\"Stats_StructuresKilled\",\"documentation\":\"Returns how many structures a player has killed \"},{\"id\":\"Stats_TeamTally\",\"kind\":2,\"label\":\"Stats_TeamTally\",\"documentation\":\"Takes a statistic function and totals up the results for all the players on a given team \"},{\"id\":\"Stats_TotalDuration\",\"kind\":2,\"label\":\"Stats_TotalDuration\",\"documentation\":\"Returns game time, in seconds \"},{\"id\":\"Stats_TotalSquadsLost\",\"kind\":2,\"label\":\"Stats_TotalSquadsLost\",\"documentation\":\"Returns how many squads a playe has lost \"},{\"id\":\"Stats_UnitSoldierKills\",\"kind\":2,\"label\":\"Stats_UnitSoldierKills\",\"documentation\":\"Returns how many soldiers an SBP have killed. ex: how many soldiers did player2's riflemen kill? \"},{\"id\":\"Stats_UnitStructureKills\",\"kind\":2,\"label\":\"Stats_UnitStructureKills\",\"documentation\":\"Returns how many structures an SBP have killed. ex: how many structures did player2's riflemen kill? \"},{\"id\":\"Stats_UnitTotalKills\",\"kind\":2,\"label\":\"Stats_UnitTotalKills\",\"documentation\":\"Returns how many entities an SBP have killed. ex: how many entities did player2's riflemen kill? \"},{\"id\":\"Stats_UnitVehicleKills\",\"kind\":2,\"label\":\"Stats_UnitVehicleKills\",\"documentation\":\"Returns how many vehicles an SBP have killed. ex: how many vehicles did player2's riflemen kill? \"},{\"id\":\"Stats_VehiclesKilled\",\"kind\":2,\"label\":\"Stats_VehiclesKilled\",\"documentation\":\"Returns how many vehicles a playe has killed \"},{\"id\":\"Stats_VehiclesLost\",\"kind\":2,\"label\":\"Stats_VehiclesLost\",\"documentation\":\"Returns how many vehicles a player has lost \"},{\"id\":\"Stinger_AddEvent\",\"kind\":2,\"label\":\"Stinger_AddEvent\",\"documentation\":\"Add a stinger to trigger at a specific location nYou must remember to set Stinger_Manager going as a rule with a regular interval\"},{\"id\":\"Stinger_AddFunction\",\"kind\":2,\"label\":\"Stinger_AddFunction\",\"documentation\":\"Add a stinger to trigger at a specific location nYou must remember to set Stinger_Manager going as a rule with a regular interval\"},{\"id\":\"Stinger_Remove\",\"kind\":2,\"label\":\"Stinger_Remove\",\"documentation\":\"Remove all stingers triggered from a specific location \"},{\"id\":\"Team_AddResource\",\"kind\":2,\"label\":\"Team_AddResource\",\"documentation\":\"Add resource to each member of a team, as opposed to just setting it. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Team_AddSquadsToSGroup\",\"kind\":2,\"label\":\"Team_AddSquadsToSGroup\",\"documentation\":\"For the given team, get all of the squads gathered into a squadgroup of your naming. nThis will add all squads for the entire team to one group. To do so for each player, iterate the team table\"},{\"id\":\"Team_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Team_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY of a teams squads are in proximity of a marker \"},{\"id\":\"Team_CanSee\",\"kind\":2,\"label\":\"Team_CanSee\",\"documentation\":\"Returns true if a team can see ALL or ANY items \"},{\"id\":\"Team_ClearArea\",\"kind\":2,\"label\":\"Team_ClearArea\",\"documentation\":\"Any of the team's units in the marker area move out of the area, and can be made invulnerable for a bit whilst they do it nYou can replace the marker with a position and a range - i.e. Team_ClearArea(team, pos, range, invulnerable)\"},{\"id\":\"Team_DefineAllies\",\"kind\":2,\"label\":\"Team_DefineAllies\",\"documentation\":\"Returns 4 playerIDs (player1, player2, player3, player4) for Humans/Allies \"},{\"id\":\"Team_DefineEnemies\",\"kind\":2,\"label\":\"Team_DefineEnemies\",\"documentation\":\"Returns 4 playerIDs (player5, player6, player7, player8) for Enemy Players \"},{\"id\":\"Team_FindByRace\",\"kind\":2,\"label\":\"Team_FindByRace\",\"documentation\":\"Returns the TeamID for a given race. See LuaConsts for constants to use. nYou can pass in multiple races.\"},{\"id\":\"Team_ForEachAllOrAny\",\"kind\":2,\"label\":\"Team_ForEachAllOrAny\",\"documentation\":\"Tests a condition on teams. Calls your function for each player. Parameters of your function: (TeamID, player index, PlayerID). Your function must return true or false to indicate whether the player meets the condition. \"},{\"id\":\"Team_GetAll\",\"kind\":2,\"label\":\"Team_GetAll\",\"documentation\":\"Creates/Clears groups that contain all of a team's units and buildings. Defaults - sg_allsquads and eg_allentities nFills an SGroup with all of the given team's squads, and an EGroup with all the team's entities. If you don't provide and groups, then it defaults to using sg_allsquads and eg_allentities.\"},{\"id\":\"Team_GetAllEntitiesNearMarker\",\"kind\":2,\"label\":\"Team_GetAllEntitiesNearMarker\",\"documentation\":\"Gather together all of a teams's entities that are in proximity to a marker, a position, or within a territory sector into an EGroup. The EGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Team_GetAllSquadsNearMarker\",\"kind\":2,\"label\":\"Team_GetAllSquadsNearMarker\",\"documentation\":\"Gather together all of a teams's squads that are in proximity to a marker, a position, or within a territory sector into an SGroup. The SGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Team_GetBuildingID\",\"kind\":2,\"label\":\"Team_GetBuildingID\",\"documentation\":\"Returns the entityID of the first team owned building listed in the table. nThis only looks at completed buildings\"},{\"id\":\"Team_GetBuildingsCount\",\"kind\":2,\"label\":\"Team_GetBuildingsCount\",\"documentation\":\"Returns the total number of buildings owned by this team. \"},{\"id\":\"Team_GetBuildingsCountExcept\",\"kind\":2,\"label\":\"Team_GetBuildingsCountExcept\",\"documentation\":\"Returns the total number of buildings owned by this team (with exclusions). \"},{\"id\":\"Team_GetBuildingsCountOnly\",\"kind\":2,\"label\":\"Team_GetBuildingsCountOnly\",\"documentation\":\"Returns the number of buildings owned by this team (inclusive). \"},{\"id\":\"Team_GetEnemyTeam\",\"kind\":2,\"label\":\"Team_GetEnemyTeam\",\"documentation\":\"Returns a team's enemy \"},{\"id\":\"Team_GetEntitiesFromType\",\"kind\":2,\"label\":\"Team_GetEntitiesFromType\",\"documentation\":\"Returns an EGroup containing all of the teams entities of a specific unit_type (as defined by the type_ext on the entity) nThis function returns a new EGroup to allow tracking of different types. \"},{\"id\":\"Team_HasBuilding\",\"kind\":2,\"label\":\"Team_HasBuilding\",\"documentation\":\"Returns true if this team owns any buildings listed in the table. nUse ALL to check if all players on the team have this building\"},{\"id\":\"Team_HasBuildingsExcept\",\"kind\":2,\"label\":\"Team_HasBuildingsExcept\",\"documentation\":\"Returns true if this team owns any buildings. (with exclusions). nUse ALL to check if all players on the team have buildings EXCEPT this one\"},{\"id\":\"Team_HasBuildingUnderConstruction\",\"kind\":2,\"label\":\"Team_HasBuildingUnderConstruction\",\"documentation\":\"Returns true if this team owns any buildings listed in the table currently under construction. nUse ALL to check if all players on the team have this building under construction\"},{\"id\":\"Team_IsAlive\",\"kind\":2,\"label\":\"Team_IsAlive\",\"documentation\":\"Returns whether a team is still alive or not (all member players must be 'alive') \"},{\"id\":\"Team_OwnsEGroup\",\"kind\":2,\"label\":\"Team_OwnsEGroup\",\"documentation\":\"Returns true if a given team owns ALL or ANY items in a group \"},{\"id\":\"Team_OwnsEntity\",\"kind\":2,\"label\":\"Team_OwnsEntity\",\"documentation\":\"Returns true if a given team owns an entity \"},{\"id\":\"Team_OwnsSGroup\",\"kind\":2,\"label\":\"Team_OwnsSGroup\",\"documentation\":\"Returns true if a given team owns ALL or ANY items in a group \"},{\"id\":\"Team_OwnsSquad\",\"kind\":2,\"label\":\"Team_OwnsSquad\",\"documentation\":\"Returns true if a given team owns a squad \"},{\"id\":\"Team_RestrictAddOnList\",\"kind\":2,\"label\":\"Team_RestrictAddOnList\",\"documentation\":\"Restrict a list of addons. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_RestrictBuildingList\",\"kind\":2,\"label\":\"Team_RestrictBuildingList\",\"documentation\":\"Restrict a list of buildings. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_RestrictResearchList\",\"kind\":2,\"label\":\"Team_RestrictResearchList\",\"documentation\":\"Restrict a list of research items. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_SetAbilityAvailability\",\"kind\":2,\"label\":\"Team_SetAbilityAvailability\",\"documentation\":\"Sets the availability of an ability. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetCommandAvailability\",\"kind\":2,\"label\":\"Team_SetCommandAvailability\",\"documentation\":\"Sets the availability of entity, squad and player commands. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetConstructionMenuAvailability\",\"kind\":2,\"label\":\"Team_SetConstructionMenuAvailability\",\"documentation\":\"Sets the availability of a construction menu. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetEntityProductionAvailability\",\"kind\":2,\"label\":\"Team_SetEntityProductionAvailability\",\"documentation\":\"Sets the availability of an entity production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetMaxCapPopulation\",\"kind\":2,\"label\":\"Team_SetMaxCapPopulation\",\"documentation\":\"Sets the current personnel or vehicle max-cap for each player on a team. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nyou will have to call Team_SetMaxPopulation to adjust the current max population to do this.\"},{\"id\":\"Team_SetMaxPopulation\",\"kind\":2,\"label\":\"Team_SetMaxPopulation\",\"documentation\":\"Sets the current personnel or vehicle cap for each player on a team. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nNote that any modifiers that adjust the current cap will be applied on top of this. Also note, the current cap cannot go higher than the max cap.\"},{\"id\":\"Team_SetSquadProductionAvailability\",\"kind\":2,\"label\":\"Team_SetSquadProductionAvailability\",\"documentation\":\"Sets the availability of a squad production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetTechTreeByYear\",\"kind\":2,\"label\":\"Team_SetTechTreeByYear\",\"documentation\":\"Sets up the tech tree for a whole team based off the year \"},{\"id\":\"Team_SetUpgradeAvailability\",\"kind\":2,\"label\":\"Team_SetUpgradeAvailability\",\"documentation\":\"Sets the availability of an upgrade. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetUpgradeCost\",\"kind\":2,\"label\":\"Team_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. \"},{\"id\":\"ToW_DefenseCreateWave\",\"kind\":2,\"label\":\"ToW_DefenseCreateWave\",\"documentation\":\"Starts an enemy wave in a ToW mission set up with proper data. See TheatreOfWar.scar for example data. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetStandardResources\",\"kind\":2,\"label\":\"ToW_SetStandardResources\",\"documentation\":\"Set a player to have standard starting resources, or use optional override data. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetUpBattleObjectives\",\"kind\":2,\"label\":\"ToW_SetUpBattleObjectives\",\"documentation\":\"Sets up a default mission objective for Victory Point battles. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetUpTechTreeByYear\",\"kind\":2,\"label\":\"ToW_SetUpTechTreeByYear\",\"documentation\":\"Restricts a given player's tech tree to just the units that were available in a specific year. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"Timer_Add\",\"kind\":2,\"label\":\"Timer_Add\",\"documentation\":\"Add the amount of time to the specified timer \"},{\"id\":\"Timer_Advance\",\"kind\":2,\"label\":\"Timer_Advance\",\"documentation\":\"Advances the timer by the specified amount of time \"},{\"id\":\"Timer_Display\",\"kind\":2,\"label\":\"Timer_Display\",\"documentation\":\"Display (in the console) the amount of time remaining in the specified timer. \"},{\"id\":\"Timer_DisplayOnScreen\",\"kind\":2,\"label\":\"Timer_DisplayOnScreen\",\"documentation\":\"Displays a timer on the screen - You need to call this regularly (i.e. every second) to update the onscreen display. THIS IS A TEMPORARY FUNCTION - WELL GET PROPER UI SUPPORT LATER ON \"},{\"id\":\"Timer_End\",\"kind\":2,\"label\":\"Timer_End\",\"documentation\":\"Stop the specified timer. \"},{\"id\":\"Timer_Exists\",\"kind\":2,\"label\":\"Timer_Exists\",\"documentation\":\"Returns whether the timer with this ID exists \"},{\"id\":\"Timer_GetElapsed\",\"kind\":2,\"label\":\"Timer_GetElapsed\",\"documentation\":\"Returns how much time has elapsed since this timer has been started \"},{\"id\":\"Timer_GetMinutesAndSeconds\",\"kind\":2,\"label\":\"Timer_GetMinutesAndSeconds\",\"documentation\":\"Returns TWO values: minutes and seconds. Provide it a function like Timer_GetRemaining or Timer_GetElapsed \"},{\"id\":\"Timer_GetRemaining\",\"kind\":2,\"label\":\"Timer_GetRemaining\",\"documentation\":\"Get the remaining time for the specified timer. \"},{\"id\":\"Timer_IsPaused\",\"kind\":2,\"label\":\"Timer_IsPaused\",\"documentation\":\"Check if the timer is paused. \"},{\"id\":\"Timer_Pause\",\"kind\":2,\"label\":\"Timer_Pause\",\"documentation\":\"Pause the specified timer. \"},{\"id\":\"Timer_Resume\",\"kind\":2,\"label\":\"Timer_Resume\",\"documentation\":\"Resume the specified timer. \"},{\"id\":\"Timer_Start\",\"kind\":2,\"label\":\"Timer_Start\",\"documentation\":\"Start a timer with the specified id, taking the required period ( in seconds ) \"},{\"id\":\"EventCue_Create\",\"kind\":2,\"label\":\"EventCue_Create\",\"documentation\":\"Creates an Event Cue message which automatically sends the camera to a specified point when clicked on. nCan optionally create a 5-second hintpoint at the location when clicked on, and/or call a specified function for you, too. Both of these only activate the first time you click on the event cue to avoid stacking.\"},{\"id\":\"FOW_Enable\",\"kind\":2,\"label\":\"FOW_Enable\",\"documentation\":\"Enables or disables the FOW, including out of bound areas and all entities on the map \"},{\"id\":\"Game_SubTextFade\",\"kind\":2,\"label\":\"Game_SubTextFade\",\"documentation\":\"Fade in and out two or three lines of subtext. nThis function has to support two lines, for backwards compatibility. The 'detail' line is therefore optional.\"},{\"id\":\"HintMouseover_Add\",\"kind\":2,\"label\":\"HintMouseover_Add\",\"documentation\":\"Adds a Hint Point that will only appear on Mouseover of the target. \"},{\"id\":\"HintMouseover_Remove\",\"kind\":2,\"label\":\"HintMouseover_Remove\",\"documentation\":\"Removes a Mouseover Hint Point from the managing function. \"},{\"id\":\"HintPoint_Add\",\"kind\":2,\"label\":\"HintPoint_Add\",\"documentation\":\"Creates a hintpoint attached to a Marker, EGroup, SGroup or position nIf range is set to 0, then the hintpoint is rangeless, see the design document for rangeless features. The following types of hintpoint actions are available. HPAT_Objective HPAT_Hint HPAT_Critical HPAT_Movement HPAT_Attack HPAT_FormationSetup HPAT_RallyPoint HPAT_DeepSnow HPAT_CoverGreen HPAT_CoverYellow HPAT_CoverRed HPAT_Detonation HPAT_Vaulting\"},{\"id\":\"HintPoint_Remove\",\"kind\":2,\"label\":\"HintPoint_Remove\",\"documentation\":\"Removes a hintpoint. \"},{\"id\":\"HintPoint_SetDisplayOffset\",\"kind\":2,\"label\":\"HintPoint_SetDisplayOffset\",\"documentation\":\"Sets a hintpoint's display offset, which is 3D for world hintpoints and 2D for taskbar binding hintpoints (ignore z) \"},{\"id\":\"HintPoint_SetVisible\",\"kind\":2,\"label\":\"HintPoint_SetVisible\",\"documentation\":\"Sets a hintpoint's visibility. Currently, FOW is not accounted for. \"},{\"id\":\"Misc_IsEGroupSelected\",\"kind\":2,\"label\":\"Misc_IsEGroupSelected\",\"documentation\":\"Returns true if ANY or ALL of the EGroup is selected \"},{\"id\":\"Misc_IsSGroupSelected\",\"kind\":2,\"label\":\"Misc_IsSGroupSelected\",\"documentation\":\"Returns true if ANY or ALL of the SGroup is selected \"},{\"id\":\"ThreatArrow_Add\",\"kind\":2,\"label\":\"ThreatArrow_Add\",\"documentation\":\"Adds a threat to an existing group \"},{\"id\":\"ThreatArrow_CreateGroup\",\"kind\":2,\"label\":\"ThreatArrow_CreateGroup\",\"documentation\":\"Creates a group of threats that are represented by a single arrow. Threats can be entities, squads, egroups, sgroups, positions or markers \"},{\"id\":\"ThreatArrow_DestroyAllGroups\",\"kind\":2,\"label\":\"ThreatArrow_DestroyAllGroups\",\"documentation\":\"Destroy all threat groups \"},{\"id\":\"ThreatArrow_DestroyGroup\",\"kind\":2,\"label\":\"ThreatArrow_DestroyGroup\",\"documentation\":\"Destroy a threat group \"},{\"id\":\"ThreatArrow_Remove\",\"kind\":2,\"label\":\"ThreatArrow_Remove\",\"documentation\":\"Removes a threat from an existing group \"},{\"id\":\"UI_AddHintAndFlashAbility\",\"kind\":2,\"label\":\"UI_AddHintAndFlashAbility\",\"documentation\":\"Creates and flashes an ability button on the taskbar if the unit is selected nLength parameter determines how long to flash the item, and the blueprint filter is used if certain squad types need to be selected before flashing the button.\"},{\"id\":\"UI_CreateEventCue\",\"kind\":2,\"label\":\"UI_CreateEventCue\",\"documentation\":\"Creates an event cue without a callback (you won't know when it's clicked) \"},{\"id\":\"UI_CreateMinimapBlip\",\"kind\":2,\"label\":\"UI_CreateMinimapBlip\",\"documentation\":\"Creates a blip on the minimap; return the ID of the blip. n'where' can be an entity, marker, position, egroup, sgroup, or squad. The following blipTypes are available: BT_AttackHere BT_DefendHere BT_CaptureHere BT_General BT_Combat BT_Reveal BT_ObjectivePrimary BT_ObjectiveSecondary\"},{\"id\":\"UI_CreateSGroupKickerMessage\",\"kind\":2,\"label\":\"UI_CreateSGroupKickerMessage\",\"documentation\":\"Create a custom kicker message on the squad and display to the player. \"},{\"id\":\"UI_DeleteMinimapBlip\",\"kind\":2,\"label\":\"UI_DeleteMinimapBlip\",\"documentation\":\"Removes a blip already created on the minimap \"},{\"id\":\"UI_HighlightSGroup\",\"kind\":2,\"label\":\"UI_HighlightSGroup\",\"documentation\":\"Highlights an SGroup in the UI for the given duration \"},{\"id\":\"UI_SetAllowLoadAndSave\",\"kind\":2,\"label\":\"UI_SetAllowLoadAndSave\",\"documentation\":\"Enables or disable load and save features at the pause menu \"},{\"id\":\"UI_SetSGroupSpecialLevel\",\"kind\":2,\"label\":\"UI_SetSGroupSpecialLevel\",\"documentation\":\"Sets a level decorator that's defined in all of the squads squad_ui_ext in the target SGroup nif level value is -1 it will hide the special decorator, if no level is defined -1 is default\"},{\"id\":\"WinWarning_PublishLoseReminder\",\"kind\":2,\"label\":\"WinWarning_PublishLoseReminder\",\"documentation\":\"Triggers a UI event cue and an audio cue that the player is about to lose the game. nThe lower the warningLevel, the closer the player is to losing and the more intense the warning is\"},{\"id\":\"WinWarning_SetMaxTickers\",\"kind\":2,\"label\":\"WinWarning_SetMaxTickers\",\"documentation\":\"Sets the max victory point scores for the game \"},{\"id\":\"WinWarning_SetTickers\",\"kind\":2,\"label\":\"WinWarning_SetTickers\",\"documentation\":\"Sets the victory point scores for the game \"},{\"id\":\"WinWarning_ShowLoseWarning\",\"kind\":2,\"label\":\"WinWarning_ShowLoseWarning\",\"documentation\":\"Call UI_TitleDestroy to remove.\"},{\"id\":\"Clone\",\"kind\":2,\"label\":\"Clone\",\"documentation\":\"Clones a table (recursively) allowing for unadulterated use of the data \"},{\"id\":\"Event_IsAnyRunning\",\"kind\":2,\"label\":\"Event_IsAnyRunning\",\"documentation\":\"Returns true if any event is currently running [at or below (more important than) the priority threshold. If not specified, ignores threshold.] \"},{\"id\":\"Game_EndSP\",\"kind\":2,\"label\":\"Game_EndSP\",\"documentation\":\"Ends the single player game (win/lose). \"},{\"id\":\"Game_FadeToBlack\",\"kind\":2,\"label\":\"Game_FadeToBlack\",\"documentation\":\"Fades the screen to black - FADE_OUT to fade to black, FADE_IN to fade back in \"},{\"id\":\"Import_Once\",\"kind\":2,\"label\":\"Import_Once\",\"documentation\":\"Loads a scar file if it hasn't been loaded yet \"},{\"id\":\"Loc_FormatText\",\"kind\":2,\"label\":\"Loc_FormatText\",\"documentation\":\"Returns a formatted localized string. nUse this function to format localized text. ie %1PLAYERNAME% is going to win. It accepts up to 4 additional LocStrings as parameters.\"},{\"id\":\"Sound_PlayOnSquad\",\"kind\":2,\"label\":\"Sound_PlayOnSquad\",\"documentation\":\"Play sound on the first entity of the squad in sgroup \"},{\"id\":\"Team_GetEntityConcentration\",\"kind\":2,\"label\":\"Team_GetEntityConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of entities owned by a team. nThis function is slow, so don't call it very often\"},{\"id\":\"Team_GetSquadConcentration\",\"kind\":2,\"label\":\"Team_GetSquadConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of squads owned by a team. nThis function is slow, so don't call it very often\"},{\"id\":\"Util_AddMouseoverSquadToSGroup\",\"kind\":2,\"label\":\"Util_AddMouseoverSquadToSGroup\",\"documentation\":\"If there's a squad under the mouse cursor, this adds it to a unique SGroup. Return value is the SGroup it was added to, or nil if there was no squad under the mouse cursor. Pass in true for 'clearGroup' to clear the sgroup before adding the squad. \"},{\"id\":\"Util_ApplyModifier\",\"kind\":2,\"label\":\"Util_ApplyModifier\",\"documentation\":\"Applies any modifier to the target SGroup, EGroup, or Player nValid applytypes are MAT_...(Entity, Squad etc.), if left default assumption is default type for the target Cases you want to define apply\"type\": Weapon Modifiers, Enable Modifiers, or a player modifier for all entity or squad types Valid mathtypes are MUT...(Addition, Multiplication, etc.) Exclusive modifiers will replace all pre-existing modifiers of that modifier type on the target\"},{\"id\":\"Util_AutoAmbient\",\"kind\":2,\"label\":\"Util_AutoAmbient\",\"documentation\":\"Auto-generate an Ambient Event. These are Low priority, and will hopefully interrupt nothing. nTakes a table of Actors and LOC numbers\"},{\"id\":\"Util_AutoIntel\",\"kind\":2,\"label\":\"Util_AutoIntel\",\"documentation\":\"Auto-generate an Intel Event. These are medium priority, and will interrupt a Stinger, but not an NIS. nTakes a table of parameters defining speaker(s) and line(s)\"},{\"id\":\"Util_AutoNISlet\",\"kind\":2,\"label\":\"Util_AutoNISlet\",\"documentation\":\"Auto-generate an NISlet Event, a simple NIS meant to convey mission location. These are high priority, and will interrupt a Stinger and Intel Events. nTakes an NISLET type and a table of parameters defining speaker(s) and line(s) NISLET_BLACK2GAME= 1 -- starts in black and fades up, ends in gamplay NISLET_GAME2GAME = 2 -- transitions from game play to letterbox and backto gameplay NISLET_GAME2BLACK= 3 -- starts in gameplay and ends in black NISLET_GAME2LETTER= 4 -- starts in gameplay and ends in letterbox mode (for transition to sitrep) NISLET_TIME = 1 -- use seconds to wait on camera movements NISLET_VO= 2 -- use voice to wait on camera movementst_eventes.nislet_start = {{camPos = pos1, waitType = NISLET_TIME, waitValue = 5},{camPos = pos2, waitType = NISLET_VO, waitValue = {ACTOR.GenericAlly, 000000}},}\"},{\"id\":\"Util_Autosave\",\"kind\":2,\"label\":\"Util_Autosave\",\"documentation\":\"Automatically save the game for the player. The savegame name is built using the abbreviated mission name + checkpoint. \"},{\"id\":\"Util_ClearWrecksFromMarker\",\"kind\":2,\"label\":\"Util_ClearWrecksFromMarker\",\"documentation\":\"Clears vehicle wrecks from a given area. nArea can be a marker (with or without a range override), a position and range combo, or a territory sector ID. Uses EBP.WRECKED_VEHICLES unless wrecksList is defined.\"},{\"id\":\"Util_DespawnAll\",\"kind\":2,\"label\":\"Util_DespawnAll\",\"documentation\":\"ReSpawns or DeSpawns sgroups (and egroups) for all players or the indicated player. nexamples: Util_DespawnAll(true, true, false) or Util_DespawnAll(true, 1, false) or Util_DespawnAll(false, true, false)\"},{\"id\":\"Util_DifVar\",\"kind\":2,\"label\":\"Util_DifVar\",\"documentation\":\"Takes in a table and chooses the right variable for the difficulty setting. 1-4 elements. Acquires current difficulty by default. \"},{\"id\":\"Util_ElementCanSee\",\"kind\":2,\"label\":\"Util_ElementCanSee\",\"documentation\":\"Returns true if a Player/Team can see any or all of an SGroup/Squad/EGroup/Entity/Position/Marker \"},{\"id\":\"Util_EntityLimit\",\"kind\":2,\"label\":\"Util_EntityLimit\",\"documentation\":\"Checks the entity count for the world and returns true or false depending on the result. A specific value can be passed in to override the default amount. \"},{\"id\":\"Util_FallBackToGarrisonBuilding\",\"kind\":2,\"label\":\"Util_FallBackToGarrisonBuilding\",\"documentation\":\"Try to garrison a loadable building within radius that is closer to the first squad of the sgroup than enemy nThe squad suppression would be resetted before fallling back so that they would not succumb to pinned state\"},{\"id\":\"Util_FindHiddenSpawn\",\"kind\":2,\"label\":\"Util_FindHiddenSpawn\",\"documentation\":\"Finds a hidden position within the FOW between two given points nIf no position is found, returns origin\"},{\"id\":\"Util_ForceRetreatAll\",\"kind\":2,\"label\":\"Util_ForceRetreatAll\",\"documentation\":\"Forces all squads given to retreat, regardless of whether they are on team weapons or not. Disables aiEncounters input (true disables all encounters). \"},{\"id\":\"Util_GarrisonNearbyBuilding\",\"kind\":2,\"label\":\"Util_GarrisonNearbyBuilding\",\"documentation\":\"Finds a nearby building to garrison. can ignore occupied [friendly] buildings. return ID of entity it found, or nil if not found nCan also filter out groups not to occupy\"},{\"id\":\"Util_GarrisonNearbyVehicle\",\"kind\":2,\"label\":\"Util_GarrisonNearbyVehicle\",\"documentation\":\"Finds a nearby vehicle to garrison. can ignore occupied [friendly] vehicles. return ID of vehicle it found, or nil if not found, nCan also filter out groups not to occupy\"},{\"id\":\"Util_GetClosestMarker\",\"kind\":2,\"label\":\"Util_GetClosestMarker\",\"documentation\":\"Returns the closest MarkerID to the entity/marker/pos/egroup/sgroup/squad from the table of markers provided \"},{\"id\":\"Util_GetEntitiesByBP\",\"kind\":2,\"label\":\"Util_GetEntitiesByBP\",\"documentation\":\"Find all the entities with a given blueprint in sourcegroup and add them to destgroup. nSee also: EGroup_Filter()\"},{\"id\":\"Util_GetHealth\",\"kind\":2,\"label\":\"Util_GetHealth\",\"documentation\":\"Determines the health percentage of a given object nReturns average health if the object is a group\"},{\"id\":\"Util_GetMouseoverSGroup\",\"kind\":2,\"label\":\"Util_GetMouseoverSGroup\",\"documentation\":\"Returns a unique SGroup used to hold mouseover squads obtained from Util_AddMouseoverSquadToSGroup \"},{\"id\":\"Util_GetPosition\",\"kind\":2,\"label\":\"Util_GetPosition\",\"documentation\":\"Returns a position from entity/marker/pos/egroup/sgroup/squad \"},{\"id\":\"Util_GetPositionAwayFromPlayer\",\"kind\":2,\"label\":\"Util_GetPositionAwayFromPlayer\",\"documentation\":\"Returns a random position within an area that is not near a player nsearchRadius is the area to look for the location in. Distance is how far from the player's units the position must be.\"},{\"id\":\"Util_GetPositionFromAtoB\",\"kind\":2,\"label\":\"Util_GetPositionFromAtoB\",\"documentation\":\"Returns a position that is distance metres from point A, headed in the direction of point B. nYou can also pass in a percentage (0.0 to 1.0) instead of a distance in metres.\"},{\"id\":\"Util_GetRandomPosition\",\"kind\":2,\"label\":\"Util_GetRandomPosition\",\"documentation\":\"Returns a random position either within the marker's proximity or with a pos and range provided. Range is ignored for rectangular markers \"},{\"id\":\"Util_GetSquadsByBP\",\"kind\":2,\"label\":\"Util_GetSquadsByBP\",\"documentation\":\"Find all the squads with a given blueprint in sourcegroup and add them to destgroup. nSee also: SGroup_Filter()\"},{\"id\":\"Util_GetTrailingNumber\",\"kind\":2,\"label\":\"Util_GetTrailingNumber\",\"documentation\":\"Returns trailing numbers from a string, if it exists, nil otherwise. E.G. \"marker23\" would return 23. \"},{\"id\":\"Util_HasPosition\",\"kind\":2,\"label\":\"Util_HasPosition\",\"documentation\":\"Returns true if given entity/marker/pos/egroup/sgroup/squad has a position; if false, Util_GetPosition will fail. \"},{\"id\":\"Util_HidePlayerForNIS\",\"kind\":2,\"label\":\"Util_HidePlayerForNIS\",\"documentation\":\"Hides all of a player's squads and/or buildings nDoesn't hide buildings a player is in, or any base structures. Only items like sandbags, tanktraps, mg nests, etc. Put multiple playerIDs in a table to hide many players together, or use ALL for the playerID to apply to all players at once.\"},{\"id\":\"Util_IsSequenceSkipped\",\"kind\":2,\"label\":\"Util_IsSequenceSkipped\",\"documentation\":\"Returns whether the currently running sequence has been skipped \"},{\"id\":\"Util_Kill\",\"kind\":2,\"label\":\"Util_Kill\",\"documentation\":\"Kills a given object \"},{\"id\":\"Util_LogSyncWpn\",\"kind\":2,\"label\":\"Util_LogSyncWpn\",\"documentation\":\"Tracks a syncweapon ID and destroys it (by default) or makes it uncapturable (if kill is set to false) \"},{\"id\":\"Util_MarkerFX\",\"kind\":2,\"label\":\"Util_MarkerFX\",\"documentation\":\"Play an events file at a given markers location \"},{\"id\":\"Util_MissionTitle\",\"kind\":2,\"label\":\"Util_MissionTitle\",\"documentation\":\"Play the mission title fade. \"},{\"id\":\"Util_MuteAmbientSound\",\"kind\":2,\"label\":\"Util_MuteAmbientSound\",\"documentation\":\"Enabling this function will mute the ambient sound (NOT all sound). \"},{\"id\":\"Util_NewHUDFeatureEvent\",\"kind\":2,\"label\":\"Util_NewHUDFeatureEvent\",\"documentation\":\"Calls UI_NewHUDFeature() as an IntelEvent. Will get queued as any other event. See UI_NewHUDFeature() for parameter details. \"},{\"id\":\"Util_PlayMovie\",\"kind\":2,\"label\":\"Util_PlayMovie\",\"documentation\":\"Play a movie. nIf onCompleteAfterMovie is true, the onComplete function will play as soon as the movie is over, instead of after the fade-in\"},{\"id\":\"Util_PlayMusic\",\"kind\":2,\"label\":\"Util_PlayMusic\",\"documentation\":\"Plays music from the Data:Sound folder, and stores the music track so it can be resumed after a save/load \"},{\"id\":\"Util_PrintObject\",\"kind\":2,\"label\":\"Util_PrintObject\",\"documentation\":\"Prints out the entire contents of an Object nObjects can be anything (Player, SGroup, Int, Table, String, etc.), but this is most useful for Tables\"},{\"id\":\"Util_ReinforceEvent\",\"kind\":2,\"label\":\"Util_ReinforceEvent\",\"documentation\":\"Creates an Event Cue for an SGroup and repeats it until the SGroup is killed or selected. nAdditionally, a map ping and custome loc strings for the Title and Description can be used.\"},{\"id\":\"Util_ReloadScript\",\"kind\":2,\"label\":\"Util_ReloadScript\",\"documentation\":\"Reloads the running scar script. Current running rules would also be updated to the redefined functioin. \"},{\"id\":\"Util_RestoreMusic\",\"kind\":2,\"label\":\"Util_RestoreMusic\",\"documentation\":\"Resumes playing the music track that was last triggered i.e. after a save/load \"},{\"id\":\"Util_SetPlayerCanSkipSequence\",\"kind\":2,\"label\":\"Util_SetPlayerCanSkipSequence\",\"documentation\":\"Sets it so that a player can skip a scripted sequence. When the skip key is pressed, calls back the given function as a post-sequence setup. noFadeIn stops the system from fading back into gameplay when finished. Call Util_SetPlayerUnableToSkipSequence() when the sequence is finished to disable \"},{\"id\":\"Util_SetPlayerUnableToSkipSequence\",\"kind\":2,\"label\":\"Util_SetPlayerUnableToSkipSequence\",\"documentation\":\"Disables Util_SetPlayerCanSkipSequence \"},{\"id\":\"Util_SortPositionsByClosest\",\"kind\":2,\"label\":\"Util_SortPositionsByClosest\",\"documentation\":\"Returns a table of positions sorted from closest to furthest (or furthes to closest if reverse is true) from the origin \"},{\"id\":\"Util_StartAmbient\",\"kind\":2,\"label\":\"Util_StartAmbient\",\"documentation\":\"Play a Speech Stinger. These are the lowest priority, and will be bumped by Intel Events or NIS's. nThis function should used instead of Event_Start because it handles priorities.\"},{\"id\":\"Util_StartIntel\",\"kind\":2,\"label\":\"Util_StartIntel\",\"documentation\":\"Play an Intel Event. These are medium priority, and will interrupt a Stinger, but not an NIS. nThis function should used instead of Event_Start because it handles priorities.\"},{\"id\":\"Util_StartNislet\",\"kind\":2,\"label\":\"Util_StartNislet\",\"documentation\":\"Play Nislet Event. Starts a Nislet event, and calls back a function for post-nislet setup if the Nislet is skipped. noFadeIn stops the system from fading back into gameplay when the player skips \"},{\"id\":\"Util_StartQuickIntel\",\"kind\":2,\"label\":\"Util_StartQuickIntel\",\"documentation\":\"Play a quick, one-line Intel event. These are medium priority, and will interrupt a Stinger, but not an NIS. nUse this when playing a single line. For multi-line events, use Util_StartIntel \"},{\"id\":\"Util_TableContains\",\"kind\":2,\"label\":\"Util_TableContains\",\"documentation\":\"Checks the first layer of a table and looks for a specified Object, returns true if found. nObjects can be anything (Player, SGroup, Int, Table, String, etc.)\"},{\"id\":\"Util_ToggleAllowIntelEvents\",\"kind\":2,\"label\":\"Util_ToggleAllowIntelEvents\",\"documentation\":\"Debug function used to toggle whether or not IntelEvents are played. Only works with -dev parameter \"},{\"id\":\"Util_TriggerEvent\",\"kind\":2,\"label\":\"Util_TriggerEvent\",\"documentation\":\"Library function to trigger NIS event under a certain sets of conditions. NOTE: if checking against a marker DO NOT specify a range. The range of the marker set in the WorldBuilder will be used. nonscreen_only set to TRUE means the squad must be onscreen if the event is to be triggered.\"},{\"id\":\"Util_UnitCounts\",\"kind\":2,\"label\":\"Util_UnitCounts\",\"documentation\":\"Returns a table containing either the total or a specific player's squad count, entity count, and vehicle count. ntable can be accessed as scene below Get Player Example:<BR/> local t = Util_UnitCounts(player1)<BR/> print(t.squad)<BR/> print(t.entity)<BR/> print(t.vehicle)<BR/> Get World Example:<BR/> local t = Util_UnitCounts(true)<BR/> print(t.squad)<BR/> print(t.entity)<BR/> print(t.vehicle)<BR/> Alternate Format:<BR/> print(Util_UnitCounts(true).squad)<BR/>\"},{\"id\":\"World_KillAllNeutralEntitesNearMarker\",\"kind\":2,\"label\":\"World_KillAllNeutralEntitesNearMarker\",\"documentation\":\"Kills ALL world entities near a marker \"},{\"id\":\"Anim_PlayEntityAnim\",\"kind\":2,\"label\":\"Anim_PlayEntityAnim\",\"documentation\":\"Plays an animation from an entity. nThis function can be called through a CTRL object in NISlets to wait on the animation.\"},{\"id\":\"bug\",\"kind\":2,\"label\":\"bug\",\"documentation\":\"E-mails a warning out with logfiles at the end of the game. nExample: bug( \"This shouldn't happen, fix \"..problem.here)\"},{\"id\":\"Camera_AutoRotate\",\"kind\":2,\"label\":\"Camera_AutoRotate\",\"documentation\":\"Procedurally rotates the camera around a target. Camera input will be disabled. distance is in meters, declination is in degrees, speed is in degrees/sec. \"},{\"id\":\"Camera_ClampToMarker\",\"kind\":2,\"label\":\"Camera_ClampToMarker\",\"documentation\":\"Clamps the camera's target position to a marker. \"},{\"id\":\"Camera_FocusOnPosition\",\"kind\":2,\"label\":\"Camera_FocusOnPosition\",\"documentation\":\"Focus the camera on the specified position. If pan is true, smoothly pan the camera to the target. \"},{\"id\":\"Camera_FollowEntity\",\"kind\":2,\"label\":\"Camera_FollowEntity\",\"documentation\":\"Make the camera follow the specified entity. \"},{\"id\":\"Camera_FollowSelection\",\"kind\":2,\"label\":\"Camera_FollowSelection\",\"documentation\":\"Make the camera follow the current full selection. \"},{\"id\":\"Camera_FollowSquad\",\"kind\":2,\"label\":\"Camera_FollowSquad\",\"documentation\":\"Make the camera follow the specified squad. \"},{\"id\":\"Camera_GetCurrentTargetPos\",\"kind\":2,\"label\":\"Camera_GetCurrentTargetPos\",\"documentation\":\"Get the current target position for the camera. (Where the the camera currently is.) \"},{\"id\":\"Camera_GetDeclination\",\"kind\":2,\"label\":\"Camera_GetDeclination\",\"documentation\":\"Get the current camera declination (tilt). \"},{\"id\":\"Camera_GetOrbit\",\"kind\":2,\"label\":\"Camera_GetOrbit\",\"documentation\":\"Get the current camera orbit (rotation). \"},{\"id\":\"Camera_GetTargetPos\",\"kind\":2,\"label\":\"Camera_GetTargetPos\",\"documentation\":\"Get the desired target position for the camera. (Where the camera is trying to get to.) \"},{\"id\":\"Camera_GetTuningValue\",\"kind\":2,\"label\":\"Camera_GetTuningValue\",\"documentation\":\"Get camera tuning value. \"},{\"id\":\"Camera_GetZoomDist\",\"kind\":2,\"label\":\"Camera_GetZoomDist\",\"documentation\":\"Get the current zoom distance for the camera. \"},{\"id\":\"Camera_IsInputEnabled\",\"kind\":2,\"label\":\"Camera_IsInputEnabled\",\"documentation\":\"Returns the enabled/disabled state of the camera input. (not strict) \"},{\"id\":\"Camera_Reload\",\"kind\":2,\"label\":\"Camera_Reload\",\"documentation\":\"Reload all camera tuning values. \"},{\"id\":\"Camera_ResetFocus\",\"kind\":2,\"label\":\"Camera_ResetFocus\",\"documentation\":\"Make the camera stop following anything. \"},{\"id\":\"Camera_ResetToDefault\",\"kind\":2,\"label\":\"Camera_ResetToDefault\",\"documentation\":\"Reset camera position to default home position \"},{\"id\":\"Camera_SetDeclination\",\"kind\":2,\"label\":\"Camera_SetDeclination\",\"documentation\":\"Set the current camera declination (tilt). \"},{\"id\":\"Camera_SetInputEnabled\",\"kind\":2,\"label\":\"Camera_SetInputEnabled\",\"documentation\":\"Enables/disables camera input. \"},{\"id\":\"Camera_SetOrbit\",\"kind\":2,\"label\":\"Camera_SetOrbit\",\"documentation\":\"Set the current camera orbit (rotation). \"},{\"id\":\"Camera_SetSlideTargetRate\",\"kind\":2,\"label\":\"Camera_SetSlideTargetRate\",\"documentation\":\"Changes the speed of the camera blends to be newRate until the user (or some other camera call) is made. Can call this with 0 to reset to default rate. \"},{\"id\":\"Camera_SetTuningValue\",\"kind\":2,\"label\":\"Camera_SetTuningValue\",\"documentation\":\"Set camera tuning value. \"},{\"id\":\"Camera_SetZoomDist\",\"kind\":2,\"label\":\"Camera_SetZoomDist\",\"documentation\":\"Set the current zoom distance for the camera. \"},{\"id\":\"Camera_StopAutoRotating\",\"kind\":2,\"label\":\"Camera_StopAutoRotating\",\"documentation\":\"Stops the camera from procedurally rotating. Input is restored. \"},{\"id\":\"Camera_Unclamp\",\"kind\":2,\"label\":\"Camera_Unclamp\",\"documentation\":\"Frees up the camera (so it's not clamped to a marker anymore). \"},{\"id\":\"EGroup_CallEntityFunction\",\"kind\":2,\"label\":\"EGroup_CallEntityFunction\",\"documentation\":\"Calls an Entity_ function on every entity in an egroup nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"EGroup_CallEntityFunctionAllOrAny\",\"kind\":2,\"label\":\"EGroup_CallEntityFunctionAllOrAny\",\"documentation\":\"Returns whether ALL or ANY entities in an egroup satisfy a condition, using an Entity_ function to perform the query on each entity nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"fatal\",\"kind\":2,\"label\":\"fatal\",\"documentation\":\"Throws an error to lua and print out the error message \"},{\"id\":\"Game_EnableInput\",\"kind\":2,\"label\":\"Game_EnableInput\",\"documentation\":\"Enables/Disables all input EXCEPT for ESC and F10. \"},{\"id\":\"Game_EndSubTextFade\",\"kind\":2,\"label\":\"Game_EndSubTextFade\",\"documentation\":\"Removes title text displayed with Game_SubTextFade(...) immediately \"},{\"id\":\"Game_EndTextTitleFade\",\"kind\":2,\"label\":\"Game_EndTextTitleFade\",\"documentation\":\"Removes title text displayed with Game_TextTitleFade(...) immediately \"},{\"id\":\"Game_GetLocalPlayer\",\"kind\":2,\"label\":\"Game_GetLocalPlayer\",\"documentation\":\"Get the local player. (should only be used for UI purpose) (not strict) \"},{\"id\":\"Game_GetMode\",\"kind\":2,\"label\":\"Game_GetMode\",\"documentation\":\"Returns the current game screen mode. \"},{\"id\":\"Game_GetSPDifficulty\",\"kind\":2,\"label\":\"Game_GetSPDifficulty\",\"documentation\":\"Returns current single player difficulty. Values are GD_EASY, GD_NORMAL, GD_HARD, GD_EXPERT. \"},{\"id\":\"Game_HasLocalPlayer\",\"kind\":2,\"label\":\"Game_HasLocalPlayer\",\"documentation\":\"Determine if there is a valid local player. (UI only -- nondeterminstic) (not strict) \"},{\"id\":\"Game_IsLetterboxed\",\"kind\":2,\"label\":\"Game_IsLetterboxed\",\"documentation\":\"Returns true if the ui is in letterbox mode . (not strict) \"},{\"id\":\"Game_IsPerformanceTest\",\"kind\":2,\"label\":\"Game_IsPerformanceTest\",\"documentation\":\"Returns true if the we're running the performance test. \"},{\"id\":\"Game_IsRTM\",\"kind\":2,\"label\":\"Game_IsRTM\",\"documentation\":\"Use to test whether the game is running in RTM mode or not. Using -rtm from the command line will cause this function to also return true in non-RTM builds. \"},{\"id\":\"Game_Letterbox\",\"kind\":2,\"label\":\"Game_Letterbox\",\"documentation\":\"Enters/Exits letterbox mode in amount of time specified by timeSecs. nLetterbox mode disables input\"},{\"id\":\"Game_LoadAtmosphere\",\"kind\":2,\"label\":\"Game_LoadAtmosphere\",\"documentation\":\"Transitions to another atmosphere. Overwrites current transitions. \"},{\"id\":\"Game_LockRandom\",\"kind\":2,\"label\":\"Game_LockRandom\",\"documentation\":\"If you are running something that is non-deterministic like a getlocalplayer conditional, you can lock the random to make sure no one down the callstack will throw the game random index out of sync and cause a sync error. REMEMBER TO UNLOCK WHEN YOU ARE DONE \"},{\"id\":\"Game_ProfileDumpFrames\",\"kind\":2,\"label\":\"Game_ProfileDumpFrames\",\"documentation\":\"Dumps a profile series \"},{\"id\":\"Game_QuitApp\",\"kind\":2,\"label\":\"Game_QuitApp\",\"documentation\":\"Quits the app immediately \"},{\"id\":\"Game_ScreenFade\",\"kind\":2,\"label\":\"Game_ScreenFade\",\"documentation\":\"Fades the screen to a given RGBA colour over a number of seconds \"},{\"id\":\"Game_SetLocalPlayer\",\"kind\":2,\"label\":\"Game_SetLocalPlayer\",\"documentation\":\"Sets the local player. (not strict) \"},{\"id\":\"Game_SetMode\",\"kind\":2,\"label\":\"Game_SetMode\",\"documentation\":\"Set the game screen mode nUI_Normal is the regular screen with taskbar. UI_Fullscreen is the mode without any 2D UI. UI_Cinematic is the same as letter box mode.\"},{\"id\":\"Game_ShowPauseMenu\",\"kind\":2,\"label\":\"Game_ShowPauseMenu\",\"documentation\":\"Brings up the pause menu. The game does not get paused until the end of the current sim tick, so anything that comes after Game_ShowPauseMenu in your function will still get executed, as well as any rules set to run during that frame. \"},{\"id\":\"Game_SkipAllEvents\",\"kind\":2,\"label\":\"Game_SkipAllEvents\",\"documentation\":\"Skips all events. Can either delete or skip queued events. \"},{\"id\":\"Game_SkipEvent\",\"kind\":2,\"label\":\"Game_SkipEvent\",\"documentation\":\"Skips the currently playing event (and stops current sound). \"},{\"id\":\"Game_StartMuted\",\"kind\":2,\"label\":\"Game_StartMuted\",\"documentation\":\"Do not unmute game sounds when the mission starts (must be called in OnInit). Use this is you transition into a NIS to prevent any audio from playing until the NIS is over. \"},{\"id\":\"Game_TextTitleFade\",\"kind\":2,\"label\":\"Game_TextTitleFade\",\"documentation\":\"Shows title text that fades in and out over a specified durations nCall UI_TitleDestroy to remove.\"},{\"id\":\"Game_TriggerLightning\",\"kind\":2,\"label\":\"Game_TriggerLightning\",\"documentation\":\"Triggers lightning on the next frame \"},{\"id\":\"Game_UnlockInputOnLetterBox\",\"kind\":2,\"label\":\"Game_UnlockInputOnLetterBox\",\"documentation\":\"Unlocks user/camera input during letterbox. This should be used for debug only. \"},{\"id\":\"Game_UnLockRandom\",\"kind\":2,\"label\":\"Game_UnLockRandom\",\"documentation\":\"unlock the random from a previous lockrandom call only \"},{\"id\":\"Ghost_DisableSpotting\",\"kind\":2,\"label\":\"Ghost_DisableSpotting\",\"documentation\":\"Disable the spotting of enemy entities that may become ghosts in the FoW. \"},{\"id\":\"Ghost_EnableSpotting\",\"kind\":2,\"label\":\"Ghost_EnableSpotting\",\"documentation\":\"Enable the spotting of enemy entities that may become ghosts in the FoW. \"},{\"id\":\"HintPoint_AddToEGroup\",\"kind\":2,\"label\":\"HintPoint_AddToEGroup\",\"documentation\":\"Deprecated. \"},{\"id\":\"HintPoint_AddToEntity\",\"kind\":2,\"label\":\"HintPoint_AddToEntity\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_AddToPosition\",\"kind\":2,\"label\":\"HintPoint_AddToPosition\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_AddToSGroup\",\"kind\":2,\"label\":\"HintPoint_AddToSGroup\",\"documentation\":\"Deprecated. \"},{\"id\":\"HintPoint_AddToSquad\",\"kind\":2,\"label\":\"HintPoint_AddToSquad\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_ClearFacing\",\"kind\":2,\"label\":\"HintPoint_ClearFacing\",\"documentation\":\"Clear the hint point arrow facing value. \"},{\"id\":\"HintPoint_RemoveAll\",\"kind\":2,\"label\":\"HintPoint_RemoveAll\",\"documentation\":\"Remove all hint points. \"},{\"id\":\"HintPoint_SetDisplayOffsetInternal\",\"kind\":2,\"label\":\"HintPoint_SetDisplayOffsetInternal\",\"documentation\":\"Add a projected offset to the specified hint point. \"},{\"id\":\"HintPoint_SetFacingEntity\",\"kind\":2,\"label\":\"HintPoint_SetFacingEntity\",\"documentation\":\"Face the hint point arrow towards this entity. \"},{\"id\":\"HintPoint_SetFacingPosition\",\"kind\":2,\"label\":\"HintPoint_SetFacingPosition\",\"documentation\":\"Face the hint point arrow towards this position. \"},{\"id\":\"HintPoint_SetFacingSquad\",\"kind\":2,\"label\":\"HintPoint_SetFacingSquad\",\"documentation\":\"Face the hint point arrow towards this squad. \"},{\"id\":\"HintPoint_SetVisibleInternal\",\"kind\":2,\"label\":\"HintPoint_SetVisibleInternal\",\"documentation\":\"Show or hide the specified hint point. \"},{\"id\":\"inv_dump\",\"kind\":2,\"label\":\"inv_dump\",\"documentation\":\"Dump content of inventory to a file \"},{\"id\":\"IsOfType\",\"kind\":2,\"label\":\"IsOfType\",\"documentation\":\"Returns true if this object is of the specified type \"},{\"id\":\"IsSecuringStructure\",\"kind\":2,\"label\":\"IsSecuringStructure\",\"documentation\":\"Can this structure be used to secure territory \"},{\"id\":\"IsStructure\",\"kind\":2,\"label\":\"IsStructure\",\"documentation\":\"Returns true if this object is a structure (something with a site_ext) \"},{\"id\":\"License_CanPlayRace\",\"kind\":2,\"label\":\"License_CanPlayRace\",\"documentation\":\"Returns whether the installed version of the game allows the player to play this race \"},{\"id\":\"LOC\",\"kind\":2,\"label\":\"LOC\",\"documentation\":\"DEV ONLY: Converts ansi text to localized text. nYour text will have to get localized properly at some point before final. When converting text with this function you will get LOC: prefixed to your text\"},{\"id\":\"Loc_ConvertNumber\",\"kind\":2,\"label\":\"Loc_ConvertNumber\",\"documentation\":\"Returns a localized string containing the number. \"},{\"id\":\"Loc_Empty\",\"kind\":2,\"label\":\"Loc_Empty\",\"documentation\":\"Empty string. nThis will create an empty localized string.\"},{\"id\":\"Loc_FormatTime\",\"kind\":2,\"label\":\"Loc_FormatTime\",\"documentation\":\"Returns a formatted time string. can omit hours and leading zeroes (for example, 4:57 instead of 00:04:57) \"},{\"id\":\"Misc_AbortToFE\",\"kind\":2,\"label\":\"Misc_AbortToFE\",\"documentation\":\"Abort straight out of the game to the frontend, without asking the user \"},{\"id\":\"Misc_AddRestrictCommandsMarker\",\"kind\":2,\"label\":\"Misc_AddRestrictCommandsMarker\",\"documentation\":\"Add another marker in which commands are restricted to. \"},{\"id\":\"Misc_AIControlLocalPlayer\",\"kind\":2,\"label\":\"Misc_AIControlLocalPlayer\",\"documentation\":\"Let AI take over local player \"},{\"id\":\"Misc_AreDefaultCommandsEnabled\",\"kind\":2,\"label\":\"Misc_AreDefaultCommandsEnabled\",\"documentation\":\"Returns the enabled/disabled state of the right-click command input. (not strict) \"},{\"id\":\"Misc_DetectKeyboardInput\",\"kind\":2,\"label\":\"Misc_DetectKeyboardInput\",\"documentation\":\"Returns true if the app has had any keyboard input in the last second \"},{\"id\":\"Misc_DetectMouseInput\",\"kind\":2,\"label\":\"Misc_DetectMouseInput\",\"documentation\":\"Returns true if the app has had any mouse input in the last second \"},{\"id\":\"Misc_DoWeaponHitEffectOnEntity\",\"kind\":2,\"label\":\"Misc_DoWeaponHitEffectOnEntity\",\"documentation\":\"Do weapon hit effect on the entity from the view camera origin nWeaponID is the property bag group id; if penetrated is set to false, deflection effect would be played instead\"},{\"id\":\"Misc_EnablePerformanceTest\",\"kind\":2,\"label\":\"Misc_EnablePerformanceTest\",\"documentation\":\"Turn on or off the performance test monitoring \"},{\"id\":\"Misc_GetCommandLineString\",\"kind\":2,\"label\":\"Misc_GetCommandLineString\",\"documentation\":\"Returns the string argument for a command line option. ex: for \"-init test.lua\" it would return \"test.lua\" \"},{\"id\":\"Misc_GetControlGroupContents\",\"kind\":2,\"label\":\"Misc_GetControlGroupContents\",\"documentation\":\"Returns contents of a control group (0 to 9). Squads are put into an sgroup, and non-squad entities are put into an egroup. \"},{\"id\":\"Misc_GetEntityControlGroup\",\"kind\":2,\"label\":\"Misc_GetEntityControlGroup\",\"documentation\":\"Returns the control group index that this entity belongs to, from 0 to 9, or -1 if none. \"},{\"id\":\"Misc_GetHiddenPositionOnPath\",\"kind\":2,\"label\":\"Misc_GetHiddenPositionOnPath\",\"documentation\":\"Returns a hidden position on path from origin to destination. If there's none, it returns the origin position n Possible check types are CheckHiddenFromCamera, CheckHiddenInFOW and CheckHiddenBothCameraFOW Camera check determined by the camera frustum. use cameraPadding to increase the area around the camera when doing the check FOW check requires a valid player ID passed in stepDistance is the interval along the path that the hidden points will be checked ( min is 1 metre ) If no hidden position is found, position ( 0, 0, 0 ) is returned Don't use this for multi-player SCAR script!!\"},{\"id\":\"Misc_GetMouseOnTerrain\",\"kind\":2,\"label\":\"Misc_GetMouseOnTerrain\",\"documentation\":\"Returns the world position of the mouse on the terrain (not strict) \"},{\"id\":\"Misc_GetMouseOverEntity\",\"kind\":2,\"label\":\"Misc_GetMouseOverEntity\",\"documentation\":\"Returns the entity under the mouse (if any) (not strict) \"},{\"id\":\"Misc_GetSelectedEntities\",\"kind\":2,\"label\":\"Misc_GetSelectedEntities\",\"documentation\":\"Clears a given group and adds the current full selection (or subselection if true) to the group. \"},{\"id\":\"Misc_GetSelectedSquads\",\"kind\":2,\"label\":\"Misc_GetSelectedSquads\",\"documentation\":\"Clears a given group and adds the current full selection (or subselection if true) to the group. \"},{\"id\":\"Misc_GetSquadControlGroup\",\"kind\":2,\"label\":\"Misc_GetSquadControlGroup\",\"documentation\":\"Returns the control group index that this squad belongs to, from 0 to 9, or -1 if none. \"},{\"id\":\"Misc_IsCommandLineOptionSet\",\"kind\":2,\"label\":\"Misc_IsCommandLineOptionSet\",\"documentation\":\"Returns true if -option is specified on the command line \"},{\"id\":\"Misc_IsDevMode\",\"kind\":2,\"label\":\"Misc_IsDevMode\",\"documentation\":\"Returns whether the game is running in dev mode. The rules for dev mode are a bit complicated between builds, so we cannot simply check the command line. \"},{\"id\":\"Misc_IsEntityOnScreen\",\"kind\":2,\"label\":\"Misc_IsEntityOnScreen\",\"documentation\":\"Check if the squad is on screen currently (not strict) \"},{\"id\":\"Misc_IsEntitySelected\",\"kind\":2,\"label\":\"Misc_IsEntitySelected\",\"documentation\":\"Returns true if the specified entity is currently selected. \"},{\"id\":\"Misc_IsMouseOverEntity\",\"kind\":2,\"label\":\"Misc_IsMouseOverEntity\",\"documentation\":\"Returns true if the mouse is over an entity (not strict) \"},{\"id\":\"Misc_IsPosOnScreen\",\"kind\":2,\"label\":\"Misc_IsPosOnScreen\",\"documentation\":\"Check if position is on screen, (1 being the entire screen, 0.5 being 50% of the screen from the center point) \"},{\"id\":\"Misc_IsSelectionInputEnabled\",\"kind\":2,\"label\":\"Misc_IsSelectionInputEnabled\",\"documentation\":\"Returns the enabled/disabled state of the selection input. (not strict) \"},{\"id\":\"Misc_IsSquadOnScreen\",\"kind\":2,\"label\":\"Misc_IsSquadOnScreen\",\"documentation\":\"Check if the entity is on screen currently (not strict) \"},{\"id\":\"Misc_IsSquadSelected\",\"kind\":2,\"label\":\"Misc_IsSquadSelected\",\"documentation\":\"Returns true if the specified squad is currently selected. \"},{\"id\":\"Misc_RemoveCommandRestriction\",\"kind\":2,\"label\":\"Misc_RemoveCommandRestriction\",\"documentation\":\"Remove all command restrictions. \"},{\"id\":\"Misc_RestrictCommandsToMarker\",\"kind\":2,\"label\":\"Misc_RestrictCommandsToMarker\",\"documentation\":\"Set the marker in which commands are restricted to. \"},{\"id\":\"Misc_Screenshot\",\"kind\":2,\"label\":\"Misc_Screenshot\",\"documentation\":\"Save a screenshot \"},{\"id\":\"Misc_ScreenshotExt\",\"kind\":2,\"label\":\"Misc_ScreenshotExt\",\"documentation\":\"Set the graphic file type for screenshot (.jpg, .tga) \"},{\"id\":\"Misc_SelectEntity\",\"kind\":2,\"label\":\"Misc_SelectEntity\",\"documentation\":\"Set the full selection to the specified entity. \"},{\"id\":\"Misc_SelectSquad\",\"kind\":2,\"label\":\"Misc_SelectSquad\",\"documentation\":\"Set the full selection to the specified entity. \"},{\"id\":\"Misc_SetDefaultCommandsEnabled\",\"kind\":2,\"label\":\"Misc_SetDefaultCommandsEnabled\",\"documentation\":\"Enables/disables right-click command input. \"},{\"id\":\"Misc_SetDesignerSplatsVisibility\",\"kind\":2,\"label\":\"Misc_SetDesignerSplatsVisibility\",\"documentation\":\"Shows or hides designer splats, which are splats in the UI folder \"},{\"id\":\"Misc_SetEntityControlGroup\",\"kind\":2,\"label\":\"Misc_SetEntityControlGroup\",\"documentation\":\"Makes an entity belong to a specific control group. If it already belongs to another control group, it's removed from that one before being added to the new one. \"},{\"id\":\"Misc_SetEntitySelectable\",\"kind\":2,\"label\":\"Misc_SetEntitySelectable\",\"documentation\":\"Disable/enable selectability of the specified entity. \"},{\"id\":\"Misc_SetSelectionInputEnabled\",\"kind\":2,\"label\":\"Misc_SetSelectionInputEnabled\",\"documentation\":\"Enables/disables selection input. \"},{\"id\":\"Misc_SetSquadControlGroup\",\"kind\":2,\"label\":\"Misc_SetSquadControlGroup\",\"documentation\":\"Makes a squad belong to a specific control group. If it already belongs to another control group, it's removed from that one before being added to the new one. \"},{\"id\":\"Misc_SetSquadSelectable\",\"kind\":2,\"label\":\"Misc_SetSquadSelectable\",\"documentation\":\"Disable/enable selectability of the specified squad. \"},{\"id\":\"Mission_Complete\",\"kind\":2,\"label\":\"Mission_Complete\",\"documentation\":\"Plays the defined end cinematic and ends an SP scenario with a Victory. \"},{\"id\":\"Mission_Fail\",\"kind\":2,\"label\":\"Mission_Fail\",\"documentation\":\"Ends an SP scenario with a Failure. \"},{\"id\":\"Mission_GetSecondaryObjective\",\"kind\":2,\"label\":\"Mission_GetSecondaryObjective\",\"documentation\":\"Return a reference to the Secondary Objective table. Nil if objective has not been started yet. \"},{\"id\":\"Mission_StartBonusObjective\",\"kind\":2,\"label\":\"Mission_StartBonusObjective\",\"documentation\":\"Selects a possible secondary objective and starts it. n'index' can be used to override the random selection and load a specific secondary objective.nReferences: [Slottable+Secondary+Objectives]\"},{\"id\":\"Mission_Win\",\"kind\":2,\"label\":\"Mission_Win\",\"documentation\":\"Ends an SP scenario with a Victory without playing any end cinematics. \"},{\"id\":\"Modifier_ApplyToEntity\",\"kind\":2,\"label\":\"Modifier_ApplyToEntity\",\"documentation\":\"Applies an entity modifier to an entity. \"},{\"id\":\"Modifier_ApplyToPlayer\",\"kind\":2,\"label\":\"Modifier_ApplyToPlayer\",\"documentation\":\"Applies a player modifier to a player. \"},{\"id\":\"Modifier_ApplyToSquad\",\"kind\":2,\"label\":\"Modifier_ApplyToSquad\",\"documentation\":\"Applies a squad modifier to a squad. \"},{\"id\":\"Modifier_Create\",\"kind\":2,\"label\":\"Modifier_Create\",\"documentation\":\"Returns a modifier that you can apply to stuff. n applicationType : MAT_EntityType, MAT_Entity, MAT_Player, MAT_Squad, MAT_SquadType, or MAT_Weapon.<BR/> modtype : Name of modifier from the modifiers table in the attribute editor.<BR/> usageType : MUT_Addition, MUT_Multiplication, MUT_MultiplyAdd or MUT_Enable.<BR/> exclusive : This field is not currently used for modifiers created through script. <BR/> value : The value for the modifier.<BR/> extname : The name of the entity/squad blueprint for when the applicationType is MAT_EntityType or MAT_SquadType.\"},{\"id\":\"Modifier_Destroy\",\"kind\":2,\"label\":\"Modifier_Destroy\",\"documentation\":\"Todo. \"},{\"id\":\"Modifier_IsEnabled\",\"kind\":2,\"label\":\"Modifier_IsEnabled\",\"documentation\":\"Checks whether the modifier is enabled (requires an Entity and an Entity enable/disable modifier) \"},{\"id\":\"nis_setintransitiontime\",\"kind\":2,\"label\":\"nis_setintransitiontime\",\"documentation\":\"Sets the number of seconds it takes to transition from game to nis, 0 is instantaneous nThis includes blending the camera position, fov and clip planes\"},{\"id\":\"nis_setouttransitionnis\",\"kind\":2,\"label\":\"nis_setouttransitionnis\",\"documentation\":\"Lets the nis system know which nis will be transitioned to when the first one ends. nThis function doesn't actually trigger a second nis to start, rather it lets the NIS system know which one will be next, so it can prevent the camera from popping back to the game camera.\"},{\"id\":\"nis_setouttransitiontime\",\"kind\":2,\"label\":\"nis_setouttransitiontime\",\"documentation\":\"Sets the number of seconds it takes to transition from nis back to game, 0 is instantaneous nThis includes blending the camera position, fov and clip planes\"},{\"id\":\"Obj_Create\",\"kind\":2,\"label\":\"Obj_Create\",\"documentation\":\"Create an objective and returns the unique ID for it ntype could either be OT_Primary or OT_Secondary\"},{\"id\":\"Obj_Delete\",\"kind\":2,\"label\":\"Obj_Delete\",\"documentation\":\"Delete the objective with the specified ID \"},{\"id\":\"Obj_DeleteAll\",\"kind\":2,\"label\":\"Obj_DeleteAll\",\"documentation\":\"Delete all objectives \"},{\"id\":\"Obj_GetState\",\"kind\":2,\"label\":\"Obj_GetState\",\"documentation\":\"Get objective state ( OS_Off, OS_Incomplete, OS_Complete, OS_Failed ) (not strict) \"},{\"id\":\"Obj_GetVisible\",\"kind\":2,\"label\":\"Obj_GetVisible\",\"documentation\":\"Get objective visibility (not strict) \"},{\"id\":\"Obj_HideProgress\",\"kind\":2,\"label\":\"Obj_HideProgress\",\"documentation\":\"Hide the objective progress panel. \"},{\"id\":\"Obj_SetDescription\",\"kind\":2,\"label\":\"Obj_SetDescription\",\"documentation\":\"Set description text localization ID for the objective \"},{\"id\":\"Obj_SetIcon\",\"kind\":2,\"label\":\"Obj_SetIcon\",\"documentation\":\"Set icon path for the objective \"},{\"id\":\"Obj_SetObjectiveFunction\",\"kind\":2,\"label\":\"Obj_SetObjectiveFunction\",\"documentation\":\"Set callback functions for the objective. (not strict) nFN_OnActivate is for triggering situation report. FN_OnShow is used to assign UI element when tactical map is open. FN_OnSelect is used to assign UI element when the objective is highlighted\"},{\"id\":\"Obj_SetProgressBlinking\",\"kind\":2,\"label\":\"Obj_SetProgressBlinking\",\"documentation\":\"Make the objective progress bar blink or stop blinking. \"},{\"id\":\"Obj_SetState\",\"kind\":2,\"label\":\"Obj_SetState\",\"documentation\":\"Set objective state ( OS_Off, OS_Incomplete, OS_Complete, OS_Failed ) \"},{\"id\":\"Obj_SetTitle\",\"kind\":2,\"label\":\"Obj_SetTitle\",\"documentation\":\"Set title text localization ID for the objective \"},{\"id\":\"Obj_SetVisible\",\"kind\":2,\"label\":\"Obj_SetVisible\",\"documentation\":\"Set objective visibility \"},{\"id\":\"Obj_ShowProgress\",\"kind\":2,\"label\":\"Obj_ShowProgress\",\"documentation\":\"Show the objective progress panel with a progress bar - call repeatedly to update progress. Value should be normalized between [0 - 1]. \"},{\"id\":\"Obj_ShowProgress2\",\"kind\":2,\"label\":\"Obj_ShowProgress2\",\"documentation\":\"Show the objective progress panel with a progress bar - call repeatedly to update progress. Value should be normalized between [0 - 1]. Appears in center of screen. \"},{\"id\":\"Obj_ShowProgressTimer\",\"kind\":2,\"label\":\"Obj_ShowProgressTimer\",\"documentation\":\"Show the objective progress panel with a timer icon - call repeatedly to update progress. Value should be in seconds. \"},{\"id\":\"OpBounty_AddRewardGroup\",\"kind\":2,\"label\":\"OpBounty_AddRewardGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpBounty_AddRewardTable\",\"kind\":2,\"label\":\"OpBounty_AddRewardTable\",\"documentation\":\"Does things n\"},{\"id\":\"Order227_Init\",\"kind\":2,\"label\":\"Order227_Init\",\"documentation\":\"Enable the HQ Commissar in CoH2 campaign missions. The noMercy flag allows the Commissar to execute more than one member of each squad. \"},{\"id\":\"PrintOnScreen\",\"kind\":2,\"label\":\"PrintOnScreen\",\"documentation\":\"Prints a message on the screen n Prints the given message on the screen. It will stay there until you call PrintOnScreen_RemoveFromScreen() or print another message on the screen to replace it.\"},{\"id\":\"PrintOnScreen_Add\",\"kind\":2,\"label\":\"PrintOnScreen_Add\",\"documentation\":\"Prints the lua content of an object on the screen n Prints the given message on the screen. If you would like to print multiple messages without clearing them you can assign them unique ID's. Must use PrintOnScreen_Remove(id) to remove each instance\"},{\"id\":\"PrintOnScreen_Remove\",\"kind\":2,\"label\":\"PrintOnScreen_Remove\",\"documentation\":\"Removes the PrintOnScreen text of a given ID \"},{\"id\":\"PrintOnScreen_RemoveFromScreen\",\"kind\":2,\"label\":\"PrintOnScreen_RemoveFromScreen\",\"documentation\":\"Remove any messages from the screen n Removes from the screen any messages put there with PrintOnScreen()\"},{\"id\":\"ResourceAmount_Add\",\"kind\":2,\"label\":\"ResourceAmount_Add\",\"documentation\":\"Add each element of the two passed in ResourceAmounts together \"},{\"id\":\"ResourceAmount_ClampToZero\",\"kind\":2,\"label\":\"ResourceAmount_ClampToZero\",\"documentation\":\"Clamps the passed in resource to zero if it has any negative numbers \"},{\"id\":\"ResourceAmount_Has\",\"kind\":2,\"label\":\"ResourceAmount_Has\",\"documentation\":\"Returns true if the first amount has enough resources for the second amount (amt2) \"},{\"id\":\"ResourceAmount_Mult\",\"kind\":2,\"label\":\"ResourceAmount_Mult\",\"documentation\":\"Take a resource amount and multiply each value inside of it by mult \"},{\"id\":\"ResourceAmount_Subtract\",\"kind\":2,\"label\":\"ResourceAmount_Subtract\",\"documentation\":\"Subtract the second amount from the first and return the new ResourceAmount \"},{\"id\":\"ResourceAmount_Sum\",\"kind\":2,\"label\":\"ResourceAmount_Sum\",\"documentation\":\"Add up all the numbers in the resource and return a single value \"},{\"id\":\"ResourceAmount_Zero\",\"kind\":2,\"label\":\"ResourceAmount_Zero\",\"documentation\":\"Creates a new ResourceAmount all set to zero \"},{\"id\":\"Scar_Autosave\",\"kind\":2,\"label\":\"Scar_Autosave\",\"documentation\":\"Saves the game. the savegame name is built using the abbreviated mission name + checkpoint. \"},{\"id\":\"Scar_CompleteIntelBulletinTask\",\"kind\":2,\"label\":\"Scar_CompleteIntelBulletinTask\",\"documentation\":\"Complete a intel bulletin task of campaign type \"},{\"id\":\"Scar_DebugConsoleExecute\",\"kind\":2,\"label\":\"Scar_DebugConsoleExecute\",\"documentation\":\"execute console command string. Will only work if dev mode is enabled! (it's OFF by default in RTM builds) \"},{\"id\":\"Scar_PlayNIS\",\"kind\":2,\"label\":\"Scar_PlayNIS\",\"documentation\":\"Play NIS through SCAR. Should only be used inside a event function \"},{\"id\":\"Scar_PlayNIS2\",\"kind\":2,\"label\":\"Scar_PlayNIS2\",\"documentation\":\"Play 2 NISs through SCAR. Should only be used inside a event function \"},{\"id\":\"Scar_ReloadAIScripts\",\"kind\":2,\"label\":\"Scar_ReloadAIScripts\",\"documentation\":\"Reloads AI Scripts \"},{\"id\":\"Setup_GetVictoryPointTickerOption\",\"kind\":2,\"label\":\"Setup_GetVictoryPointTickerOption\",\"documentation\":\"Get the victory point ticker option selected \"},{\"id\":\"Setup_SetPlayerName\",\"kind\":2,\"label\":\"Setup_SetPlayerName\",\"documentation\":\"Set the UI name of a given player. \"},{\"id\":\"Setup_SetPlayerRace\",\"kind\":2,\"label\":\"Setup_SetPlayerRace\",\"documentation\":\"Set the race for a given player. Use World_GetRaceIndex() to get the race id from the ME name. \"},{\"id\":\"Setup_SetPlayerTeam\",\"kind\":2,\"label\":\"Setup_SetPlayerTeam\",\"documentation\":\"Put a player in a team. Use TEAM_NEUTRAL as the team_id to set the player as neutral \"},{\"id\":\"SGroup_CallEntityFunction\",\"kind\":2,\"label\":\"SGroup_CallEntityFunction\",\"documentation\":\"Calls an Entity_ function on every entity in an sgroup nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"SGroup_CallSquadFunction\",\"kind\":2,\"label\":\"SGroup_CallSquadFunction\",\"documentation\":\"Calls a Squad_ function on every squad in an sgroup nThe first parameter of the supplied function must be SquadID\"},{\"id\":\"SGroup_CallSquadFunctionAllOrAny\",\"kind\":2,\"label\":\"SGroup_CallSquadFunctionAllOrAny\",\"documentation\":\"Returns whether ALL or ANY squads in an sgroup satisfy a condition, using a Squad_ function to perform the query on each squad nThe first parameter of the supplied function must be SquadID\"},{\"id\":\"SitRep_PlayMovie\",\"kind\":2,\"label\":\"SitRep_PlayMovie\",\"documentation\":\"Play the specified movie. \"},{\"id\":\"SitRep_PlaySpeech\",\"kind\":2,\"label\":\"SitRep_PlaySpeech\",\"documentation\":\"Deprecated. nCall UI_TitleDestroy to remove.\"},{\"id\":\"SitRep_StopMovie\",\"kind\":2,\"label\":\"SitRep_StopMovie\",\"documentation\":\"Stop the currently playing movie. \"},{\"id\":\"Sound_ContainerDebug\",\"kind\":2,\"label\":\"Sound_ContainerDebug\",\"documentation\":\"Turns container debugging on/off\"},{\"id\":\"Sound_DisableSpeechEvent\",\"kind\":2,\"label\":\"Sound_DisableSpeechEvent\",\"documentation\":\"Disables certain speech events. \"},{\"id\":\"Sound_IsPlaying\",\"kind\":2,\"label\":\"Sound_IsPlaying\",\"documentation\":\"Returns true if the sound associated with the handle is currently playing. \"},{\"id\":\"Sound_PerfTest_Play2D\",\"kind\":2,\"label\":\"Sound_PerfTest_Play2D\",\"documentation\":\"Starts multiple 2D instances of the same sound. \"},{\"id\":\"Sound_Play2D\",\"kind\":2,\"label\":\"Sound_Play2D\",\"documentation\":\"Plays a 2D sound from the Data:Sound folder. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 2D Example:<BR/><BR/> <TAB/>Sound_Play( \"Blah/Mysound\" )<BR/>\"},{\"id\":\"Sound_Play3D\",\"kind\":2,\"label\":\"Sound_Play3D\",\"documentation\":\"Plays a 3D sound from the Data:Sound folder on the entity. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 3D Example:<BR/><BR/> <TAB/>Sound_Play( \"Speech/SpaceMarine/AddOnComplete\", TheActor )<BR/>\"},{\"id\":\"Sound_PlayMusic\",\"kind\":2,\"label\":\"Sound_PlayMusic\",\"documentation\":\"Plays music from the Data:Sound folder. nThe new music will phase out the old one. There can only be one music playing at anytime besides the transition fade is the time to fade in the music; delay is the time in seconds to wait until the new music is started Example:<BR/><BR/> <TAB/>Sound_PlayMusic( \"Music/GreatMusic\", 0.0, 0.0 )<BR/>\"},{\"id\":\"Sound_PlayStreamed\",\"kind\":2,\"label\":\"Sound_PlayStreamed\",\"documentation\":\"Plays a streaming sound from the Data:Sound folder. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 2D Example:<BR/><BR/> <TAB/>Sound_PlayStreamed( \"Blah/Mysound\" )<BR/>\"},{\"id\":\"Sound_PreCacheSinglePlayerSpeech\",\"kind\":2,\"label\":\"Sound_PreCacheSinglePlayerSpeech\",\"documentation\":\"Pre-caches single player speech. For instance pre-caching mission 1 speech is done like: Sound_PreCacheSinglePlayerSpeech(\"mission01\") \"},{\"id\":\"Sound_PreCacheSound\",\"kind\":2,\"label\":\"Sound_PreCacheSound\",\"documentation\":\"pre-caches a sound n Example:<BR/><BR/> <TAB/>Sound_PreCacheSound(\"nis/m02_n01_full\")<BR/>\"},{\"id\":\"Sound_PreCacheSoundFolder\",\"kind\":2,\"label\":\"Sound_PreCacheSoundFolder\",\"documentation\":\"pre-caches a sound folder n Example:<BR/><BR/> <TAB/>Sound_PreCacheSoundFolder(\"sp/mission1\")<BR/>\"},{\"id\":\"Sound_SetGlobalControlSource\",\"kind\":2,\"label\":\"Sound_SetGlobalControlSource\",\"documentation\":\"Sets the value for a global control source.\"},{\"id\":\"Sound_SetMusicCombatValue\",\"kind\":2,\"label\":\"Sound_SetMusicCombatValue\",\"documentation\":\"immCombatValue is the new music combat value. Override time is in seconds. You can call this function with 0 for both values in order to cancel the override. \"},{\"id\":\"Sound_SetVolume\",\"kind\":2,\"label\":\"Sound_SetVolume\",\"documentation\":\"Sets a new volume for the group. Valid volume values are 0 to 1. n Example:<BR/><BR/> <TAB/>Sound_Volume(\"Weapons\", 0.5, 2)<BR/>\"},{\"id\":\"Sound_SetVolumeDefault\",\"kind\":2,\"label\":\"Sound_SetVolumeDefault\",\"documentation\":\"Sets the default volume for the group. n Example:<BR/><BR/> <TAB/>Sound_SetVolumeDefault(\"Weapons\", 2)<BR/>\"},{\"id\":\"Sound_SetVolumeInv\",\"kind\":2,\"label\":\"Sound_SetVolumeInv\",\"documentation\":\"Sets the volume for all groups except the one specified. Valid volume values are 0 to 1. n Example:<BR/><BR/> <TAB/>Sound_VolumeInv(\"NIS\", 0.5, 2)<BR/>\"},{\"id\":\"Sound_StartRecording\",\"kind\":2,\"label\":\"Sound_StartRecording\",\"documentation\":\"Starts recording the sound driver output n Example:<BR/><BR/> <TAB/>Sound_StartRecording(\"Recordings/MyRecording.wav\")<BR/>\"},{\"id\":\"Sound_Stop\",\"kind\":2,\"label\":\"Sound_Stop\",\"documentation\":\"Stops sound associated with the container handle \"},{\"id\":\"Sound_StopAll\",\"kind\":2,\"label\":\"Sound_StopAll\",\"documentation\":\"Stops all sounds associated with the container manager. \"},{\"id\":\"Sound_StopMusic\",\"kind\":2,\"label\":\"Sound_StopMusic\",\"documentation\":\"Stop current playing music nCurrently playing music would be stopped. If nothing is playing, nothing will happen fade is the time to fade out the music; delay is the time in seconds wait until the new music is stopped Example:<BR/><BR/> <TAB/>Sound_StopMusic( 2.0, 0.0 )<BR/>\"},{\"id\":\"Sound_StopRecording\",\"kind\":2,\"label\":\"Sound_StopRecording\",\"documentation\":\"Stops recording the sound driver output n Example:<BR/><BR/> <TAB/>Sound_StopRecording()<BR/>\"},{\"id\":\"Speech_SetGlobalStealthRead\",\"kind\":2,\"label\":\"Speech_SetGlobalStealthRead\",\"documentation\":\"Overrides default stealth speech auto-detect mechanism. Stealth speech will play when sunlight brightness is below the threshold, with 0 being total darkness and 1 being full brightness. Set to -1 to use the default behavior. \"},{\"id\":\"statgraph\",\"kind\":2,\"label\":\"statgraph\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel\",\"kind\":2,\"label\":\"statgraph_channel\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel_get_enabled\",\"kind\":2,\"label\":\"statgraph_channel_get_enabled\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel_set_enabled\",\"kind\":2,\"label\":\"statgraph_channel_set_enabled\",\"documentation\":\"?? \"},{\"id\":\"statgraph_clear\",\"kind\":2,\"label\":\"statgraph_clear\",\"documentation\":\"?? \"},{\"id\":\"statgraph_list\",\"kind\":2,\"label\":\"statgraph_list\",\"documentation\":\"?? \"},{\"id\":\"statgraph_pause\",\"kind\":2,\"label\":\"statgraph_pause\",\"documentation\":\"?? \"},{\"id\":\"Subtitle_EndAllSpeech\",\"kind\":2,\"label\":\"Subtitle_EndAllSpeech\",\"documentation\":\"Prematurely finish all queued speech nThis is useful for skipping all speech events that may have been queued\"},{\"id\":\"Subtitle_EndCurrentSpeech\",\"kind\":2,\"label\":\"Subtitle_EndCurrentSpeech\",\"documentation\":\"Prematurely finish currently playing speech and advance the next one in queue nThis is useful for skipping speech events\"},{\"id\":\"Subtitle_PlaySpeech\",\"kind\":2,\"label\":\"Subtitle_PlaySpeech\",\"documentation\":\"Plays a global speech with subtitle and actor icon in the overlay nCall UI_TitleDestroy to remove.\"},{\"id\":\"Subtitle_UnstickCurrentSpeech\",\"kind\":2,\"label\":\"Subtitle_UnstickCurrentSpeech\",\"documentation\":\"Removes \"sticky\" state from currently playing speech (if any) \"},{\"id\":\"SyncWeapon_CanAttackNow\",\"kind\":2,\"label\":\"SyncWeapon_CanAttackNow\",\"documentation\":\"Checks whether a sync weapon can attack a target without moving or turning. \"},{\"id\":\"SyncWeapon_Exists\",\"kind\":2,\"label\":\"SyncWeapon_Exists\",\"documentation\":\"Returns true if a sync weapon still exists in the game world \"},{\"id\":\"SyncWeapon_GetEntity\",\"kind\":2,\"label\":\"SyncWeapon_GetEntity\",\"documentation\":\"Returns the EntityID of a sync weapon, or nil if it's been destroyed \"},{\"id\":\"SyncWeapon_GetFromEGroup\",\"kind\":2,\"label\":\"SyncWeapon_GetFromEGroup\",\"documentation\":\"Registers the sync weapon in the egroup and returns a SyncWeaponID you can use to keep track of it \"},{\"id\":\"SyncWeapon_GetFromSGroup\",\"kind\":2,\"label\":\"SyncWeapon_GetFromSGroup\",\"documentation\":\"Registers the sync weapon in the sgroup and returns a SyncWeaponID you can use to keep track of it \"},{\"id\":\"SyncWeapon_GetPosition\",\"kind\":2,\"label\":\"SyncWeapon_GetPosition\",\"documentation\":\"Returns the position of a sync weapon, or nil if it's been destroyed \"},{\"id\":\"SyncWeapon_IsAttacking\",\"kind\":2,\"label\":\"SyncWeapon_IsAttacking\",\"documentation\":\"Checks whether or not the actual sync weapon in a squad attacking. \"},{\"id\":\"SyncWeapon_IsOwnedByPlayer\",\"kind\":2,\"label\":\"SyncWeapon_IsOwnedByPlayer\",\"documentation\":\"Returns true if the specified player owns the sync weapon. Use a playerid of nil to see if it's unonwed. nIf player is not specified, then the code will check to see if the SyncWeapon is owned by the world.\"},{\"id\":\"SyncWeapon_SetAutoTargetting\",\"kind\":2,\"label\":\"SyncWeapon_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"Taskbar_IsVisible\",\"kind\":2,\"label\":\"Taskbar_IsVisible\",\"documentation\":\"Returns true if the taskbar is visible. (not strict) \"},{\"id\":\"Taskbar_SetVisibility\",\"kind\":2,\"label\":\"Taskbar_SetVisibility\",\"documentation\":\"Sets taskbar visibility. \"},{\"id\":\"TaskCountActivePBG\",\"kind\":2,\"label\":\"TaskCountActivePBG\",\"documentation\":\"Determine how many tasks with the given PBG are of the provided active state, passing no last parameters means to check both \"},{\"id\":\"TaskCountPBG\",\"kind\":2,\"label\":\"TaskCountPBG\",\"documentation\":\"Determine how many requested are currently created for this pbg \"},{\"id\":\"UI_AutosaveMessageHide\",\"kind\":2,\"label\":\"UI_AutosaveMessageHide\",\"documentation\":\"Removes a message added by UI_AutosaveMessageShow. \"},{\"id\":\"UI_AutosaveMessageShow\",\"kind\":2,\"label\":\"UI_AutosaveMessageShow\",\"documentation\":\"Shows a message indicating that the game is autosaving. nCall UI_AutosaveMessageHide to remove the message.\"},{\"id\":\"UI_ClearEventCues\",\"kind\":2,\"label\":\"UI_ClearEventCues\",\"documentation\":\"Clears all active event cues \"},{\"id\":\"UI_ClearModalAbilityPhaseCallback\",\"kind\":2,\"label\":\"UI_ClearModalAbilityPhaseCallback\",\"documentation\":\"Clears the ability phase callback. \"},{\"id\":\"UI_ClearNISEndCallback\",\"kind\":2,\"label\":\"UI_ClearNISEndCallback\",\"documentation\":\"Clears the callback function called at the current NIS. \"},{\"id\":\"UI_CoverPreviewHide\",\"kind\":2,\"label\":\"UI_CoverPreviewHide\",\"documentation\":\"Toggle off cover preview. Each call to UI_CoverPreviewHide must be matched by a call to UI_CoverPreviewShow \"},{\"id\":\"UI_CoverPreviewShow\",\"kind\":2,\"label\":\"UI_CoverPreviewShow\",\"documentation\":\"Toggle on cover preview. Each call to UI_CoverPreviewShow must be matched by a call to UI_CoverPreviewHide \"},{\"id\":\"UI_CreateColouredEntityKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredEntityKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateColouredPositionKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredPositionKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateColouredSquadKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredSquadKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateEntityKickerMessage\",\"kind\":2,\"label\":\"UI_CreateEntityKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_CreatePositionKickerMessage\",\"kind\":2,\"label\":\"UI_CreatePositionKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_CreateSquadKickerMessage\",\"kind\":2,\"label\":\"UI_CreateSquadKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_EnableGameEventCueType\",\"kind\":2,\"label\":\"UI_EnableGameEventCueType\",\"documentation\":\"Enables or disables event cues. \"},{\"id\":\"UI_EnableResourceTypeKicker\",\"kind\":2,\"label\":\"UI_EnableResourceTypeKicker\",\"documentation\":\"Enables or disables resource kickers. \"},{\"id\":\"UI_EnableUIEventCueType\",\"kind\":2,\"label\":\"UI_EnableUIEventCueType\",\"documentation\":\"Enables or disables event cues. \"},{\"id\":\"UI_FlashAbilityButton\",\"kind\":2,\"label\":\"UI_FlashAbilityButton\",\"documentation\":\"Flash an ability command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashConstructionButton\",\"kind\":2,\"label\":\"UI_FlashConstructionButton\",\"documentation\":\"Flash a construction item command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashConstructionMenu\",\"kind\":2,\"label\":\"UI_FlashConstructionMenu\",\"documentation\":\"Flash a construction menu command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashEntity\",\"kind\":2,\"label\":\"UI_FlashEntity\",\"documentation\":\"Flashes the entity using attributes from [tuning][ui] \"},{\"id\":\"UI_FlashEntityCommandButton\",\"kind\":2,\"label\":\"UI_FlashEntityCommandButton\",\"documentation\":\"Flash an entity order command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashEventCue\",\"kind\":2,\"label\":\"UI_FlashEventCue\",\"documentation\":\"Flash an event cue item. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashObjectiveCounter\",\"kind\":2,\"label\":\"UI_FlashObjectiveCounter\",\"documentation\":\"Flash an objective counter. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashObjectiveIcon\",\"kind\":2,\"label\":\"UI_FlashObjectiveIcon\",\"documentation\":\"Flash an objective. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashProductionBuildingButton\",\"kind\":2,\"label\":\"UI_FlashProductionBuildingButton\",\"documentation\":\"Flash a production building button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashProductionButton\",\"kind\":2,\"label\":\"UI_FlashProductionButton\",\"documentation\":\"Flash a production item command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashSquadCommandButton\",\"kind\":2,\"label\":\"UI_FlashSquadCommandButton\",\"documentation\":\"Flash a squad order command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_GetDecoratorsEnabled\",\"kind\":2,\"label\":\"UI_GetDecoratorsEnabled\",\"documentation\":\"Returns whether all decorators are enabled or not \"},{\"id\":\"UI_HideTacticalMap\",\"kind\":2,\"label\":\"UI_HideTacticalMap\",\"documentation\":\"Hides the tactical map \"},{\"id\":\"UI_HighlightSquad\",\"kind\":2,\"label\":\"UI_HighlightSquad\",\"documentation\":\"Turn on squad highlight UI feature for the specified duration. \"},{\"id\":\"UI_IsTacticalMapShown\",\"kind\":2,\"label\":\"UI_IsTacticalMapShown\",\"documentation\":\"Returns whether the tactical map is being shown (not strict) \"},{\"id\":\"UI_MessageBoxHide\",\"kind\":2,\"label\":\"UI_MessageBoxHide\",\"documentation\":\"If the message box is activated, close it. The callback will receive the button parameter given. \"},{\"id\":\"UI_MessageBoxSetButton\",\"kind\":2,\"label\":\"UI_MessageBoxSetButton\",\"documentation\":\"Set the text/tooltip/enabled state of a button on the dialog. \"},{\"id\":\"UI_MessageBoxSetText\",\"kind\":2,\"label\":\"UI_MessageBoxSetText\",\"documentation\":\"Set the title and message body of the dialog. \"},{\"id\":\"UI_NewHUDFeature\",\"kind\":2,\"label\":\"UI_NewHUDFeature\",\"documentation\":\"Brings up a message and arrow pointing to a HUD feature. nCall UI_TitleDestroy to remove.\"},{\"id\":\"UI_OutOfBoundsLinesHide\",\"kind\":2,\"label\":\"UI_OutOfBoundsLinesHide\",\"documentation\":\"Toggle off terrain out of bounds lines. Each call to UI_OutOfBoundsLinesHide must be matched by a call to UI_OutOfBoundsLinesShow \"},{\"id\":\"UI_OutOfBoundsLinesShow\",\"kind\":2,\"label\":\"UI_OutOfBoundsLinesShow\",\"documentation\":\"Toggle on terrain out of bounds lines. Each call to UI_OutOfBoundsLinesShow must be matched by a call to UI_OutOfBoundsLinesShowHide \"},{\"id\":\"UI_RestrictBuildingPlacement\",\"kind\":2,\"label\":\"UI_RestrictBuildingPlacement\",\"documentation\":\"Only allow buildings to be placed inside a marker. \"},{\"id\":\"UI_ScreenFade\",\"kind\":2,\"label\":\"UI_ScreenFade\",\"documentation\":\"Fades the screen to a given RGBA colour over a number of seconds. mouse input is blocked during the fade, and you can control whether the input keeps being blocked after the fade has ended (be careful!) nCall UI_TitleDestroy to remove.\"},{\"id\":\"UI_SetAbilityCardVisibility\",\"kind\":2,\"label\":\"UI_SetAbilityCardVisibility\",\"documentation\":\"Sets the visibility of the Commander Ability card. \"},{\"id\":\"UI_SetAlliedBandBoxSelection\",\"kind\":2,\"label\":\"UI_SetAlliedBandBoxSelection\",\"documentation\":\"Sets the game to allow allied squads to be selected at the same time as your own squads \"},{\"id\":\"UI_SetCPMeterVisibility\",\"kind\":2,\"label\":\"UI_SetCPMeterVisibility\",\"documentation\":\"Sets the visibility of the Command Point meter. \"},{\"id\":\"UI_SetDecoratorsEnabled\",\"kind\":2,\"label\":\"UI_SetDecoratorsEnabled\",\"documentation\":\"Enables or disables all decorators \"},{\"id\":\"UI_SetForceShowSubtitles\",\"kind\":2,\"label\":\"UI_SetForceShowSubtitles\",\"documentation\":\"Sets the game to force show subtitles even if the player has them turned off. \"},{\"id\":\"UI_SetModalAbilityPhaseCallback\",\"kind\":2,\"label\":\"UI_SetModalAbilityPhaseCallback\",\"documentation\":\"Sets a function to be called when the player clicks an ability and gets a targeting UI. Your function will have 2 arguments: [Blueprint] ability blueprint, [integer] phase: MAP_Placing, MAP_Facing (only if ability requires facing) or MAP_Confirmed (not strict) \"},{\"id\":\"UI_SetNISEndCallback\",\"kind\":2,\"label\":\"UI_SetNISEndCallback\",\"documentation\":\"Sets the callback function called at the end of an NIS, note this function is automatically cleared after being called once. \"},{\"id\":\"UI_SetSoviet227Blinking\",\"kind\":2,\"label\":\"UI_SetSoviet227Blinking\",\"documentation\":\"Blink the Soviet 227/progression UI \"},{\"id\":\"UI_SetSoviet227Visibility\",\"kind\":2,\"label\":\"UI_SetSoviet227Visibility\",\"documentation\":\"Sets the visibility of the Soviet 227/progression UI \"},{\"id\":\"UI_ShowTacticalMap\",\"kind\":2,\"label\":\"UI_ShowTacticalMap\",\"documentation\":\"Shows the tactical map \"},{\"id\":\"UI_StopFlashing\",\"kind\":2,\"label\":\"UI_StopFlashing\",\"documentation\":\"Stop flashing a flash created with a previous call to UI_Flash*(). \"},{\"id\":\"UI_SystemMessageHide\",\"kind\":2,\"label\":\"UI_SystemMessageHide\",\"documentation\":\"Removes a message added by Game_ShowSystemMessage. \"},{\"id\":\"UI_SystemMessageShow\",\"kind\":2,\"label\":\"UI_SystemMessageShow\",\"documentation\":\"Shows a system message in the area where Game Paused text appears. nCall Game_HideSystemMessage to remove the message.\"},{\"id\":\"UI_TerritoryHide\",\"kind\":2,\"label\":\"UI_TerritoryHide\",\"documentation\":\"Toggle off territory lines. Each call to UI_TerritoryHide must be matched by a call to UI_TerritoryShow \"},{\"id\":\"UI_TerritoryShow\",\"kind\":2,\"label\":\"UI_TerritoryShow\",\"documentation\":\"Toggle on territory lines. Each call to UI_TerritoryShow must be matched by a call to UI_TerritoryHide \"},{\"id\":\"UI_TitleDestroy\",\"kind\":2,\"label\":\"UI_TitleDestroy\",\"documentation\":\"Removes a title using an id returned by the title creating function. \"},{\"id\":\"UI_ToggleDecorators\",\"kind\":2,\"label\":\"UI_ToggleDecorators\",\"documentation\":\"Toggles all decorators on or off. \"},{\"id\":\"UI_UnrestrictBuildingPlacement\",\"kind\":2,\"label\":\"UI_UnrestrictBuildingPlacement\",\"documentation\":\"Removes the restriction on building placement. \"},{\"id\":\"UIWarning_Show\",\"kind\":2,\"label\":\"UIWarning_Show\",\"documentation\":\"Displays a brief UI warning in the critical alert message area. nCall UI_TitleDestroy to remove.\"},{\"id\":\"Util_AddProxCheck\",\"kind\":2,\"label\":\"Util_AddProxCheck\",\"documentation\":\"[DEPRECATED. Use Event_Proximity() instead.] Add a proximity check. nChecks if ANY or ALL the units in the element are within range of the location. If location is a CIRCLE marker, default range will be max(radius, 5)\"},{\"id\":\"Util_ClearProxChecks\",\"kind\":2,\"label\":\"Util_ClearProxChecks\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Removes all existing proximity checks. nClears the list of prox checks that are currently active and shis down the procChecker.\"},{\"id\":\"Util_CreateEntities\",\"kind\":2,\"label\":\"Util_CreateEntities\",\"documentation\":\"Creates a given number of entities at a location and adds them to an egroup. A PlayerID of nil will create the entities as world objects. \"},{\"id\":\"Util_CreateSquads\",\"kind\":2,\"label\":\"Util_CreateSquads\",\"documentation\":\"High level function to create squads and give them basic orders upon spawning. Detailed explanation found in ScarUtil.scar n PlayerID player - player who will own the squads SGroupID/Table/String sgroup - sgroup that receives the new squads. Can be nil if you don't need to manage the new squads or a string if you want to create a new sgroup with that name.If a table is given, the first item will be used as the return sgroup. SquadBlueprint sbp - the blueprint for the new squads. can be a table of blueprints, in which case a random blueprint will be chosen for each squad Position location - where to spawn the squads (can be any parameter type whose position can be queried) SGroup - If the sgroup is a Hold Entity then the squad is spawned inside of it. EGroup - If the egroup is a hold entity then the squad is spawned inside of it. NOTE: if the hold is destroyed, or is full, or due to any other misc. failure case, then the squad is spawned at the player's map entry point. Pos - the squad is spawned at this location. Marker - the squad is spawned at the marker and facing the direciton of the marker. Position destination - (OPTIONAL) where the squads will move to, load into, or attack SGroup can mean two different things, if the Sgroup is owned by the player and a hold then try to enter it. Or if the SGroup is an enemy squad, then the spawned squad should attack move the enemy. If neither is true, then the squad just moves to the location. EGroup should be treated the same as the SGroup. Position/Marker: the squad moves to the location. Sync weapon: the squad captures the sync weapon. Integer numsquads - (OPTIONAL) how many squads to spawn Integer loadout - (OPTIONAL) max amount of units to spawn per squad Boolean attackmove - (OPTIONAL) in cases where the squads do a simple move to their destination (not attacking or loading into anything), this determines whether they attack move or not Position facing - (OPTIONAL) in cases where the squads do a simple move to their destination, this determines their facing once they reach their destination. If facing is not specified, and the squad is moving to a marker, the marker's facing is used. UpgradeBlueprint upgrades - (OPTIONAL) upgrade(s) to instantly apply to squads when they spawnnReferences: [Util_CreateSquads]\"},{\"id\":\"Util_GetDistance\",\"kind\":2,\"label\":\"Util_GetDistance\",\"documentation\":\"Returns the distance between two objects \"},{\"id\":\"Util_GetOffsetPosition\",\"kind\":2,\"label\":\"Util_GetOffsetPosition\",\"documentation\":\"Returns a position relative to a entity/squad/egroup/sgroup/marker/position's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Util_GetPlayerOwner\",\"kind\":2,\"label\":\"Util_GetPlayerOwner\",\"documentation\":\"Returns the player owner for any of: entity, squad, egroup, sgroup, player. for groups, the first item is used. Returns nil for world owned or empty groups \"},{\"id\":\"Util_GetRelationship\",\"kind\":2,\"label\":\"Util_GetRelationship\",\"documentation\":\"Gets the relationship between two of: entity, squad, egroup, sgroup, player. for groups, the first item is used. \"},{\"id\":\"Util_GetRelativeOffset\",\"kind\":2,\"label\":\"Util_GetRelativeOffset\",\"documentation\":\"Returns a relative offset position to an element \"},{\"id\":\"Util_MonitorTerritory\",\"kind\":2,\"label\":\"Util_MonitorTerritory\",\"documentation\":\"Monitors a territory point and warns the player if it goes below a certain capture threshold nCan receive a parent objective to which to attach a subobjective that displays data.\"},{\"id\":\"Util_RemoveProxCheck\",\"kind\":2,\"label\":\"Util_RemoveProxCheck\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Remove proximity checks assigned to a location. nRemoves all proximity checks associated with the defined location.\"},{\"id\":\"Util_RemoveProxCheckByID\",\"kind\":2,\"label\":\"Util_RemoveProxCheckByID\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Remove a specific proximity check based on its ID. \"},{\"id\":\"Util_ScarPos\",\"kind\":2,\"label\":\"Util_ScarPos\",\"documentation\":\"Converts a 2D top down position to a 3D ScarPosition. n 3D ScarPositions have the x axis left to right, the z axis in to out, and the y axis down to up (y axis represents the height of the terrain). Use this function to convert a top-down 2D position to a 3D world position.<BR/><BR/> Note: (0,0) is in the center of the map.\"},{\"id\":\"Util_SetPlayerOwner\",\"kind\":2,\"label\":\"Util_SetPlayerOwner\",\"documentation\":\"Sets the player owner for an entity, squad, egroup or sgroup. Also sets player owner of whatever is garrisoned inside them \"},{\"id\":\"Util_SpawnDemoCharge\",\"kind\":2,\"label\":\"Util_SpawnDemoCharge\",\"documentation\":\"Spawns a demo charge at a position and returns an egroup nUse this instead of World_SpawnDemolitionCharge if you need to manage it\"},{\"id\":\"Util_StartNIS\",\"kind\":2,\"label\":\"Util_StartNIS\",\"documentation\":\"Play an NIS. See confluence link below for more info. nReferences: [Scripting+NIS+Transitions]\"},{\"id\":\"VIS_OccCullToggleOBB\",\"kind\":2,\"label\":\"VIS_OccCullToggleOBB\",\"documentation\":\"toggle the visibility of occlusion culling OBB \"},{\"id\":\"Marker_CleanUpTheDead\",\"kind\":2,\"label\":\"Marker_CleanUpTheDead\",\"documentation\":\"Kill off a specific player's dead bodies (enter ALL to clean them all up) in a marker radius \"},{\"id\":\"Weather_SetType\",\"kind\":2,\"label\":\"Weather_SetType\",\"documentation\":\"changes the weather state of all objects (options: sunny, lightrain, mediumrain, heavyrain) \"},{\"id\":\"World_AddPilferLockArea\",\"kind\":2,\"label\":\"World_AddPilferLockArea\",\"documentation\":\"Add an area where pilferable weapons won't disappear due to timeout \"},{\"id\":\"World_CleanUpTheDead\",\"kind\":2,\"label\":\"World_CleanUpTheDead\",\"documentation\":\"Kill off a specific player's dead bodies (enter ALL to clean them all up) \"},{\"id\":\"World_ClearCasualties\",\"kind\":2,\"label\":\"World_ClearCasualties\",\"documentation\":\"\"},{\"id\":\"World_DamageIce\",\"kind\":2,\"label\":\"World_DamageIce\",\"documentation\":\"Damage a circle of ice with a gradient nlinearly to 50 damage at 10 meters (so 75 damage at 7.5 meters)\"},{\"id\":\"World_DestroyWallsNearMarker\",\"kind\":2,\"label\":\"World_DestroyWallsNearMarker\",\"documentation\":\"Destroys walls (entities with a wall_ext) near a marker \"},{\"id\":\"World_DistanceEGroupToPoint\",\"kind\":2,\"label\":\"World_DistanceEGroupToPoint\",\"documentation\":\"Get the distance between a squad group and a point. n Pass in true for 3rd parameter to get the closest point and pass in false to get the furthest point. The closest/furthest point is calculated on a per entity basis. So the closest distance would be that of the closest entity.<BR/> Also note, it is an error to call this function with an empty group.<BR/>\"},{\"id\":\"World_DistancePointToPoint\",\"kind\":2,\"label\":\"World_DistancePointToPoint\",\"documentation\":\"Get the distance between two points. \"},{\"id\":\"World_DistanceSGroupToPoint\",\"kind\":2,\"label\":\"World_DistanceSGroupToPoint\",\"documentation\":\"Get the distance between a squad group and a point. n Pass in true for 3rd parameter to get the closest point and pass in false to get the furthest point. The closest/furthest point is calculated on a per squadron basis. So the closest distance would be that of the closest squadron.<BR/> It is an error to call this function with an empty group. Check the group size with SquadGroup_Count( ) first.\"},{\"id\":\"World_DistanceSquaredPointToPoint\",\"kind\":2,\"label\":\"World_DistanceSquaredPointToPoint\",\"documentation\":\"Get the distance squared between two points. \"},{\"id\":\"World_EnableReplacementObjectForEmptyPlayers\",\"kind\":2,\"label\":\"World_EnableReplacementObjectForEmptyPlayers\",\"documentation\":\"*** You must call this from OnGameSetup, otherwise it's too late *** Determines whether empty players get converted to null resource points. nsee Attribute Editor under tuning/player/empty_player_replacement_object\"},{\"id\":\"World_EnableSharedLineOfSight\",\"kind\":2,\"label\":\"World_EnableSharedLineOfSight\",\"documentation\":\"Enables or disables shared line of sight between these two players \"},{\"id\":\"World_EndSP\",\"kind\":2,\"label\":\"World_EndSP\",\"documentation\":\"Wins/loses a single team mission for the local teams \"},{\"id\":\"World_GetClosest\",\"kind\":2,\"label\":\"World_GetClosest\",\"documentation\":\"Returns the closest object from the table of marker/pos/egroup/sgroup to the closest marker/pos/egroup/sgroup specified nThe table may mix together objects of different types.\"},{\"id\":\"World_GetCurrentInteractionStage\",\"kind\":2,\"label\":\"World_GetCurrentInteractionStage\",\"documentation\":\"Returns the current interaction stage (areas painted at this number or lower are currently interactable) \"},{\"id\":\"World_GetEntitiesNearMarker\",\"kind\":2,\"label\":\"World_GetEntitiesNearMarker\",\"documentation\":\"Find and add entities near the marker to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetEntitiesNearPoint\",\"documentation\":\"Find and add entities near the point to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntitiesWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetEntitiesWithinTerritorySector\",\"documentation\":\"Find and add entities within the territory sector to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntity\",\"kind\":2,\"label\":\"World_GetEntity\",\"documentation\":\"Returns the UniqueID at given index, use with World_GetNumEntities() to iterate through all the entities in the world \"},{\"id\":\"World_GetFurthest\",\"kind\":2,\"label\":\"World_GetFurthest\",\"documentation\":\"Returns the furthest object from the table of marker/pos/egroup/sgroup to the furthest marker/pos/egroup/sgroup specified. nThe table may mix together objects of different types.\"},{\"id\":\"World_GetGameTime\",\"kind\":2,\"label\":\"World_GetGameTime\",\"documentation\":\"Return the total game time in seconds. \"},{\"id\":\"World_GetHeightAt\",\"kind\":2,\"label\":\"World_GetHeightAt\",\"documentation\":\"returns the height of ground at 2D pos x,y \"},{\"id\":\"World_GetHiddenPositionOnPath\",\"kind\":2,\"label\":\"World_GetHiddenPositionOnPath\",\"documentation\":\"Find a position on a path hidden from view, as close to the destination as possible whilst still satisfying your hidden checktype. Checktype can be either CHECK_IN_FOW, CHECK_OFFCAMERA or CHECK_BOTH. nThe path is always calculated as if it were plain infantry. This function returns nil if it can't find a suitable position, so you can do a backup plan. \"},{\"id\":\"World_GetLength\",\"kind\":2,\"label\":\"World_GetLength\",\"documentation\":\"Returns the total playable length of the game world (z coordinate) nSince the center of the map is 0,0 the world z range is (-l/2 -> l/2)\"},{\"id\":\"World_GetNearestInteractablePoint\",\"kind\":2,\"label\":\"World_GetNearestInteractablePoint\",\"documentation\":\"returns the nearest intractable position to the supplied position \"},{\"id\":\"World_GetNeutralEntitiesNearMarker\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesNearMarker\",\"documentation\":\"Find and add neutral entities near the marker to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNeutralEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesNearPoint\",\"documentation\":\"Find and add neutral entities near the point to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNeutralEntitiesWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesWithinTerritorySector\",\"documentation\":\"Find and add neutral entities within the territory sector to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNumEntities\",\"kind\":2,\"label\":\"World_GetNumEntities\",\"documentation\":\"Returns the number of spawned entities in the entire world (use sparingly and never at runtime) \"},{\"id\":\"World_GetNumEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetNumEntitiesNearPoint\",\"documentation\":\"Return the number of entities of the same ebp in the sphere volume \"},{\"id\":\"World_GetNumStrategicPoints\",\"kind\":2,\"label\":\"World_GetNumStrategicPoints\",\"documentation\":\"Returns the number of strategic points on this map (does not count strat. objectives) \"},{\"id\":\"World_GetNumVictoryPoints\",\"kind\":2,\"label\":\"World_GetNumVictoryPoints\",\"documentation\":\"Returns the number of strategic objectives on this map \"},{\"id\":\"World_GetOffsetPosition\",\"kind\":2,\"label\":\"World_GetOffsetPosition\",\"documentation\":\"Returns a position that is offset a certain distance from the position/heading passed in. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"World_GetPlayerAt\",\"kind\":2,\"label\":\"World_GetPlayerAt\",\"documentation\":\"- Returns the player at a given index, numbers start at one \"},{\"id\":\"World_GetPlayerCount\",\"kind\":2,\"label\":\"World_GetPlayerCount\",\"documentation\":\"Return the total number of players in the world \"},{\"id\":\"World_GetPlayerIndex\",\"kind\":2,\"label\":\"World_GetPlayerIndex\",\"documentation\":\"- Returns the player index given the Player* \"},{\"id\":\"World_GetPossibleSquadsBlueprint\",\"kind\":2,\"label\":\"World_GetPossibleSquadsBlueprint\",\"documentation\":\"Returns the blueprint of a chosen squad for a race \"},{\"id\":\"World_GetPossibleSquadsCount\",\"kind\":2,\"label\":\"World_GetPossibleSquadsCount\",\"documentation\":\"Returns the number of types of squads a race can build \"},{\"id\":\"World_GetRaceIndex\",\"kind\":2,\"label\":\"World_GetRaceIndex\",\"documentation\":\"Returns the race index of a race, given its name (from the ME). \"},{\"id\":\"World_GetRand\",\"kind\":2,\"label\":\"World_GetRand\",\"documentation\":\"Returns a random integer with range [min, max] nIt is recomended you use this instead of luas math.random function\"},{\"id\":\"World_GetSpawnablePosition\",\"kind\":2,\"label\":\"World_GetSpawnablePosition\",\"documentation\":\"Given any position in the world, this function will return position safe for spawning a given entity \"},{\"id\":\"World_GetSquadsNearMarker\",\"kind\":2,\"label\":\"World_GetSquadsNearMarker\",\"documentation\":\"Find and add squads near the marker to the sgroup nThis function is faster if radius is small and/or number of squads to search for is large\"},{\"id\":\"World_GetSquadsNearPoint\",\"kind\":2,\"label\":\"World_GetSquadsNearPoint\",\"documentation\":\"Find and add squads near the point to the sgroup nThis function is faster if radius is small and/or number of squads to search for is large\"},{\"id\":\"World_GetSquadsWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetSquadsWithinTerritorySector\",\"documentation\":\"Find and add squads within territory sector identified by sector ID nOwner type could be OT_Player, OT_Ally, OT_Enemy or OT_Neutral\"},{\"id\":\"World_GetStrategyPoints\",\"kind\":2,\"label\":\"World_GetStrategyPoints\",\"documentation\":\"Appends all the strategic resource points to an egroup. n takes the egroup where you want to put the points, and 2nd parameter is a bool which indicates if you want to include VPs or not If 'group' already contains an entity from 'grouptoadd' it will not be added.<BR/> This function does not clear the contents of 'group'.<BR/> Example: World_GetStrategyPoints(mypointgroup, true) --puts all the points including vps into mypointgroup\"},{\"id\":\"World_GetTeamTerritoryGaps\",\"kind\":2,\"label\":\"World_GetTeamTerritoryGaps\",\"documentation\":\"Returns one or more sector IDs that would connect two unconnected pieces of territory. return value is through a table (since there can be more than one way to connect territory) - each entry in this table is a table of sector IDs. nCurrently only finds single gaps - i.e. if two territories are 'almost' connected.\"},{\"id\":\"World_GetTeamVictoryTicker\",\"kind\":2,\"label\":\"World_GetTeamVictoryTicker\",\"documentation\":\"Returns the number of tickets that this team has \"},{\"id\":\"World_GetTerritorySectorID\",\"kind\":2,\"label\":\"World_GetTerritorySectorID\",\"documentation\":\"Return the sector ID from the position \"},{\"id\":\"World_GetTerritorySectorPosition\",\"kind\":2,\"label\":\"World_GetTerritorySectorPosition\",\"documentation\":\"Returns the position of a sector based on the capture entity (ex: the fuel point's position) \"},{\"id\":\"World_GetWidth\",\"kind\":2,\"label\":\"World_GetWidth\",\"documentation\":\"Returns the total playable width of the game world (x coordinate) nSince the center of the map is 0,0 the world x range is (-w/2 -> w/2)\"},{\"id\":\"World_IncreaseInteractionStage\",\"kind\":2,\"label\":\"World_IncreaseInteractionStage\",\"documentation\":\"Increases current interaction stage by 1 \"},{\"id\":\"World_IsGameOver\",\"kind\":2,\"label\":\"World_IsGameOver\",\"documentation\":\"- to document \"},{\"id\":\"World_IsInSupply\",\"kind\":2,\"label\":\"World_IsInSupply\",\"documentation\":\"Returns true if position is in-supply for the given player \"},{\"id\":\"World_IsPointInPlayerTerritory\",\"kind\":2,\"label\":\"World_IsPointInPlayerTerritory\",\"documentation\":\"Returns true if position if part of the entity territory nNote that this does not care if territory is in supply or not\"},{\"id\":\"World_IsTerritorySectorOwnedByPlayer\",\"kind\":2,\"label\":\"World_IsTerritorySectorOwnedByPlayer\",\"documentation\":\"Find if player has ownership to this territory sector. nOther players on the same team would also have the ownership to the sector\"},{\"id\":\"World_IsWinterMap\",\"kind\":2,\"label\":\"World_IsWinterMap\",\"documentation\":\"Returns whether the current map is set in winter. Checks if 'g_isWinterMap' is set to true. \"},{\"id\":\"World_OwnsEGroup\",\"kind\":2,\"label\":\"World_OwnsEGroup\",\"documentation\":\"Returns whether ANY or ALL of the entities in the group are owned by the world (i.e. neutral) \"},{\"id\":\"World_OwnsEntity\",\"kind\":2,\"label\":\"World_OwnsEntity\",\"documentation\":\"Returns true if the squad is owned by the world \"},{\"id\":\"World_OwnsSGroup\",\"kind\":2,\"label\":\"World_OwnsSGroup\",\"documentation\":\"Returns whether ANY or ALL of the squads in the group are owned by the world (i.e. neutral) \"},{\"id\":\"World_OwnsSquad\",\"kind\":2,\"label\":\"World_OwnsSquad\",\"documentation\":\"Returns true if the squad is owned by the world \"},{\"id\":\"World_PointPointProx\",\"kind\":2,\"label\":\"World_PointPointProx\",\"documentation\":\"Returns true if two world positions are in proximity to each other \"},{\"id\":\"World_Pos\",\"kind\":2,\"label\":\"World_Pos\",\"documentation\":\"Creates a new Position object. n A position object is basically a table with an x, y, and z attribute. You can directly access the individual components in the same way that you would access a field in a table.<BR/><BR/> Example:<BR/> --* lua script snip<BR/> local pos = World_Pos(2, 0, 0)<BR/> pos.x = pos.x + 1<BR/> print pos.x -- this will print 3<BR/> --* lua script snip<BR/>\"},{\"id\":\"World_RemoveAllResourcePoints\",\"kind\":2,\"label\":\"World_RemoveAllResourcePoints\",\"documentation\":\"Removes all resource and strategic points but not entities with a supply ext NOTE: this could eventually be written as - RemoveAllOfType( type ) which would be more flexible. \"},{\"id\":\"World_RemovePilferLockArea\",\"kind\":2,\"label\":\"World_RemovePilferLockArea\",\"documentation\":\"Remove a locked pilfering area, must pass the same pos and radius as when the lock area was created \"},{\"id\":\"World_SetDesignerSupply\",\"kind\":2,\"label\":\"World_SetDesignerSupply\",\"documentation\":\"Sets a particular sector in the world as a supply provider (or not) \"},{\"id\":\"World_SetGameOver\",\"kind\":2,\"label\":\"World_SetGameOver\",\"documentation\":\"- to document \"},{\"id\":\"World_SetIceHealingRate\",\"kind\":2,\"label\":\"World_SetIceHealingRate\",\"documentation\":\"Set what percent ice heals per second (0.05 means 5% per second) \"},{\"id\":\"World_SetPlayerCustomSkin\",\"kind\":2,\"label\":\"World_SetPlayerCustomSkin\",\"documentation\":\"Change the player's custom skin settings, skin must exist in the AE list of DLC skins \"},{\"id\":\"World_SetPlayerLose\",\"kind\":2,\"label\":\"World_SetPlayerLose\",\"documentation\":\"Sets the player to a lose state, with a reason for losing, and kills the player \"},{\"id\":\"World_SetPlayerWin\",\"kind\":2,\"label\":\"World_SetPlayerWin\",\"documentation\":\"Sets the player and all the members allied to player to a win state, with a reason for winning. Also sets all other players to a lose state, and kills them (if they're not already dead) \"},{\"id\":\"World_SetSnowHealingRate\",\"kind\":2,\"label\":\"World_SetSnowHealingRate\",\"documentation\":\"Set what percent snow heals per second (0.05 means 5% per second) \"},{\"id\":\"World_SetTeamWin\",\"kind\":2,\"label\":\"World_SetTeamWin\",\"documentation\":\"Sets every player on a team to a win state, with a reason for winning. Also sets all other players to a lose state, and kills them (if they're not already dead) \"},{\"id\":\"World_SpawnDemolitionCharge\",\"kind\":2,\"label\":\"World_SpawnDemolitionCharge\",\"documentation\":\"spawn a demolitions charge at a position, 'player' is the one that owns the demolitions and can detonate them. \"},{\"id\":\"World_TeamTerritoryPointsConnected\",\"kind\":2,\"label\":\"World_TeamTerritoryPointsConnected\",\"documentation\":\"Returns true if the two points are in the same territory region, and owned by the specified territory team, Returns false otherwise. \"},{\"id\":\"Scar_AddInit\",\"kind\":2,\"label\":\"Scar_AddInit\",\"documentation\":\"Can be used to kick off your script. This tells the game engine \"When you are ready, call the function FunctionName first\"\"},{\"id\":\"scartype\",\"kind\":2,\"label\":\"scartype\",\"documentation\":\"Returns the SCAR Type of the provided value, eg. ST_SQUAD\"},{\"id\":\"scartype_tostring\",\"kind\":2,\"label\":\"scartype_tostring\",\"documentation\":\"Returns the SCAR Type of the provided value as a string value, eg. \"ST_SQUAD\"\"},{\"id\":\"import\",\"kind\":2,\"label\":\"import\",\"documentation\":\"Imports the provided file.\"},{\"id\":\"UI_GetViewportWidth\",\"kind\":2,\"label\":\"UI_GetViewportWidth\",\"documentation\":\"Returns the width of the viewport.\"},{\"id\":\"UI_GetViewportHeight\",\"kind\":2,\"label\":\"UI_GetViewportHeight\",\"documentation\":\"Returns the height of the viewport.\"},{\"id\":\"UI_ButtonAdd\",\"kind\":2,\"label\":\"UI_ButtonAdd\",\"documentation\":\"Creates a new Button.\"},{\"id\":\"UI_ButtonSetCallback\",\"kind\":2,\"label\":\"UI_ButtonSetCallback\",\"documentation\":\"Sets the button click callback handler.\"},{\"id\":\"UI_ButtonSetEnabled\",\"kind\":2,\"label\":\"UI_ButtonSetEnabled\",\"documentation\":\"Sets the button enabled status.\"},{\"id\":\"UI_ButtonSetIcon\",\"kind\":2,\"label\":\"UI_ButtonSetIcon\",\"documentation\":\"Sets the button icon.\"},{\"id\":\"UI_ButtonSetTag\",\"kind\":2,\"label\":\"UI_ButtonSetTag\",\"documentation\":\"Sets the button tag.\"},{\"id\":\"UI_ButtonSetText\",\"kind\":2,\"label\":\"UI_ButtonSetText\",\"documentation\":\"Sets the button text.\"},{\"id\":\"UI_LabelAdd\",\"kind\":2,\"label\":\"UI_LabelAdd\",\"documentation\":\"Creates a new Label.\"},{\"id\":\"UI_LabelSetText\",\"kind\":2,\"label\":\"UI_LabelSetText\",\"documentation\":\"Sets the label text.\"},{\"id\":\"UI_IconAdd\",\"kind\":2,\"label\":\"UI_IconAdd\",\"documentation\":\"Creates a new Icon.\"},{\"id\":\"UI_IconSetIcon\",\"kind\":2,\"label\":\"UI_IconSetIcon\",\"documentation\":\"Sets the icon icon.\"},{\"id\":\"UI_PanelAdd\",\"kind\":2,\"label\":\"UI_PanelAdd\",\"documentation\":\"Creates a new Panel.\"},{\"id\":\"UI_StatusIndicatorAdd\",\"kind\":2,\"label\":\"UI_StatusIndicatorAdd\",\"documentation\":\"Creates a new Status Indicator.\"},{\"id\":\"UI_StatusIndicatorSetValue\",\"kind\":2,\"label\":\"UI_StatusIndicatorSetValue\",\"documentation\":\"Sets the status indicator value.\"},{\"id\":\"UI_ControlSetColour\",\"kind\":2,\"label\":\"UI_ControlSetColour\",\"documentation\":\"Sets the control color.\"},{\"id\":\"UI_ControlSetPosition\",\"kind\":2,\"label\":\"UI_ControlSetPosition\",\"documentation\":\"Sets the control position.\"},{\"id\":\"UI_ControlSetRect\",\"kind\":2,\"label\":\"UI_ControlSetRect\",\"documentation\":\"Sets the control rectangle.\"},{\"id\":\"UI_ControlRemove\",\"kind\":2,\"label\":\"UI_ControlRemove\",\"documentation\":\"Removes the control.\"},{\"id\":\"UI_ControlClear\",\"kind\":2,\"label\":\"UI_ControlClear\",\"documentation\":\"Clears the control.\"},{\"id\":\"BS_NearBase\",\"kind\":12,\"label\":\"BS_NearBase\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_NearBase of type AIBuildStyle\"},{\"id\":\"BS_Defend\",\"kind\":12,\"label\":\"BS_Defend\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Defend of type AIBuildStyle\"},{\"id\":\"BS_Secure\",\"kind\":12,\"label\":\"BS_Secure\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Secure of type AIBuildStyle\"},{\"id\":\"BS_Mines\",\"kind\":12,\"label\":\"BS_Mines\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Mines of type AIBuildStyle\"},{\"id\":\"BS_OuterBase\",\"kind\":12,\"label\":\"BS_OuterBase\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_OuterBase of type AIBuildStyle\"},{\"id\":\"CPT_VictoryPoint\",\"kind\":12,\"label\":\"CPT_VictoryPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_VictoryPoint of type AICapturePointType\"},{\"id\":\"CPT_MunitionPoint\",\"kind\":12,\"label\":\"CPT_MunitionPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_MunitionPoint of type AICapturePointType\"},{\"id\":\"CPT_NullPoint\",\"kind\":12,\"label\":\"CPT_NullPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_NullPoint of type AICapturePointType\"},{\"id\":\"CPT_TacticalPoint\",\"kind\":12,\"label\":\"CPT_TacticalPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_TacticalPoint of type AICapturePointType\"},{\"id\":\"CPT_INVALID\",\"kind\":12,\"label\":\"CPT_INVALID\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_INVALID of type AICapturePointType\"},{\"id\":\"CPT_FuelPoint\",\"kind\":12,\"label\":\"CPT_FuelPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_FuelPoint of type AICapturePointType\"},{\"id\":\"COMBAT_Default\",\"kind\":12,\"label\":\"COMBAT_Default\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Default of type AICombatType\"},{\"id\":\"COMBAT_Defend\",\"kind\":12,\"label\":\"COMBAT_Defend\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Defend of type AICombatType\"},{\"id\":\"COMBAT_Attack\",\"kind\":12,\"label\":\"COMBAT_Attack\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Attack of type AICombatType\"},{\"id\":\"MPT_VictoryPoint\",\"kind\":12,\"label\":\"MPT_VictoryPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_VictoryPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_NullPoint\",\"kind\":12,\"label\":\"MPT_NullPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_NullPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_NONE\",\"kind\":12,\"label\":\"MPT_NONE\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_NONE of type AIMilitaryPointType\"},{\"id\":\"MPT_MunitionPoint\",\"kind\":12,\"label\":\"MPT_MunitionPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_MunitionPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_COUNT\",\"kind\":12,\"label\":\"MPT_COUNT\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_COUNT of type AIMilitaryPointType\"},{\"id\":\"MPT_SupportStructure\",\"kind\":12,\"label\":\"MPT_SupportStructure\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_SupportStructure of type AIMilitaryPointType\"},{\"id\":\"MPT_Defence\",\"kind\":12,\"label\":\"MPT_Defence\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_Defence of type AIMilitaryPointType\"},{\"id\":\"MPT_Spawner\",\"kind\":12,\"label\":\"MPT_Spawner\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_Spawner of type AIMilitaryPointType\"},{\"id\":\"MPT_HQ\",\"kind\":12,\"label\":\"MPT_HQ\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_HQ of type AIMilitaryPointType\"},{\"id\":\"MPT_TacticalPoint\",\"kind\":12,\"label\":\"MPT_TacticalPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_TacticalPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_FuelPoint\",\"kind\":12,\"label\":\"MPT_FuelPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_FuelPoint of type AIMilitaryPointType\"},{\"id\":\"MTARGET_Attack\",\"kind\":12,\"label\":\"MTARGET_Attack\",\"detail\":\"AIMilitaryTargetType\",\"documentation\":\"MTARGET_Attack of type AIMilitaryTargetType\"},{\"id\":\"MTARGET_Defend\",\"kind\":12,\"label\":\"MTARGET_Defend\",\"detail\":\"AIMilitaryTargetType\",\"documentation\":\"MTARGET_Defend of type AIMilitaryTargetType\"},{\"id\":\"AI_ProductionQueue\",\"kind\":12,\"label\":\"AI_ProductionQueue\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_ProductionQueue of type AIResourceType\"},{\"id\":\"AI_CapturePoint\",\"kind\":12,\"label\":\"AI_CapturePoint\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_CapturePoint of type AIResourceType\"},{\"id\":\"AI_Squad\",\"kind\":12,\"label\":\"AI_Squad\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_Squad of type AIResourceType\"},{\"id\":\"AITacticTargetPreference_HighDamage\",\"kind\":12,\"label\":\"AITacticTargetPreference_HighDamage\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_HighDamage of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_LowHealth\",\"kind\":12,\"label\":\"AITacticTargetPreference_LowHealth\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_LowHealth of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_None\",\"kind\":12,\"label\":\"AITacticTargetPreference_None\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_None of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Support\",\"kind\":12,\"label\":\"AITacticTargetPreference_Support\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Support of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Near\",\"kind\":12,\"label\":\"AITacticTargetPreference_Near\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Near of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_NearAndBest\",\"kind\":12,\"label\":\"AITacticTargetPreference_NearAndBest\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_NearAndBest of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Best\",\"kind\":12,\"label\":\"AITacticTargetPreference_Best\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Best of type AITacticTargetPreference\"},{\"id\":\"TACTIC_CapturePoint\",\"kind\":12,\"label\":\"TACTIC_CapturePoint\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_CapturePoint of type AITacticType\"},{\"id\":\"TACTIC_Ability\",\"kind\":12,\"label\":\"TACTIC_Ability\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Ability of type AITacticType\"},{\"id\":\"TACTIC_Pickup\",\"kind\":12,\"label\":\"TACTIC_Pickup\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Pickup of type AITacticType\"},{\"id\":\"TACTIC_ForceAttack\",\"kind\":12,\"label\":\"TACTIC_ForceAttack\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_ForceAttack of type AITacticType\"},{\"id\":\"TACTIC_Hold\",\"kind\":12,\"label\":\"TACTIC_Hold\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Hold of type AITacticType\"},{\"id\":\"TACTIC_MinRange\",\"kind\":12,\"label\":\"TACTIC_MinRange\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_MinRange of type AITacticType\"},{\"id\":\"TACTIC_CaptureTeamWeapon\",\"kind\":12,\"label\":\"TACTIC_CaptureTeamWeapon\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_CaptureTeamWeapon of type AITacticType\"},{\"id\":\"TACTIC_WarmUp\",\"kind\":12,\"label\":\"TACTIC_WarmUp\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_WarmUp of type AITacticType\"},{\"id\":\"TACTIC_ProvideReinforcementPoint\",\"kind\":12,\"label\":\"TACTIC_ProvideReinforcementPoint\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_ProvideReinforcementPoint of type AITacticType\"},{\"id\":\"TACTIC_RushAtTarget\",\"kind\":12,\"label\":\"TACTIC_RushAtTarget\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_RushAtTarget of type AITacticType\"},{\"id\":\"TACTIC_Recrew\",\"kind\":12,\"label\":\"TACTIC_Recrew\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Recrew of type AITacticType\"},{\"id\":\"TACTIC_Vehicle\",\"kind\":12,\"label\":\"TACTIC_Vehicle\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Vehicle of type AITacticType\"},{\"id\":\"TACTIC_Avoid\",\"kind\":12,\"label\":\"TACTIC_Avoid\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Avoid of type AITacticType\"},{\"id\":\"TACTIC_Cover\",\"kind\":12,\"label\":\"TACTIC_Cover\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Cover of type AITacticType\"},{\"id\":\"TACTIC_FinishHealing\",\"kind\":12,\"label\":\"TACTIC_FinishHealing\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_FinishHealing of type AITacticType\"},{\"id\":\"TASK_Leader\",\"kind\":12,\"label\":\"TASK_Leader\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Leader of type AITaskType\"},{\"id\":\"TASK_Production\",\"kind\":12,\"label\":\"TASK_Production\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Production of type AITaskType\"},{\"id\":\"TASK_Ability\",\"kind\":12,\"label\":\"TASK_Ability\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Ability of type AITaskType\"},{\"id\":\"TASK_PlayerAbility\",\"kind\":12,\"label\":\"TASK_PlayerAbility\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_PlayerAbility of type AITaskType\"},{\"id\":\"TASK_Combat\",\"kind\":12,\"label\":\"TASK_Combat\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Combat of type AITaskType\"},{\"id\":\"TASK_Construction\",\"kind\":12,\"label\":\"TASK_Construction\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Construction of type AITaskType\"},{\"id\":\"TASK_Capture\",\"kind\":12,\"label\":\"TASK_Capture\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Capture of type AITaskType\"},{\"id\":\"TASK_ImmobileCombat\",\"kind\":12,\"label\":\"TASK_ImmobileCombat\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_ImmobileCombat of type AITaskType\"},{\"id\":\"AII_LocalHumanTakeover\",\"kind\":12,\"label\":\"AII_LocalHumanTakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_LocalHumanTakeover of type AIType\"},{\"id\":\"AII_RemoteAITakeover\",\"kind\":12,\"label\":\"AII_RemoteAITakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_RemoteAITakeover of type AIType\"},{\"id\":\"AII_None\",\"kind\":12,\"label\":\"AII_None\",\"detail\":\"AIType\",\"documentation\":\"AII_None of type AIType\"},{\"id\":\"AII_RemoteHumanTakeover\",\"kind\":12,\"label\":\"AII_RemoteHumanTakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_RemoteHumanTakeover of type AIType\"},{\"id\":\"AII_Normal\",\"kind\":12,\"label\":\"AII_Normal\",\"detail\":\"AIType\",\"documentation\":\"AII_Normal of type AIType\"},{\"id\":\"ITEM_REMOVED\",\"kind\":12,\"label\":\"ITEM_REMOVED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_REMOVED of type Availability\"},{\"id\":\"ITEM_DEFAULT\",\"kind\":12,\"label\":\"ITEM_DEFAULT\",\"detail\":\"Availability\",\"documentation\":\"ITEM_DEFAULT of type Availability\"},{\"id\":\"ITEM_UNLOCKED\",\"kind\":12,\"label\":\"ITEM_UNLOCKED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_UNLOCKED of type Availability\"},{\"id\":\"ITEM_LOCKED\",\"kind\":12,\"label\":\"ITEM_LOCKED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_LOCKED of type Availability\"},{\"id\":\"BT_AttackHere\",\"kind\":12,\"label\":\"BT_AttackHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_AttackHere of type BlipType\"},{\"id\":\"BT_SectorArtillery\",\"kind\":12,\"label\":\"BT_SectorArtillery\",\"detail\":\"BlipType\",\"documentation\":\"BT_SectorArtillery of type BlipType\"},{\"id\":\"BT_ObjectivePrimary\",\"kind\":12,\"label\":\"BT_ObjectivePrimary\",\"detail\":\"BlipType\",\"documentation\":\"BT_ObjectivePrimary of type BlipType\"},{\"id\":\"BT_Reveal\",\"kind\":12,\"label\":\"BT_Reveal\",\"detail\":\"BlipType\",\"documentation\":\"BT_Reveal of type BlipType\"},{\"id\":\"BT_Combat\",\"kind\":12,\"label\":\"BT_Combat\",\"detail\":\"BlipType\",\"documentation\":\"BT_Combat of type BlipType\"},{\"id\":\"BT_General\",\"kind\":12,\"label\":\"BT_General\",\"detail\":\"BlipType\",\"documentation\":\"BT_General of type BlipType\"},{\"id\":\"BT_CaptureHere\",\"kind\":12,\"label\":\"BT_CaptureHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_CaptureHere of type BlipType\"},{\"id\":\"BT_DefendHere\",\"kind\":12,\"label\":\"BT_DefendHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_DefendHere of type BlipType\"},{\"id\":\"BT_ObjectiveSecondary\",\"kind\":12,\"label\":\"BT_ObjectiveSecondary\",\"detail\":\"BlipType\",\"documentation\":\"BT_ObjectiveSecondary of type BlipType\"},{\"id\":\"BT_RallyPoint\",\"kind\":12,\"label\":\"BT_RallyPoint\",\"detail\":\"BlipType\",\"documentation\":\"BT_RallyPoint of type BlipType\"},{\"id\":\"BFS_Smoking\",\"kind\":12,\"label\":\"BFS_Smoking\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_Smoking of type BuildingFireState\"},{\"id\":\"BFS_Burning\",\"kind\":12,\"label\":\"BFS_Burning\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_Burning of type BuildingFireState\"},{\"id\":\"BFS_NotOnFire\",\"kind\":12,\"label\":\"BFS_NotOnFire\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_NotOnFire of type BuildingFireState\"},{\"id\":\"TV_DeclinationEnabled\",\"kind\":12,\"label\":\"TV_DeclinationEnabled\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclinationEnabled of type CameraTuningValue\"},{\"id\":\"TV_DistMaxDead\",\"kind\":12,\"label\":\"TV_DistMaxDead\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMaxDead of type CameraTuningValue\"},{\"id\":\"TV_DistRateMouse\",\"kind\":12,\"label\":\"TV_DistRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateMouse of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMin\",\"kind\":12,\"label\":\"TV_NISletDistMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMin of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitRate\",\"kind\":12,\"label\":\"TV_SlideOrbitRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitRate of type CameraTuningValue\"},{\"id\":\"TV_PanScaleKeyboardDefZ\",\"kind\":12,\"label\":\"TV_PanScaleKeyboardDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleKeyboardDefZ of type CameraTuningValue\"},{\"id\":\"TV_PanScaleMouseDefZ\",\"kind\":12,\"label\":\"TV_PanScaleMouseDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleMouseDefZ of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclThreshold\",\"kind\":12,\"label\":\"TV_SlideDeclThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclThreshold of type CameraTuningValue\"},{\"id\":\"TV_PanStartSpeedScalar\",\"kind\":12,\"label\":\"TV_PanStartSpeedScalar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanStartSpeedScalar of type CameraTuningValue\"},{\"id\":\"TV_EntityMinViewAngle\",\"kind\":12,\"label\":\"TV_EntityMinViewAngle\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_EntityMinViewAngle of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetBase\",\"kind\":12,\"label\":\"TV_SlideTargetBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetBase of type CameraTuningValue\"},{\"id\":\"TV_NearPlaneShifter\",\"kind\":12,\"label\":\"TV_NearPlaneShifter\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NearPlaneShifter of type CameraTuningValue\"},{\"id\":\"TV_DistMin\",\"kind\":12,\"label\":\"TV_DistMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMin of type CameraTuningValue\"},{\"id\":\"TV_PanScaleScreenDefZ\",\"kind\":12,\"label\":\"TV_PanScaleScreenDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleScreenDefZ of type CameraTuningValue\"},{\"id\":\"TV_NISletDistGroundMin\",\"kind\":12,\"label\":\"TV_NISletDistGroundMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistGroundMin of type CameraTuningValue\"},{\"id\":\"TV_DeclBelow\",\"kind\":12,\"label\":\"TV_DeclBelow\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclBelow of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetThreshold\",\"kind\":12,\"label\":\"TV_SlideTargetThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetThreshold of type CameraTuningValue\"},{\"id\":\"TV_DeclAbove\",\"kind\":12,\"label\":\"TV_DeclAbove\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclAbove of type CameraTuningValue\"},{\"id\":\"TV_DistScale\",\"kind\":12,\"label\":\"TV_DistScale\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistScale of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMax\",\"kind\":12,\"label\":\"TV_NISletDistMax\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMax of type CameraTuningValue\"},{\"id\":\"TV_PanMaxSpeedScalar\",\"kind\":12,\"label\":\"TV_PanMaxSpeedScalar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanMaxSpeedScalar of type CameraTuningValue\"},{\"id\":\"TV_NISletDeclAbove\",\"kind\":12,\"label\":\"TV_NISletDeclAbove\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDeclAbove of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMinGround\",\"kind\":12,\"label\":\"TV_NISletDistMinGround\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMinGround of type CameraTuningValue\"},{\"id\":\"TV_ZoomLocked\",\"kind\":12,\"label\":\"TV_ZoomLocked\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ZoomLocked of type CameraTuningValue\"},{\"id\":\"TV_CameraMode\",\"kind\":12,\"label\":\"TV_CameraMode\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_CameraMode of type CameraTuningValue\"},{\"id\":\"TV_DefaultAngle\",\"kind\":12,\"label\":\"TV_DefaultAngle\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultAngle of type CameraTuningValue\"},{\"id\":\"TV_PanScaleKeyboardMinZ\",\"kind\":12,\"label\":\"TV_PanScaleKeyboardMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleKeyboardMinZ of type CameraTuningValue\"},{\"id\":\"TV_PanScaleMouseMinZ\",\"kind\":12,\"label\":\"TV_PanScaleMouseMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleMouseMinZ of type CameraTuningValue\"},{\"id\":\"TV_DeclBelowClose\",\"kind\":12,\"label\":\"TV_DeclBelowClose\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclBelowClose of type CameraTuningValue\"},{\"id\":\"TV_TrackElastic\",\"kind\":12,\"label\":\"TV_TrackElastic\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_TrackElastic of type CameraTuningValue\"},{\"id\":\"TV_DistExpWheel\",\"kind\":12,\"label\":\"TV_DistExpWheel\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExpWheel of type CameraTuningValue\"},{\"id\":\"TV_DistExpMouse\",\"kind\":12,\"label\":\"TV_DistExpMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExpMouse of type CameraTuningValue\"},{\"id\":\"TV_DistMinGround\",\"kind\":12,\"label\":\"TV_DistMinGround\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMinGround of type CameraTuningValue\"},{\"id\":\"TV_DistGroundTargetHeight\",\"kind\":12,\"label\":\"TV_DistGroundTargetHeight\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistGroundTargetHeight of type CameraTuningValue\"},{\"id\":\"TV_ClipFar\",\"kind\":12,\"label\":\"TV_ClipFar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ClipFar of type CameraTuningValue\"},{\"id\":\"TV_DistGroundMin\",\"kind\":12,\"label\":\"TV_DistGroundMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistGroundMin of type CameraTuningValue\"},{\"id\":\"TV_DistMinDead\",\"kind\":12,\"label\":\"TV_DistMinDead\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMinDead of type CameraTuningValue\"},{\"id\":\"TV_DistMax\",\"kind\":12,\"label\":\"TV_DistMax\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMax of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclBase\",\"kind\":12,\"label\":\"TV_SlideDeclBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclBase of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitThreshold\",\"kind\":12,\"label\":\"TV_SlideOrbitThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitThreshold of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitBase\",\"kind\":12,\"label\":\"TV_SlideOrbitBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitBase of type CameraTuningValue\"},{\"id\":\"TV_SlideDistThreshold\",\"kind\":12,\"label\":\"TV_SlideDistThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistThreshold of type CameraTuningValue\"},{\"id\":\"TV_SlideDistBase\",\"kind\":12,\"label\":\"TV_SlideDistBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistBase of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetRate\",\"kind\":12,\"label\":\"TV_SlideTargetRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetRate of type CameraTuningValue\"},{\"id\":\"TV_ClipNear\",\"kind\":12,\"label\":\"TV_ClipNear\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ClipNear of type CameraTuningValue\"},{\"id\":\"TV_PanScaleScreenMinZ\",\"kind\":12,\"label\":\"TV_PanScaleScreenMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleScreenMinZ of type CameraTuningValue\"},{\"id\":\"TV_DistRateWheelZoomIn\",\"kind\":12,\"label\":\"TV_DistRateWheelZoomIn\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateWheelZoomIn of type CameraTuningValue\"},{\"id\":\"TV_SlideDistRate\",\"kind\":12,\"label\":\"TV_SlideDistRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistRate of type CameraTuningValue\"},{\"id\":\"TV_DistRateWheelZoomOut\",\"kind\":12,\"label\":\"TV_DistRateWheelZoomOut\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateWheelZoomOut of type CameraTuningValue\"},{\"id\":\"TV_TrackBoundScale\",\"kind\":12,\"label\":\"TV_TrackBoundScale\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_TrackBoundScale of type CameraTuningValue\"},{\"id\":\"TV_DefaultDeclination\",\"kind\":12,\"label\":\"TV_DefaultDeclination\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultDeclination of type CameraTuningValue\"},{\"id\":\"TV_PanAccelerate\",\"kind\":12,\"label\":\"TV_PanAccelerate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanAccelerate of type CameraTuningValue\"},{\"id\":\"TV_DeclRateMouse\",\"kind\":12,\"label\":\"TV_DeclRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclRateMouse of type CameraTuningValue\"},{\"id\":\"TV_DistExp\",\"kind\":12,\"label\":\"TV_DistExp\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExp of type CameraTuningValue\"},{\"id\":\"TV_DefaultHeight\",\"kind\":12,\"label\":\"TV_DefaultHeight\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultHeight of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclRate\",\"kind\":12,\"label\":\"TV_SlideDeclRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclRate of type CameraTuningValue\"},{\"id\":\"TV_RotationEnabled\",\"kind\":12,\"label\":\"TV_RotationEnabled\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_RotationEnabled of type CameraTuningValue\"},{\"id\":\"TV_OrbitRateMouse\",\"kind\":12,\"label\":\"TV_OrbitRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_OrbitRateMouse of type CameraTuningValue\"},{\"id\":\"TV_FieldOfView\",\"kind\":12,\"label\":\"TV_FieldOfView\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_FieldOfView of type CameraTuningValue\"},{\"id\":\"TV_NISletDeclBelow\",\"kind\":12,\"label\":\"TV_NISletDeclBelow\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDeclBelow of type CameraTuningValue\"},{\"id\":\"CANPRODUCE_PrerequisitesProducer\",\"kind\":12,\"label\":\"CANPRODUCE_PrerequisitesProducer\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PrerequisitesProducer of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Error\",\"kind\":12,\"label\":\"CANPRODUCE_Error\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Error of type CanProduceResult\"},{\"id\":\"CANPRODUCE_ProductionQueueFull\",\"kind\":12,\"label\":\"CANPRODUCE_ProductionQueueFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_ProductionQueueFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_ProductionItemFull\",\"kind\":12,\"label\":\"CANPRODUCE_ProductionItemFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_ProductionItemFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_OutOfReinforceRadius\",\"kind\":12,\"label\":\"CANPRODUCE_OutOfReinforceRadius\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_OutOfReinforceRadius of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Ok\",\"kind\":12,\"label\":\"CANPRODUCE_Ok\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Ok of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Disabled\",\"kind\":12,\"label\":\"CANPRODUCE_Disabled\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Disabled of type CanProduceResult\"},{\"id\":\"CANPRODUCE_OutOfTerritory\",\"kind\":12,\"label\":\"CANPRODUCE_OutOfTerritory\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_OutOfTerritory of type CanProduceResult\"},{\"id\":\"CANPRODUCE_UpgradeItemFull\",\"kind\":12,\"label\":\"CANPRODUCE_UpgradeItemFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_UpgradeItemFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_PopulationCapFull\",\"kind\":12,\"label\":\"CANPRODUCE_PopulationCapFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PopulationCapFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_NoResources\",\"kind\":12,\"label\":\"CANPRODUCE_NoResources\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_NoResources of type CanProduceResult\"},{\"id\":\"CANPRODUCE_PrerequisitesItem\",\"kind\":12,\"label\":\"CANPRODUCE_PrerequisitesItem\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PrerequisitesItem of type CanProduceResult\"},{\"id\":\"CANPRODUCE_NoItem\",\"kind\":12,\"label\":\"CANPRODUCE_NoItem\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_NoItem of type CanProduceResult\"},{\"id\":\"CT_Medic\",\"kind\":12,\"label\":\"CT_Medic\",\"detail\":\"CapType\",\"documentation\":\"CT_Medic of type CapType\"},{\"id\":\"CT_Vehicle\",\"kind\":12,\"label\":\"CT_Vehicle\",\"detail\":\"CapType\",\"documentation\":\"CT_Vehicle of type CapType\"},{\"id\":\"CT_Personnel\",\"kind\":12,\"label\":\"CT_Personnel\",\"detail\":\"CapType\",\"documentation\":\"CT_Personnel of type CapType\"},{\"id\":\"CHECK_BOTH\",\"kind\":12,\"label\":\"CHECK_BOTH\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_BOTH of type CheckHiddenType\"},{\"id\":\"CHECK_OFFCAMERA\",\"kind\":12,\"label\":\"CHECK_OFFCAMERA\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_OFFCAMERA of type CheckHiddenType\"},{\"id\":\"CHECK_IN_FOW\",\"kind\":12,\"label\":\"CHECK_IN_FOW\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_IN_FOW of type CheckHiddenType\"},{\"id\":\"CT_VehicleOpticsDamaged\",\"kind\":12,\"label\":\"CT_VehicleOpticsDamaged\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleOpticsDamaged of type CriticalUIType\"},{\"id\":\"CT_VehicleExhaustDamaged\",\"kind\":12,\"label\":\"CT_VehicleExhaustDamaged\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleExhaustDamaged of type CriticalUIType\"},{\"id\":\"CT_VehicleKillCommander\",\"kind\":12,\"label\":\"CT_VehicleKillCommander\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleKillCommander of type CriticalUIType\"},{\"id\":\"CT_VehicleDriverInjured\",\"kind\":12,\"label\":\"CT_VehicleDriverInjured\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleDriverInjured of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineYellow\",\"kind\":12,\"label\":\"CT_VehicleEngineYellow\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineYellow of type CriticalUIType\"},{\"id\":\"CT_VehicleBack\",\"kind\":12,\"label\":\"CT_VehicleBack\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleBack of type CriticalUIType\"},{\"id\":\"CT_VehicleLeft\",\"kind\":12,\"label\":\"CT_VehicleLeft\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleLeft of type CriticalUIType\"},{\"id\":\"CT_VehicleRight\",\"kind\":12,\"label\":\"CT_VehicleRight\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleRight of type CriticalUIType\"},{\"id\":\"CT_VehicleGunnerInjured\",\"kind\":12,\"label\":\"CT_VehicleGunnerInjured\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleGunnerInjured of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineGreen\",\"kind\":12,\"label\":\"CT_VehicleEngineGreen\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineGreen of type CriticalUIType\"},{\"id\":\"CT_VehicleCrewShocked\",\"kind\":12,\"label\":\"CT_VehicleCrewShocked\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleCrewShocked of type CriticalUIType\"},{\"id\":\"CT_VehicleFront\",\"kind\":12,\"label\":\"CT_VehicleFront\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleFront of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineBurning\",\"kind\":12,\"label\":\"CT_VehicleEngineBurning\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineBurning of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineRed\",\"kind\":12,\"label\":\"CT_VehicleEngineRed\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineRed of type CriticalUIType\"},{\"id\":\"CT_VehicleSecondaryWeapon\",\"kind\":12,\"label\":\"CT_VehicleSecondaryWeapon\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleSecondaryWeapon of type CriticalUIType\"},{\"id\":\"CT_VehicleLoseTreadsOrWheels\",\"kind\":12,\"label\":\"CT_VehicleLoseTreadsOrWheels\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleLoseTreadsOrWheels of type CriticalUIType\"},{\"id\":\"CT_VehicleOutOfControl\",\"kind\":12,\"label\":\"CT_VehicleOutOfControl\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleOutOfControl of type CriticalUIType\"},{\"id\":\"CT_VehiclePrimaryWeapon\",\"kind\":12,\"label\":\"CT_VehiclePrimaryWeapon\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehiclePrimaryWeapon of type CriticalUIType\"},{\"id\":\"Crush_Heavy\",\"kind\":12,\"label\":\"Crush_Heavy\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Heavy of type CrushMode\"},{\"id\":\"Crush_Off\",\"kind\":12,\"label\":\"Crush_Off\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Off of type CrushMode\"},{\"id\":\"Crush_Light\",\"kind\":12,\"label\":\"Crush_Light\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Light of type CrushMode\"},{\"id\":\"Crush_Medium\",\"kind\":12,\"label\":\"Crush_Medium\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Medium of type CrushMode\"},{\"id\":\"DB_Button3\",\"kind\":12,\"label\":\"DB_Button3\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button3 of type DialogButton\"},{\"id\":\"DB_Button1\",\"kind\":12,\"label\":\"DB_Button1\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button1 of type DialogButton\"},{\"id\":\"DB_Close\",\"kind\":12,\"label\":\"DB_Close\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Close of type DialogButton\"},{\"id\":\"DB_Button2\",\"kind\":12,\"label\":\"DB_Button2\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button2 of type DialogButton\"},{\"id\":\"CMD_InstantBuildSquad\",\"kind\":12,\"label\":\"CMD_InstantBuildSquad\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantBuildSquad of type EntityCommandType\"},{\"id\":\"CMD_InstantDeath\",\"kind\":12,\"label\":\"CMD_InstantDeath\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantDeath of type EntityCommandType\"},{\"id\":\"CMD_AttackStop\",\"kind\":12,\"label\":\"CMD_AttackStop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackStop of type EntityCommandType\"},{\"id\":\"CMD_BuildStructure\",\"kind\":12,\"label\":\"CMD_BuildStructure\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildStructure of type EntityCommandType\"},{\"id\":\"CMD_Face\",\"kind\":12,\"label\":\"CMD_Face\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Face of type EntityCommandType\"},{\"id\":\"CMD_CancelProduction\",\"kind\":12,\"label\":\"CMD_CancelProduction\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_CancelProduction of type EntityCommandType\"},{\"id\":\"CMD_RescueCasualty\",\"kind\":12,\"label\":\"CMD_RescueCasualty\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_RescueCasualty of type EntityCommandType\"},{\"id\":\"CMD_SetHoldHeading\",\"kind\":12,\"label\":\"CMD_SetHoldHeading\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_SetHoldHeading of type EntityCommandType\"},{\"id\":\"CMD_DefuseMine\",\"kind\":12,\"label\":\"CMD_DefuseMine\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_DefuseMine of type EntityCommandType\"},{\"id\":\"CMD_AttackMove\",\"kind\":12,\"label\":\"CMD_AttackMove\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackMove of type EntityCommandType\"},{\"id\":\"CMD_Fidget\",\"kind\":12,\"label\":\"CMD_Fidget\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Fidget of type EntityCommandType\"},{\"id\":\"CMD_Stop\",\"kind\":12,\"label\":\"CMD_Stop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Stop of type EntityCommandType\"},{\"id\":\"CMD_PlaceCharge\",\"kind\":12,\"label\":\"CMD_PlaceCharge\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_PlaceCharge of type EntityCommandType\"},{\"id\":\"CMD_Paradrop\",\"kind\":12,\"label\":\"CMD_Paradrop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Paradrop of type EntityCommandType\"},{\"id\":\"CMD_Destroy\",\"kind\":12,\"label\":\"CMD_Destroy\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Destroy of type EntityCommandType\"},{\"id\":\"CMD_Load\",\"kind\":12,\"label\":\"CMD_Load\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Load of type EntityCommandType\"},{\"id\":\"CMD_Ability\",\"kind\":12,\"label\":\"CMD_Ability\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Ability of type EntityCommandType\"},{\"id\":\"CMD_Move\",\"kind\":12,\"label\":\"CMD_Move\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Move of type EntityCommandType\"},{\"id\":\"CMD_InstantUpgrade\",\"kind\":12,\"label\":\"CMD_InstantUpgrade\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantUpgrade of type EntityCommandType\"},{\"id\":\"CMD_UnloadSquads\",\"kind\":12,\"label\":\"CMD_UnloadSquads\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_UnloadSquads of type EntityCommandType\"},{\"id\":\"CMD_Casualty\",\"kind\":12,\"label\":\"CMD_Casualty\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Casualty of type EntityCommandType\"},{\"id\":\"CMD_BuildSquad\",\"kind\":12,\"label\":\"CMD_BuildSquad\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildSquad of type EntityCommandType\"},{\"id\":\"CMD_Halt\",\"kind\":12,\"label\":\"CMD_Halt\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Halt of type EntityCommandType\"},{\"id\":\"CMD_Attack\",\"kind\":12,\"label\":\"CMD_Attack\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Attack of type EntityCommandType\"},{\"id\":\"CMD_Capture\",\"kind\":12,\"label\":\"CMD_Capture\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Capture of type EntityCommandType\"},{\"id\":\"CMD_AttackForced\",\"kind\":12,\"label\":\"CMD_AttackForced\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackForced of type EntityCommandType\"},{\"id\":\"CMD_Death\",\"kind\":12,\"label\":\"CMD_Death\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Death of type EntityCommandType\"},{\"id\":\"CMD_Unload\",\"kind\":12,\"label\":\"CMD_Unload\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Unload of type EntityCommandType\"},{\"id\":\"CMD_Evacuate\",\"kind\":12,\"label\":\"CMD_Evacuate\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Evacuate of type EntityCommandType\"},{\"id\":\"CMD_BuildEntity\",\"kind\":12,\"label\":\"CMD_BuildEntity\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildEntity of type EntityCommandType\"},{\"id\":\"CMD_Vault\",\"kind\":12,\"label\":\"CMD_Vault\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Vault of type EntityCommandType\"},{\"id\":\"CMD_AttackFromHold\",\"kind\":12,\"label\":\"CMD_AttackFromHold\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackFromHold of type EntityCommandType\"},{\"id\":\"CMD_RallyPoint\",\"kind\":12,\"label\":\"CMD_RallyPoint\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_RallyPoint of type EntityCommandType\"},{\"id\":\"CMD_DefaultAction\",\"kind\":12,\"label\":\"CMD_DefaultAction\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_DefaultAction of type EntityCommandType\"},{\"id\":\"CMD_Upgrade\",\"kind\":12,\"label\":\"CMD_Upgrade\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Upgrade of type EntityCommandType\"},{\"id\":\"CMD_ChooseResource\",\"kind\":12,\"label\":\"CMD_ChooseResource\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_ChooseResource of type EntityCommandType\"},{\"id\":\"CMD_Projectile\",\"kind\":12,\"label\":\"CMD_Projectile\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Projectile of type EntityCommandType\"},{\"id\":\"STATEID_Capture\",\"kind\":12,\"label\":\"STATEID_Capture\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Capture of type EntityStateID\"},{\"id\":\"STATEID_Idle\",\"kind\":12,\"label\":\"STATEID_Idle\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Idle of type EntityStateID\"},{\"id\":\"STATEID_Evacuate\",\"kind\":12,\"label\":\"STATEID_Evacuate\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Evacuate of type EntityStateID\"},{\"id\":\"STATEID_StructureBuilding\",\"kind\":12,\"label\":\"STATEID_StructureBuilding\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_StructureBuilding of type EntityStateID\"},{\"id\":\"STATEID_RepairEngineer\",\"kind\":12,\"label\":\"STATEID_RepairEngineer\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_RepairEngineer of type EntityStateID\"},{\"id\":\"STATEID_Move\",\"kind\":12,\"label\":\"STATEID_Move\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Move of type EntityStateID\"},{\"id\":\"STATEID_Dead\",\"kind\":12,\"label\":\"STATEID_Dead\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Dead of type EntityStateID\"},{\"id\":\"STATEID_DefuseMine\",\"kind\":12,\"label\":\"STATEID_DefuseMine\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_DefuseMine of type EntityStateID\"},{\"id\":\"GE_ProjectileFired\",\"kind\":12,\"label\":\"GE_ProjectileFired\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ProjectileFired of type GameEventType\"},{\"id\":\"GE_AIPlayer_Migrated\",\"kind\":12,\"label\":\"GE_AIPlayer_Migrated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AIPlayer_Migrated of type GameEventType\"},{\"id\":\"GE_EntityKilled\",\"kind\":12,\"label\":\"GE_EntityKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityKilled of type GameEventType\"},{\"id\":\"GE_TerritoryEntered\",\"kind\":12,\"label\":\"GE_TerritoryEntered\",\"detail\":\"GameEventType\",\"documentation\":\"GE_TerritoryEntered of type GameEventType\"},{\"id\":\"GE_ConstructionComplete\",\"kind\":12,\"label\":\"GE_ConstructionComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ConstructionComplete of type GameEventType\"},{\"id\":\"GE_NonGlobalCamoDetected\",\"kind\":12,\"label\":\"GE_NonGlobalCamoDetected\",\"detail\":\"GameEventType\",\"documentation\":\"GE_NonGlobalCamoDetected of type GameEventType\"},{\"id\":\"GE_SquadPinned\",\"kind\":12,\"label\":\"GE_SquadPinned\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadPinned of type GameEventType\"},{\"id\":\"GE_BuildItemComplete\",\"kind\":12,\"label\":\"GE_BuildItemComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_BuildItemComplete of type GameEventType\"},{\"id\":\"GE_PlayerKilled\",\"kind\":12,\"label\":\"GE_PlayerKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerKilled of type GameEventType\"},{\"id\":\"GE_EntityCommandIssued\",\"kind\":12,\"label\":\"GE_EntityCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityCommandIssued of type GameEventType\"},{\"id\":\"GE_StrategicPointChanged\",\"kind\":12,\"label\":\"GE_StrategicPointChanged\",\"detail\":\"GameEventType\",\"documentation\":\"GE_StrategicPointChanged of type GameEventType\"},{\"id\":\"GE_PlayerDonation\",\"kind\":12,\"label\":\"GE_PlayerDonation\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerDonation of type GameEventType\"},{\"id\":\"GE_AbilityExecuted\",\"kind\":12,\"label\":\"GE_AbilityExecuted\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AbilityExecuted of type GameEventType\"},{\"id\":\"GE_PlayerDropped\",\"kind\":12,\"label\":\"GE_PlayerDropped\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerDropped of type GameEventType\"},{\"id\":\"GE_PlayerBeingAttacked\",\"kind\":12,\"label\":\"GE_PlayerBeingAttacked\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerBeingAttacked of type GameEventType\"},{\"id\":\"GE_UpgradeComplete\",\"kind\":12,\"label\":\"GE_UpgradeComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_UpgradeComplete of type GameEventType\"},{\"id\":\"GE_PlayerSkipNIS\",\"kind\":12,\"label\":\"GE_PlayerSkipNIS\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerSkipNIS of type GameEventType\"},{\"id\":\"GE_AIPlayer_ObjectiveNotification\",\"kind\":12,\"label\":\"GE_AIPlayer_ObjectiveNotification\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AIPlayer_ObjectiveNotification of type GameEventType\"},{\"id\":\"GE_ResourceDepleted\",\"kind\":12,\"label\":\"GE_ResourceDepleted\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ResourceDepleted of type GameEventType\"},{\"id\":\"GE_CustomUIEvent\",\"kind\":12,\"label\":\"GE_CustomUIEvent\",\"detail\":\"GameEventType\",\"documentation\":\"GE_CustomUIEvent of type GameEventType\"},{\"id\":\"GE_SquadKilled\",\"kind\":12,\"label\":\"GE_SquadKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadKilled of type GameEventType\"},{\"id\":\"GE_PlayerSurrendered\",\"kind\":12,\"label\":\"GE_PlayerSurrendered\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerSurrendered of type GameEventType\"},{\"id\":\"GE_SquadCommandIssued\",\"kind\":12,\"label\":\"GE_SquadCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadCommandIssued of type GameEventType\"},{\"id\":\"GE_EntityParadropComplete\",\"kind\":12,\"label\":\"GE_EntityParadropComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityParadropComplete of type GameEventType\"},{\"id\":\"GE_PlayerCheat\",\"kind\":12,\"label\":\"GE_PlayerCheat\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerCheat of type GameEventType\"},{\"id\":\"GE_InfoPointActivated\",\"kind\":12,\"label\":\"GE_InfoPointActivated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_InfoPointActivated of type GameEventType\"},{\"id\":\"GE_SpawnActionComplete\",\"kind\":12,\"label\":\"GE_SpawnActionComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SpawnActionComplete of type GameEventType\"},{\"id\":\"GE_PlayerCommandIssued\",\"kind\":12,\"label\":\"GE_PlayerCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerCommandIssued of type GameEventType\"},{\"id\":\"GE_PlayerHostMigrated\",\"kind\":12,\"label\":\"GE_PlayerHostMigrated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerHostMigrated of type GameEventType\"},{\"id\":\"GE_SquadParadropComplete\",\"kind\":12,\"label\":\"GE_SquadParadropComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadParadropComplete of type GameEventType\"},{\"id\":\"GE_PlayerPhaseUp\",\"kind\":12,\"label\":\"GE_PlayerPhaseUp\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerPhaseUp of type GameEventType\"},{\"id\":\"HPAT_Hint\",\"kind\":12,\"label\":\"HPAT_Hint\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Hint of type HintPointActionType\"},{\"id\":\"HPAT_MovementLooping\",\"kind\":12,\"label\":\"HPAT_MovementLooping\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_MovementLooping of type HintPointActionType\"},{\"id\":\"HPAT_Bonus\",\"kind\":12,\"label\":\"HPAT_Bonus\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Bonus of type HintPointActionType\"},{\"id\":\"HPAT_Vaulting\",\"kind\":12,\"label\":\"HPAT_Vaulting\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Vaulting of type HintPointActionType\"},{\"id\":\"HPAT_Detonation\",\"kind\":12,\"label\":\"HPAT_Detonation\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Detonation of type HintPointActionType\"},{\"id\":\"HPAT_CoverRed\",\"kind\":12,\"label\":\"HPAT_CoverRed\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverRed of type HintPointActionType\"},{\"id\":\"HPAT_CoverYellow\",\"kind\":12,\"label\":\"HPAT_CoverYellow\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverYellow of type HintPointActionType\"},{\"id\":\"HPAT_Artillery\",\"kind\":12,\"label\":\"HPAT_Artillery\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Artillery of type HintPointActionType\"},{\"id\":\"HPAT_FormationSetup\",\"kind\":12,\"label\":\"HPAT_FormationSetup\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_FormationSetup of type HintPointActionType\"},{\"id\":\"HPAT_Movement\",\"kind\":12,\"label\":\"HPAT_Movement\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Movement of type HintPointActionType\"},{\"id\":\"HPAT_Critical\",\"kind\":12,\"label\":\"HPAT_Critical\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Critical of type HintPointActionType\"},{\"id\":\"HPAT_Objective\",\"kind\":12,\"label\":\"HPAT_Objective\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Objective of type HintPointActionType\"},{\"id\":\"HPAT_AttackLooping\",\"kind\":12,\"label\":\"HPAT_AttackLooping\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_AttackLooping of type HintPointActionType\"},{\"id\":\"HPAT_DeepSnow\",\"kind\":12,\"label\":\"HPAT_DeepSnow\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_DeepSnow of type HintPointActionType\"},{\"id\":\"HPAT_CoverGreen\",\"kind\":12,\"label\":\"HPAT_CoverGreen\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverGreen of type HintPointActionType\"},{\"id\":\"HPAT_Attack\",\"kind\":12,\"label\":\"HPAT_Attack\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Attack of type HintPointActionType\"},{\"id\":\"HPAT_RallyPoint\",\"kind\":12,\"label\":\"HPAT_RallyPoint\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_RallyPoint of type HintPointActionType\"},{\"id\":\"HUDF_None\",\"kind\":12,\"label\":\"HUDF_None\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_None of type HUDFeatureType\"},{\"id\":\"HUDF_AbilityCard\",\"kind\":12,\"label\":\"HUDF_AbilityCard\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_AbilityCard of type HUDFeatureType\"},{\"id\":\"HUDF_Upgrades\",\"kind\":12,\"label\":\"HUDF_Upgrades\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_Upgrades of type HUDFeatureType\"},{\"id\":\"HUDF_CommandCard\",\"kind\":12,\"label\":\"HUDF_CommandCard\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_CommandCard of type HUDFeatureType\"},{\"id\":\"HUDF_MiniMap\",\"kind\":12,\"label\":\"HUDF_MiniMap\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_MiniMap of type HUDFeatureType\"},{\"id\":\"LOOP_NORMAL\",\"kind\":12,\"label\":\"LOOP_NORMAL\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_NORMAL of type LoopType\"},{\"id\":\"LOOP_TOGGLE_DIRECTION\",\"kind\":12,\"label\":\"LOOP_TOGGLE_DIRECTION\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_TOGGLE_DIRECTION of type LoopType\"},{\"id\":\"LOOP_NONE\",\"kind\":12,\"label\":\"LOOP_NONE\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_NONE of type LoopType\"},{\"id\":\"MAP_Confirmed\",\"kind\":12,\"label\":\"MAP_Confirmed\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Confirmed of type ModalAbilityPhase\"},{\"id\":\"MAP_Placing\",\"kind\":12,\"label\":\"MAP_Placing\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Placing of type ModalAbilityPhase\"},{\"id\":\"MAP_Facing\",\"kind\":12,\"label\":\"MAP_Facing\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Facing of type ModalAbilityPhase\"},{\"id\":\"MAT_Entity\",\"kind\":12,\"label\":\"MAT_Entity\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Entity of type ModifierApplicationType\"},{\"id\":\"MAT_Player\",\"kind\":12,\"label\":\"MAT_Player\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Player of type ModifierApplicationType\"},{\"id\":\"MAT_Weapon\",\"kind\":12,\"label\":\"MAT_Weapon\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Weapon of type ModifierApplicationType\"},{\"id\":\"MAT_Upgrade\",\"kind\":12,\"label\":\"MAT_Upgrade\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Upgrade of type ModifierApplicationType\"},{\"id\":\"MAT_EntityType\",\"kind\":12,\"label\":\"MAT_EntityType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_EntityType of type ModifierApplicationType\"},{\"id\":\"MAT_Ability\",\"kind\":12,\"label\":\"MAT_Ability\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Ability of type ModifierApplicationType\"},{\"id\":\"MAT_Squad\",\"kind\":12,\"label\":\"MAT_Squad\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Squad of type ModifierApplicationType\"},{\"id\":\"MAT_WeaponType\",\"kind\":12,\"label\":\"MAT_WeaponType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_WeaponType of type ModifierApplicationType\"},{\"id\":\"MAT_SquadType\",\"kind\":12,\"label\":\"MAT_SquadType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_SquadType of type ModifierApplicationType\"},{\"id\":\"MUT_Multiplication\",\"kind\":12,\"label\":\"MUT_Multiplication\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Multiplication of type ModifierUsageType\"},{\"id\":\"MUT_MultiplyAdd\",\"kind\":12,\"label\":\"MUT_MultiplyAdd\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_MultiplyAdd of type ModifierUsageType\"},{\"id\":\"MUT_Addition\",\"kind\":12,\"label\":\"MUT_Addition\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Addition of type ModifierUsageType\"},{\"id\":\"MUT_Enable\",\"kind\":12,\"label\":\"MUT_Enable\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Enable of type ModifierUsageType\"},{\"id\":\"PBG_Weapon\",\"kind\":12,\"label\":\"PBG_Weapon\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Weapon of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_MoveType\",\"kind\":12,\"label\":\"PBG_MoveType\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_MoveType of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_SlotItem\",\"kind\":12,\"label\":\"PBG_SlotItem\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_SlotItem of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UITacticalMap\",\"kind\":12,\"label\":\"PBG_UITacticalMap\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UITacticalMap of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_HitMaterial\",\"kind\":12,\"label\":\"PBG_HitMaterial\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_HitMaterial of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_PassType\",\"kind\":12,\"label\":\"PBG_PassType\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_PassType of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Race\",\"kind\":12,\"label\":\"PBG_Race\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Race of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UISelection\",\"kind\":12,\"label\":\"PBG_UISelection\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UISelection of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Critical\",\"kind\":12,\"label\":\"PBG_Critical\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Critical of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_CamouflageStance\",\"kind\":12,\"label\":\"PBG_CamouflageStance\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_CamouflageStance of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Material\",\"kind\":12,\"label\":\"PBG_Material\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Material of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Tuning\",\"kind\":12,\"label\":\"PBG_Tuning\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Tuning of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Ability\",\"kind\":12,\"label\":\"PBG_Ability\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Ability of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Upgrade\",\"kind\":12,\"label\":\"PBG_Upgrade\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Upgrade of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Posture\",\"kind\":12,\"label\":\"PBG_Posture\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Posture of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UITerritory\",\"kind\":12,\"label\":\"PBG_UITerritory\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UITerritory of type ModPropertyBagGroupTypes\"},{\"id\":\"MM_ForceTense\",\"kind\":12,\"label\":\"MM_ForceTense\",\"detail\":\"MoodMode\",\"documentation\":\"MM_ForceTense of type MoodMode\"},{\"id\":\"MM_ForceCalm\",\"kind\":12,\"label\":\"MM_ForceCalm\",\"detail\":\"MoodMode\",\"documentation\":\"MM_ForceCalm of type MoodMode\"},{\"id\":\"MM_Auto\",\"kind\":12,\"label\":\"MM_Auto\",\"detail\":\"MoodMode\",\"documentation\":\"MM_Auto of type MoodMode\"},{\"id\":\"FN_OnShow\",\"kind\":12,\"label\":\"FN_OnShow\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnShow of type ObjectiveFunction\"},{\"id\":\"FN_OnCounterDisplay\",\"kind\":12,\"label\":\"FN_OnCounterDisplay\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnCounterDisplay of type ObjectiveFunction\"},{\"id\":\"FN_OnActivate\",\"kind\":12,\"label\":\"FN_OnActivate\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnActivate of type ObjectiveFunction\"},{\"id\":\"FN_LuaTableQuery\",\"kind\":12,\"label\":\"FN_LuaTableQuery\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_LuaTableQuery of type ObjectiveFunction\"},{\"id\":\"FN_OnSelect\",\"kind\":12,\"label\":\"FN_OnSelect\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnSelect of type ObjectiveFunction\"},{\"id\":\"OS_Complete\",\"kind\":12,\"label\":\"OS_Complete\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Complete of type ObjectiveState\"},{\"id\":\"OS_Incomplete\",\"kind\":12,\"label\":\"OS_Incomplete\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Incomplete of type ObjectiveState\"},{\"id\":\"OS_Off\",\"kind\":12,\"label\":\"OS_Off\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Off of type ObjectiveState\"},{\"id\":\"OS_Failed\",\"kind\":12,\"label\":\"OS_Failed\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Failed of type ObjectiveState\"},{\"id\":\"OT_Secondary\",\"kind\":12,\"label\":\"OT_Secondary\",\"detail\":\"ObjectiveType\",\"documentation\":\"OT_Secondary of type ObjectiveType\"},{\"id\":\"OT_Primary\",\"kind\":12,\"label\":\"OT_Primary\",\"detail\":\"ObjectiveType\",\"documentation\":\"OT_Primary of type ObjectiveType\"},{\"id\":\"OT_Ally\",\"kind\":12,\"label\":\"OT_Ally\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Ally of type OwnerType\"},{\"id\":\"OT_Neutral\",\"kind\":12,\"label\":\"OT_Neutral\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Neutral of type OwnerType\"},{\"id\":\"OT_Player\",\"kind\":12,\"label\":\"OT_Player\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Player of type OwnerType\"},{\"id\":\"OT_Enemy\",\"kind\":12,\"label\":\"OT_Enemy\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Enemy of type OwnerType\"},{\"id\":\"PCMD_MunitionDonation\",\"kind\":12,\"label\":\"PCMD_MunitionDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_MunitionDonation of type PlayerCommandType\"},{\"id\":\"PCMD_SlotItemRemove\",\"kind\":12,\"label\":\"PCMD_SlotItemRemove\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_SlotItemRemove of type PlayerCommandType\"},{\"id\":\"PCMD_CriticalHit\",\"kind\":12,\"label\":\"PCMD_CriticalHit\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CriticalHit of type PlayerCommandType\"},{\"id\":\"PCMD_CheatBuildTime\",\"kind\":12,\"label\":\"PCMD_CheatBuildTime\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatBuildTime of type PlayerCommandType\"},{\"id\":\"PCMD_Ability\",\"kind\":12,\"label\":\"PCMD_Ability\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_Ability of type PlayerCommandType\"},{\"id\":\"PCMD_SetCommander\",\"kind\":12,\"label\":\"PCMD_SetCommander\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_SetCommander of type PlayerCommandType\"},{\"id\":\"PCMD_CheatRevealAll\",\"kind\":12,\"label\":\"PCMD_CheatRevealAll\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatRevealAll of type PlayerCommandType\"},{\"id\":\"PCMD_ManpowerDonation\",\"kind\":12,\"label\":\"PCMD_ManpowerDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ManpowerDonation of type PlayerCommandType\"},{\"id\":\"PCMD_UpgradeRemove\",\"kind\":12,\"label\":\"PCMD_UpgradeRemove\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_UpgradeRemove of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructField\",\"kind\":12,\"label\":\"PCMD_ConstructField\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructField of type PlayerCommandType\"},{\"id\":\"PCMD_CancelProduction\",\"kind\":12,\"label\":\"PCMD_CancelProduction\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CancelProduction of type PlayerCommandType\"},{\"id\":\"PCMD_CheatKillSelf\",\"kind\":12,\"label\":\"PCMD_CheatKillSelf\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatKillSelf of type PlayerCommandType\"},{\"id\":\"PCMD_Upgrade\",\"kind\":12,\"label\":\"PCMD_Upgrade\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_Upgrade of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructFence\",\"kind\":12,\"label\":\"PCMD_ConstructFence\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructFence of type PlayerCommandType\"},{\"id\":\"PCMD_FuelDonation\",\"kind\":12,\"label\":\"PCMD_FuelDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_FuelDonation of type PlayerCommandType\"},{\"id\":\"PCMD_DetonateCharges\",\"kind\":12,\"label\":\"PCMD_DetonateCharges\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_DetonateCharges of type PlayerCommandType\"},{\"id\":\"PCMD_CheatResources\",\"kind\":12,\"label\":\"PCMD_CheatResources\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatResources of type PlayerCommandType\"},{\"id\":\"PCMD_AIPlayer\",\"kind\":12,\"label\":\"PCMD_AIPlayer\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_AIPlayer of type PlayerCommandType\"},{\"id\":\"PCMD_AIPlayer_ObjectiveNotification\",\"kind\":12,\"label\":\"PCMD_AIPlayer_ObjectiveNotification\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_AIPlayer_ObjectiveNotification of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructStructure\",\"kind\":12,\"label\":\"PCMD_ConstructStructure\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructStructure of type PlayerCommandType\"},{\"id\":\"PCMD_InstantUpgrade\",\"kind\":12,\"label\":\"PCMD_InstantUpgrade\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_InstantUpgrade of type PlayerCommandType\"},{\"id\":\"PITEM_SquadUpgrade\",\"kind\":12,\"label\":\"PITEM_SquadUpgrade\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_SquadUpgrade of type ProductionItemType\"},{\"id\":\"PITEM_SquadReinforce\",\"kind\":12,\"label\":\"PITEM_SquadReinforce\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_SquadReinforce of type ProductionItemType\"},{\"id\":\"PITEM_Spawn\",\"kind\":12,\"label\":\"PITEM_Spawn\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_Spawn of type ProductionItemType\"},{\"id\":\"PITEM_Upgrade\",\"kind\":12,\"label\":\"PITEM_Upgrade\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_Upgrade of type ProductionItemType\"},{\"id\":\"PT_Rectangle\",\"kind\":12,\"label\":\"PT_Rectangle\",\"detail\":\"ProximityType\",\"documentation\":\"PT_Rectangle of type ProximityType\"},{\"id\":\"PT_Circle\",\"kind\":12,\"label\":\"PT_Circle\",\"detail\":\"ProximityType\",\"documentation\":\"PT_Circle of type ProximityType\"},{\"id\":\"R_NEUTRAL\",\"kind\":12,\"label\":\"R_NEUTRAL\",\"detail\":\"Relationship\",\"documentation\":\"R_NEUTRAL of type Relationship\"},{\"id\":\"R_ENEMY\",\"kind\":12,\"label\":\"R_ENEMY\",\"detail\":\"Relationship\",\"documentation\":\"R_ENEMY of type Relationship\"},{\"id\":\"R_UNDEFINED\",\"kind\":12,\"label\":\"R_UNDEFINED\",\"detail\":\"Relationship\",\"documentation\":\"R_UNDEFINED of type Relationship\"},{\"id\":\"R_ALLY\",\"kind\":12,\"label\":\"R_ALLY\",\"detail\":\"Relationship\",\"documentation\":\"R_ALLY of type Relationship\"},{\"id\":\"RT_SovietOrder227\",\"kind\":12,\"label\":\"RT_SovietOrder227\",\"detail\":\"ResourceType\",\"documentation\":\"RT_SovietOrder227 of type ResourceType\"},{\"id\":\"RT_Command\",\"kind\":12,\"label\":\"RT_Command\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Command of type ResourceType\"},{\"id\":\"RT_SovietProgression\",\"kind\":12,\"label\":\"RT_SovietProgression\",\"detail\":\"ResourceType\",\"documentation\":\"RT_SovietProgression of type ResourceType\"},{\"id\":\"RT_Popcap\",\"kind\":12,\"label\":\"RT_Popcap\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Popcap of type ResourceType\"},{\"id\":\"RT_Manpower\",\"kind\":12,\"label\":\"RT_Manpower\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Manpower of type ResourceType\"},{\"id\":\"RT_Munition\",\"kind\":12,\"label\":\"RT_Munition\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Munition of type ResourceType\"},{\"id\":\"RT_Fuel\",\"kind\":12,\"label\":\"RT_Fuel\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Fuel of type ResourceType\"},{\"id\":\"RT_Action\",\"kind\":12,\"label\":\"RT_Action\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Action of type ResourceType\"},{\"id\":\"RUIITEM_Population\",\"kind\":12,\"label\":\"RUIITEM_Population\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Population of type ResourceUIItem\"},{\"id\":\"RUIITEM_ResourceBar\",\"kind\":12,\"label\":\"RUIITEM_ResourceBar\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_ResourceBar of type ResourceUIItem\"},{\"id\":\"RUIITEM_Munitions\",\"kind\":12,\"label\":\"RUIITEM_Munitions\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Munitions of type ResourceUIItem\"},{\"id\":\"RUIITEM_Manpower\",\"kind\":12,\"label\":\"RUIITEM_Manpower\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Manpower of type ResourceUIItem\"},{\"id\":\"RUIITEM_Fuel\",\"kind\":12,\"label\":\"RUIITEM_Fuel\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Fuel of type ResourceUIItem\"},{\"id\":\"ST_MARKER\",\"kind\":12,\"label\":\"ST_MARKER\",\"detail\":\"ScarType\",\"documentation\":\"ST_MARKER of type ScarType\"},{\"id\":\"ST_PBG\",\"kind\":12,\"label\":\"ST_PBG\",\"detail\":\"ScarType\",\"documentation\":\"ST_PBG of type ScarType\"},{\"id\":\"ST_SCARPOS\",\"kind\":12,\"label\":\"ST_SCARPOS\",\"detail\":\"ScarType\",\"documentation\":\"ST_SCARPOS of type ScarType\"},{\"id\":\"ST_AIPLAYER\",\"kind\":12,\"label\":\"ST_AIPLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_AIPLAYER of type ScarType\"},{\"id\":\"ST_TABLE\",\"kind\":12,\"label\":\"ST_TABLE\",\"detail\":\"ScarType\",\"documentation\":\"ST_TABLE of type ScarType\"},{\"id\":\"ST_EGROUP\",\"kind\":12,\"label\":\"ST_EGROUP\",\"detail\":\"ScarType\",\"documentation\":\"ST_EGROUP of type ScarType\"},{\"id\":\"ST_AISTATSMILITARYPOINT\",\"kind\":12,\"label\":\"ST_AISTATSMILITARYPOINT\",\"detail\":\"ScarType\",\"documentation\":\"ST_AISTATSMILITARYPOINT of type ScarType\"},{\"id\":\"ST_AISQUAD\",\"kind\":12,\"label\":\"ST_AISQUAD\",\"detail\":\"ScarType\",\"documentation\":\"ST_AISQUAD of type ScarType\"},{\"id\":\"ST_ENTITY\",\"kind\":12,\"label\":\"ST_ENTITY\",\"detail\":\"ScarType\",\"documentation\":\"ST_ENTITY of type ScarType\"},{\"id\":\"ST_NUMBER\",\"kind\":12,\"label\":\"ST_NUMBER\",\"detail\":\"ScarType\",\"documentation\":\"ST_NUMBER of type ScarType\"},{\"id\":\"ST_FUNCTION\",\"kind\":12,\"label\":\"ST_FUNCTION\",\"detail\":\"ScarType\",\"documentation\":\"ST_FUNCTION of type ScarType\"},{\"id\":\"ST_SQUAD\",\"kind\":12,\"label\":\"ST_SQUAD\",\"detail\":\"ScarType\",\"documentation\":\"ST_SQUAD of type ScarType\"},{\"id\":\"ST_PLAYER\",\"kind\":12,\"label\":\"ST_PLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_PLAYER of type ScarType\"},{\"id\":\"ST_BOOLEAN\",\"kind\":12,\"label\":\"ST_BOOLEAN\",\"detail\":\"ScarType\",\"documentation\":\"ST_BOOLEAN of type ScarType\"},{\"id\":\"ST_NIL\",\"kind\":12,\"label\":\"ST_NIL\",\"detail\":\"ScarType\",\"documentation\":\"ST_NIL of type ScarType\"},{\"id\":\"ST_CONSTPLAYER\",\"kind\":12,\"label\":\"ST_CONSTPLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_CONSTPLAYER of type ScarType\"},{\"id\":\"ST_UNKNOWN\",\"kind\":12,\"label\":\"ST_UNKNOWN\",\"detail\":\"ScarType\",\"documentation\":\"ST_UNKNOWN of type ScarType\"},{\"id\":\"ST_SGROUP\",\"kind\":12,\"label\":\"ST_SGROUP\",\"detail\":\"ScarType\",\"documentation\":\"ST_SGROUP of type ScarType\"},{\"id\":\"ST_STRING\",\"kind\":12,\"label\":\"ST_STRING\",\"detail\":\"ScarType\",\"documentation\":\"ST_STRING of type ScarType\"},{\"id\":\"ST_AICAPTUREPOINT\",\"kind\":12,\"label\":\"ST_AICAPTUREPOINT\",\"detail\":\"ScarType\",\"documentation\":\"ST_AICAPTUREPOINT of type ScarType\"},{\"id\":\"PBG_TurnPlan\",\"kind\":12,\"label\":\"PBG_TurnPlan\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_TurnPlan of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_EntityProperties\",\"kind\":12,\"label\":\"PBG_EntityProperties\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_EntityProperties of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_SquadFormation\",\"kind\":12,\"label\":\"PBG_SquadFormation\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_SquadFormation of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_SquadProperties\",\"kind\":12,\"label\":\"PBG_SquadProperties\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_SquadProperties of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_Formation\",\"kind\":12,\"label\":\"PBG_Formation\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_Formation of type SimPropertyBagGroupTypes\"},{\"id\":\"DEBUG_SELECTOR\",\"kind\":12,\"label\":\"DEBUG_SELECTOR\",\"detail\":\"SpeechDebugMode\",\"documentation\":\"DEBUG_SELECTOR of type SpeechDebugMode\"},{\"id\":\"DEBUG_COMBATZONES\",\"kind\":12,\"label\":\"DEBUG_COMBATZONES\",\"detail\":\"SpeechDebugMode\",\"documentation\":\"DEBUG_COMBATZONES of type SpeechDebugMode\"},{\"id\":\"SCMD_Attack\",\"kind\":12,\"label\":\"SCMD_Attack\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Attack of type SquadCommandType\"},{\"id\":\"SCMD_Upgrade\",\"kind\":12,\"label\":\"SCMD_Upgrade\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Upgrade of type SquadCommandType\"},{\"id\":\"SCMD_StationaryAttack\",\"kind\":12,\"label\":\"SCMD_StationaryAttack\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_StationaryAttack of type SquadCommandType\"},{\"id\":\"SCMD_SlotItemRemove\",\"kind\":12,\"label\":\"SCMD_SlotItemRemove\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SlotItemRemove of type SquadCommandType\"},{\"id\":\"SCMD_Pilfer\",\"kind\":12,\"label\":\"SCMD_Pilfer\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Pilfer of type SquadCommandType\"},{\"id\":\"SCMD_SetMoveType\",\"kind\":12,\"label\":\"SCMD_SetMoveType\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SetMoveType of type SquadCommandType\"},{\"id\":\"SCMD_Ability\",\"kind\":12,\"label\":\"SCMD_Ability\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Ability of type SquadCommandType\"},{\"id\":\"SCMD_Move\",\"kind\":12,\"label\":\"SCMD_Move\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Move of type SquadCommandType\"},{\"id\":\"SCMD_BuildStructure\",\"kind\":12,\"label\":\"SCMD_BuildStructure\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_BuildStructure of type SquadCommandType\"},{\"id\":\"SCMD_InstantLoad\",\"kind\":12,\"label\":\"SCMD_InstantLoad\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantLoad of type SquadCommandType\"},{\"id\":\"SCMD_Merge\",\"kind\":12,\"label\":\"SCMD_Merge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Merge of type SquadCommandType\"},{\"id\":\"SCMD_UnloadSquads\",\"kind\":12,\"label\":\"SCMD_UnloadSquads\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_UnloadSquads of type SquadCommandType\"},{\"id\":\"SCMD_Retreat\",\"kind\":12,\"label\":\"SCMD_Retreat\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Retreat of type SquadCommandType\"},{\"id\":\"SCMD_DefaultAction\",\"kind\":12,\"label\":\"SCMD_DefaultAction\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefaultAction of type SquadCommandType\"},{\"id\":\"SCMD_RescueCasualty\",\"kind\":12,\"label\":\"SCMD_RescueCasualty\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RescueCasualty of type SquadCommandType\"},{\"id\":\"SCMD_Stop\",\"kind\":12,\"label\":\"SCMD_Stop\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Stop of type SquadCommandType\"},{\"id\":\"SCMD_SetCamouflageStance\",\"kind\":12,\"label\":\"SCMD_SetCamouflageStance\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SetCamouflageStance of type SquadCommandType\"},{\"id\":\"SCMD_AttackMove\",\"kind\":12,\"label\":\"SCMD_AttackMove\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_AttackMove of type SquadCommandType\"},{\"id\":\"SCMD_RevertFieldSupport\",\"kind\":12,\"label\":\"SCMD_RevertFieldSupport\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RevertFieldSupport of type SquadCommandType\"},{\"id\":\"SCMD_CancelProduction\",\"kind\":12,\"label\":\"SCMD_CancelProduction\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_CancelProduction of type SquadCommandType\"},{\"id\":\"SCMD_Capture\",\"kind\":12,\"label\":\"SCMD_Capture\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Capture of type SquadCommandType\"},{\"id\":\"SCMD_Surprise\",\"kind\":12,\"label\":\"SCMD_Surprise\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Surprise of type SquadCommandType\"},{\"id\":\"SCMD_ReinforceUnit\",\"kind\":12,\"label\":\"SCMD_ReinforceUnit\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_ReinforceUnit of type SquadCommandType\"},{\"id\":\"SCMD_CaptureTeamWeapon\",\"kind\":12,\"label\":\"SCMD_CaptureTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_CaptureTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_Patrol\",\"kind\":12,\"label\":\"SCMD_Patrol\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Patrol of type SquadCommandType\"},{\"id\":\"SCMD_Face\",\"kind\":12,\"label\":\"SCMD_Face\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Face of type SquadCommandType\"},{\"id\":\"SCMD_Recrew\",\"kind\":12,\"label\":\"SCMD_Recrew\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Recrew of type SquadCommandType\"},{\"id\":\"SCMD_DoPlan\",\"kind\":12,\"label\":\"SCMD_DoPlan\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DoPlan of type SquadCommandType\"},{\"id\":\"SCMD_DefuseCharge\",\"kind\":12,\"label\":\"SCMD_DefuseCharge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefuseCharge of type SquadCommandType\"},{\"id\":\"SCMD_PickUpSlotItem\",\"kind\":12,\"label\":\"SCMD_PickUpSlotItem\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_PickUpSlotItem of type SquadCommandType\"},{\"id\":\"SCMD_BuildSquad\",\"kind\":12,\"label\":\"SCMD_BuildSquad\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_BuildSquad of type SquadCommandType\"},{\"id\":\"SCMD_InstantReinforceUnit\",\"kind\":12,\"label\":\"SCMD_InstantReinforceUnit\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantReinforceUnit of type SquadCommandType\"},{\"id\":\"SCMD_Load\",\"kind\":12,\"label\":\"SCMD_Load\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Load of type SquadCommandType\"},{\"id\":\"SCMD_InstantSetupTeamWeapon\",\"kind\":12,\"label\":\"SCMD_InstantSetupTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantSetupTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_RallyPoint\",\"kind\":12,\"label\":\"SCMD_RallyPoint\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RallyPoint of type SquadCommandType\"},{\"id\":\"SCMD_AbandonTeamWeapon\",\"kind\":12,\"label\":\"SCMD_AbandonTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_AbandonTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_Unload\",\"kind\":12,\"label\":\"SCMD_Unload\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Unload of type SquadCommandType\"},{\"id\":\"SCMD_DefuseMine\",\"kind\":12,\"label\":\"SCMD_DefuseMine\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefuseMine of type SquadCommandType\"},{\"id\":\"SCMD_Destroy\",\"kind\":12,\"label\":\"SCMD_Destroy\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Destroy of type SquadCommandType\"},{\"id\":\"SCMD_PlaceCharge\",\"kind\":12,\"label\":\"SCMD_PlaceCharge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_PlaceCharge of type SquadCommandType\"},{\"id\":\"SCMD_InstantUpgrade\",\"kind\":12,\"label\":\"SCMD_InstantUpgrade\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantUpgrade of type SquadCommandType\"},{\"id\":\"SQUADSTATEID_Capture\",\"kind\":12,\"label\":\"SQUADSTATEID_Capture\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Capture of type SquadStateID\"},{\"id\":\"SQUADSTATEID_CaptureTeamWeapon\",\"kind\":12,\"label\":\"SQUADSTATEID_CaptureTeamWeapon\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_CaptureTeamWeapon of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Move\",\"kind\":12,\"label\":\"SQUADSTATEID_Move\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Move of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Retreat\",\"kind\":12,\"label\":\"SQUADSTATEID_Retreat\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Retreat of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Plan\",\"kind\":12,\"label\":\"SQUADSTATEID_Plan\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Plan of type SquadStateID\"},{\"id\":\"SQUADSTATEID_AttackMove\",\"kind\":12,\"label\":\"SQUADSTATEID_AttackMove\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_AttackMove of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Load\",\"kind\":12,\"label\":\"SQUADSTATEID_Load\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Load of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Defuse\",\"kind\":12,\"label\":\"SQUADSTATEID_Defuse\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Defuse of type SquadStateID\"},{\"id\":\"SQUADSTATEID_DefuseMine\",\"kind\":12,\"label\":\"SQUADSTATEID_DefuseMine\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_DefuseMine of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Stop\",\"kind\":12,\"label\":\"SQUADSTATEID_Stop\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Stop of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Patrol\",\"kind\":12,\"label\":\"SQUADSTATEID_Patrol\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Patrol of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Ability\",\"kind\":12,\"label\":\"SQUADSTATEID_Ability\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Ability of type SquadStateID\"},{\"id\":\"SQUADSTATEID_CombatStance\",\"kind\":12,\"label\":\"SQUADSTATEID_CombatStance\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_CombatStance of type SquadStateID\"},{\"id\":\"SQUADSTATEID_RevertFieldSupport\",\"kind\":12,\"label\":\"SQUADSTATEID_RevertFieldSupport\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_RevertFieldSupport of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Unload\",\"kind\":12,\"label\":\"SQUADSTATEID_Unload\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Unload of type SquadStateID\"},{\"id\":\"SQUADSTATEID_HoldUnload\",\"kind\":12,\"label\":\"SQUADSTATEID_HoldUnload\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_HoldUnload of type SquadStateID\"},{\"id\":\"SQUADSTATEID_PickUpSlotItem\",\"kind\":12,\"label\":\"SQUADSTATEID_PickUpSlotItem\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_PickUpSlotItem of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Construction\",\"kind\":12,\"label\":\"SQUADSTATEID_Construction\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Construction of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Idle\",\"kind\":12,\"label\":\"SQUADSTATEID_Idle\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Idle of type SquadStateID\"},{\"id\":\"SQUADSTATEID_WeaponTransition\",\"kind\":12,\"label\":\"SQUADSTATEID_WeaponTransition\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_WeaponTransition of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Recrew\",\"kind\":12,\"label\":\"SQUADSTATEID_Recrew\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Recrew of type SquadStateID\"},{\"id\":\"SQUADSTATEID_PlaceCharges\",\"kind\":12,\"label\":\"SQUADSTATEID_PlaceCharges\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_PlaceCharges of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Combat\",\"kind\":12,\"label\":\"SQUADSTATEID_Combat\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Combat of type SquadStateID\"},{\"id\":\"UIE_UpgradeComplete\",\"kind\":12,\"label\":\"UIE_UpgradeComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_UpgradeComplete of type UIEventType\"},{\"id\":\"UIE_PlayerPingOfShameLocal\",\"kind\":12,\"label\":\"UIE_PlayerPingOfShameLocal\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerPingOfShameLocal of type UIEventType\"},{\"id\":\"UIE_EnemyReveal\",\"kind\":12,\"label\":\"UIE_EnemyReveal\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_EnemyReveal of type UIEventType\"},{\"id\":\"UIE_InfoPointActivated\",\"kind\":12,\"label\":\"UIE_InfoPointActivated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfoPointActivated of type UIEventType\"},{\"id\":\"UIE_AITakeOver\",\"kind\":12,\"label\":\"UIE_AITakeOver\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AITakeOver of type UIEventType\"},{\"id\":\"UIE_VehicleComplete\",\"kind\":12,\"label\":\"UIE_VehicleComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleComplete of type UIEventType\"},{\"id\":\"UIE_AllyAttacked\",\"kind\":12,\"label\":\"UIE_AllyAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AllyAttacked of type UIEventType\"},{\"id\":\"UIE_CommanderAbilityUnlocked\",\"kind\":12,\"label\":\"UIE_CommanderAbilityUnlocked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommanderAbilityUnlocked of type UIEventType\"},{\"id\":\"UIE_CommandersUnlocked\",\"kind\":12,\"label\":\"UIE_CommandersUnlocked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommandersUnlocked of type UIEventType\"},{\"id\":\"UIE_CommandPointGained\",\"kind\":12,\"label\":\"UIE_CommandPointGained\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommandPointGained of type UIEventType\"},{\"id\":\"UIE_SquadFreezing\",\"kind\":12,\"label\":\"UIE_SquadFreezing\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadFreezing of type UIEventType\"},{\"id\":\"UIE_SquadCold\",\"kind\":12,\"label\":\"UIE_SquadCold\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadCold of type UIEventType\"},{\"id\":\"UIE_CasualtySquadSpawned\",\"kind\":12,\"label\":\"UIE_CasualtySquadSpawned\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CasualtySquadSpawned of type UIEventType\"},{\"id\":\"UIE_SquadVeterancy\",\"kind\":12,\"label\":\"UIE_SquadVeterancy\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadVeterancy of type UIEventType\"},{\"id\":\"UIE_VehicleReplaced\",\"kind\":12,\"label\":\"UIE_VehicleReplaced\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleReplaced of type UIEventType\"},{\"id\":\"UIE_InfantryReplaced\",\"kind\":12,\"label\":\"UIE_InfantryReplaced\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryReplaced of type UIEventType\"},{\"id\":\"UIE_Sniped\",\"kind\":12,\"label\":\"UIE_Sniped\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_Sniped of type UIEventType\"},{\"id\":\"UIE_BoobyTrap\",\"kind\":12,\"label\":\"UIE_BoobyTrap\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_BoobyTrap of type UIEventType\"},{\"id\":\"UIE_MineDetected\",\"kind\":12,\"label\":\"UIE_MineDetected\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_MineDetected of type UIEventType\"},{\"id\":\"UIE_AbilityExectued\",\"kind\":12,\"label\":\"UIE_AbilityExectued\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AbilityExectued of type UIEventType\"},{\"id\":\"UIE_StrategicPointCaptured\",\"kind\":12,\"label\":\"UIE_StrategicPointCaptured\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointCaptured of type UIEventType\"},{\"id\":\"UIE_StrategicPointReverting\",\"kind\":12,\"label\":\"UIE_StrategicPointReverting\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointReverting of type UIEventType\"},{\"id\":\"UIE_EnemyTerritoryEntered\",\"kind\":12,\"label\":\"UIE_EnemyTerritoryEntered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_EnemyTerritoryEntered of type UIEventType\"},{\"id\":\"UIE_TerritoryEntered\",\"kind\":12,\"label\":\"UIE_TerritoryEntered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_TerritoryEntered of type UIEventType\"},{\"id\":\"UIE_PlayerSurrendered\",\"kind\":12,\"label\":\"UIE_PlayerSurrendered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerSurrendered of type UIEventType\"},{\"id\":\"UIE_PlayerAttacked\",\"kind\":12,\"label\":\"UIE_PlayerAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerAttacked of type UIEventType\"},{\"id\":\"UIE_VehicleAttacked\",\"kind\":12,\"label\":\"UIE_VehicleAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleAttacked of type UIEventType\"},{\"id\":\"UIE_PlayerKilled\",\"kind\":12,\"label\":\"UIE_PlayerKilled\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerKilled of type UIEventType\"},{\"id\":\"UIE_PlayerKicked\",\"kind\":12,\"label\":\"UIE_PlayerKicked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerKicked of type UIEventType\"},{\"id\":\"UIE_PlayerLagComplaint\",\"kind\":12,\"label\":\"UIE_PlayerLagComplaint\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerLagComplaint of type UIEventType\"},{\"id\":\"UIE_PlayerPingOfShame\",\"kind\":12,\"label\":\"UIE_PlayerPingOfShame\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerPingOfShame of type UIEventType\"},{\"id\":\"UIE_PlayerDropped\",\"kind\":12,\"label\":\"UIE_PlayerDropped\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerDropped of type UIEventType\"},{\"id\":\"UIE_ConstructionComplete\",\"kind\":12,\"label\":\"UIE_ConstructionComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_ConstructionComplete of type UIEventType\"},{\"id\":\"UIE_StrategicPointSecured\",\"kind\":12,\"label\":\"UIE_StrategicPointSecured\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointSecured of type UIEventType\"},{\"id\":\"UIE_ResourceDepleted\",\"kind\":12,\"label\":\"UIE_ResourceDepleted\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_ResourceDepleted of type UIEventType\"},{\"id\":\"UIE_SquadPinned\",\"kind\":12,\"label\":\"UIE_SquadPinned\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadPinned of type UIEventType\"},{\"id\":\"UIE_InfantryAttacked\",\"kind\":12,\"label\":\"UIE_InfantryAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryAttacked of type UIEventType\"},{\"id\":\"UIE_InfantryComplete\",\"kind\":12,\"label\":\"UIE_InfantryComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryComplete of type UIEventType\"},{\"id\":\"UIE_PlayerCheated\",\"kind\":12,\"label\":\"UIE_PlayerCheated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerCheated of type UIEventType\"},{\"id\":\"UIE_PhaseUp\",\"kind\":12,\"label\":\"UIE_PhaseUp\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PhaseUp of type UIEventType\"},{\"id\":\"UIE_HostMigrated\",\"kind\":12,\"label\":\"UIE_HostMigrated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_HostMigrated of type UIEventType\"},{\"id\":\"UIE_Default\",\"kind\":12,\"label\":\"UIE_Default\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_Default of type UIEventType\"},{\"id\":\"UI_Cinematic\",\"kind\":12,\"label\":\"UI_Cinematic\",\"detail\":\"UIMode\",\"documentation\":\"UI_Cinematic of type UIMode\"},{\"id\":\"UI_Fullscreen\",\"kind\":12,\"label\":\"UI_Fullscreen\",\"detail\":\"UIMode\",\"documentation\":\"UI_Fullscreen of type UIMode\"},{\"id\":\"UI_Normal\",\"kind\":12,\"label\":\"UI_Normal\",\"detail\":\"UIMode\",\"documentation\":\"UI_Normal of type UIMode\"},{\"id\":\"UOT_Player\",\"kind\":12,\"label\":\"UOT_Player\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_Player of type UpgradeOwnerType\"},{\"id\":\"UOT_Self\",\"kind\":12,\"label\":\"UOT_Self\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_Self of type UpgradeOwnerType\"},{\"id\":\"UOT_None\",\"kind\":12,\"label\":\"UOT_None\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_None of type UpgradeOwnerType\"},{\"id\":\"BIS_Icon\",\"kind\":12,\"label\":\"BIS_Icon\",\"detail\":\"ButtonIconStyle\",\"documentation\":\"BIS_Icon of type ButtonIconStyle\"},{\"id\":\"BIS_IconState\",\"kind\":12,\"label\":\"BIS_IconState\",\"detail\":\"ButtonIconStyle\",\"documentation\":\"BIS_IconState of type ButtonIconStyle\"},{\"id\":\"LAH_Justify\",\"kind\":12,\"label\":\"LAH_Justify\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Justify of type LabelAlignHorizontal\"},{\"id\":\"LAH_Left\",\"kind\":12,\"label\":\"LAH_Left\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Left of type LabelAlignHorizontal\"},{\"id\":\"LAH_Center\",\"kind\":12,\"label\":\"LAH_Center\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Center of type LabelAlignHorizontal\"},{\"id\":\"LAH_Right\",\"kind\":12,\"label\":\"LAH_Right\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Right of type LabelAlignHorizontal\"},{\"id\":\"LAV_None\",\"kind\":12,\"label\":\"LAV_None\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_None of type LabelAlignVertical\"},{\"id\":\"LAV_Top\",\"kind\":12,\"label\":\"LAV_Top\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Top of type LabelAlignVertical\"},{\"id\":\"LAV_Center\",\"kind\":12,\"label\":\"LAV_Center\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Center of type LabelAlignVertical\"},{\"id\":\"LAV_Bottom\",\"kind\":12,\"label\":\"LAV_Bottom\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Bottom of type LabelAlignVertical\"},{\"id\":\"assert\",\"kind\":2,\"label\":\"assert\",\"detail\":\"assert (v [, message])\",\"documentation\":\"Calls error if the value of its argument v is false (i.e., nil or false); otherwise, returns all its arguments. In case of error, message is the error object; when absent, it defaults to \"assertion failed!\"\"},{\"id\":\"collectgarbage\",\"kind\":2,\"label\":\"collectgarbage\",\"detail\":\"collectgarbage ([opt [, arg]])\",\"documentation\":\"This function is a generic interface to the garbage collector. It performs different functions according to its first argument, opt.n\"collect\": performs a full garbage-collection cycle. This is the default option.n\"stop\": stops automatic execution of the garbage collector. The collector will run only when explicitly invoked, until a call to restart it.n\"restart\": restarts automatic execution of the garbage collector.n\"count\": returns the total memory in use by Lua in Kbytes. The value has a fractional part, so that it multiplied by 1024 gives the exact number of bytes in use by Lua (except for overflows).n\"step\": performs a garbage-collection step. The step \"size\" is controlled by arg. With a zero value, the collector will perform one basic (indivisible) step. For non-zero values, the collector will perform as if that amount of memory (in KBytes) had been allocated by Lua. Returns true if the step finished a collection cycle.n\"setpause\": sets arg as the new value for the pause of the collector (see §2.5). Returns the previous value for pause.n\"setstepmul\": sets arg as the new value for the step multiplier of the collector (see §2.5). Returns the previous value for step.n\"isrunning\": returns a boolean that tells whether the collector is running (i.e., not stopped).\"},{\"id\":\"dofile\",\"kind\":2,\"label\":\"dofile\",\"detail\":\"dofile ([filename])\",\"documentation\":\"Opens the named file and executes its contents as a Lua chunk. When called without arguments, dofile executes the contents of the standard input (stdin). Returns all values returned by the chunk. In case of errors, dofile propagates the error to its caller (that is, dofile does not run in protected mode).\"},{\"id\":\"error\",\"kind\":2,\"label\":\"error\",\"detail\":\"error (message [, level])\",\"documentation\":\"Terminates the last protected function called and returns message as the error object. Function error never returns. nUsually, error adds some information about the error position at the beginning of the message, if the message is a string. The level argument specifies how to get the error position. With level 1 (the default), the error position is where the error function was called. Level 2 points the error to where the function that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.\"},{\"id\":\"getmetatable\",\"kind\":2,\"label\":\"getmetatable\",\"detail\":\"getmetatable (object)\",\"documentation\":\"If object does not have a metatable, returns nil. Otherwise, if the object\"s metatable has a __metatable field, returns the associated value. Otherwise, returns the metatable of the given object.\"},{\"id\":\"ipairs\",\"kind\":2,\"label\":\"ipairs\",\"detail\":\"ipairs (t)\",\"documentation\":\"Returns three values (an iterator function, the table t, and 0) so that the constructionnnfor i,v in ipairs(t) do body endnnwill iterate over the key–value pairs (1,t[1]), (2,t[2]), ..., up to the first nil value.\"},{\"id\":\"load\",\"kind\":2,\"label\":\"load\",\"detail\":\"load (chunk [, chunkname [, mode [, env]]])\",\"documentation\":\"Loads a chunk.nnIf chunk is a string, the chunk is this string. If chunk is a function, load calls it repeatedly to get the chunk pieces. Each call to chunk must return a string that concatenates with previous results. A return of an empty string, nil, or no value signals the end of the chunk.nnIf there are no syntactic errors, returns the compiled chunk as a function; otherwise, returns nil plus the error message.nnIf the resulting function has upvalues, the first upvalue is set to the value of env, if that parameter is given, or to the value of the global environment. Other upvalues are initialized with nil. (When you load a main chunk, the resulting function will always have exactly one upvalue, the _ENV variable (see §2.2). However, when you load a binary chunk created from a function (see string.dump), the resulting function can have an arbitrary number of upvalues.) All upvalues are fresh, that is, they are not shared with any other function.nnchunkname is used as the name of the chunk for error messages and debug information (see §4.9). When absent, it defaults to chunk, if chunk is a string, or to \"=(load)\" otherwise.nnThe string mode controls whether the chunk can be text or binary (that is, a precompiled chunk). It may be the string \"b\" (only binary chunks), \"t\" (only text chunks), or \"bt\" (both binary and text). The default is \"bt\".nnLua does not check the consistency of binary chunks. Maliciously crafted binary chunks can crash the interpreter.\"},{\"id\":\"loadfile\",\"kind\":2,\"label\":\"loadfile\",\"detail\":\"loadfile ([filename [, mode [, env]]])\",\"documentation\":\"Similar to load, but gets the chunk from file filename or from the standard input, if no file name is given.\"},{\"id\":\"next\",\"kind\":2,\"label\":\"next\",\"detail\":\"next (table [, index])\",\"documentation\":\"Allows a program to traverse all fields of a table. Its first argument is a table and its second argument is an index in this table. next returns the next index of the table and its associated value. When called with nil as its second argument, next returns an initial index and its associated value. When called with the last index, or with nil in an empty table, next returns nil. If the second argument is absent, then it is interpreted as nil. In particular, you can use next(t) to check whether a table is empty.nnThe order in which the indices are enumerated is not specified, even for numeric indices. (To traverse a table in numerical order, use a numerical for.)nnThe behavior of next is undefined if, during the traversal, you assign any value to a non-existent field in the table. You may however modify existing fields. In particular, you may clear existing fields.\"},{\"id\":\"pairs\",\"kind\":2,\"label\":\"pairs\",\"detail\":\"pairs (t)\",\"documentation\":\"If t has a metamethod __pairs, calls it with t as argument and returns the first three results from the call.nnOtherwise, returns three values: the next function, the table t, and nil, so that the constructionnn for k,v in pairs(t) do body endnwill iterate over all key–value pairs of table t.nnSee function next for the caveats of modifying the table during its traversal.\"},{\"id\":\"pcall\",\"kind\":2,\"label\":\"pcall\",\"detail\":\"pcall (f [, arg1, ···])\",\"documentation\":\"Calls function f with the given arguments in protected mode. This means that any error inside f is not propagated; instead, pcall catches the error and returns a status code. Its first result is the status code (a boolean), which is true if the call succeeds without errors. In such case, pcall also returns all results from the call, after this first result. In case of any error, pcall returns false plus the error message.\"},{\"id\":\"print\",\"kind\":2,\"label\":\"print\",\"detail\":\"print (···)\",\"documentation\":\"Receives any number of arguments and prints their values to stdout, using the tostring function to convert each argument to a string. print is not intended for formatted output, but only as a quick way to show a value, for instance for debugging. For complete control over the output, use string.format and io.write.\"},{\"id\":\"rawequal\",\"kind\":2,\"label\":\"rawequal\",\"detail\":\"rawequal (v1, v2)\",\"documentation\":\"Checks whether v1 is equal to v2, without invoking the __eq metamethod. Returns a boolean.\"},{\"id\":\"rawget\",\"kind\":2,\"label\":\"rawget\",\"detail\":\"rawget (table, index)\",\"documentation\":\"Gets the real value of table[index], without invoking the __index metamethod. table must be a table; index may be any value.\"},{\"id\":\"rawlen\",\"kind\":2,\"label\":\"rawlen\",\"detail\":\"rawlen (v)\",\"documentation\":\"Returns the length of the object v, which must be a table or a string, without invoking the __len metamethod. Returns an integer.\"},{\"id\":\"rawset\",\"kind\":2,\"label\":\"rawset\",\"detail\":\"rawset (table, index, value)\",\"documentation\":\"Sets the real value of table[index] to value, without invoking the __newindex metamethod. table must be a table, index any value different from nil and NaN, and value any Lua value.nThis function returns table.\"},{\"id\":\"select\",\"kind\":2,\"label\":\"select\",\"detail\":\"select (index, ···)\",\"documentation\":\"If index is a number, returns all arguments after argument number index; a negative number indexes from the end (-1 is the last argument). Otherwise, index must be the string \"#\", and select returns the total number of extra arguments it received.\"},{\"id\":\"setmetatable\",\"kind\":2,\"label\":\"setmetatable\",\"detail\":\"setmetatable (table, metatable)\",\"documentation\":\"Sets the metatable for the given table. (To change the metatable of other types from Lua code, you must use the debug library (§6.10).) If metatable is nil, removes the metatable of the given table. If the original metatable has a __metatable field, raises an error.nnThis function returns table.\"},{\"id\":\"tonumber\",\"kind\":2,\"label\":\"tonumber\",\"detail\":\"tonumber (e [, base])\",\"documentation\":\"When called with no base, tonumber tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; otherwise, it returns nil.nnThe conversion of strings can result in integers or floats, according to the lexical conventions of Lua (see §3.1). (The string may have leading and trailing spaces and a sign.)nnWhen called with base, then e must be a string to be interpreted as an integer numeral in that base. The base may be any integer between 2 and 36, inclusive. In bases above 10, the letter \"A\" (in either upper or lower case) represents 10, \"B\" represents 11, and so forth, with \"Z\" representing 35. If the string e is not a valid numeral in the given base, the function returns nil.\"},{\"id\":\"tostring\",\"kind\":2,\"label\":\"tostring\",\"detail\":\"tostring (v)\",\"documentation\":\"Receives a value of any type and converts it to a string in a human-readable format. (For complete control of how numbers are converted, use string.format.)nIf the metatable of v has a __tostring field, then tostring calls the corresponding value with v as argument, and uses the result of the call as its result.\"},{\"id\":\"type\",\"kind\":2,\"label\":\"type\",\"detail\":\"type (v)\",\"documentation\":\"Returns the type of its only argument, coded as a string. The possible results of this function are \"nil\" (a string, not the value nil), \"number\", \"string\", \"boolean\", \"table\", \"function\", \"thread\", and \"userdata\".\"},{\"id\":\"xpcall\",\"kind\":2,\"label\":\"xpcall\",\"detail\":\"xpcall (f, msgh [, arg1, ···])\",\"documentation\":\"This function is similar to pcall, except that it sets a new message handler msgh.\"},{\"id\":\"string.byte\",\"kind\":2,\"label\":\"string.byte\",\"detail\":\"string.byte (s [, i [, j]])\",\"documentation\":\"Returns the internal numeric codes of the characters s[i], s[i+1], ..., s[j]. The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function string.sub.nNumeric codes are not necessarily portable across platforms.\"},{\"id\":\"string.char\",\"kind\":2,\"label\":\"string.char\",\"detail\":\"string.char (···)\",\"documentation\":\"Receives zero or more integers. Returns a string with length equal to the number of arguments, in which each character has the internal numeric code equal to its corresponding argument.nNumeric codes are not necessarily portable across platforms.\"},{\"id\":\"string.dump\",\"kind\":2,\"label\":\"string.dump\",\"detail\":\"string.dump (function [, strip])\",\"documentation\":\"Returns a string containing a binary representation (a binary chunk) of the given function, so that a later load on this string returns a copy of the function (but with new upvalues). If strip is a true value, the binary representation may not include all debug information about the function, to save space.nnFunctions with upvalues have only their number of upvalues saved. When (re)loaded, those upvalues receive fresh instances containing nil. (You can use the debug library to serialize and reload the upvalues of a function in a way adequate to your needs.)\"},{\"id\":\"string.find\",\"kind\":2,\"label\":\"string.find\",\"detail\":\"string.find (s, pattern [, init [, plain]])\",\"documentation\":\"Looks for the first match of pattern (see §6.4.1) in the string s. If it finds a match, then find returns the indices of s where this occurrence starts and ends; otherwise, it returns nil. A third, optional numeric argument init specifies where to start the search; its default value is 1 and can be negative. A value of true as a fourth, optional argument plain turns off the pattern matching facilities, so the function does a plain \"find substring\" operation, with no characters in pattern being considered magic. Note that if plain is given, then init must be given as well.nnIf the pattern has captures, then in a successful match the captured values are also returned, after the two indices.\"},{\"id\":\"and\",\"kind\":14,\"label\":\"and\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"break\",\"kind\":14,\"label\":\"break\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"do\",\"kind\":14,\"label\":\"do\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"else\",\"kind\":14,\"label\":\"else\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"elseif\",\"kind\":14,\"label\":\"elseif\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"end\",\"kind\":14,\"label\":\"end\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"false\",\"kind\":14,\"label\":\"false\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"for\",\"kind\":14,\"label\":\"for\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"function\",\"kind\":14,\"label\":\"function\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"if\",\"kind\":14,\"label\":\"if\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"in\",\"kind\":14,\"label\":\"in\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"local\",\"kind\":14,\"label\":\"local\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"nil\",\"kind\":14,\"label\":\"nil\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"not\",\"kind\":14,\"label\":\"not\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"or\",\"kind\":14,\"label\":\"or\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"repeat\",\"kind\":14,\"label\":\"repeat\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"return\",\"kind\":14,\"label\":\"return\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"then\",\"kind\":14,\"label\":\"then\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"true\",\"kind\":14,\"label\":\"true\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"until\",\"kind\":14,\"label\":\"until\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"while\",\"kind\":14,\"label\":\"while\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"math.huge\",\"kind\":12,\"label\":\"math.huge\",\"detail\":\"The float value HUGE_VAL, a value larger than any other numeric value.\",\"documentation\":\"The float value HUGE_VAL, a value larger than any other numeric value.\"},{\"id\":\"math.maxinteger\",\"kind\":12,\"label\":\"math.maxinteger\",\"detail\":\"An integer with the maximum value for an integer.\",\"documentation\":\"An integer with the maximum value for an integer.\"},{\"id\":\"math.mininteger\",\"kind\":12,\"label\":\"math.mininteger\",\"detail\":\"An integer with the minimum value for an integer.\",\"documentation\":\"An integer with the minimum value for an integer.\"},{\"id\":\"math.pi\",\"kind\":12,\"label\":\"math.pi\",\"detail\":\"The value of π.\",\"documentation\":\"The value of π.\"},{\"id\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"documentation\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"detail\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\"},{\"id\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"documentation\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"detail\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\"},{\"id\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"documentation\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"detail\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.LEFT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\"},{\"id\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"documentation\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"detail\":\"EBP.WRECKED_VEHICLES.PROPELLER\"},{\"id\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\"},{\"id\":\"EBP.WRECKED_VEHICLES.TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"documentation\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"detail\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\"},{\"id\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"documentation\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"detail\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\"},{\"id\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"documentation\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"detail\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\"},{\"id\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"documentation\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"detail\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\"},{\"id\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"documentation\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"detail\":\"EBP.AEF.AEF_ATTACK_PLANE\"},{\"id\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.AEF.AEF_BARRACKS\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BARRACKS\",\"documentation\":\"EBP.AEF.AEF_BARRACKS\",\"detail\":\"EBP.AEF.AEF_BARRACKS\"},{\"id\":\"EBP.AEF.AEF_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BASE_STAMPER\",\"documentation\":\"EBP.AEF.AEF_BASE_STAMPER\",\"detail\":\"EBP.AEF.AEF_BASE_STAMPER\"},{\"id\":\"EBP.AEF.AEF_GARRISON\",\"kind\":17,\"label\":\"EBP.AEF.AEF_GARRISON\",\"documentation\":\"EBP.AEF.AEF_GARRISON\",\"detail\":\"EBP.AEF.AEF_GARRISON\"},{\"id\":\"EBP.AEF.AEF_MG_NEST\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST\",\"documentation\":\"EBP.AEF.AEF_MG_NEST\",\"detail\":\"EBP.AEF.AEF_MG_NEST\"},{\"id\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"documentation\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"detail\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\"},{\"id\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"documentation\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"detail\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\"},{\"id\":\"EBP.AEF.AEF_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MINE_MP\",\"documentation\":\"EBP.AEF.AEF_MINE_MP\",\"detail\":\"EBP.AEF.AEF_MINE_MP\"},{\"id\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"documentation\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"detail\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\"},{\"id\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"documentation\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"detail\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\"},{\"id\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"documentation\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"detail\":\"EBP.AEF.AEF_SANDBAG_FENCE\"},{\"id\":\"EBP.AEF.AEF_SANDBAGS\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGS\",\"documentation\":\"EBP.AEF.AEF_SANDBAGS\",\"detail\":\"EBP.AEF.AEF_SANDBAGS\"},{\"id\":\"EBP.AEF.AEF_SANDBAGWALL\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGWALL\",\"documentation\":\"EBP.AEF.AEF_SANDBAGWALL\",\"detail\":\"EBP.AEF.AEF_SANDBAGWALL\"},{\"id\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"documentation\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"detail\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\"},{\"id\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"kind\":17,\"label\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"documentation\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"detail\":\"EBP.AEF.AEF_STORAGEBUNKER\"},{\"id\":\"EBP.AEF.AEF_SUPPLYTENT\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SUPPLYTENT\",\"documentation\":\"EBP.AEF.AEF_SUPPLYTENT\",\"detail\":\"EBP.AEF.AEF_SUPPLYTENT\"},{\"id\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"documentation\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"detail\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\"},{\"id\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"documentation\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"detail\":\"EBP.AEF.AEF_TANK_TRAP_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"kind\":17,\"label\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"documentation\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"detail\":\"EBP.AEF.AIRBORNE_BEACON_MP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_MP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_SP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"documentation\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"detail\":\"EBP.AEF.ASSAULT_ENGINEER_MP\"},{\"id\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"documentation\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"detail\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\"},{\"id\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.CAPTAIN_MP\",\"kind\":17,\"label\":\"EBP.AEF.CAPTAIN_MP\",\"documentation\":\"EBP.AEF.CAPTAIN_MP\",\"detail\":\"EBP.AEF.CAPTAIN_MP\"},{\"id\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"documentation\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"detail\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_50CAL_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"documentation\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"detail\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\"},{\"id\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"documentation\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"detail\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\"},{\"id\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"documentation\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"detail\":\"EBP.AEF.FIGHTING_POSITION_MP\"},{\"id\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"kind\":17,\"label\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"documentation\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"detail\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\"},{\"id\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"documentation\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"detail\":\"EBP.AEF.INVISI_HEAL_STATION_MP\"},{\"id\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"documentation\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"detail\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\"},{\"id\":\"EBP.AEF.JACKSON\",\"kind\":17,\"label\":\"EBP.AEF.JACKSON\",\"documentation\":\"EBP.AEF.JACKSON\",\"detail\":\"EBP.AEF.JACKSON\"},{\"id\":\"EBP.AEF.LIEUTENANT_MP\",\"kind\":17,\"label\":\"EBP.AEF.LIEUTENANT_MP\",\"documentation\":\"EBP.AEF.LIEUTENANT_MP\",\"detail\":\"EBP.AEF.LIEUTENANT_MP\"},{\"id\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"documentation\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"detail\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\"},{\"id\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"documentation\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"detail\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\"},{\"id\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"documentation\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"detail\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\"},{\"id\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"documentation\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"detail\":\"EBP.AEF.M1_81MM_MORTAR_MP\"},{\"id\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"documentation\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"detail\":\"EBP.AEF.M10_TANK_DESTROYER_MP\"},{\"id\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"documentation\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"detail\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\"},{\"id\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"documentation\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"detail\":\"EBP.AEF.M2_60MM_MORTAR_MP\"},{\"id\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"documentation\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"detail\":\"EBP.AEF.M20_M6_AT_MINE_MP\"},{\"id\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"documentation\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"detail\":\"EBP.AEF.M20_UTILITY_CAR_MP\"},{\"id\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M26_PERSHING_MP\",\"kind\":17,\"label\":\"EBP.AEF.M26_PERSHING_MP\",\"documentation\":\"EBP.AEF.M26_PERSHING_MP\",\"detail\":\"EBP.AEF.M26_PERSHING_MP\"},{\"id\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"documentation\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"detail\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\"},{\"id\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"documentation\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"detail\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\"},{\"id\":\"EBP.AEF.M3_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M3_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M3_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M3_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"documentation\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"detail\":\"EBP.AEF.M36_TANK_DESTROYER_MP\"},{\"id\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"documentation\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"detail\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_MP\"},{\"id\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"documentation\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"detail\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\"},{\"id\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"kind\":17,\"label\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"documentation\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"detail\":\"EBP.AEF.M5_HALFTRACK_USF_MP\"},{\"id\":\"EBP.AEF.M5A1_STUART_MP\",\"kind\":17,\"label\":\"EBP.AEF.M5A1_STUART_MP\",\"documentation\":\"EBP.AEF.M5A1_STUART_MP\",\"detail\":\"EBP.AEF.M5A1_STUART_MP\"},{\"id\":\"EBP.AEF.M7B1_PRIEST_MP\",\"kind\":17,\"label\":\"EBP.AEF.M7B1_PRIEST_MP\",\"documentation\":\"EBP.AEF.M7B1_PRIEST_MP\",\"detail\":\"EBP.AEF.M7B1_PRIEST_MP\"},{\"id\":\"EBP.AEF.M8_GREYHOUND_MP\",\"kind\":17,\"label\":\"EBP.AEF.M8_GREYHOUND_MP\",\"documentation\":\"EBP.AEF.M8_GREYHOUND_MP\",\"detail\":\"EBP.AEF.M8_GREYHOUND_MP\"},{\"id\":\"EBP.AEF.M8A1_HMC_MP\",\"kind\":17,\"label\":\"EBP.AEF.M8A1_HMC_MP\",\"documentation\":\"EBP.AEF.M8A1_HMC_MP\",\"detail\":\"EBP.AEF.M8A1_HMC_MP\"},{\"id\":\"EBP.AEF.MAJOR_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_MP\",\"documentation\":\"EBP.AEF.MAJOR_MP\",\"detail\":\"EBP.AEF.MAJOR_MP\"},{\"id\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"documentation\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"detail\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\"},{\"id\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"documentation\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"detail\":\"EBP.AEF.MAJOR_UNLOCK_MP\"},{\"id\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"kind\":17,\"label\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"documentation\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"detail\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\"},{\"id\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"kind\":17,\"label\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"documentation\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"detail\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\"},{\"id\":\"EBP.AEF.P47_RECON\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON\",\"documentation\":\"EBP.AEF.P47_RECON\",\"detail\":\"EBP.AEF.P47_RECON\"},{\"id\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"documentation\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"detail\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\"},{\"id\":\"EBP.AEF.P47_RECON_TRACKING\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON_TRACKING\",\"documentation\":\"EBP.AEF.P47_RECON_TRACKING\",\"detail\":\"EBP.AEF.P47_RECON_TRACKING\"},{\"id\":\"EBP.AEF.P47_ROCKETS\",\"kind\":17,\"label\":\"EBP.AEF.P47_ROCKETS\",\"documentation\":\"EBP.AEF.P47_ROCKETS\",\"detail\":\"EBP.AEF.P47_ROCKETS\"},{\"id\":\"EBP.AEF.P47_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.P47_STRAFE\",\"documentation\":\"EBP.AEF.P47_STRAFE\",\"detail\":\"EBP.AEF.P47_STRAFE\"},{\"id\":\"EBP.AEF.PARATROOPER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPER_MP\",\"documentation\":\"EBP.AEF.PARATROOPER_MP\",\"detail\":\"EBP.AEF.PARATROOPER_MP\"},{\"id\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"documentation\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"detail\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\"},{\"id\":\"EBP.AEF.PATHFINDER_IR_MP\",\"kind\":17,\"label\":\"EBP.AEF.PATHFINDER_IR_MP\",\"documentation\":\"EBP.AEF.PATHFINDER_IR_MP\",\"detail\":\"EBP.AEF.PATHFINDER_IR_MP\"},{\"id\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"kind\":17,\"label\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"documentation\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"detail\":\"EBP.AEF.PATHFINDER_RECON_MP\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\"},{\"id\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"documentation\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"detail\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\"},{\"id\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"documentation\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"detail\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\"},{\"id\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"documentation\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"detail\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\"},{\"id\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"kind\":17,\"label\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"documentation\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"detail\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\"},{\"id\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"kind\":17,\"label\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"documentation\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"detail\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\"},{\"id\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"kind\":17,\"label\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"documentation\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"detail\":\"EBP.AEF.PM_ATTACHED_MEDIC\"},{\"id\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"kind\":17,\"label\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"documentation\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"detail\":\"EBP.AEF.PM_ATTACHED_SEARGENT\"},{\"id\":\"EBP.AEF.PM_P47_FLYBY\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_FLYBY\",\"documentation\":\"EBP.AEF.PM_P47_FLYBY\",\"detail\":\"EBP.AEF.PM_P47_FLYBY\"},{\"id\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"documentation\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"detail\":\"EBP.AEF.PM_P47_MG_STRAFE\"},{\"id\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"documentation\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"detail\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\"},{\"id\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"documentation\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"detail\":\"EBP.AEF.RANGER_COMMANDER_MP\"},{\"id\":\"EBP.AEF.RANGER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RANGER_MP\",\"documentation\":\"EBP.AEF.RANGER_MP\",\"detail\":\"EBP.AEF.RANGER_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_SP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\"},{\"id\":\"EBP.AEF.T34_CALLIOPE_MP\",\"kind\":17,\"label\":\"EBP.AEF.T34_CALLIOPE_MP\",\"documentation\":\"EBP.AEF.T34_CALLIOPE_MP\",\"detail\":\"EBP.AEF.T34_CALLIOPE_MP\"},{\"id\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"kind\":17,\"label\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"documentation\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"detail\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\"},{\"id\":\"EBP.AEF.USF_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.AEF.USF_MEDIC_MP\",\"documentation\":\"EBP.AEF.USF_MEDIC_MP\",\"detail\":\"EBP.AEF.USF_MEDIC_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\"},{\"id\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"kind\":17,\"label\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"documentation\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"detail\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\"},{\"id\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"kind\":17,\"label\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"documentation\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"detail\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\"},{\"id\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"documentation\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"detail\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\"},{\"id\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"documentation\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"detail\":\"SBP.AEF.CAPTAIN_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\"},{\"id\":\"SBP.AEF.JACKSON_SQUAD\",\"kind\":17,\"label\":\"SBP.AEF.JACKSON_SQUAD\",\"documentation\":\"SBP.AEF.JACKSON_SQUAD\",\"detail\":\"SBP.AEF.JACKSON_SQUAD\"},{\"id\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"documentation\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"detail\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"kind\":17,\"label\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"documentation\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"detail\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\"},{\"id\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"detail\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\"},{\"id\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"detail\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M26_PERSHING_MP\",\"kind\":17,\"label\":\"SBP.AEF.M26_PERSHING_MP\",\"documentation\":\"SBP.AEF.M26_PERSHING_MP\",\"detail\":\"SBP.AEF.M26_PERSHING_MP\"},{\"id\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"detail\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\"},{\"id\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"documentation\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"detail\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\"},{\"id\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"documentation\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"detail\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\"},{\"id\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\"},{\"id\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"documentation\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"detail\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\"},{\"id\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"documentation\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"detail\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\"},{\"id\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"documentation\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"detail\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\"},{\"id\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"documentation\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"detail\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\"},{\"id\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"documentation\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"detail\":\"SBP.AEF.MAJOR_SQUAD_MP\"},{\"id\":\"SBP.AEF.P47_FLYBY\",\"kind\":17,\"label\":\"SBP.AEF.P47_FLYBY\",\"documentation\":\"SBP.AEF.P47_FLYBY\",\"detail\":\"SBP.AEF.P47_FLYBY\"},{\"id\":\"SBP.AEF.P47_MG_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.P47_MG_STRAFE\",\"documentation\":\"SBP.AEF.P47_MG_STRAFE\",\"detail\":\"SBP.AEF.P47_MG_STRAFE\"},{\"id\":\"SBP.AEF.P47_RECON\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON\",\"documentation\":\"SBP.AEF.P47_RECON\",\"detail\":\"SBP.AEF.P47_RECON\"},{\"id\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"documentation\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"detail\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\"},{\"id\":\"SBP.AEF.P47_RECON_TRACKING\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON_TRACKING\",\"documentation\":\"SBP.AEF.P47_RECON_TRACKING\",\"detail\":\"SBP.AEF.P47_RECON_TRACKING\"},{\"id\":\"SBP.AEF.P47_ROCKETS\",\"kind\":17,\"label\":\"SBP.AEF.P47_ROCKETS\",\"documentation\":\"SBP.AEF.P47_ROCKETS\",\"detail\":\"SBP.AEF.P47_ROCKETS\"},{\"id\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"documentation\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"detail\":\"SBP.AEF.P47_ROCKETS_STRAFE\"},{\"id\":\"SBP.AEF.P47_STRAFES\",\"kind\":17,\"label\":\"SBP.AEF.P47_STRAFES\",\"documentation\":\"SBP.AEF.P47_STRAFES\",\"detail\":\"SBP.AEF.P47_STRAFES\"},{\"id\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"detail\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\"},{\"id\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"detail\":\"SBP.AEF.PARATROOPER_SQUAD_MP\"},{\"id\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"detail\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\"},{\"id\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"documentation\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"detail\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\"},{\"id\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"documentation\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"detail\":\"SBP.AEF.PATHFINDER_SQUAD_MP\"},{\"id\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"kind\":17,\"label\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"documentation\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"detail\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\"},{\"id\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"kind\":17,\"label\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"documentation\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"detail\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\"},{\"id\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"kind\":17,\"label\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"documentation\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"detail\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\"},{\"id\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.AEF.RANGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.RANGER_SQUAD_MP\",\"documentation\":\"SBP.AEF.RANGER_SQUAD_MP\",\"detail\":\"SBP.AEF.RANGER_SQUAD_MP\"},{\"id\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"documentation\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"detail\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\"},{\"id\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"documentation\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"detail\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\"},{\"id\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"kind\":17,\"label\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"documentation\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"detail\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\"},{\"id\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"documentation\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"detail\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\"},{\"id\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"documentation\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"detail\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\"},{\"id\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"documentation\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"detail\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\"},{\"id\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"documentation\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"detail\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\"},{\"id\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"documentation\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"detail\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\"},{\"id\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\"},{\"id\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"kind\":17,\"label\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"documentation\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"detail\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\"},{\"id\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"kind\":17,\"label\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"documentation\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"detail\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\"},{\"id\":\"ABILITY.AEF.ARTILLERY_155MM\",\"kind\":17,\"label\":\"ABILITY.AEF.ARTILLERY_155MM\",\"documentation\":\"ABILITY.AEF.ARTILLERY_155MM\",\"detail\":\"ABILITY.AEF.ARTILLERY_155MM\"},{\"id\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"detail\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"documentation\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"detail\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\"},{\"id\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"documentation\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"detail\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\"},{\"id\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"documentation\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"detail\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\"},{\"id\":\"ABILITY.AEF.BEACON_DISABLE\",\"kind\":17,\"label\":\"ABILITY.AEF.BEACON_DISABLE\",\"documentation\":\"ABILITY.AEF.BEACON_DISABLE\",\"detail\":\"ABILITY.AEF.BEACON_DISABLE\"},{\"id\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"kind\":17,\"label\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"documentation\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"detail\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\"},{\"id\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"kind\":17,\"label\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"documentation\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"detail\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\"},{\"id\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"detail\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.COMBINED_ARMS\",\"kind\":17,\"label\":\"ABILITY.AEF.COMBINED_ARMS\",\"documentation\":\"ABILITY.AEF.COMBINED_ARMS\",\"detail\":\"ABILITY.AEF.COMBINED_ARMS\"},{\"id\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"documentation\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"detail\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\"},{\"id\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"kind\":17,\"label\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"documentation\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"detail\":\"ABILITY.AEF.ELITE_RIFLEMEN\"},{\"id\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"kind\":17,\"label\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"documentation\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"detail\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\"},{\"id\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"documentation\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"detail\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\"},{\"id\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"documentation\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"detail\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\"},{\"id\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"documentation\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"detail\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\"},{\"id\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"documentation\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"detail\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\"},{\"id\":\"ABILITY.AEF.FLANKING_SPEED\",\"kind\":17,\"label\":\"ABILITY.AEF.FLANKING_SPEED\",\"documentation\":\"ABILITY.AEF.FLANKING_SPEED\",\"detail\":\"ABILITY.AEF.FLANKING_SPEED\"},{\"id\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"kind\":17,\"label\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"documentation\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"detail\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\"},{\"id\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"kind\":17,\"label\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"documentation\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"detail\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\"},{\"id\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"documentation\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"detail\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\"},{\"id\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"documentation\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"detail\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"documentation\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"detail\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\"},{\"id\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"documentation\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"detail\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\"},{\"id\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"documentation\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"detail\":\"ABILITY.AEF.M10_APCPC_SHELLS\"},{\"id\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"documentation\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"detail\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\"},{\"id\":\"ABILITY.AEF.M10_DEPLOY\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_DEPLOY\",\"documentation\":\"ABILITY.AEF.M10_DEPLOY\",\"detail\":\"ABILITY.AEF.M10_DEPLOY\"},{\"id\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"documentation\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"detail\":\"ABILITY.AEF.M15A1_AA_MODE_MP\"},{\"id\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"documentation\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"detail\":\"ABILITY.AEF.M20_MARK_VEHICLE\"},{\"id\":\"ABILITY.AEF.M20_SMOKE\",\"kind\":17,\"label\":\"ABILITY.AEF.M20_SMOKE\",\"documentation\":\"ABILITY.AEF.M20_SMOKE\",\"detail\":\"ABILITY.AEF.M20_SMOKE\"},{\"id\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"detail\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"documentation\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"detail\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\"},{\"id\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"documentation\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"detail\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\"},{\"id\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"documentation\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"detail\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\"},{\"id\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"documentation\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"detail\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\"},{\"id\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"kind\":17,\"label\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"documentation\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"detail\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\"},{\"id\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"documentation\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"detail\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\"},{\"id\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"documentation\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"detail\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\"},{\"id\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"documentation\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"detail\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\"},{\"id\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"documentation\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"detail\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"kind\":17,\"label\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"documentation\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"detail\":\"ABILITY.AEF.M8_CANISTER_SHOT\"},{\"id\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"kind\":17,\"label\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"documentation\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"detail\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"documentation\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"detail\":\"ABILITY.AEF.MAJOR_ARTILLERY\"},{\"id\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"documentation\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"detail\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\"},{\"id\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"documentation\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"detail\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\"},{\"id\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"documentation\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"detail\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\"},{\"id\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"kind\":17,\"label\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"documentation\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"detail\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\"},{\"id\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"detail\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"documentation\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"detail\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\"},{\"id\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"kind\":17,\"label\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"documentation\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"detail\":\"ABILITY.AEF.OUT_OF_FUEL_SP\"},{\"id\":\"ABILITY.AEF.P47_RECON_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.P47_RECON_MP\",\"documentation\":\"ABILITY.AEF.P47_RECON_MP\",\"detail\":\"ABILITY.AEF.P47_RECON_MP\"},{\"id\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"documentation\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"detail\":\"ABILITY.AEF.P47_ROCKET_ATTACK\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"kind\":17,\"label\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"documentation\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"detail\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\"},{\"id\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"kind\":17,\"label\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"documentation\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"detail\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\"},{\"id\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"documentation\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"detail\":\"ABILITY.AEF.PARATROOPERS_PARADROP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"documentation\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"detail\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\"},{\"id\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"documentation\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"detail\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"documentation\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"detail\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\"},{\"id\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"documentation\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"detail\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\"},{\"id\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"documentation\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"detail\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\"},{\"id\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"documentation\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"detail\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\"},{\"id\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"documentation\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"detail\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\"},{\"id\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"documentation\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"detail\":\"ABILITY.AEF.PRIEST_DISPATCH\"},{\"id\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"detail\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"detail\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"documentation\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"detail\":\"ABILITY.AEF.RANGER_SPRINT_MP\"},{\"id\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"documentation\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"detail\":\"ABILITY.AEF.RANGERS_DISPATCH\"},{\"id\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.RECON_SWEEP\",\"kind\":17,\"label\":\"ABILITY.AEF.RECON_SWEEP\",\"documentation\":\"ABILITY.AEF.RECON_SWEEP\",\"detail\":\"ABILITY.AEF.RECON_SWEEP\"},{\"id\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"kind\":17,\"label\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"documentation\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"detail\":\"ABILITY.AEF.REFUEL_TANK_SP\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"detail\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"detail\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"detail\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"detail\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"detail\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"detail\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FLARES\"},{\"id\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\"},{\"id\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\"},{\"id\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\"},{\"id\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"documentation\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"detail\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\"},{\"id\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"documentation\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"detail\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\"},{\"id\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"documentation\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"detail\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\"},{\"id\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"documentation\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"detail\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\"},{\"id\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.AEF.SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"kind\":17,\"label\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"documentation\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"detail\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\"},{\"id\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"documentation\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"detail\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\"},{\"id\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"detail\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"documentation\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"detail\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\"},{\"id\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"documentation\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"detail\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\"},{\"id\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"documentation\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"detail\":\"ABILITY.AEF.USF_STRAFING_RUN\"},{\"id\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"documentation\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"detail\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"documentation\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"detail\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\"},{\"id\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"kind\":17,\"label\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"documentation\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"detail\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\"},{\"id\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"documentation\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"detail\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\"},{\"id\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"documentation\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"detail\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\"},{\"id\":\"UPG.AEF.ARTILLERY_155MM\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_155MM\",\"documentation\":\"UPG.AEF.ARTILLERY_155MM\",\"detail\":\"UPG.AEF.ARTILLERY_155MM\"},{\"id\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"documentation\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"detail\":\"UPG.AEF.ARTILLERY_155MM_BLIND\"},{\"id\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"documentation\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"detail\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\"},{\"id\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"documentation\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"detail\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\"},{\"id\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"documentation\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"detail\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\"},{\"id\":\"UPG.AEF.BAR_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.BAR_UPGRADE_MP\",\"documentation\":\"UPG.AEF.BAR_UPGRADE_MP\",\"detail\":\"UPG.AEF.BAR_UPGRADE_MP\"},{\"id\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"documentation\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"detail\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\"},{\"id\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"documentation\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"detail\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\"},{\"id\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.COMBINED_ARMS_MP\",\"kind\":17,\"label\":\"UPG.AEF.COMBINED_ARMS_MP\",\"documentation\":\"UPG.AEF.COMBINED_ARMS_MP\",\"detail\":\"UPG.AEF.COMBINED_ARMS_MP\"},{\"id\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"documentation\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"detail\":\"UPG.AEF.DODGE_WC51_DISPATCH\"},{\"id\":\"UPG.AEF.ELITE_RIFLEMEN\",\"kind\":17,\"label\":\"UPG.AEF.ELITE_RIFLEMEN\",\"documentation\":\"UPG.AEF.ELITE_RIFLEMEN\",\"detail\":\"UPG.AEF.ELITE_RIFLEMEN\"},{\"id\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"kind\":17,\"label\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"documentation\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"detail\":\"UPG.AEF.ELITE_VEHICLE_CREWS\"},{\"id\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"kind\":17,\"label\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"documentation\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"detail\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\"},{\"id\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"kind\":17,\"label\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"documentation\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"detail\":\"UPG.AEF.FIRE_UP_RIFLEMEN\"},{\"id\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"kind\":17,\"label\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"documentation\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"detail\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\"},{\"id\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"documentation\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"detail\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\"},{\"id\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.M10_DEPLOY\",\"kind\":17,\"label\":\"UPG.AEF.M10_DEPLOY\",\"documentation\":\"UPG.AEF.M10_DEPLOY\",\"detail\":\"UPG.AEF.M10_DEPLOY\"},{\"id\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"detail\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"detail\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"documentation\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"detail\":\"UPG.AEF.M26_PERSHING_DISPATCH\"},{\"id\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"kind\":17,\"label\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"documentation\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"detail\":\"UPG.AEF.M3_HALFTRACK_GROUP\"},{\"id\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"documentation\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"detail\":\"UPG.AEF.M3_REPAIR_STATION_MP\"},{\"id\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"detail\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"detail\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"documentation\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"detail\":\"UPG.AEF.M8_TOP_GUNNER_MP\"},{\"id\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"kind\":17,\"label\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"documentation\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"detail\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\"},{\"id\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"documentation\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"detail\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\"},{\"id\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"kind\":17,\"label\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"documentation\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"detail\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\"},{\"id\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"documentation\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"detail\":\"UPG.AEF.OFF_SMOKE_BARRAGE\"},{\"id\":\"UPG.AEF.P47_RECON\",\"kind\":17,\"label\":\"UPG.AEF.P47_RECON\",\"documentation\":\"UPG.AEF.P47_RECON\",\"detail\":\"UPG.AEF.P47_RECON\"},{\"id\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"documentation\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"detail\":\"UPG.AEF.P47_ROCKET_ATTACK\"},{\"id\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"kind\":17,\"label\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"documentation\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"detail\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\"},{\"id\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"kind\":17,\"label\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"documentation\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"detail\":\"UPG.AEF.PARADROP_MACHINE_GUN\"},{\"id\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"kind\":17,\"label\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"documentation\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"detail\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\"},{\"id\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"documentation\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"detail\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\"},{\"id\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.PARATROOPERS\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPERS\",\"documentation\":\"UPG.AEF.PARATROOPERS\",\"detail\":\"UPG.AEF.PARATROOPERS\"},{\"id\":\"UPG.AEF.PATHFINDERS\",\"kind\":17,\"label\":\"UPG.AEF.PATHFINDERS\",\"documentation\":\"UPG.AEF.PATHFINDERS\",\"detail\":\"UPG.AEF.PATHFINDERS\"},{\"id\":\"UPG.AEF.PATHFINDERS_RECON\",\"kind\":17,\"label\":\"UPG.AEF.PATHFINDERS_RECON\",\"documentation\":\"UPG.AEF.PATHFINDERS_RECON\",\"detail\":\"UPG.AEF.PATHFINDERS_RECON\"},{\"id\":\"UPG.AEF.PRIEST_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.PRIEST_DISPATCH\",\"documentation\":\"UPG.AEF.PRIEST_DISPATCH\",\"detail\":\"UPG.AEF.PRIEST_DISPATCH\"},{\"id\":\"UPG.AEF.RANGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.RANGER_DISPATCH\",\"documentation\":\"UPG.AEF.RANGER_DISPATCH\",\"detail\":\"UPG.AEF.RANGER_DISPATCH\"},{\"id\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"kind\":17,\"label\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"documentation\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"detail\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\"},{\"id\":\"UPG.AEF.RECON_SWEEP\",\"kind\":17,\"label\":\"UPG.AEF.RECON_SWEEP\",\"documentation\":\"UPG.AEF.RECON_SWEEP\",\"detail\":\"UPG.AEF.RECON_SWEEP\"},{\"id\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"documentation\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"detail\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\"},{\"id\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"documentation\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"detail\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\"},{\"id\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"documentation\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"detail\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"detail\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"detail\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLARES\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLARES\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLARES\",\"detail\":\"UPG.AEF.RIFLEMEN_FLARES\"},{\"id\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"documentation\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"detail\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\"},{\"id\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"documentation\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"detail\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\"},{\"id\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"documentation\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"detail\":\"UPG.AEF.SHERMAN_HE_ROUNDS\"},{\"id\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"documentation\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"detail\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\"},{\"id\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"kind\":17,\"label\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"documentation\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"detail\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\"},{\"id\":\"UPG.AEF.SMOKE_BARRAGE\",\"kind\":17,\"label\":\"UPG.AEF.SMOKE_BARRAGE\",\"documentation\":\"UPG.AEF.SMOKE_BARRAGE\",\"detail\":\"UPG.AEF.SMOKE_BARRAGE\"},{\"id\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"documentation\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"detail\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\"},{\"id\":\"UPG.AEF.TECH_TREE_V1\",\"kind\":17,\"label\":\"UPG.AEF.TECH_TREE_V1\",\"documentation\":\"UPG.AEF.TECH_TREE_V1\",\"detail\":\"UPG.AEF.TECH_TREE_V1\"},{\"id\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"kind\":17,\"label\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"documentation\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"detail\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\"},{\"id\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"detail\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"kind\":17,\"label\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"documentation\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"detail\":\"UPG.AEF.TOP_GUNNER_UPGRADED\"},{\"id\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"documentation\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"detail\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\"},{\"id\":\"UPG.AEF.USF_STRAFING_RUN\",\"kind\":17,\"label\":\"UPG.AEF.USF_STRAFING_RUN\",\"documentation\":\"UPG.AEF.USF_STRAFING_RUN\",\"detail\":\"UPG.AEF.USF_STRAFING_RUN\"},{\"id\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"documentation\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"detail\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\"},{\"id\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"kind\":17,\"label\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"documentation\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"detail\":\"UPG.AEF.WITHDRAW_AND_REFIT\"},{\"id\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"documentation\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"detail\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\"},{\"id\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"documentation\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"detail\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\"},{\"id\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"documentation\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"detail\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\"},{\"id\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"detail\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"documentation\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"detail\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\"},{\"id\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"documentation\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"detail\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\"},{\"id\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"detail\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"detail\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\"},{\"id\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"documentation\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"detail\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\"},{\"id\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"detail\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"detail\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"detail\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"detail\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MINE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MINE_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MINE_MP\",\"detail\":\"EBP.BRITISH.BRIT_MINE_MP\"},{\"id\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"documentation\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"detail\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\"},{\"id\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"documentation\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"detail\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\"},{\"id\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"documentation\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"detail\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\"},{\"id\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"documentation\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"detail\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"documentation\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"detail\":\"EBP.BRITISH.BRITISH_HMG_PLANE\"},{\"id\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"detail\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"documentation\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"detail\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\"},{\"id\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"detail\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\"},{\"id\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"documentation\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"detail\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\"},{\"id\":\"EBP.BRITISH.COMET_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMET_MP\",\"documentation\":\"EBP.BRITISH.COMET_MP\",\"detail\":\"EBP.BRITISH.COMET_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_PIAT_MP\"},{\"id\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"documentation\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"detail\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\"},{\"id\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"documentation\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"detail\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\"},{\"id\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"documentation\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"detail\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\"},{\"id\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"kind\":17,\"label\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"documentation\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"detail\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\"},{\"id\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"kind\":17,\"label\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"documentation\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"detail\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\"},{\"id\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"documentation\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"detail\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\"},{\"id\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"kind\":17,\"label\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"documentation\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"detail\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\"},{\"id\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"documentation\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"detail\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\"},{\"id\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"documentation\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"detail\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\"},{\"id\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"documentation\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"detail\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\"},{\"id\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"documentation\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"detail\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\"},{\"id\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"documentation\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"detail\":\"EBP.BRITISH.REPAIR_SAPPER_MP\"},{\"id\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.SAPPER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SAPPER_MP\",\"documentation\":\"EBP.BRITISH.SAPPER_MP\",\"detail\":\"EBP.BRITISH.SAPPER_MP\"},{\"id\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"documentation\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"detail\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\"},{\"id\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"documentation\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"detail\":\"EBP.BRITISH.SEXTON_SPG_MP\"},{\"id\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"documentation\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"detail\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\"},{\"id\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"documentation\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"detail\":\"EBP.BRITISH.SLIT_TRENCH_MP\"},{\"id\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"documentation\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"detail\":\"EBP.BRITISH.SNIPER_BRITISH_MP\"},{\"id\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"kind\":17,\"label\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"documentation\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"detail\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\"},{\"id\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.TOMMY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.TOMMY_MP\",\"documentation\":\"EBP.BRITISH.TOMMY_MP\",\"detail\":\"EBP.BRITISH.TOMMY_MP\"},{\"id\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"documentation\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"detail\":\"EBP.BRITISH.TOMMY_RECON_MP\"},{\"id\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"documentation\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"detail\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\"},{\"id\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"documentation\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"detail\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\"},{\"id\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"kind\":17,\"label\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"documentation\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"detail\":\"EBP.BRITISH.VALENTINE_MORTAR\"},{\"id\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"documentation\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"detail\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\"},{\"id\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"documentation\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"detail\":\"EBP.BRITISH.VEHICLE_CREW_MP\"},{\"id\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"documentation\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"detail\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\"},{\"id\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"documentation\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"detail\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\"},{\"id\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"detail\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\"},{\"id\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"documentation\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"detail\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\"},{\"id\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"documentation\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"detail\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\"},{\"id\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"documentation\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"detail\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\"},{\"id\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"documentation\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"detail\":\"SBP.BRITISH.BRITISH_HMG_PLANE\"},{\"id\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"detail\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"detail\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"documentation\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"detail\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\"},{\"id\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"documentation\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"detail\":\"SBP.BRITISH.FORWARD_HQ_MP\"},{\"id\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"detail\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"documentation\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"detail\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\"},{\"id\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"documentation\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"detail\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\"},{\"id\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"detail\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"documentation\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"detail\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\"},{\"id\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"documentation\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"detail\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\"},{\"id\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"documentation\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"detail\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\"},{\"id\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"documentation\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"detail\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\"},{\"id\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\"},{\"id\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"documentation\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"detail\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\"},{\"id\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\"},{\"id\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"kind\":17,\"label\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"documentation\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"detail\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\"},{\"id\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"kind\":17,\"label\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"documentation\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"detail\":\"SBP.BRITISH.VALENTINE_MORTAR\"},{\"id\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"documentation\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"detail\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\"},{\"id\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"detail\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\"},{\"id\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"documentation\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"detail\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\"},{\"id\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"documentation\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"detail\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\"},{\"id\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"documentation\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"detail\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\"},{\"id\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"documentation\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"detail\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\"},{\"id\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"documentation\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"detail\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\"},{\"id\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"documentation\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"detail\":\"ABILITY.BRITISH.ARTILLERY_COVER\"},{\"id\":\"ABILITY.BRITISH.ASSAULT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ASSAULT\",\"documentation\":\"ABILITY.BRITISH.ASSAULT\",\"detail\":\"ABILITY.BRITISH.ASSAULT\"},{\"id\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"documentation\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"detail\":\"ABILITY.BRITISH.ASSAULT_GRENADES\"},{\"id\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"documentation\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"detail\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\"},{\"id\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"documentation\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"detail\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"documentation\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"detail\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\"},{\"id\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"documentation\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"detail\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"documentation\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"detail\":\"ABILITY.BRITISH.BRIT_TUNE_UP\"},{\"id\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"documentation\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"detail\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\"},{\"id\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_AVRE\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\"},{\"id\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"documentation\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"detail\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\"},{\"id\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"documentation\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"detail\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"detail\":\"ABILITY.BRITISH.COMMAND_VEHICLE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"documentation\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"detail\":\"ABILITY.BRITISH.COUNTER_BATTERY\"},{\"id\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"documentation\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"detail\":\"ABILITY.BRITISH.COUNTER_BATTERYS\"},{\"id\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"documentation\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"detail\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\"},{\"id\":\"ABILITY.BRITISH.CREW_REPAIR\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CREW_REPAIR\",\"documentation\":\"ABILITY.BRITISH.CREW_REPAIR\",\"detail\":\"ABILITY.BRITISH.CREW_REPAIR\"},{\"id\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"documentation\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"detail\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\"},{\"id\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"documentation\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"detail\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\"},{\"id\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"documentation\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"detail\":\"ABILITY.BRITISH.DESTROY_COVER_MP\"},{\"id\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"detail\":\"ABILITY.BRITISH.DIRECT_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.EARLY_WARNING\",\"kind\":17,\"label\":\"ABILITY.BRITISH.EARLY_WARNING\",\"documentation\":\"ABILITY.BRITISH.EARLY_WARNING\",\"detail\":\"ABILITY.BRITISH.EARLY_WARNING\"},{\"id\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"documentation\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"detail\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\"},{\"id\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"documentation\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"detail\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\"},{\"id\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"documentation\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"detail\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\"},{\"id\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"documentation\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"detail\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\"},{\"id\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"documentation\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"detail\":\"ABILITY.BRITISH.FIELD_RECOVERY\"},{\"id\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"documentation\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"detail\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\"},{\"id\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"documentation\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"detail\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\"},{\"id\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"documentation\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"detail\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\"},{\"id\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"detail\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"documentation\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"detail\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\"},{\"id\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"documentation\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"detail\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\"},{\"id\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"detail\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"documentation\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"detail\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\"},{\"id\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"documentation\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"detail\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\"},{\"id\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"documentation\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"detail\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\"},{\"id\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"documentation\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"detail\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\"},{\"id\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"documentation\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"detail\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\"},{\"id\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"documentation\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"detail\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\"},{\"id\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"documentation\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"detail\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\"},{\"id\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"documentation\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"detail\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\"},{\"id\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"documentation\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"detail\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\"},{\"id\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"documentation\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"detail\":\"ABILITY.BRITISH.OBSERVATION_MODE\"},{\"id\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"documentation\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"detail\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"detail\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PEPPER_POT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PEPPER_POT\",\"documentation\":\"ABILITY.BRITISH.PEPPER_POT\",\"detail\":\"ABILITY.BRITISH.PEPPER_POT\"},{\"id\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"detail\":\"ABILITY.BRITISH.PERCISION_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"documentation\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"detail\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"documentation\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"detail\":\"ABILITY.BRITISH.RAPID_ADVANCE\"},{\"id\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"documentation\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"detail\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\"},{\"id\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"documentation\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"detail\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\"},{\"id\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"documentation\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"detail\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\"},{\"id\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"documentation\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"detail\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\"},{\"id\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"documentation\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"detail\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\"},{\"id\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"documentation\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"detail\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\"},{\"id\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"documentation\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"detail\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\"},{\"id\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"documentation\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"detail\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"documentation\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"detail\":\"ABILITY.BRITISH.SMOKE_ASSAULT\"},{\"id\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.STAND_FAST\",\"kind\":17,\"label\":\"ABILITY.BRITISH.STAND_FAST\",\"documentation\":\"ABILITY.BRITISH.STAND_FAST\",\"detail\":\"ABILITY.BRITISH.STAND_FAST\"},{\"id\":\"ABILITY.BRITISH.STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.BRITISH.STRAFING_RUN\",\"documentation\":\"ABILITY.BRITISH.STRAFING_RUN\",\"detail\":\"ABILITY.BRITISH.STRAFING_RUN\"},{\"id\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"documentation\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"detail\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\"},{\"id\":\"ABILITY.BRITISH.TANK_HUNTER\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TANK_HUNTER\",\"documentation\":\"ABILITY.BRITISH.TANK_HUNTER\",\"detail\":\"ABILITY.BRITISH.TANK_HUNTER\"},{\"id\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"documentation\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"detail\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\"},{\"id\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"documentation\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"detail\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\"},{\"id\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"documentation\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"detail\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\"},{\"id\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"documentation\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"detail\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\"},{\"id\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"documentation\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"detail\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\"},{\"id\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"documentation\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"detail\":\"ABILITY.BRITISH.VICKERS_AIRDROP\"},{\"id\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"documentation\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"detail\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\"},{\"id\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"documentation\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"detail\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\"},{\"id\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"documentation\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"detail\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\"},{\"id\":\"UPG.BRITISH.ADVANCED_COVER\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_COVER\",\"documentation\":\"UPG.BRITISH.ADVANCED_COVER\",\"detail\":\"UPG.BRITISH.ADVANCED_COVER\"},{\"id\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"documentation\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"detail\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\"},{\"id\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"documentation\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"detail\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\"},{\"id\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"documentation\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"detail\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\"},{\"id\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"documentation\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"detail\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\"},{\"id\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"documentation\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"detail\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\"},{\"id\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"documentation\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"detail\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\"},{\"id\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"kind\":17,\"label\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"documentation\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"detail\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\"},{\"id\":\"UPG.BRITISH.ASSAULT\",\"kind\":17,\"label\":\"UPG.BRITISH.ASSAULT\",\"documentation\":\"UPG.BRITISH.ASSAULT\",\"detail\":\"UPG.BRITISH.ASSAULT\"},{\"id\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"documentation\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"detail\":\"UPG.BRITISH.ASSAULT_ACTIVE\"},{\"id\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"kind\":17,\"label\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"documentation\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"detail\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\"},{\"id\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"documentation\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"detail\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\"},{\"id\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"kind\":17,\"label\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"documentation\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"detail\":\"UPG.BRITISH.BOYS_AT_RIFLE\"},{\"id\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"kind\":17,\"label\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"documentation\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"detail\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\"},{\"id\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"documentation\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"detail\":\"UPG.BRITISH.CAN_TUNE_UP_MP\"},{\"id\":\"UPG.BRITISH.COMMAND_HQ\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_HQ\",\"documentation\":\"UPG.BRITISH.COMMAND_HQ\",\"detail\":\"UPG.BRITISH.COMMAND_HQ\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\"},{\"id\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"documentation\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"detail\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"detail\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"detail\":\"UPG.BRITISH.COMPANY_HAMMER_MP\"},{\"id\":\"UPG.BRITISH.COUNTER_BATTERY\",\"kind\":17,\"label\":\"UPG.BRITISH.COUNTER_BATTERY\",\"documentation\":\"UPG.BRITISH.COUNTER_BATTERY\",\"detail\":\"UPG.BRITISH.COUNTER_BATTERY\"},{\"id\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"documentation\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"detail\":\"UPG.BRITISH.COUNTER_BATTERY_MP\"},{\"id\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"kind\":17,\"label\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"documentation\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"detail\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\"},{\"id\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"kind\":17,\"label\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"documentation\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"detail\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\"},{\"id\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"kind\":17,\"label\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"documentation\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"detail\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\"},{\"id\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"documentation\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"detail\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\"},{\"id\":\"UPG.BRITISH.FLAMETHROWERS\",\"kind\":17,\"label\":\"UPG.BRITISH.FLAMETHROWERS\",\"documentation\":\"UPG.BRITISH.FLAMETHROWERS\",\"detail\":\"UPG.BRITISH.FLAMETHROWERS\"},{\"id\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"documentation\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"detail\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\"},{\"id\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"kind\":17,\"label\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"documentation\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"detail\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\"},{\"id\":\"UPG.BRITISH.PIAT\",\"kind\":17,\"label\":\"UPG.BRITISH.PIAT\",\"documentation\":\"UPG.BRITISH.PIAT\",\"detail\":\"UPG.BRITISH.PIAT\"},{\"id\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.PIAT_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"detail\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"detail\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"detail\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"detail\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\"},{\"id\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"kind\":17,\"label\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"documentation\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"detail\":\"UPG.BRITISH.PRECISION_BARRAGE\"},{\"id\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\"},{\"id\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"kind\":17,\"label\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"documentation\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"detail\":\"UPG.BRITISH.REINFORCED_STRUCTURE\"},{\"id\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"documentation\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"detail\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\"},{\"id\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"documentation\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"detail\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\"},{\"id\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"kind\":17,\"label\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"documentation\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"detail\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\"},{\"id\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"documentation\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"detail\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"documentation\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"detail\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\"},{\"id\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"documentation\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"detail\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"documentation\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"detail\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\"},{\"id\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"documentation\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"detail\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"documentation\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"detail\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\"},{\"id\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"documentation\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"detail\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\"},{\"id\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\"},{\"id\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"kind\":17,\"label\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"documentation\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"detail\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\"},{\"id\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"kind\":17,\"label\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"documentation\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"detail\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\"},{\"id\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"documentation\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"detail\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\"},{\"id\":\"EBP.GERMAN.ATGUN_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN_CREW\",\"documentation\":\"EBP.GERMAN.ATGUN_CREW\",\"detail\":\"EBP.GERMAN.ATGUN_CREW\"},{\"id\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"documentation\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"detail\":\"EBP.GERMAN.ATGUN_CREW_MP\"},{\"id\":\"EBP.GERMAN.ATGUN88_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN88_CREW\",\"documentation\":\"EBP.GERMAN.ATGUN88_CREW\",\"detail\":\"EBP.GERMAN.ATGUN88_CREW\"},{\"id\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"documentation\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"detail\":\"EBP.GERMAN.ATGUN88_CREW_MP\"},{\"id\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"kind\":17,\"label\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"documentation\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"detail\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\"},{\"id\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"documentation\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"detail\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\"},{\"id\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"kind\":17,\"label\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"documentation\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"detail\":\"EBP.GERMAN.BEREICH_FESTUNG\"},{\"id\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"documentation\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"detail\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\"},{\"id\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"kind\":17,\"label\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"documentation\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"detail\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\"},{\"id\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"documentation\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"detail\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\"},{\"id\":\"EBP.GERMAN.BUNKER\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER\",\"documentation\":\"EBP.GERMAN.BUNKER\",\"detail\":\"EBP.GERMAN.BUNKER\"},{\"id\":\"EBP.GERMAN.BUNKER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER_MP\",\"documentation\":\"EBP.GERMAN.BUNKER_MP\",\"detail\":\"EBP.GERMAN.BUNKER_MP\"},{\"id\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"documentation\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"detail\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE\",\"detail\":\"EBP.GERMAN.CARGO_PLANE\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_1\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_1\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_1\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_1\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_FUEL\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\"},{\"id\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"kind\":17,\"label\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"documentation\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"detail\":\"EBP.GERMAN.DOLCH_AKTIONEN\"},{\"id\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"documentation\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"detail\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\"},{\"id\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"kind\":17,\"label\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"documentation\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"detail\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\"},{\"id\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"documentation\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"detail\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\"},{\"id\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"documentation\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"detail\":\"EBP.GERMAN.FUEL_POST_GERMAN\"},{\"id\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"detail\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"documentation\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"detail\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ\",\"detail\":\"EBP.GERMAN.GERMAN_HQ\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_WRECK\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_MEDIC\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MEDIC\",\"documentation\":\"EBP.GERMAN.GERMAN_MEDIC\",\"detail\":\"EBP.GERMAN.GERMAN_MEDIC\"},{\"id\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"detail\":\"EBP.GERMAN.GERMAN_MEDIC_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MINE\",\"documentation\":\"EBP.GERMAN.GERMAN_MINE\",\"detail\":\"EBP.GERMAN.GERMAN_MINE\"},{\"id\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"detail\":\"EBP.GERMAN.GERMAN_MINE_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"documentation\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"detail\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\"},{\"id\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"kind\":17,\"label\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"documentation\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"detail\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\"},{\"id\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"documentation\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"detail\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\"},{\"id\":\"EBP.GERMAN.GRENADIERS\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS\",\"documentation\":\"EBP.GERMAN.GRENADIERS\",\"detail\":\"EBP.GERMAN.GRENADIERS\"},{\"id\":\"EBP.GERMAN.GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.GRENADIERS_SP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS_SP\",\"documentation\":\"EBP.GERMAN.GRENADIERS_SP\",\"detail\":\"EBP.GERMAN.GRENADIERS_SP\"},{\"id\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"documentation\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"detail\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\"},{\"id\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"documentation\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"detail\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\"},{\"id\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"documentation\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"detail\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\"},{\"id\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"documentation\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"detail\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\"},{\"id\":\"EBP.GERMAN.HOWITZER_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_CREW\",\"documentation\":\"EBP.GERMAN.HOWITZER_CREW\",\"detail\":\"EBP.GERMAN.HOWITZER_CREW\"},{\"id\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"documentation\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"detail\":\"EBP.GERMAN.HOWITZER_CREW_MP\"},{\"id\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"kind\":17,\"label\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"documentation\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"detail\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\"},{\"id\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"documentation\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"detail\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\"},{\"id\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"kind\":17,\"label\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"documentation\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"detail\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\"},{\"id\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"documentation\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"detail\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\"},{\"id\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"kind\":17,\"label\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"documentation\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"detail\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\"},{\"id\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"kind\":17,\"label\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"documentation\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"detail\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\"},{\"id\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"documentation\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"detail\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\"},{\"id\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"documentation\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"detail\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\"},{\"id\":\"EBP.GERMAN.MG42_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW\",\"documentation\":\"EBP.GERMAN.MG42_CREW\",\"detail\":\"EBP.GERMAN.MG42_CREW\"},{\"id\":\"EBP.GERMAN.MG42_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW_MP\",\"documentation\":\"EBP.GERMAN.MG42_CREW_MP\",\"detail\":\"EBP.GERMAN.MG42_CREW_MP\"},{\"id\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"documentation\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"detail\":\"EBP.GERMAN.MG42_CREW_SINGLE\"},{\"id\":\"EBP.GERMAN.MG42_HMG\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG\",\"documentation\":\"EBP.GERMAN.MG42_HMG\",\"detail\":\"EBP.GERMAN.MG42_HMG\"},{\"id\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"documentation\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"detail\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\"},{\"id\":\"EBP.GERMAN.MG42_HMG_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG_MP\",\"documentation\":\"EBP.GERMAN.MG42_HMG_MP\",\"detail\":\"EBP.GERMAN.MG42_HMG_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD\",\"documentation\":\"EBP.GERMAN.MINE_FIELD\",\"detail\":\"EBP.GERMAN.MINE_FIELD\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"detail\":\"EBP.GERMAN.MINE_FIELD_BORDER\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MP\"},{\"id\":\"EBP.GERMAN.MORTAR_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_CREW\",\"documentation\":\"EBP.GERMAN.MORTAR_CREW\",\"detail\":\"EBP.GERMAN.MORTAR_CREW\"},{\"id\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"documentation\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"detail\":\"EBP.GERMAN.MORTAR_CREW_MP\"},{\"id\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"documentation\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"detail\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\"},{\"id\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"documentation\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"detail\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\"},{\"id\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"documentation\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"detail\":\"EBP.GERMAN.MUNITION_POST_GERMAN\"},{\"id\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"detail\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.OFFICER\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER\",\"documentation\":\"EBP.GERMAN.OFFICER\",\"detail\":\"EBP.GERMAN.OFFICER\"},{\"id\":\"EBP.GERMAN.OFFICER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER_MP\",\"documentation\":\"EBP.GERMAN.OFFICER_MP\",\"detail\":\"EBP.GERMAN.OFFICER_MP\"},{\"id\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"documentation\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"detail\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\"},{\"id\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"documentation\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"detail\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\"},{\"id\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"kind\":17,\"label\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"documentation\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"detail\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\"},{\"id\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"documentation\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"detail\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\"},{\"id\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"documentation\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"detail\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\"},{\"id\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"documentation\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"detail\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\"},{\"id\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"documentation\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"detail\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\"},{\"id\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"documentation\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"detail\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\"},{\"id\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"documentation\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"detail\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\"},{\"id\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"documentation\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"detail\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\"},{\"id\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"kind\":17,\"label\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"documentation\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"detail\":\"EBP.GERMAN.PANTHER_SDKFZ_171\"},{\"id\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"documentation\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"detail\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\"},{\"id\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"documentation\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"detail\":\"EBP.GERMAN.PANZER_GRENADIERS\"},{\"id\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.PANZER_III_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_III_MP\",\"documentation\":\"EBP.GERMAN.PANZER_III_MP\",\"detail\":\"EBP.GERMAN.PANZER_III_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"documentation\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"detail\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\"},{\"id\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\"},{\"id\":\"EBP.GERMAN.PANZER_MG\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_MG\",\"documentation\":\"EBP.GERMAN.PANZER_MG\",\"detail\":\"EBP.GERMAN.PANZER_MG\"},{\"id\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"documentation\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"detail\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\"},{\"id\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"documentation\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"detail\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\"},{\"id\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.PIONEER\",\"kind\":17,\"label\":\"EBP.GERMAN.PIONEER\",\"documentation\":\"EBP.GERMAN.PIONEER\",\"detail\":\"EBP.GERMAN.PIONEER\"},{\"id\":\"EBP.GERMAN.PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PIONEER_MP\",\"documentation\":\"EBP.GERMAN.PIONEER_MP\",\"detail\":\"EBP.GERMAN.PIONEER_MP\"},{\"id\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"documentation\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"detail\":\"EBP.GERMAN.PUMA_EAST_GERMAN\"},{\"id\":\"EBP.GERMAN.REPAIR_PIONEER\",\"kind\":17,\"label\":\"EBP.GERMAN.REPAIR_PIONEER\",\"documentation\":\"EBP.GERMAN.REPAIR_PIONEER\",\"detail\":\"EBP.GERMAN.REPAIR_PIONEER\"},{\"id\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"documentation\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"detail\":\"EBP.GERMAN.REPAIR_PIONEER_MP\"},{\"id\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"documentation\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"detail\":\"EBP.GERMAN.RIEGEL_43_MINE\"},{\"id\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"documentation\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"detail\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\"},{\"id\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"kind\":17,\"label\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"documentation\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"detail\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\"},{\"id\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"documentation\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"detail\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\"},{\"id\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"documentation\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"detail\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\"},{\"id\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"detail\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.SNIPER_COVER\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_COVER\",\"documentation\":\"EBP.GERMAN.SNIPER_COVER\",\"detail\":\"EBP.GERMAN.SNIPER_COVER\"},{\"id\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"documentation\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"detail\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\"},{\"id\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"documentation\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"detail\":\"EBP.GERMAN.SNIPER_SOLDIER\"},{\"id\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"documentation\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"detail\":\"EBP.GERMAN.STORMTROOPERS_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"documentation\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"detail\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\"},{\"id\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"detail\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\"},{\"id\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"documentation\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"detail\":\"EBP.GERMAN.STUKA_AIR_RECON\"},{\"id\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"documentation\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"detail\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\"},{\"id\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"documentation\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"detail\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\"},{\"id\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"documentation\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"detail\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\"},{\"id\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"documentation\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"detail\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\"},{\"id\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"kind\":17,\"label\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"documentation\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"detail\":\"EBP.GERMAN.TACTICAL_BOMBER\"},{\"id\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"kind\":17,\"label\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"documentation\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"detail\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\"},{\"id\":\"EBP.GERMAN.TANK_TRAP\",\"kind\":17,\"label\":\"EBP.GERMAN.TANK_TRAP\",\"documentation\":\"EBP.GERMAN.TANK_TRAP\",\"detail\":\"EBP.GERMAN.TANK_TRAP\"},{\"id\":\"EBP.GERMAN.TELLER_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TELLER_MINE_MP\",\"documentation\":\"EBP.GERMAN.TELLER_MINE_MP\",\"detail\":\"EBP.GERMAN.TELLER_MINE_MP\"},{\"id\":\"EBP.GERMAN.TIER1_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER1_MARKER\",\"documentation\":\"EBP.GERMAN.TIER1_MARKER\",\"detail\":\"EBP.GERMAN.TIER1_MARKER\"},{\"id\":\"EBP.GERMAN.TIER2_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER2_MARKER\",\"documentation\":\"EBP.GERMAN.TIER2_MARKER\",\"detail\":\"EBP.GERMAN.TIER2_MARKER\"},{\"id\":\"EBP.GERMAN.TIER3_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER3_MARKER\",\"documentation\":\"EBP.GERMAN.TIER3_MARKER\",\"detail\":\"EBP.GERMAN.TIER3_MARKER\"},{\"id\":\"EBP.GERMAN.TIER4_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER4_MARKER\",\"documentation\":\"EBP.GERMAN.TIER4_MARKER\",\"detail\":\"EBP.GERMAN.TIER4_MARKER\"},{\"id\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"documentation\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"detail\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\"},{\"id\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\"},{\"id\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"documentation\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"detail\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\"},{\"id\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"documentation\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"detail\":\"SBP.GERMAN.BRUMMBAR_SQUAD\"},{\"id\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"detail\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE\",\"detail\":\"SBP.GERMAN.CARGO_PLANE\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"detail\":\"SBP.GERMAN.CARGO_PLANE_FUEL\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"detail\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\"},{\"id\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"documentation\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"detail\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\"},{\"id\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"documentation\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"detail\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\"},{\"id\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\"},{\"id\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\"},{\"id\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"documentation\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"detail\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\"},{\"id\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"documentation\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"detail\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\"},{\"id\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"documentation\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"detail\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\"},{\"id\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"documentation\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"detail\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\"},{\"id\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"documentation\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"detail\":\"SBP.GERMAN.MORTAR_TEAM_81MM\"},{\"id\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"documentation\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"detail\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\"},{\"id\":\"SBP.GERMAN.OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OFFICER_SQUAD\",\"documentation\":\"SBP.GERMAN.OFFICER_SQUAD\",\"detail\":\"SBP.GERMAN.OFFICER_SQUAD\"},{\"id\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OFFICER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"documentation\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"detail\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\"},{\"id\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"documentation\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"detail\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\"},{\"id\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"documentation\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"detail\":\"SBP.GERMAN.OSTWIND_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANTHER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANTHER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANTHER_SQUAD\",\"detail\":\"SBP.GERMAN.PANTHER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANTHER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\"},{\"id\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_MG_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"detail\":\"SBP.GERMAN.PANZERWERFER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"kind\":17,\"label\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"documentation\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"detail\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"documentation\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"detail\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\"},{\"id\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"kind\":17,\"label\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"documentation\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"detail\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\"},{\"id\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"documentation\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"detail\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\"},{\"id\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"documentation\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"detail\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\"},{\"id\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.SNIPER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.SNIPER_SQUAD\",\"documentation\":\"SBP.GERMAN.SNIPER_SQUAD\",\"detail\":\"SBP.GERMAN.SNIPER_SQUAD\"},{\"id\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.SNIPER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"documentation\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"detail\":\"SBP.GERMAN.STUG_III_E_SQUAD\"},{\"id\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_SQUAD\",\"documentation\":\"SBP.GERMAN.STUG_III_SQUAD\",\"detail\":\"SBP.GERMAN.STUG_III_SQUAD\"},{\"id\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"kind\":17,\"label\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"documentation\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"detail\":\"SBP.GERMAN.TACTICAL_BOMBERS\"},{\"id\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"kind\":17,\"label\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"documentation\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"detail\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\"},{\"id\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"detail\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\"},{\"id\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"documentation\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"detail\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\"},{\"id\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"documentation\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"detail\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\"},{\"id\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"documentation\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"detail\":\"ABILITY.GERMAN.ARMOR_COMMANDER\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"detail\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\"},{\"id\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"documentation\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"detail\":\"ABILITY.GERMAN.BLINDING_GRENADE\"},{\"id\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"detail\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"documentation\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"detail\":\"ABILITY.GERMAN.BREAKTHROUGH\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"documentation\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"detail\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\"},{\"id\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"documentation\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"detail\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\"},{\"id\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"documentation\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"detail\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\"},{\"id\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"detail\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"documentation\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"detail\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\"},{\"id\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"documentation\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"detail\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\"},{\"id\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"documentation\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"detail\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\"},{\"id\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"detail\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.FAST_MARCH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FAST_MARCH\",\"documentation\":\"ABILITY.GERMAN.FAST_MARCH\",\"detail\":\"ABILITY.GERMAN.FAST_MARCH\"},{\"id\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"detail\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"detail\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"detail\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\"},{\"id\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"documentation\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"detail\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"detail\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"detail\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"detail\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\"},{\"id\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"detail\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\"},{\"id\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"detail\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\"},{\"id\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"documentation\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"detail\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"detail\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"detail\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\"},{\"id\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"documentation\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"detail\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\"},{\"id\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"documentation\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"detail\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\"},{\"id\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"detail\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"documentation\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"detail\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\"},{\"id\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"documentation\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"detail\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\"},{\"id\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"documentation\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"detail\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\"},{\"id\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"documentation\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"detail\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\"},{\"id\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"documentation\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"detail\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\"},{\"id\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"documentation\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"detail\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"documentation\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"detail\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\"},{\"id\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"documentation\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"detail\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\"},{\"id\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"documentation\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"detail\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\"},{\"id\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"documentation\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"detail\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\"},{\"id\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"documentation\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"detail\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\"},{\"id\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"documentation\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"detail\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"documentation\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"detail\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"detail\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"documentation\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"detail\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\"},{\"id\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"documentation\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"detail\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\"},{\"id\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"documentation\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"detail\":\"ABILITY.GERMAN.PUMA_DISPATCH\"},{\"id\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"documentation\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"detail\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\"},{\"id\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"documentation\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"detail\":\"ABILITY.GERMAN.RELIEF_INFANTRY\"},{\"id\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"documentation\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"detail\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\"},{\"id\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"documentation\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"detail\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\"},{\"id\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"documentation\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"detail\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\"},{\"id\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"documentation\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"detail\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\"},{\"id\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"documentation\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"detail\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\"},{\"id\":\"ABILITY.GERMAN.SPRINT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SPRINT\",\"documentation\":\"ABILITY.GERMAN.SPRINT\",\"detail\":\"ABILITY.GERMAN.SPRINT\"},{\"id\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPERS\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPERS\",\"detail\":\"ABILITY.GERMAN.STORMTROOPERS\"},{\"id\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"documentation\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"detail\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\"},{\"id\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"documentation\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"detail\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\"},{\"id\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.STUG_III_E\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_III_E\",\"documentation\":\"ABILITY.GERMAN.STUG_III_E\",\"detail\":\"ABILITY.GERMAN.STUG_III_E\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\"},{\"id\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"documentation\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"detail\":\"ABILITY.GERMAN.STUKA_AIR_RECON\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"documentation\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"detail\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\"},{\"id\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"documentation\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"detail\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\"},{\"id\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"documentation\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"detail\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"detail\":\"ABILITY.GERMAN.SUPPLY_BREAK\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"detail\":\"ABILITY.GERMAN.SUPPLY_TRUCK\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"detail\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\"},{\"id\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"documentation\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"detail\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\"},{\"id\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.TIGER_TANK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_TANK\",\"documentation\":\"ABILITY.GERMAN.TIGER_TANK\",\"detail\":\"ABILITY.GERMAN.TIGER_TANK\"},{\"id\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"documentation\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"detail\":\"ABILITY.GERMAN.TIGER_TANK_ACE\"},{\"id\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"detail\":\"ABILITY.GERMAN.TRENCH_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"documentation\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"detail\":\"ABILITY.GERMAN.TROOP_TRAINING\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\"},{\"id\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\"},{\"id\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"documentation\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"detail\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\"},{\"id\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"kind\":17,\"label\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"documentation\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"detail\":\"UPG.GERMAN.AIR_DROP_RESOURCES\"},{\"id\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"documentation\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"detail\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\"},{\"id\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"documentation\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"detail\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\"},{\"id\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"kind\":17,\"label\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"documentation\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"detail\":\"UPG.GERMAN.ARMOR_COMMANDER\"},{\"id\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"detail\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"documentation\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"detail\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\"},{\"id\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"documentation\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"detail\":\"UPG.GERMAN.ASSAULT_GRENADIERS\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_2\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_3\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_4\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\"},{\"id\":\"UPG.GERMAN.BLINDING_GRENADES\",\"kind\":17,\"label\":\"UPG.GERMAN.BLINDING_GRENADES\",\"documentation\":\"UPG.GERMAN.BLINDING_GRENADES\",\"detail\":\"UPG.GERMAN.BLINDING_GRENADES\"},{\"id\":\"UPG.GERMAN.BREAKTHROUGH\",\"kind\":17,\"label\":\"UPG.GERMAN.BREAKTHROUGH\",\"documentation\":\"UPG.GERMAN.BREAKTHROUGH\",\"detail\":\"UPG.GERMAN.BREAKTHROUGH\"},{\"id\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_COMMAND\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_COMMAND\",\"documentation\":\"UPG.GERMAN.BUNKER_COMMAND\",\"detail\":\"UPG.GERMAN.BUNKER_COMMAND\"},{\"id\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"detail\":\"UPG.GERMAN.BUNKER_COMMAND_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"documentation\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"detail\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\"},{\"id\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"detail\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"documentation\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"detail\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\"},{\"id\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"detail\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\"},{\"id\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"documentation\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"detail\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\"},{\"id\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"kind\":17,\"label\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"documentation\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"detail\":\"UPG.GERMAN.CAMOUFLAGE_NETS\"},{\"id\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"documentation\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"detail\":\"UPG.GERMAN.CAN_CAMOUFLAGE\"},{\"id\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"kind\":17,\"label\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"documentation\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"detail\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\"},{\"id\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"kind\":17,\"label\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"documentation\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"detail\":\"UPG.GERMAN.CRUSH_THE_POCKET\"},{\"id\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"kind\":17,\"label\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"documentation\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"detail\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\"},{\"id\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"kind\":17,\"label\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"documentation\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"detail\":\"UPG.GERMAN.ELEFANT_UNLOCK\"},{\"id\":\"UPG.GERMAN.FAST_MARCH\",\"kind\":17,\"label\":\"UPG.GERMAN.FAST_MARCH\",\"documentation\":\"UPG.GERMAN.FAST_MARCH\",\"detail\":\"UPG.GERMAN.FAST_MARCH\"},{\"id\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"detail\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"kind\":17,\"label\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"documentation\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"detail\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\"},{\"id\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"kind\":17,\"label\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"documentation\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"detail\":\"UPG.GERMAN.GRENADIER_MG42_LMG\"},{\"id\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"documentation\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"detail\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\"},{\"id\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"kind\":17,\"label\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"documentation\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"detail\":\"UPG.GERMAN.HEAVY_AT_MINE\"},{\"id\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"kind\":17,\"label\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"documentation\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"detail\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\"},{\"id\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.HULL_DOWN\",\"kind\":17,\"label\":\"UPG.GERMAN.HULL_DOWN\",\"documentation\":\"UPG.GERMAN.HULL_DOWN\",\"detail\":\"UPG.GERMAN.HULL_DOWN\"},{\"id\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"documentation\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"detail\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\"},{\"id\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"kind\":17,\"label\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"documentation\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"detail\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\"},{\"id\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"detail\":\"UPG.GERMAN.JAEGER_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"documentation\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"detail\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\"},{\"id\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"documentation\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"detail\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\"},{\"id\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"documentation\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"detail\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\"},{\"id\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"documentation\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"detail\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\"},{\"id\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"kind\":17,\"label\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"documentation\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"detail\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\"},{\"id\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"kind\":17,\"label\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"documentation\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"detail\":\"UPG.GERMAN.MECHANIZED_GROUP\"},{\"id\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"documentation\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"detail\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\"},{\"id\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"detail\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"documentation\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"detail\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\"},{\"id\":\"UPG.GERMAN.MUNITION_BLITZ\",\"kind\":17,\"label\":\"UPG.GERMAN.MUNITION_BLITZ\",\"documentation\":\"UPG.GERMAN.MUNITION_BLITZ\",\"detail\":\"UPG.GERMAN.MUNITION_BLITZ\"},{\"id\":\"UPG.GERMAN.OSTRUPPEN\",\"kind\":17,\"label\":\"UPG.GERMAN.OSTRUPPEN\",\"documentation\":\"UPG.GERMAN.OSTRUPPEN\",\"detail\":\"UPG.GERMAN.OSTRUPPEN\"},{\"id\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"kind\":17,\"label\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"documentation\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"detail\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\"},{\"id\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"kind\":17,\"label\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"documentation\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"detail\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\"},{\"id\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\"},{\"id\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"documentation\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"detail\":\"UPG.GERMAN.PANZER_TACTICIAN\"},{\"id\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.PANZER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"documentation\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"detail\":\"UPG.GERMAN.PANZERBUSCHE_39\"},{\"id\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"documentation\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"detail\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\"},{\"id\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"documentation\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"detail\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\"},{\"id\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"documentation\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"detail\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\"},{\"id\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"documentation\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"detail\":\"UPG.GERMAN.PIONEER_MINESWEEPER\"},{\"id\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"documentation\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"detail\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\"},{\"id\":\"UPG.GERMAN.PUMA_DISPATCH\",\"kind\":17,\"label\":\"UPG.GERMAN.PUMA_DISPATCH\",\"documentation\":\"UPG.GERMAN.PUMA_DISPATCH\",\"detail\":\"UPG.GERMAN.PUMA_DISPATCH\"},{\"id\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"documentation\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"detail\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\"},{\"id\":\"UPG.GERMAN.RECON_PLANE\",\"kind\":17,\"label\":\"UPG.GERMAN.RECON_PLANE\",\"documentation\":\"UPG.GERMAN.RECON_PLANE\",\"detail\":\"UPG.GERMAN.RECON_PLANE\"},{\"id\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"kind\":17,\"label\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"documentation\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"detail\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\"},{\"id\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"kind\":17,\"label\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"documentation\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"detail\":\"UPG.GERMAN.RELIEF_INFANTRY\"},{\"id\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"documentation\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"detail\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\"},{\"id\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"documentation\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"detail\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\"},{\"id\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"kind\":17,\"label\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"documentation\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"detail\":\"UPG.GERMAN.SECTOR_ARTILLERY\"},{\"id\":\"UPG.GERMAN.SPRINT\",\"kind\":17,\"label\":\"UPG.GERMAN.SPRINT\",\"documentation\":\"UPG.GERMAN.SPRINT\",\"detail\":\"UPG.GERMAN.SPRINT\"},{\"id\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"kind\":17,\"label\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"documentation\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"detail\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPERS\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPERS\",\"documentation\":\"UPG.GERMAN.STORMTROOPERS\",\"detail\":\"UPG.GERMAN.STORMTROOPERS\"},{\"id\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"documentation\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"detail\":\"UPG.GERMAN.STRATEGIC_BOMBING\"},{\"id\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"documentation\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"detail\":\"UPG.GERMAN.STUG_III_E_UNLOCK\"},{\"id\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"documentation\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"detail\":\"UPG.GERMAN.STUG_SHORT_BARREL\"},{\"id\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.STUG_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"documentation\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"detail\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\"},{\"id\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"documentation\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"detail\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\"},{\"id\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"documentation\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"detail\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\"},{\"id\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"UPG.GERMAN.STUKA_STRAFE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_STRAFE\",\"documentation\":\"UPG.GERMAN.STUKA_STRAFE\",\"detail\":\"UPG.GERMAN.STUKA_STRAFE\"},{\"id\":\"UPG.GERMAN.SUPPLY_BREAK\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_BREAK\",\"documentation\":\"UPG.GERMAN.SUPPLY_BREAK\",\"detail\":\"UPG.GERMAN.SUPPLY_BREAK\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\"},{\"id\":\"UPG.GERMAN.TANK_AWARENESS\",\"kind\":17,\"label\":\"UPG.GERMAN.TANK_AWARENESS\",\"documentation\":\"UPG.GERMAN.TANK_AWARENESS\",\"detail\":\"UPG.GERMAN.TANK_AWARENESS\"},{\"id\":\"UPG.GERMAN.TIGER_TANK\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK\",\"documentation\":\"UPG.GERMAN.TIGER_TANK\",\"detail\":\"UPG.GERMAN.TIGER_TANK\"},{\"id\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"documentation\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"detail\":\"UPG.GERMAN.TIGER_TANK_ACE\"},{\"id\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"documentation\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"detail\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\"},{\"id\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"kind\":17,\"label\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"documentation\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"detail\":\"UPG.GERMAN.TOW_1941_GERMAN\"},{\"id\":\"UPG.GERMAN.TRENCH\",\"kind\":17,\"label\":\"UPG.GERMAN.TRENCH\",\"documentation\":\"UPG.GERMAN.TRENCH\",\"detail\":\"UPG.GERMAN.TRENCH\"},{\"id\":\"UPG.GERMAN.TROOP_TRAINING\",\"kind\":17,\"label\":\"UPG.GERMAN.TROOP_TRAINING\",\"documentation\":\"UPG.GERMAN.TROOP_TRAINING\",\"detail\":\"UPG.GERMAN.TROOP_TRAINING\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\"},{\"id\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"kind\":17,\"label\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"documentation\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"detail\":\"UPG.GERMAN.VEHICLES_OPTICS\"},{\"id\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"documentation\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"detail\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\"},{\"id\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"documentation\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"detail\":\"EBP.PROXY.PROXY_MEDIC_MP\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\"},{\"id\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"documentation\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"detail\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\"},{\"id\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\"},{\"id\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"documentation\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"detail\":\"EBP.SOVIET._CIVILIAN_FEMALE\"},{\"id\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"documentation\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"detail\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\"},{\"id\":\"EBP.SOVIET._CIVILIAN_MALE\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_MALE\",\"documentation\":\"EBP.SOVIET._CIVILIAN_MALE\",\"detail\":\"EBP.SOVIET._CIVILIAN_MALE\"},{\"id\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"documentation\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"detail\":\"EBP.SOVIET._CIVILIAN_MALE_MP\"},{\"id\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"kind\":17,\"label\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"documentation\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"detail\":\"EBP.SOVIET.ARTILLERY_203MM_B4\"},{\"id\":\"EBP.SOVIET.ATGUN53K_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUN53K_CREW\",\"documentation\":\"EBP.SOVIET.ATGUN53K_CREW\",\"detail\":\"EBP.SOVIET.ATGUN53K_CREW\"},{\"id\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"documentation\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"detail\":\"EBP.SOVIET.ATGUN53K_CREW_MP\"},{\"id\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"documentation\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"detail\":\"EBP.SOVIET.ATGUNZIS_CREW\"},{\"id\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"documentation\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"detail\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FENCE\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FIELD\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\"},{\"id\":\"EBP.SOVIET.BARRACKS\",\"kind\":17,\"label\":\"EBP.SOVIET.BARRACKS\",\"documentation\":\"EBP.SOVIET.BARRACKS\",\"detail\":\"EBP.SOVIET.BARRACKS\"},{\"id\":\"EBP.SOVIET.BARRACKS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARRACKS_MP\",\"documentation\":\"EBP.SOVIET.BARRACKS_MP\",\"detail\":\"EBP.SOVIET.BARRACKS_MP\"},{\"id\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"documentation\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"detail\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\"},{\"id\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"kind\":17,\"label\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"documentation\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"detail\":\"EBP.SOVIET.BOAT_01_ENTITY\"},{\"id\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"documentation\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"detail\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\"},{\"id\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"kind\":17,\"label\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"documentation\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"detail\":\"EBP.SOVIET.COMBAT_ENGINEER\"},{\"id\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"documentation\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"detail\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\"},{\"id\":\"EBP.SOVIET.COMMISSAR\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR\",\"documentation\":\"EBP.SOVIET.COMMISSAR\",\"detail\":\"EBP.SOVIET.COMMISSAR\"},{\"id\":\"EBP.SOVIET.COMMISSAR_227\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_227\",\"documentation\":\"EBP.SOVIET.COMMISSAR_227\",\"detail\":\"EBP.SOVIET.COMMISSAR_227\"},{\"id\":\"EBP.SOVIET.COMMISSAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_MP\",\"documentation\":\"EBP.SOVIET.COMMISSAR_MP\",\"detail\":\"EBP.SOVIET.COMMISSAR_MP\"},{\"id\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"documentation\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"detail\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\"},{\"id\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"documentation\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"detail\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\"},{\"id\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"documentation\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"detail\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\"},{\"id\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.DSHK_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"documentation\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"detail\":\"EBP.SOVIET.FLARE_FIRE_MP\"},{\"id\":\"EBP.SOVIET.FLARE_MINE\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_MINE\",\"documentation\":\"EBP.SOVIET.FLARE_MINE\",\"detail\":\"EBP.SOVIET.FLARE_MINE\"},{\"id\":\"EBP.SOVIET.FLARE_MINE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_MINE_MP\",\"documentation\":\"EBP.SOVIET.FLARE_MINE_MP\",\"detail\":\"EBP.SOVIET.FLARE_MINE_MP\"},{\"id\":\"EBP.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"EBP.SOVIET.FORWARD_HQ\",\"documentation\":\"EBP.SOVIET.FORWARD_HQ\",\"detail\":\"EBP.SOVIET.FORWARD_HQ\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"kind\":17,\"label\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"documentation\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"detail\":\"EBP.SOVIET.HM_120_38_MORTAR\"},{\"id\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"documentation\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"detail\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\"},{\"id\":\"EBP.SOVIET.HQ\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ\",\"documentation\":\"EBP.SOVIET.HQ\",\"detail\":\"EBP.SOVIET.HQ\"},{\"id\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"documentation\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"detail\":\"EBP.SOVIET.HQ_INVISIBLE_SP\"},{\"id\":\"EBP.SOVIET.HQ_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_MP\",\"documentation\":\"EBP.SOVIET.HQ_MP\",\"detail\":\"EBP.SOVIET.HQ_MP\"},{\"id\":\"EBP.SOVIET.HQ_NO_WRECK\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_NO_WRECK\",\"documentation\":\"EBP.SOVIET.HQ_NO_WRECK\",\"detail\":\"EBP.SOVIET.HQ_NO_WRECK\"},{\"id\":\"EBP.SOVIET.HQ_WRECK\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK\",\"documentation\":\"EBP.SOVIET.HQ_WRECK\",\"detail\":\"EBP.SOVIET.HQ_WRECK\"},{\"id\":\"EBP.SOVIET.HQ_WRECK_M06\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK_M06\",\"documentation\":\"EBP.SOVIET.HQ_WRECK_M06\",\"detail\":\"EBP.SOVIET.HQ_WRECK_M06\"},{\"id\":\"EBP.SOVIET.HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK_MP\",\"documentation\":\"EBP.SOVIET.HQ_WRECK_MP\",\"detail\":\"EBP.SOVIET.HQ_WRECK_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\"},{\"id\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"kind\":17,\"label\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"documentation\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"detail\":\"EBP.SOVIET.IS_2_HEAVY_TANK\"},{\"id\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"documentation\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"detail\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\"},{\"id\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"kind\":17,\"label\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"documentation\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"detail\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\"},{\"id\":\"EBP.SOVIET.ISAKOVICH_M06\",\"kind\":17,\"label\":\"EBP.SOVIET.ISAKOVICH_M06\",\"documentation\":\"EBP.SOVIET.ISAKOVICH_M06\",\"detail\":\"EBP.SOVIET.ISAKOVICH_M06\"},{\"id\":\"EBP.SOVIET.ISU_152_SPG\",\"kind\":17,\"label\":\"EBP.SOVIET.ISU_152_SPG\",\"documentation\":\"EBP.SOVIET.ISU_152_SPG\",\"detail\":\"EBP.SOVIET.ISU_152_SPG\"},{\"id\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"documentation\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"detail\":\"EBP.SOVIET.ISU_152_SPG_MP\"},{\"id\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"kind\":17,\"label\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"documentation\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"detail\":\"EBP.SOVIET.KATYUSHA_BM_13N\"},{\"id\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"documentation\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"detail\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\"},{\"id\":\"EBP.SOVIET.KV_1\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1\",\"documentation\":\"EBP.SOVIET.KV_1\",\"detail\":\"EBP.SOVIET.KV_1\"},{\"id\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"documentation\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"detail\":\"EBP.SOVIET.KV_1_COMMANDER_MP\"},{\"id\":\"EBP.SOVIET.KV_1_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1_MP\",\"documentation\":\"EBP.SOVIET.KV_1_MP\",\"detail\":\"EBP.SOVIET.KV_1_MP\"},{\"id\":\"EBP.SOVIET.KV_2\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2\",\"documentation\":\"EBP.SOVIET.KV_2\",\"detail\":\"EBP.SOVIET.KV_2\"},{\"id\":\"EBP.SOVIET.KV_2_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2_MP\",\"documentation\":\"EBP.SOVIET.KV_2_MP\",\"detail\":\"EBP.SOVIET.KV_2_MP\"},{\"id\":\"EBP.SOVIET.KV_2_TOW\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2_TOW\",\"documentation\":\"EBP.SOVIET.KV_2_TOW\",\"detail\":\"EBP.SOVIET.KV_2_TOW\"},{\"id\":\"EBP.SOVIET.KV_8\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_8\",\"documentation\":\"EBP.SOVIET.KV_8\",\"detail\":\"EBP.SOVIET.KV_8\"},{\"id\":\"EBP.SOVIET.KV_8_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_8_MP\",\"documentation\":\"EBP.SOVIET.KV_8_MP\",\"detail\":\"EBP.SOVIET.KV_8_MP\"},{\"id\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"documentation\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"detail\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\"},{\"id\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"documentation\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"detail\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\"},{\"id\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"documentation\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"detail\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\"},{\"id\":\"EBP.SOVIET.M01_MEDIC\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_MEDIC\",\"documentation\":\"EBP.SOVIET.M01_MEDIC\",\"detail\":\"EBP.SOVIET.M01_MEDIC\"},{\"id\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"kind\":17,\"label\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"documentation\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"detail\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\"},{\"id\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"kind\":17,\"label\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"documentation\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"detail\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\"},{\"id\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"documentation\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"detail\":\"EBP.SOVIET.M11_ANIA_SNIPER\"},{\"id\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"documentation\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"detail\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\"},{\"id\":\"EBP.SOVIET.M11_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_SNIPER\",\"documentation\":\"EBP.SOVIET.M11_SNIPER\",\"detail\":\"EBP.SOVIET.M11_SNIPER\"},{\"id\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"documentation\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"detail\":\"EBP.SOVIET.M11_SNIPER_RECON\"},{\"id\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"documentation\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"detail\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\"},{\"id\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"documentation\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"detail\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\"},{\"id\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"documentation\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"detail\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\"},{\"id\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"documentation\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"detail\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\"},{\"id\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"documentation\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"detail\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\"},{\"id\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"documentation\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"detail\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\"},{\"id\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"kind\":17,\"label\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"documentation\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"detail\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\"},{\"id\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"documentation\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"detail\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\"},{\"id\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"kind\":17,\"label\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"documentation\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"detail\":\"EBP.SOVIET.M3A1_SCOUT_CAR\"},{\"id\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"documentation\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"detail\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK_MP\"},{\"id\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"kind\":17,\"label\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"documentation\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"detail\":\"EBP.SOVIET.MACHINE_GUN_NEST\"},{\"id\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"documentation\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"detail\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\"},{\"id\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MEDIC\",\"kind\":17,\"label\":\"EBP.SOVIET.MEDIC\",\"documentation\":\"EBP.SOVIET.MEDIC\",\"detail\":\"EBP.SOVIET.MEDIC\"},{\"id\":\"EBP.SOVIET.MEDIC_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MEDIC_MP\",\"documentation\":\"EBP.SOVIET.MEDIC_MP\",\"detail\":\"EBP.SOVIET.MEDIC_MP\"},{\"id\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MOTORPOOL\",\"kind\":17,\"label\":\"EBP.SOVIET.MOTORPOOL\",\"documentation\":\"EBP.SOVIET.MOTORPOOL\",\"detail\":\"EBP.SOVIET.MOTORPOOL\"},{\"id\":\"EBP.SOVIET.MOTORPOOL_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MOTORPOOL_MP\",\"documentation\":\"EBP.SOVIET.MOTORPOOL_MP\",\"detail\":\"EBP.SOVIET.MOTORPOOL_MP\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"documentation\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"detail\":\"EBP.SOVIET.PARTISAN_SNIPER\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\"},{\"id\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"documentation\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"detail\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\"},{\"id\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"detail\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"kind\":17,\"label\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"documentation\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"detail\":\"EBP.SOVIET.PM41_82MM_MORTAR\"},{\"id\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"documentation\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"detail\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\"},{\"id\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"documentation\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"detail\":\"EBP.SOVIET.REFUGEE_FEMALE\"},{\"id\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"documentation\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"detail\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\"},{\"id\":\"EBP.SOVIET.REFUGEE_MALE\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_MALE\",\"documentation\":\"EBP.SOVIET.REFUGEE_MALE\",\"detail\":\"EBP.SOVIET.REFUGEE_MALE\"},{\"id\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"documentation\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"detail\":\"EBP.SOVIET.REFUGEE_MALE_MP\"},{\"id\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"documentation\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"detail\":\"EBP.SOVIET.REPAIR_ENGINEER\"},{\"id\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"documentation\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"detail\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\"},{\"id\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"documentation\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"detail\":\"EBP.SOVIET.REPAIR_STATION_MP\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\"},{\"id\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"documentation\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"detail\":\"EBP.SOVIET.SHERMAN_SOVIET\"},{\"id\":\"EBP.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.SHOCK_TROOPS\",\"documentation\":\"EBP.SOVIET.SHOCK_TROOPS\",\"detail\":\"EBP.SOVIET.SHOCK_TROOPS\"},{\"id\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"detail\":\"EBP.SOVIET.SHOCK_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER\",\"documentation\":\"EBP.SOVIET.SNIPER\",\"detail\":\"EBP.SOVIET.SNIPER\"},{\"id\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"documentation\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"detail\":\"EBP.SOVIET.SNIPER_ATK_TARGET\"},{\"id\":\"EBP.SOVIET.SNIPER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_MP\",\"documentation\":\"EBP.SOVIET.SNIPER_MP\",\"detail\":\"EBP.SOVIET.SNIPER_MP\"},{\"id\":\"EBP.SOVIET.SNIPER_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_RECON\",\"documentation\":\"EBP.SOVIET.SNIPER_RECON\",\"detail\":\"EBP.SOVIET.SNIPER_RECON\"},{\"id\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"documentation\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"detail\":\"EBP.SOVIET.SNIPER_RECON_MP\"},{\"id\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"documentation\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"detail\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\"},{\"id\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"documentation\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"detail\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE\",\"detail\":\"EBP.SOVIET.SOVIET_MINE\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_M08\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_MP\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_SP\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_TOW\"},{\"id\":\"EBP.SOVIET.SOVIET_OFFICER\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_OFFICER\",\"documentation\":\"EBP.SOVIET.SOVIET_OFFICER\",\"detail\":\"EBP.SOVIET.SOVIET_OFFICER\"},{\"id\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"documentation\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"detail\":\"EBP.SOVIET.SOVIET_OFFICER_MP\"},{\"id\":\"EBP.SOVIET.STEAM_TRAIN\",\"kind\":17,\"label\":\"EBP.SOVIET.STEAM_TRAIN\",\"documentation\":\"EBP.SOVIET.STEAM_TRAIN\",\"detail\":\"EBP.SOVIET.STEAM_TRAIN\"},{\"id\":\"EBP.SOVIET.SU_76M\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_76M\",\"documentation\":\"EBP.SOVIET.SU_76M\",\"detail\":\"EBP.SOVIET.SU_76M\"},{\"id\":\"EBP.SOVIET.SU_76M_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_76M_MP\",\"documentation\":\"EBP.SOVIET.SU_76M_MP\",\"detail\":\"EBP.SOVIET.SU_76M_MP\"},{\"id\":\"EBP.SOVIET.SU_85\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_85\",\"documentation\":\"EBP.SOVIET.SU_85\",\"detail\":\"EBP.SOVIET.SU_85\"},{\"id\":\"EBP.SOVIET.SU_85_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_85_MP\",\"documentation\":\"EBP.SOVIET.SU_85_MP\",\"detail\":\"EBP.SOVIET.SU_85_MP\"},{\"id\":\"EBP.SOVIET.T_34_76\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_76\",\"documentation\":\"EBP.SOVIET.T_34_76\",\"detail\":\"EBP.SOVIET.T_34_76\"},{\"id\":\"EBP.SOVIET.T_34_76_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_76_MP\",\"documentation\":\"EBP.SOVIET.T_34_76_MP\",\"detail\":\"EBP.SOVIET.T_34_76_MP\"},{\"id\":\"EBP.SOVIET.T_34_85\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_85\",\"documentation\":\"EBP.SOVIET.T_34_85\",\"detail\":\"EBP.SOVIET.T_34_85\"},{\"id\":\"EBP.SOVIET.T_34_85_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_85_MP\",\"documentation\":\"EBP.SOVIET.T_34_85_MP\",\"detail\":\"EBP.SOVIET.T_34_85_MP\"},{\"id\":\"EBP.SOVIET.T_70M\",\"kind\":17,\"label\":\"EBP.SOVIET.T_70M\",\"documentation\":\"EBP.SOVIET.T_70M\",\"detail\":\"EBP.SOVIET.T_70M\"},{\"id\":\"EBP.SOVIET.T_70M_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_70M_MP\",\"documentation\":\"EBP.SOVIET.T_70M_MP\",\"detail\":\"EBP.SOVIET.T_70M_MP\"},{\"id\":\"EBP.SOVIET.TANK_DEPOT\",\"kind\":17,\"label\":\"EBP.SOVIET.TANK_DEPOT\",\"documentation\":\"EBP.SOVIET.TANK_DEPOT\",\"detail\":\"EBP.SOVIET.TANK_DEPOT\"},{\"id\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"documentation\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"detail\":\"EBP.SOVIET.TANK_DEPOT_MP\"},{\"id\":\"EBP.SOVIET.TANKTRAP\",\"kind\":17,\"label\":\"EBP.SOVIET.TANKTRAP\",\"documentation\":\"EBP.SOVIET.TANKTRAP\",\"detail\":\"EBP.SOVIET.TANKTRAP\"},{\"id\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"documentation\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"detail\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\"},{\"id\":\"EBP.SOVIET.US6_TRUCK\",\"kind\":17,\"label\":\"EBP.SOVIET.US6_TRUCK\",\"documentation\":\"EBP.SOVIET.US6_TRUCK\",\"detail\":\"EBP.SOVIET.US6_TRUCK\"},{\"id\":\"EBP.SOVIET.US6_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.US6_TRUCK_MP\",\"documentation\":\"EBP.SOVIET.US6_TRUCK_MP\",\"detail\":\"EBP.SOVIET.US6_TRUCK_MP\"},{\"id\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"kind\":17,\"label\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"documentation\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"detail\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\"},{\"id\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"documentation\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"detail\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\"},{\"id\":\"EBP.SOVIET.WIRE_FIELD\",\"kind\":17,\"label\":\"EBP.SOVIET.WIRE_FIELD\",\"documentation\":\"EBP.SOVIET.WIRE_FIELD\",\"detail\":\"EBP.SOVIET.WIRE_FIELD\"},{\"id\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"documentation\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"detail\":\"EBP.SOVIET.WIRE_FIELD_MP\"},{\"id\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"kind\":17,\"label\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"documentation\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"detail\":\"EBP.SOVIET.ZIS_6_TRANSPORT\"},{\"id\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"documentation\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"detail\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\"},{\"id\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.BOAT_01\",\"kind\":17,\"label\":\"SBP.SOVIET.BOAT_01\",\"documentation\":\"SBP.SOVIET.BOAT_01\",\"detail\":\"SBP.SOVIET.BOAT_01\"},{\"id\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"kind\":17,\"label\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"documentation\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"detail\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\"},{\"id\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"detail\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.COMMISSAR_227\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_227\",\"documentation\":\"SBP.SOVIET.COMMISSAR_227\",\"detail\":\"SBP.SOVIET.COMMISSAR_227\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\"},{\"id\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"documentation\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"detail\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\"},{\"id\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"detail\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_M08\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_MP\"},{\"id\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"documentation\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"detail\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\"},{\"id\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IS_2\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2\",\"documentation\":\"SBP.SOVIET.IS_2\",\"detail\":\"SBP.SOVIET.IS_2\"},{\"id\":\"SBP.SOVIET.IS_2_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2_MP\",\"documentation\":\"SBP.SOVIET.IS_2_MP\",\"detail\":\"SBP.SOVIET.IS_2_MP\"},{\"id\":\"SBP.SOVIET.IS_2_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2_TOW\",\"documentation\":\"SBP.SOVIET.IS_2_TOW\",\"detail\":\"SBP.SOVIET.IS_2_TOW\"},{\"id\":\"SBP.SOVIET.ISU_152\",\"kind\":17,\"label\":\"SBP.SOVIET.ISU_152\",\"documentation\":\"SBP.SOVIET.ISU_152\",\"detail\":\"SBP.SOVIET.ISU_152\"},{\"id\":\"SBP.SOVIET.ISU_152_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.ISU_152_MP\",\"documentation\":\"SBP.SOVIET.ISU_152_MP\",\"detail\":\"SBP.SOVIET.ISU_152_MP\"},{\"id\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"documentation\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"detail\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\"},{\"id\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"detail\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.KV_1\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1\",\"documentation\":\"SBP.SOVIET.KV_1\",\"detail\":\"SBP.SOVIET.KV_1\"},{\"id\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"documentation\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"detail\":\"SBP.SOVIET.KV_1_COMMANDER_MP\"},{\"id\":\"SBP.SOVIET.KV_1_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_MP\",\"documentation\":\"SBP.SOVIET.KV_1_MP\",\"detail\":\"SBP.SOVIET.KV_1_MP\"},{\"id\":\"SBP.SOVIET.KV_1_SP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_SP\",\"documentation\":\"SBP.SOVIET.KV_1_SP\",\"detail\":\"SBP.SOVIET.KV_1_SP\"},{\"id\":\"SBP.SOVIET.KV_2\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2\",\"documentation\":\"SBP.SOVIET.KV_2\",\"detail\":\"SBP.SOVIET.KV_2\"},{\"id\":\"SBP.SOVIET.KV_2_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_MP\",\"documentation\":\"SBP.SOVIET.KV_2_MP\",\"detail\":\"SBP.SOVIET.KV_2_MP\"},{\"id\":\"SBP.SOVIET.KV_2_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_TOW\",\"documentation\":\"SBP.SOVIET.KV_2_TOW\",\"detail\":\"SBP.SOVIET.KV_2_TOW\"},{\"id\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"documentation\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"detail\":\"SBP.SOVIET.KV_2_TOW_BATTLE\"},{\"id\":\"SBP.SOVIET.KV_8\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_8\",\"documentation\":\"SBP.SOVIET.KV_8\",\"detail\":\"SBP.SOVIET.KV_8\"},{\"id\":\"SBP.SOVIET.KV_8_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_8_MP\",\"documentation\":\"SBP.SOVIET.KV_8_MP\",\"detail\":\"SBP.SOVIET.KV_8_MP\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\"},{\"id\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"documentation\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"detail\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\"},{\"id\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"documentation\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"detail\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\"},{\"id\":\"SBP.SOVIET.M01_MEDIC\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_MEDIC\",\"documentation\":\"SBP.SOVIET.M01_MEDIC\",\"detail\":\"SBP.SOVIET.M01_MEDIC\"},{\"id\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"documentation\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"detail\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\"},{\"id\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"documentation\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"detail\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\"},{\"id\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"documentation\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"detail\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"documentation\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"detail\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\"},{\"id\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"documentation\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"detail\":\"SBP.SOVIET.M11_SNIPER_TEAM\"},{\"id\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\"},{\"id\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"documentation\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"detail\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\"},{\"id\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"documentation\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"detail\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\"},{\"id\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"documentation\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"detail\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\"},{\"id\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_LMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_PTRS_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_SMG_MP\"},{\"id\":\"SBP.SOVIET.PENAL_BATTALION\",\"kind\":17,\"label\":\"SBP.SOVIET.PENAL_BATTALION\",\"documentation\":\"SBP.SOVIET.PENAL_BATTALION\",\"detail\":\"SBP.SOVIET.PENAL_BATTALION\"},{\"id\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"documentation\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"detail\":\"SBP.SOVIET.PENAL_BATTALION_MP\"},{\"id\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"documentation\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"detail\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\"},{\"id\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS_M11\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS_MP\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM_MALE\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM_MP\"},{\"id\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"documentation\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"detail\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\"},{\"id\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"documentation\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"detail\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\"},{\"id\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"documentation\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"detail\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\"},{\"id\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"detail\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.STEAM_TRAIN\",\"kind\":17,\"label\":\"SBP.SOVIET.STEAM_TRAIN\",\"documentation\":\"SBP.SOVIET.STEAM_TRAIN\",\"detail\":\"SBP.SOVIET.STEAM_TRAIN\"},{\"id\":\"SBP.SOVIET.SU_76M\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M\",\"documentation\":\"SBP.SOVIET.SU_76M\",\"detail\":\"SBP.SOVIET.SU_76M\"},{\"id\":\"SBP.SOVIET.SU_76M_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M_MP\",\"documentation\":\"SBP.SOVIET.SU_76M_MP\",\"detail\":\"SBP.SOVIET.SU_76M_MP\"},{\"id\":\"SBP.SOVIET.SU_76M_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M_TOW\",\"documentation\":\"SBP.SOVIET.SU_76M_TOW\",\"detail\":\"SBP.SOVIET.SU_76M_TOW\"},{\"id\":\"SBP.SOVIET.SU_85\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_85\",\"documentation\":\"SBP.SOVIET.SU_85\",\"detail\":\"SBP.SOVIET.SU_85\"},{\"id\":\"SBP.SOVIET.SU_85_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_85_MP\",\"documentation\":\"SBP.SOVIET.SU_85_MP\",\"detail\":\"SBP.SOVIET.SU_85_MP\"},{\"id\":\"SBP.SOVIET.T_34_76_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_76_SQUAD\",\"documentation\":\"SBP.SOVIET.T_34_76_SQUAD\",\"detail\":\"SBP.SOVIET.T_34_76_SQUAD\"},{\"id\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_76_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_34_85_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_SQUAD\",\"documentation\":\"SBP.SOVIET.T_34_85_SQUAD\",\"detail\":\"SBP.SOVIET.T_34_85_SQUAD\"},{\"id\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_85_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_70M\",\"kind\":17,\"label\":\"SBP.SOVIET.T_70M\",\"documentation\":\"SBP.SOVIET.T_70M\",\"detail\":\"SBP.SOVIET.T_70M\"},{\"id\":\"SBP.SOVIET.T_70M_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_70M_MP\",\"documentation\":\"SBP.SOVIET.T_70M_MP\",\"detail\":\"SBP.SOVIET.T_70M_MP\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\"},{\"id\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"documentation\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"detail\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\"},{\"id\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"documentation\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"detail\":\"SBP.SOVIET.US6_TRUCK_SQUAD\"},{\"id\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"kind\":17,\"label\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"documentation\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"detail\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\"},{\"id\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"documentation\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"detail\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\"},{\"id\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"documentation\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"detail\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\"},{\"id\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\"},{\"id\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"documentation\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"detail\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"detail\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"detail\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\"},{\"id\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"documentation\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"detail\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\"},{\"id\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"documentation\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"detail\":\"ABILITY.SOVIET.BOMBARDMENT_FX\"},{\"id\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"documentation\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"detail\":\"ABILITY.SOVIET.BOOBY_TRAP\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\"},{\"id\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"documentation\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"detail\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\"},{\"id\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"documentation\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"detail\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\"},{\"id\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"documentation\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"detail\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\"},{\"id\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"documentation\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"detail\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\"},{\"id\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_ISU_152\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ISU_152\",\"documentation\":\"ABILITY.SOVIET.CMD_ISU_152\",\"detail\":\"ABILITY.SOVIET.CMD_ISU_152\"},{\"id\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"documentation\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"detail\":\"ABILITY.SOVIET.CMD_KATYUSHA\"},{\"id\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"documentation\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"detail\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\"},{\"id\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"documentation\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"detail\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\"},{\"id\":\"ABILITY.SOVIET.CMD_ML_20\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ML_20\",\"documentation\":\"ABILITY.SOVIET.CMD_ML_20\",\"detail\":\"ABILITY.SOVIET.CMD_ML_20\"},{\"id\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"documentation\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"detail\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\"},{\"id\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"documentation\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"detail\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\"},{\"id\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"documentation\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"detail\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\"},{\"id\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"documentation\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"detail\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\"},{\"id\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"documentation\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"detail\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\"},{\"id\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"documentation\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"detail\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\"},{\"id\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"detail\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\"},{\"id\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"documentation\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"detail\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\"},{\"id\":\"ABILITY.SOVIET.DSHK_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.DSHK_MP\",\"documentation\":\"ABILITY.SOVIET.DSHK_MP\",\"detail\":\"ABILITY.SOVIET.DSHK_MP\"},{\"id\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"documentation\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"detail\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\"},{\"id\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"documentation\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"detail\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\"},{\"id\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"documentation\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"detail\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\"},{\"id\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"documentation\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"detail\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\"},{\"id\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FIRE_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"documentation\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"detail\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\"},{\"id\":\"ABILITY.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FORWARD_HQ\",\"documentation\":\"ABILITY.SOVIET.FORWARD_HQ\",\"detail\":\"ABILITY.SOVIET.FORWARD_HQ\"},{\"id\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"documentation\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"detail\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\"},{\"id\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"documentation\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"detail\":\"ABILITY.SOVIET.HOLD_THE_LINE\"},{\"id\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"documentation\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"detail\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\"},{\"id\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"documentation\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"detail\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\"},{\"id\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"documentation\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"detail\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"documentation\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"detail\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\"},{\"id\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"documentation\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"detail\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\"},{\"id\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"documentation\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"detail\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\"},{\"id\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"documentation\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"detail\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\"},{\"id\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\"},{\"id\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KV_2\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_2\",\"documentation\":\"ABILITY.SOVIET.KV_2\",\"detail\":\"ABILITY.SOVIET.KV_2\"},{\"id\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"documentation\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"detail\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\"},{\"id\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"documentation\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"detail\":\"ABILITY.SOVIET.M_42_AT_GUN\"},{\"id\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"documentation\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"detail\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\"},{\"id\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"documentation\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"detail\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\"},{\"id\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"documentation\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"detail\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\"},{\"id\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"documentation\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"detail\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\"},{\"id\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"documentation\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"detail\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\"},{\"id\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"documentation\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"detail\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\"},{\"id\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"documentation\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"detail\":\"ABILITY.SOVIET.MANPOWER_BLITZ\"},{\"id\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"detail\":\"ABILITY.SOVIET.MARK_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.MERGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"documentation\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"detail\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\"},{\"id\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"documentation\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"detail\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\"},{\"id\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\"},{\"id\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"kind\":17,\"label\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"documentation\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"detail\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"detail\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"detail\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"detail\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\"},{\"id\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"documentation\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"detail\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\"},{\"id\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"detail\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"documentation\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"detail\":\"ABILITY.SOVIET.PENAL_OORAH_MP\"},{\"id\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"documentation\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"detail\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\"},{\"id\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"documentation\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"detail\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\"},{\"id\":\"ABILITY.SOVIET.REPAIR_STATION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.REPAIR_STATION\",\"documentation\":\"ABILITY.SOVIET.REPAIR_STATION\",\"detail\":\"ABILITY.SOVIET.REPAIR_STATION\"},{\"id\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"documentation\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"detail\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\"},{\"id\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"documentation\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"detail\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\"},{\"id\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"documentation\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"detail\":\"ABILITY.SOVIET.SALVAGE_KITS\"},{\"id\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"documentation\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"detail\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\"},{\"id\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"documentation\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"detail\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\"},{\"id\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"detail\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"documentation\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"detail\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\"},{\"id\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"detail\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"detail\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"detail\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"detail\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"detail\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"detail\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"detail\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"detail\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\"},{\"id\":\"ABILITY.SOVIET.SPY_NETWORK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SPY_NETWORK\",\"documentation\":\"ABILITY.SOVIET.SPY_NETWORK\",\"detail\":\"ABILITY.SOVIET.SPY_NETWORK\"},{\"id\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"documentation\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"detail\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\"},{\"id\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"documentation\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"detail\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"documentation\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"detail\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\"},{\"id\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"documentation\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"detail\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\"},{\"id\":\"ABILITY.SOVIET.TANK_TRAPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_TRAPS\",\"documentation\":\"ABILITY.SOVIET.TANK_TRAPS\",\"detail\":\"ABILITY.SOVIET.TANK_TRAPS\"},{\"id\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"detail\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"documentation\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"detail\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\"},{\"id\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"kind\":17,\"label\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"documentation\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"detail\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\"},{\"id\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"documentation\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"detail\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\"},{\"id\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"kind\":17,\"label\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"documentation\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"detail\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\"},{\"id\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"kind\":17,\"label\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"documentation\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"detail\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BOOBY_TRAP\",\"kind\":17,\"label\":\"UPG.SOVIET.BOOBY_TRAP\",\"documentation\":\"UPG.SOVIET.BOOBY_TRAP\",\"detail\":\"UPG.SOVIET.BOOBY_TRAP\"},{\"id\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"kind\":17,\"label\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"documentation\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"detail\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\"},{\"id\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"documentation\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"detail\":\"UPG.SOVIET.COMMANDER_T34_85_MP\"},{\"id\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"kind\":17,\"label\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"documentation\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"detail\":\"UPG.SOVIET.COMMISSAR_SQUAD\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"detail\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"detail\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"detail\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"detail\":\"UPG.SOVIET.CONSCRIPT_PTRS\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"detail\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\"},{\"id\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"kind\":17,\"label\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"documentation\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"detail\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\"},{\"id\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"kind\":17,\"label\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"documentation\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"detail\":\"UPG.SOVIET.DSHK_MACHINEGUN\"},{\"id\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"documentation\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"detail\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\"},{\"id\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"documentation\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"detail\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\"},{\"id\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"documentation\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"detail\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\"},{\"id\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"documentation\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"detail\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\"},{\"id\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"documentation\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"detail\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\"},{\"id\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"documentation\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"detail\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\"},{\"id\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"kind\":17,\"label\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"documentation\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"detail\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\"},{\"id\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"kind\":17,\"label\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"documentation\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"detail\":\"UPG.SOVIET.FEAR_PROPAGANDA\"},{\"id\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"kind\":17,\"label\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"documentation\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"detail\":\"UPG.SOVIET.FIRE_ARTILLERY\"},{\"id\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"kind\":17,\"label\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"documentation\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"detail\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\"},{\"id\":\"UPG.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"UPG.SOVIET.FORWARD_HQ\",\"documentation\":\"UPG.SOVIET.FORWARD_HQ\",\"detail\":\"UPG.SOVIET.FORWARD_HQ\"},{\"id\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"kind\":17,\"label\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"documentation\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"detail\":\"UPG.SOVIET.FORWARD_HQ_AURA\"},{\"id\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"detail\":\"UPG.SOVIET.GUARD_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"documentation\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"detail\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\"},{\"id\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.GUARD_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_TROOPS\",\"documentation\":\"UPG.SOVIET.GUARD_TROOPS\",\"detail\":\"UPG.SOVIET.GUARD_TROOPS\"},{\"id\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"documentation\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"detail\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\"},{\"id\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"kind\":17,\"label\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"documentation\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"detail\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\"},{\"id\":\"UPG.SOVIET.HOLD_THE_LINE\",\"kind\":17,\"label\":\"UPG.SOVIET.HOLD_THE_LINE\",\"documentation\":\"UPG.SOVIET.HOLD_THE_LINE\",\"detail\":\"UPG.SOVIET.HOLD_THE_LINE\"},{\"id\":\"UPG.SOVIET.HOWTIZER_203MM\",\"kind\":17,\"label\":\"UPG.SOVIET.HOWTIZER_203MM\",\"documentation\":\"UPG.SOVIET.HOWTIZER_203MM\",\"detail\":\"UPG.SOVIET.HOWTIZER_203MM\"},{\"id\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"documentation\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"detail\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\"},{\"id\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"documentation\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"detail\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\"},{\"id\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"documentation\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"detail\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\"},{\"id\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"documentation\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"detail\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\"},{\"id\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"documentation\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"detail\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\"},{\"id\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"documentation\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"detail\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\"},{\"id\":\"UPG.SOVIET.IL_2_RECON\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_RECON\",\"documentation\":\"UPG.SOVIET.IL_2_RECON\",\"detail\":\"UPG.SOVIET.IL_2_RECON\"},{\"id\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"documentation\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"detail\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\"},{\"id\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"documentation\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"detail\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\"},{\"id\":\"UPG.SOVIET.IL_2_SUPPORT\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_SUPPORT\",\"documentation\":\"UPG.SOVIET.IL_2_SUPPORT\",\"detail\":\"UPG.SOVIET.IL_2_SUPPORT\"},{\"id\":\"UPG.SOVIET.IS_2_SUPPORT\",\"kind\":17,\"label\":\"UPG.SOVIET.IS_2_SUPPORT\",\"documentation\":\"UPG.SOVIET.IS_2_SUPPORT\",\"detail\":\"UPG.SOVIET.IS_2_SUPPORT\"},{\"id\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.IS2_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"documentation\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"detail\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\"},{\"id\":\"UPG.SOVIET.ISAKOVICH_A01\",\"kind\":17,\"label\":\"UPG.SOVIET.ISAKOVICH_A01\",\"documentation\":\"UPG.SOVIET.ISAKOVICH_A01\",\"detail\":\"UPG.SOVIET.ISAKOVICH_A01\"},{\"id\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"documentation\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"detail\":\"UPG.SOVIET.ISU152_HE_ROUNDS\"},{\"id\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.ISU152_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"documentation\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"detail\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\"},{\"id\":\"UPG.SOVIET.ISU152_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_UNLOCK\",\"documentation\":\"UPG.SOVIET.ISU152_UNLOCK\",\"detail\":\"UPG.SOVIET.ISU152_UNLOCK\"},{\"id\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"documentation\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"detail\":\"UPG.SOVIET.KATYUSHA_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"kind\":17,\"label\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"documentation\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"detail\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\"},{\"id\":\"UPG.SOVIET.KV_8_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV_8_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV_8_UNLOCK\",\"detail\":\"UPG.SOVIET.KV_8_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV1_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV1_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV1_UNLOCK\",\"detail\":\"UPG.SOVIET.KV1_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV2_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV2_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV2_UNLOCK\",\"detail\":\"UPG.SOVIET.KV2_UNLOCK\"},{\"id\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"UPG.SOVIET.M_42_AT_GUN\",\"kind\":17,\"label\":\"UPG.SOVIET.M_42_AT_GUN\",\"documentation\":\"UPG.SOVIET.M_42_AT_GUN\",\"detail\":\"UPG.SOVIET.M_42_AT_GUN\"},{\"id\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"kind\":17,\"label\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"documentation\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"detail\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\"},{\"id\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"documentation\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"detail\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\"},{\"id\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"kind\":17,\"label\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"documentation\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"detail\":\"UPG.SOVIET.MANPOWER_BLITZ\"},{\"id\":\"UPG.SOVIET.MARK_VEHICLE\",\"kind\":17,\"label\":\"UPG.SOVIET.MARK_VEHICLE\",\"documentation\":\"UPG.SOVIET.MARK_VEHICLE\",\"detail\":\"UPG.SOVIET.MARK_VEHICLE\"},{\"id\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"documentation\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"detail\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\"},{\"id\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"detail\":\"UPG.SOVIET.NKVD_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"documentation\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"detail\":\"UPG.SOVIET.ORDER_227_DISABLE\"},{\"id\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"documentation\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"detail\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\"},{\"id\":\"UPG.SOVIET.ORDER227\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER227\",\"documentation\":\"UPG.SOVIET.ORDER227\",\"detail\":\"UPG.SOVIET.ORDER227\"},{\"id\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"documentation\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"detail\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\"},{\"id\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"documentation\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"detail\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\"},{\"id\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"documentation\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"detail\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"kind\":17,\"label\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"documentation\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"detail\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\"},{\"id\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\"},{\"id\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"kind\":17,\"label\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"documentation\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"detail\":\"UPG.SOVIET.RADIO_INTERCEPT\"},{\"id\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"kind\":17,\"label\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"documentation\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"detail\":\"UPG.SOVIET.RAPID_CONSCRIPTION\"},{\"id\":\"UPG.SOVIET.REPAIR_BUNKER\",\"kind\":17,\"label\":\"UPG.SOVIET.REPAIR_BUNKER\",\"documentation\":\"UPG.SOVIET.REPAIR_BUNKER\",\"detail\":\"UPG.SOVIET.REPAIR_BUNKER\"},{\"id\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"kind\":17,\"label\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"documentation\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"detail\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\"},{\"id\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"documentation\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"detail\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\"},{\"id\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"kind\":17,\"label\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"documentation\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"detail\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\"},{\"id\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"detail\":\"UPG.SOVIET.SHOCK_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_TROOPS\",\"documentation\":\"UPG.SOVIET.SHOCK_TROOPS\",\"detail\":\"UPG.SOVIET.SHOCK_TROOPS\"},{\"id\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"documentation\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"detail\":\"UPG.SOVIET.SHOCK_TROOPS_SP\"},{\"id\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"kind\":17,\"label\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"documentation\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"detail\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\"},{\"id\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"documentation\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"detail\":\"UPG.SOVIET.SOVIET_INDUSTRY\"},{\"id\":\"UPG.SOVIET.SPY_NETWORK\",\"kind\":17,\"label\":\"UPG.SOVIET.SPY_NETWORK\",\"documentation\":\"UPG.SOVIET.SPY_NETWORK\",\"detail\":\"UPG.SOVIET.SPY_NETWORK\"},{\"id\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"documentation\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"detail\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\"},{\"id\":\"UPG.SOVIET.T34_85_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.T34_85_UNLOCK\",\"documentation\":\"UPG.SOVIET.T34_85_UNLOCK\",\"detail\":\"UPG.SOVIET.T34_85_UNLOCK\"},{\"id\":\"UPG.SOVIET.TANK_DETECTION\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_DETECTION\",\"documentation\":\"UPG.SOVIET.TANK_DETECTION\",\"detail\":\"UPG.SOVIET.TANK_DETECTION\"},{\"id\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"documentation\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"detail\":\"UPG.SOVIET.TANK_RAID_ENABLED\"},{\"id\":\"UPG.SOVIET.TANK_TRAPS\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_TRAPS\",\"documentation\":\"UPG.SOVIET.TANK_TRAPS\",\"detail\":\"UPG.SOVIET.TANK_TRAPS\"},{\"id\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"kind\":17,\"label\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"documentation\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"detail\":\"UPG.SOVIET.TOW_1941_SOVIET\"},{\"id\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"kind\":17,\"label\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"documentation\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"detail\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\"},{\"id\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"documentation\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"detail\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\"},{\"id\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"documentation\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"detail\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\"},{\"id\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"documentation\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"detail\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\"},{\"id\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"documentation\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"detail\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\"},{\"id\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"documentation\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"detail\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\"},{\"id\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"documentation\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"detail\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\"},{\"id\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"documentation\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"detail\":\"EBP.WEST_GERMAN.GOLIATH_MP\"},{\"id\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\"},{\"id\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.HETZER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HETZER_MP\",\"documentation\":\"EBP.WEST_GERMAN.HETZER_MP\",\"detail\":\"EBP.WEST_GERMAN.HETZER_MP\"},{\"id\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.HMG_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"documentation\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"detail\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\"},{\"id\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"documentation\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"detail\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\"},{\"id\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"documentation\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"detail\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\"},{\"id\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"documentation\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"detail\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\"},{\"id\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"documentation\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"detail\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\"},{\"id\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"documentation\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"detail\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\"},{\"id\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"documentation\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"detail\":\"EBP.WEST_GERMAN.JU52_PLANE\"},{\"id\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"documentation\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"detail\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\"},{\"id\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"documentation\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"detail\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\"},{\"id\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"documentation\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"detail\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\"},{\"id\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"documentation\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"detail\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\"},{\"id\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"documentation\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"detail\":\"EBP.WEST_GERMAN.MG34_HMG_MP\"},{\"id\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"documentation\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"detail\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\"},{\"id\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"documentation\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"detail\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\"},{\"id\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"detail\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"detail\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\"},{\"id\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"documentation\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"detail\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\"},{\"id\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"documentation\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"detail\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\"},{\"id\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"documentation\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"detail\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\"},{\"id\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"documentation\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"detail\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\"},{\"id\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"documentation\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"detail\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\"},{\"id\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"documentation\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"detail\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\"},{\"id\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"documentation\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"detail\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\"},{\"id\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"documentation\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"detail\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\"},{\"id\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"documentation\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"detail\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\"},{\"id\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"documentation\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"detail\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\"},{\"id\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\"},{\"id\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"documentation\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"detail\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\"},{\"id\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"documentation\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"detail\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\"},{\"id\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"documentation\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"detail\":\"SBP.WEST_GERMAN.GOLIATH_MP\"},{\"id\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"documentation\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"detail\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\"},{\"id\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"documentation\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"detail\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\"},{\"id\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"documentation\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"detail\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\"},{\"id\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"documentation\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"detail\":\"SBP.WEST_GERMAN.JU52_PLANE\"},{\"id\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"documentation\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"detail\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\"},{\"id\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"documentation\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"detail\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\"},{\"id\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"documentation\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"detail\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\"},{\"id\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"documentation\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"detail\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"documentation\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"detail\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\"},{\"id\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"documentation\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"detail\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\"},{\"id\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"documentation\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"detail\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\"},{\"id\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"detail\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"documentation\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"detail\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\"},{\"id\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"documentation\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"detail\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\"},{\"id\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"documentation\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"detail\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\"},{\"id\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"detail\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\"},{\"id\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"documentation\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"detail\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"documentation\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"detail\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"detail\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"documentation\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"detail\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\"},{\"id\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"documentation\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"detail\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\"},{\"id\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"detail\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"documentation\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"detail\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\"},{\"id\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"detail\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\"},{\"id\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\"},{\"id\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"documentation\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"detail\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"documentation\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"detail\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\"},{\"id\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"documentation\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"detail\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\"},{\"id\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"documentation\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"detail\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\"},{\"id\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"documentation\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"detail\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\"},{\"id\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"documentation\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"detail\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\"},{\"id\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"documentation\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"detail\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\"},{\"id\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\"},{\"id\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"documentation\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"detail\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\"},{\"id\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\"},{\"id\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"documentation\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"detail\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\"},{\"id\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"documentation\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"detail\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\"},{\"id\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\"},{\"id\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"documentation\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"detail\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\"},{\"id\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"documentation\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"detail\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\"},{\"id\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"documentation\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"detail\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\"},{\"id\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"documentation\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"detail\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_1\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_1\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_1\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_1\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_2\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_2\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_2\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_3\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_3\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_3\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_3\"},{\"id\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"documentation\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"detail\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\"},{\"id\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"documentation\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"detail\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\"},{\"id\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"documentation\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"detail\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"detail\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"detail\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\"},{\"id\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"documentation\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"detail\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\"},{\"id\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"documentation\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"detail\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\"},{\"id\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"documentation\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"detail\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\"},{\"id\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"documentation\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"detail\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\"},{\"id\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"documentation\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"detail\":\"UPG.WEST_GERMAN.HEAT_SHELLS\"},{\"id\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"documentation\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"detail\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\"},{\"id\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"documentation\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"detail\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\"},{\"id\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"documentation\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"detail\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\"},{\"id\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"documentation\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"detail\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\"},{\"id\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"documentation\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"detail\":\"UPG.WEST_GERMAN.INFRARED_STG44\"},{\"id\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\"},{\"id\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"documentation\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"detail\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.MG34_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"detail\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"documentation\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"detail\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\"},{\"id\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"documentation\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"detail\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\"},{\"id\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"documentation\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"detail\":\"UPG.WEST_GERMAN.PYRO_VOLKS\"},{\"id\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"documentation\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"detail\":\"UPG.WEST_GERMAN.RADIO_SILENCE\"},{\"id\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"documentation\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"detail\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\"},{\"id\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"documentation\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"detail\":\"UPG.WEST_GERMAN.RECOUP_LOSS\"},{\"id\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"documentation\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"detail\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\"},{\"id\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"documentation\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"detail\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\"},{\"id\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"documentation\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"detail\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\"},{\"id\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"documentation\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"detail\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\"},{\"id\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"documentation\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"detail\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\"},{\"id\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"documentation\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"detail\":\"UPG.WEST_GERMAN.TANK_COMMANDER\"},{\"id\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"documentation\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"detail\":\"UPG.WEST_GERMAN.TANK_GRENADE\"},{\"id\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"documentation\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"detail\":\"UPG.WEST_GERMAN.TERROR_OFFICER\"},{\"id\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"documentation\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"detail\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\"},{\"id\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"documentation\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"detail\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\"},{\"id\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"documentation\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"detail\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\"},{\"id\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"documentation\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"detail\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\"},{\"id\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"documentation\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"detail\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\"},{\"id\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"documentation\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"detail\":\"UPG.WEST_GERMAN.WARNING_FLARES\"},{\"id\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"documentation\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"detail\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\"},{\"id\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"documentation\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"detail\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\"},{\"id\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"documentation\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"detail\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\"},{\"id\":\"ABILITY.GLOBAL.BONUS_0\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_0\",\"documentation\":\"ABILITY.GLOBAL.BONUS_0\",\"detail\":\"ABILITY.GLOBAL.BONUS_0\"},{\"id\":\"ABILITY.GLOBAL.BONUS_1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_1\",\"documentation\":\"ABILITY.GLOBAL.BONUS_1\",\"detail\":\"ABILITY.GLOBAL.BONUS_1\"},{\"id\":\"ABILITY.GLOBAL.BONUS_2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_2\",\"documentation\":\"ABILITY.GLOBAL.BONUS_2\",\"detail\":\"ABILITY.GLOBAL.BONUS_2\"},{\"id\":\"ABILITY.GLOBAL.BONUS_2B\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_2B\",\"documentation\":\"ABILITY.GLOBAL.BONUS_2B\",\"detail\":\"ABILITY.GLOBAL.BONUS_2B\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3\",\"detail\":\"ABILITY.GLOBAL.BONUS_3\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3B\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3B\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3B\",\"detail\":\"ABILITY.GLOBAL.BONUS_3B\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3C\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3C\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3C\",\"detail\":\"ABILITY.GLOBAL.BONUS_3C\"},{\"id\":\"ABILITY.GLOBAL.BONUS_BACK\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_BACK\",\"documentation\":\"ABILITY.GLOBAL.BONUS_BACK\",\"detail\":\"ABILITY.GLOBAL.BONUS_BACK\"},{\"id\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"documentation\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"detail\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\"},{\"id\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"documentation\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"detail\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\"},{\"id\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"documentation\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"detail\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\"},{\"id\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"documentation\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"detail\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\"},{\"id\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"documentation\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"detail\":\"ABILITY.GLOBAL.CAPTURE_SPEED\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\"},{\"id\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"documentation\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"detail\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\"},{\"id\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"documentation\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"detail\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\"},{\"id\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"documentation\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"detail\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\"},{\"id\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"documentation\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"detail\":\"ABILITY.GLOBAL.DROP_WEAPONS\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"detail\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"detail\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"detail\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FIRE_DOT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FIRE_DOT\",\"documentation\":\"ABILITY.GLOBAL.FIRE_DOT\",\"detail\":\"ABILITY.GLOBAL.FIRE_DOT\"},{\"id\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"documentation\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"detail\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\"},{\"id\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"documentation\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"detail\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\"},{\"id\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"documentation\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"detail\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\"},{\"id\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"documentation\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"detail\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\"},{\"id\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"documentation\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"detail\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\"},{\"id\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"documentation\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"detail\":\"ABILITY.GLOBAL.HEAL_IN_COVER\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\"},{\"id\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"documentation\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"detail\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\"},{\"id\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"documentation\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"detail\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\"},{\"id\":\"ABILITY.GLOBAL.KV_2_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.KV_2_TOW\",\"documentation\":\"ABILITY.GLOBAL.KV_2_TOW\",\"detail\":\"ABILITY.GLOBAL.KV_2_TOW\"},{\"id\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"documentation\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"detail\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\"},{\"id\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"documentation\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"detail\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\"},{\"id\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"detail\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"documentation\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"detail\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\"},{\"id\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"documentation\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"detail\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\"},{\"id\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"documentation\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"detail\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\"},{\"id\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"documentation\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"detail\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\"},{\"id\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"documentation\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"detail\":\"ABILITY.GLOBAL.M01_WOUNDED\"},{\"id\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"documentation\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"detail\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\"},{\"id\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"documentation\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"detail\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\"},{\"id\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"documentation\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"detail\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\"},{\"id\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"documentation\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"detail\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\"},{\"id\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"documentation\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"detail\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\"},{\"id\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"documentation\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"detail\":\"ABILITY.GLOBAL.MUDDY_POINT\"},{\"id\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"documentation\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"detail\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"detail\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"detail\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\"},{\"id\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"documentation\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"detail\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\"},{\"id\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"documentation\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"detail\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\"},{\"id\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"documentation\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"detail\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\"},{\"id\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"documentation\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"detail\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\"},{\"id\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"documentation\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"detail\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\"},{\"id\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"documentation\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"detail\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\"},{\"id\":\"ABILITY.GLOBAL.READY_UP\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.READY_UP\",\"documentation\":\"ABILITY.GLOBAL.READY_UP\",\"detail\":\"ABILITY.GLOBAL.READY_UP\"},{\"id\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"documentation\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"detail\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\"},{\"id\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"documentation\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"detail\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\"},{\"id\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"documentation\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"detail\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\"},{\"id\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"documentation\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"detail\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\"},{\"id\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"documentation\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"detail\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\"},{\"id\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"documentation\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"detail\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\"},{\"id\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"documentation\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"detail\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\"},{\"id\":\"ABILITY.GLOBAL.SP_SPRINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SPRINT\",\"documentation\":\"ABILITY.GLOBAL.SP_SPRINT\",\"detail\":\"ABILITY.GLOBAL.SP_SPRINT\"},{\"id\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"documentation\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"detail\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\"},{\"id\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"documentation\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"detail\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\"},{\"id\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"detail\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"detail\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"detail\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\"},{\"id\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\"},{\"id\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"documentation\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"detail\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\"},{\"id\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"documentation\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"detail\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\"},{\"id\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"documentation\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"detail\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\"},{\"id\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"documentation\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"detail\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\"},{\"id\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"documentation\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"detail\":\"ABILITY.GLOBAL.WE_SURRENDER\"},{\"id\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"documentation\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"detail\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\"},{\"id\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"documentation\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"detail\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\"},{\"id\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\"},{\"id\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"documentation\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"detail\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\"},{\"id\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"documentation\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"detail\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\"},{\"id\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"documentation\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"detail\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\"},{\"id\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"documentation\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"detail\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\"},{\"id\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"documentation\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"detail\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\"},{\"id\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"detail\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\"},{\"id\":\"SLOT_ITEM.BAZOOKA_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BAZOOKA_MP\",\"documentation\":\"SLOT_ITEM.BAZOOKA_MP\",\"detail\":\"SLOT_ITEM.BAZOOKA_MP\"},{\"id\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BOFORS_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"documentation\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"detail\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\"},{\"id\":\"SLOT_ITEM.BOOT_STOMP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOOT_STOMP\",\"documentation\":\"SLOT_ITEM.BOOT_STOMP\",\"detail\":\"SLOT_ITEM.BOOT_STOMP\"},{\"id\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"documentation\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"detail\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\"},{\"id\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"documentation\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"detail\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\"},{\"id\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"documentation\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"detail\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\"},{\"id\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"documentation\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"detail\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\"},{\"id\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"documentation\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"detail\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\"},{\"id\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"documentation\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"detail\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\"},{\"id\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"documentation\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"detail\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\"},{\"id\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"documentation\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"detail\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\"},{\"id\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"documentation\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"detail\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\"},{\"id\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"documentation\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"detail\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\"},{\"id\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"kind\":17,\"label\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"documentation\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"detail\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\"},{\"id\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"detail\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"documentation\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"detail\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\"},{\"id\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"documentation\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"detail\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\"},{\"id\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\"},{\"id\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"documentation\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"detail\":\"SLOT_ITEM.COMMISSAR_SHOT_227\"},{\"id\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"documentation\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"detail\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\"},{\"id\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"kind\":17,\"label\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"documentation\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"detail\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\"},{\"id\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"documentation\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"detail\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\"},{\"id\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"documentation\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"detail\":\"SLOT_ITEM.DEF_MOVE_ITEM\"},{\"id\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"kind\":17,\"label\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"documentation\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"detail\":\"SLOT_ITEM.DOUBLE_SWEEP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\"},{\"id\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"detail\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"documentation\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"detail\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\"},{\"id\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"documentation\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"detail\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\"},{\"id\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"documentation\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"detail\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\"},{\"id\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"documentation\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"detail\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\"},{\"id\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"kind\":17,\"label\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"documentation\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"detail\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\"},{\"id\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"documentation\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"detail\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"documentation\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"detail\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\"},{\"id\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\"},{\"id\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"documentation\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"detail\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\"},{\"id\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"documentation\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"detail\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\"},{\"id\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"documentation\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"detail\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\"},{\"id\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\"},{\"id\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"documentation\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"detail\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\"},{\"id\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"documentation\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"detail\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\"},{\"id\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"kind\":17,\"label\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"documentation\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"detail\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\"},{\"id\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"kind\":17,\"label\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"documentation\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"detail\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\"},{\"id\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"kind\":17,\"label\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"documentation\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"detail\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"documentation\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"detail\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\"},{\"id\":\"SLOT_ITEM.M1C_GARAND\",\"kind\":17,\"label\":\"SLOT_ITEM.M1C_GARAND\",\"documentation\":\"SLOT_ITEM.M1C_GARAND\",\"detail\":\"SLOT_ITEM.M1C_GARAND\"},{\"id\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"kind\":17,\"label\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"documentation\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"detail\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\"},{\"id\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"detail\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"documentation\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"detail\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\"},{\"id\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"documentation\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"detail\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\"},{\"id\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"documentation\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"detail\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\"},{\"id\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"documentation\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"detail\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\"},{\"id\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"documentation\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"detail\":\"SLOT_ITEM.MG34_PINTLE_HETZER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\"},{\"id\":\"SLOT_ITEM.MINESWEEPER\",\"kind\":17,\"label\":\"SLOT_ITEM.MINESWEEPER\",\"documentation\":\"SLOT_ITEM.MINESWEEPER\",\"detail\":\"SLOT_ITEM.MINESWEEPER\"},{\"id\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"documentation\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"detail\":\"SLOT_ITEM.MORTAR_FLARE_MP\"},{\"id\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\"},{\"id\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"documentation\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"detail\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\"},{\"id\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"detail\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"documentation\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"detail\":\"SLOT_ITEM.PANZERBUSCHE_39\"},{\"id\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"documentation\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"detail\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\"},{\"id\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"detail\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_G43\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK\",\"detail\":\"SLOT_ITEM.PANZERSHRECK\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_MP\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\"},{\"id\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"documentation\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"detail\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\"},{\"id\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"documentation\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"detail\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\"},{\"id\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\"},{\"id\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"documentation\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"detail\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\"},{\"id\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"documentation\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"detail\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\"},{\"id\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"detail\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"documentation\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"detail\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"detail\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"documentation\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"detail\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\"},{\"id\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"detail\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"documentation\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"detail\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\"},{\"id\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"documentation\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"detail\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\"},{\"id\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"kind\":17,\"label\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"documentation\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"detail\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\"},{\"id\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"documentation\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"detail\":\"SLOT_ITEM.RECOUP_ACTIVE\"},{\"id\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"documentation\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"detail\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"detail\":\"SLOT_ITEM.RIFLEMEN_30_CAL\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"detail\":\"SLOT_ITEM.RIFLEMEN_FLARE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"detail\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"detail\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"detail\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\"},{\"id\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"documentation\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"detail\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\"},{\"id\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"documentation\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"detail\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\"},{\"id\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"detail\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"documentation\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"detail\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\"},{\"id\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"documentation\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"detail\":\"SLOT_ITEM.SIPHON_ACTIVE\"},{\"id\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"detail\":\"SLOT_ITEM.SNIPER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"detail\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\"},{\"id\":\"SLOT_ITEM.SOVIET_FLAG\",\"kind\":17,\"label\":\"SLOT_ITEM.SOVIET_FLAG\",\"documentation\":\"SLOT_ITEM.SOVIET_FLAG\",\"detail\":\"SLOT_ITEM.SOVIET_FLAG\"},{\"id\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"documentation\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"detail\":\"SLOT_ITEM.SPEARHEAD_ITEM\"},{\"id\":\"SLOT_ITEM.STALK_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.STALK_ITEM\",\"documentation\":\"SLOT_ITEM.STALK_ITEM\",\"detail\":\"SLOT_ITEM.STALK_ITEM\"},{\"id\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"documentation\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"detail\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\"},{\"id\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"documentation\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"detail\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\"},{\"id\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"documentation\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"detail\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\"},{\"id\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"documentation\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"detail\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\"},{\"id\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"documentation\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"detail\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\"},{\"id\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"documentation\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"detail\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\"},{\"id\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"kind\":17,\"label\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"documentation\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"detail\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\"},{\"id\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"kind\":17,\"label\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"documentation\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"detail\":\"SLOT_ITEM.TIGER_FLARE_TOW\"},{\"id\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"documentation\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"detail\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\"},{\"id\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"documentation\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"detail\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\"},{\"id\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"documentation\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"detail\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\"},{\"id\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"documentation\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"detail\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\"},{\"id\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"documentation\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"detail\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\"},{\"id\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"documentation\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"detail\":\"SLOT_ITEM.TOMMY_STEN_SMG\"},{\"id\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"kind\":17,\"label\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"documentation\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"detail\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\"},{\"id\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"documentation\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"detail\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\"},{\"id\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"documentation\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"detail\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\"},{\"id\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\"},{\"id\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"documentation\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"detail\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\"},{\"id\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"kind\":17,\"label\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"documentation\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"detail\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\"},{\"id\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"documentation\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"detail\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\"},{\"id\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"kind\":17,\"label\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"documentation\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"detail\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\"},{\"id\":\"CRIT._NO_CRITICAL\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL\",\"documentation\":\"CRIT._NO_CRITICAL\",\"detail\":\"CRIT._NO_CRITICAL\"},{\"id\":\"CRIT._NO_CRITICAL_MINE\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL_MINE\",\"documentation\":\"CRIT._NO_CRITICAL_MINE\",\"detail\":\"CRIT._NO_CRITICAL_MINE\"},{\"id\":\"CRIT._NO_CRITICAL_REAR\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL_REAR\",\"documentation\":\"CRIT._NO_CRITICAL_REAR\",\"detail\":\"CRIT._NO_CRITICAL_REAR\"},{\"id\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"kind\":17,\"label\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"documentation\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"detail\":\"CRIT._SP_ANIA_EXPLOSIVE\"},{\"id\":\"CRIT._SP_ANIA_KILLED\",\"kind\":17,\"label\":\"CRIT._SP_ANIA_KILLED\",\"documentation\":\"CRIT._SP_ANIA_KILLED\",\"detail\":\"CRIT._SP_ANIA_KILLED\"},{\"id\":\"CRIT.ASSAULT_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.ASSAULT_MODIFIERS\",\"documentation\":\"CRIT.ASSAULT_MODIFIERS\",\"detail\":\"CRIT.ASSAULT_MODIFIERS\"},{\"id\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"documentation\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"detail\":\"CRIT.ATTACK_PLAN_MODIFIERS\"},{\"id\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"documentation\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"detail\":\"CRIT.AXIS_ASSAULT_MODIFIERS\"},{\"id\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"documentation\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"detail\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\"},{\"id\":\"CRIT.BRIDGE_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.BRIDGE_MAKE_WRECK\",\"documentation\":\"CRIT.BRIDGE_MAKE_WRECK\",\"detail\":\"CRIT.BRIDGE_MAKE_WRECK\"},{\"id\":\"CRIT.BUILDING_ABANDON\",\"kind\":17,\"label\":\"CRIT.BUILDING_ABANDON\",\"documentation\":\"CRIT.BUILDING_ABANDON\",\"detail\":\"CRIT.BUILDING_ABANDON\"},{\"id\":\"CRIT.BUILDING_BRACED\",\"kind\":17,\"label\":\"CRIT.BUILDING_BRACED\",\"documentation\":\"CRIT.BUILDING_BRACED\",\"detail\":\"CRIT.BUILDING_BRACED\"},{\"id\":\"CRIT.BUILDING_DESTROY\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY\",\"documentation\":\"CRIT.BUILDING_DESTROY\",\"detail\":\"CRIT.BUILDING_DESTROY\"},{\"id\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"documentation\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"detail\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\"},{\"id\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"documentation\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"detail\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\"},{\"id\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"kind\":17,\"label\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"documentation\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"detail\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\"},{\"id\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"kind\":17,\"label\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"documentation\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"detail\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\"},{\"id\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"documentation\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"detail\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\"},{\"id\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"kind\":17,\"label\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"documentation\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"detail\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\"},{\"id\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"documentation\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"detail\":\"CRIT.BUILDING_STRONG_CRITICAL\"},{\"id\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"documentation\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"detail\":\"CRIT.BUILDING_WEAK_CRITICAL\"},{\"id\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"kind\":17,\"label\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"documentation\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"detail\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\"},{\"id\":\"CRIT.BULLET_HIT_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BULLET_HIT_CRITICAL\",\"documentation\":\"CRIT.BULLET_HIT_CRITICAL\",\"detail\":\"CRIT.BULLET_HIT_CRITICAL\"},{\"id\":\"CRIT.BURN\",\"kind\":17,\"label\":\"CRIT.BURN\",\"documentation\":\"CRIT.BURN\",\"detail\":\"CRIT.BURN\"},{\"id\":\"CRIT.BURN_DEATH\",\"kind\":17,\"label\":\"CRIT.BURN_DEATH\",\"documentation\":\"CRIT.BURN_DEATH\",\"detail\":\"CRIT.BURN_DEATH\"},{\"id\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"kind\":17,\"label\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"documentation\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"detail\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\"},{\"id\":\"CRIT.BURN_WORLD_OBJECT\",\"kind\":17,\"label\":\"CRIT.BURN_WORLD_OBJECT\",\"documentation\":\"CRIT.BURN_WORLD_OBJECT\",\"detail\":\"CRIT.BURN_WORLD_OBJECT\"},{\"id\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"kind\":17,\"label\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"documentation\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"detail\":\"CRIT.BURN_WORLD_OBJECT_DEATH\"},{\"id\":\"CRIT.CAMOUFLAGE_MINE\",\"kind\":17,\"label\":\"CRIT.CAMOUFLAGE_MINE\",\"documentation\":\"CRIT.CAMOUFLAGE_MINE\",\"detail\":\"CRIT.CAMOUFLAGE_MINE\"},{\"id\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"documentation\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"detail\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\"},{\"id\":\"CRIT.DETONATE_BANGALORE\",\"kind\":17,\"label\":\"CRIT.DETONATE_BANGALORE\",\"documentation\":\"CRIT.DETONATE_BANGALORE\",\"detail\":\"CRIT.DETONATE_BANGALORE\"},{\"id\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"kind\":17,\"label\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"documentation\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"detail\":\"CRIT.DETONATE_DEMOLITION_CHARGE\"},{\"id\":\"CRIT.DETONATE_MINE\",\"kind\":17,\"label\":\"CRIT.DETONATE_MINE\",\"documentation\":\"CRIT.DETONATE_MINE\",\"detail\":\"CRIT.DETONATE_MINE\"},{\"id\":\"CRIT.EMPLACEMENT_EMPTY\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_EMPTY\",\"documentation\":\"CRIT.EMPLACEMENT_EMPTY\",\"detail\":\"CRIT.EMPLACEMENT_EMPTY\"},{\"id\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"documentation\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"detail\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\"},{\"id\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"documentation\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"detail\":\"CRIT.EMPLACEMENT_KILL_LOADER\"},{\"id\":\"CRIT.EXPLOSIVE_DESTROY\",\"kind\":17,\"label\":\"CRIT.EXPLOSIVE_DESTROY\",\"documentation\":\"CRIT.EXPLOSIVE_DESTROY\",\"detail\":\"CRIT.EXPLOSIVE_DESTROY\"},{\"id\":\"CRIT.GOLIATH_DESTROY\",\"kind\":17,\"label\":\"CRIT.GOLIATH_DESTROY\",\"documentation\":\"CRIT.GOLIATH_DESTROY\",\"detail\":\"CRIT.GOLIATH_DESTROY\"},{\"id\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"kind\":17,\"label\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"documentation\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"detail\":\"CRIT.HEROIC_CHARGE_FATIGUE\"},{\"id\":\"CRIT.MAKE_CASUALTY\",\"kind\":17,\"label\":\"CRIT.MAKE_CASUALTY\",\"documentation\":\"CRIT.MAKE_CASUALTY\",\"detail\":\"CRIT.MAKE_CASUALTY\"},{\"id\":\"CRIT.SOLDIER_BLIND\",\"kind\":17,\"label\":\"CRIT.SOLDIER_BLIND\",\"documentation\":\"CRIT.SOLDIER_BLIND\",\"detail\":\"CRIT.SOLDIER_BLIND\"},{\"id\":\"CRIT.SOLDIER_EXECUTED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_EXECUTED\",\"documentation\":\"CRIT.SOLDIER_EXECUTED\",\"detail\":\"CRIT.SOLDIER_EXECUTED\"},{\"id\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"kind\":17,\"label\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"documentation\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"detail\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\"},{\"id\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"documentation\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"detail\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\"},{\"id\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"documentation\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"detail\":\"CRIT.SOLDIER_FORCE_RETREAT\"},{\"id\":\"CRIT.SOLDIER_FROZEN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FROZEN\",\"documentation\":\"CRIT.SOLDIER_FROZEN\",\"detail\":\"CRIT.SOLDIER_FROZEN\"},{\"id\":\"CRIT.SOLDIER_KILLED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED\",\"documentation\":\"CRIT.SOLDIER_KILLED\",\"detail\":\"CRIT.SOLDIER_KILLED\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\"},{\"id\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"documentation\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"detail\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\"},{\"id\":\"CRIT.SOLDIER_PIN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_PIN\",\"documentation\":\"CRIT.SOLDIER_PIN\",\"detail\":\"CRIT.SOLDIER_PIN\"},{\"id\":\"CRIT.SOLDIER_SLOW\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SLOW\",\"documentation\":\"CRIT.SOLDIER_SLOW\",\"detail\":\"CRIT.SOLDIER_SLOW\"},{\"id\":\"CRIT.SOLDIER_SNIPED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED\",\"documentation\":\"CRIT.SOLDIER_SNIPED\",\"detail\":\"CRIT.SOLDIER_SNIPED\"},{\"id\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"documentation\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"detail\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\"},{\"id\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"documentation\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"detail\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\"},{\"id\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"documentation\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"detail\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\"},{\"id\":\"CRIT.SOLDIER_STUN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_STUN\",\"documentation\":\"CRIT.SOLDIER_STUN\",\"detail\":\"CRIT.SOLDIER_STUN\"},{\"id\":\"CRIT.SOLDIER_SUPPRESS\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SUPPRESS\",\"documentation\":\"CRIT.SOLDIER_SUPPRESS\",\"detail\":\"CRIT.SOLDIER_SUPPRESS\"},{\"id\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"kind\":17,\"label\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"documentation\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"detail\":\"CRIT.SQUAD_ITEM_DAMAGED\"},{\"id\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"kind\":17,\"label\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"documentation\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"detail\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\"},{\"id\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"kind\":17,\"label\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"documentation\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"detail\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\"},{\"id\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"kind\":17,\"label\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"documentation\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"detail\":\"CRIT.SUPPLY_DROP_BLOW_UP\"},{\"id\":\"CRIT.TANK_TRAP_DESTROY\",\"kind\":17,\"label\":\"CRIT.TANK_TRAP_DESTROY\",\"documentation\":\"CRIT.TANK_TRAP_DESTROY\",\"detail\":\"CRIT.TANK_TRAP_DESTROY\"},{\"id\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"kind\":17,\"label\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"documentation\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"detail\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\"},{\"id\":\"CRIT.VEHICLE_ABANDON\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ABANDON\",\"documentation\":\"CRIT.VEHICLE_ABANDON\",\"detail\":\"CRIT.VEHICLE_ABANDON\"},{\"id\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"documentation\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"detail\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\"},{\"id\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"documentation\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"detail\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\"},{\"id\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"documentation\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"detail\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\"},{\"id\":\"CRIT.VEHICLE_BLIND\",\"kind\":17,\"label\":\"CRIT.VEHICLE_BLIND\",\"documentation\":\"CRIT.VEHICLE_BLIND\",\"detail\":\"CRIT.VEHICLE_BLIND\"},{\"id\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"documentation\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"detail\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\"},{\"id\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"documentation\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"detail\":\"CRIT.VEHICLE_CREW_SHOCKED\"},{\"id\":\"CRIT.VEHICLE_CREW_STUNNED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_STUNNED\",\"documentation\":\"CRIT.VEHICLE_CREW_STUNNED\",\"detail\":\"CRIT.VEHICLE_CREW_STUNNED\"},{\"id\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"documentation\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"detail\":\"CRIT.VEHICLE_CREW_STUNNED_2\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\"},{\"id\":\"CRIT.VEHICLE_DECREW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DECREW\",\"documentation\":\"CRIT.VEHICLE_DECREW\",\"detail\":\"CRIT.VEHICLE_DECREW\"},{\"id\":\"CRIT.VEHICLE_DESTROY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY\",\"documentation\":\"CRIT.VEHICLE_DESTROY\",\"detail\":\"CRIT.VEHICLE_DESTROY\"},{\"id\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"documentation\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"detail\":\"CRIT.VEHICLE_DESTROY_BREW_UP\"},{\"id\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"documentation\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"detail\":\"CRIT.VEHICLE_DESTROY_ENGINE\"},{\"id\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"documentation\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"detail\":\"CRIT.VEHICLE_DESTROY_MAINGUN\"},{\"id\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"documentation\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"detail\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\"},{\"id\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"documentation\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"detail\":\"CRIT.VEHICLE_DESTROY_QUAD_50\"},{\"id\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"documentation\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"detail\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\"},{\"id\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"documentation\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"detail\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\"},{\"id\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"documentation\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"detail\":\"CRIT.VEHICLE_DRIVER_INJURED\"},{\"id\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"documentation\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"detail\":\"CRIT.VEHICLE_ENGINE_BURNING\"},{\"id\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"detail\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"documentation\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"detail\":\"CRIT.VEHICLE_GUNNER_INJURED\"},{\"id\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"documentation\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"detail\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\"},{\"id\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"documentation\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"detail\":\"CRIT.VEHICLE_KILL_COMMANDER\"},{\"id\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"detail\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"detail\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_LOADER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LOADER_INJURED\",\"documentation\":\"CRIT.VEHICLE_LOADER_INJURED\",\"detail\":\"CRIT.VEHICLE_LOADER_INJURED\"},{\"id\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"documentation\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"detail\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\"},{\"id\":\"CRIT.VEHICLE_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.VEHICLE_MAKE_WRECK\",\"documentation\":\"CRIT.VEHICLE_MAKE_WRECK\",\"detail\":\"CRIT.VEHICLE_MAKE_WRECK\"},{\"id\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"detail\":\"CRIT.VEHICLE_OPTICS_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"documentation\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"detail\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"detail\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"detail\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"detail\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\"},{\"id\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"documentation\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"detail\":\"CRIT.VEHICLE_SHELL_SHOCKED\"},{\"id\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"documentation\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"detail\":\"CRIT.VEHICLE_SNIPER_SLOW\"},{\"id\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"kind\":17,\"label\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"documentation\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"detail\":\"CRIT.VEHICLE_STUCK_IN_MUD\"},{\"id\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"documentation\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"detail\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\"},{\"id\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"documentation\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"detail\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\"},{\"id\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"documentation\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"detail\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\"},{\"id\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"documentation\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"detail\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\"},{\"id\":\"CRIT.VEHICLE_VISION\",\"kind\":17,\"label\":\"CRIT.VEHICLE_VISION\",\"documentation\":\"CRIT.VEHICLE_VISION\",\"detail\":\"CRIT.VEHICLE_VISION\"},{\"id\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"detail\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"documentation\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"detail\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\"},{\"id\":\"CRIT.WORLD_DESTROY_BARRIER\",\"kind\":17,\"label\":\"CRIT.WORLD_DESTROY_BARRIER\",\"documentation\":\"CRIT.WORLD_DESTROY_BARRIER\",\"detail\":\"CRIT.WORLD_DESTROY_BARRIER\"},{\"id\":\"CRIT.WORLD_OBJECT_DESTROY\",\"kind\":17,\"label\":\"CRIT.WORLD_OBJECT_DESTROY\",\"documentation\":\"CRIT.WORLD_OBJECT_DESTROY\",\"detail\":\"CRIT.WORLD_OBJECT_DESTROY\"},{\"id\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"kind\":17,\"label\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"documentation\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"detail\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\"},{\"id\":\"workspace_BridgeReplace_OnInit\",\"name\":\"BridgeReplace_OnInit\",\"filepath\":\"e:coh2_mods2p_bridge_replacescar2p_bridge_replace.scar\",\"kind\":8,\"label\":\"BridgeReplace_OnInit\",\"detail\":\"BridgeReplace_OnInit()\",\"documentation\":\"File: e:coh2_mods2p_bridge_replacescar2p_bridge_replace.scar, line 3\"},{\"id\":\"workspace_SkinPreviewCapture_Init\",\"name\":\"SkinPreviewCapture_Init\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Init\",\"detail\":\"SkinPreviewCapture_Init()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 21\"},{\"id\":\"workspace_SkinPreviewCapture_SpawnVehicles\",\"name\":\"SkinPreviewCapture_SpawnVehicles\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_SpawnVehicles\",\"detail\":\"SkinPreviewCapture_SpawnVehicles()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 72\"},{\"id\":\"workspace_SkinPreviewCapture_UIInit\",\"name\":\"SkinPreviewCapture_UIInit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_UIInit\",\"detail\":\"SkinPreviewCapture_UIInit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 125\"},{\"id\":\"workspace_SkinPreviewCapture_CycleAndCaptureScreenshots\",\"name\":\"SkinPreviewCapture_CycleAndCaptureScreenshots\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_CycleAndCaptureScreenshots\",\"detail\":\"SkinPreviewCapture_CycleAndCaptureScreenshots()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 247\"},{\"id\":\"workspace_SkinPreviewCapture_Begin\",\"name\":\"SkinPreviewCapture_Begin\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Begin\",\"detail\":\"SkinPreviewCapture_Begin()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 268\"},{\"id\":\"workspace_SkinPreviewCapture_BeginCountdown\",\"name\":\"SkinPreviewCapture_BeginCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_BeginCountdown\",\"detail\":\"SkinPreviewCapture_BeginCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 323\"},{\"id\":\"workspace_SkinPreviewCapture_ExitCountdown\",\"name\":\"SkinPreviewCapture_ExitCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_ExitCountdown\",\"detail\":\"SkinPreviewCapture_ExitCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 334\"},{\"id\":\"workspace_SkinPreviewCapture_Exit\",\"name\":\"SkinPreviewCapture_Exit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Exit\",\"detail\":\"SkinPreviewCapture_Exit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 345\"},{\"id\":\"workspace_SkinPreviewCapture_StartCountdown\",\"name\":\"SkinPreviewCapture_StartCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_StartCountdown\",\"detail\":\"SkinPreviewCapture_StartCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 351\"},{\"id\":\"workspace_Map_PreInit\",\"name\":\"Map_PreInit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscar2p_skin_preview_map.scar\",\"kind\":8,\"label\":\"Map_PreInit\",\"detail\":\"Map_PreInit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscar2p_skin_preview_map.scar, line 29\"},{\"id\":\"workspace_SkinPreviewCapture_Configure\",\"name\":\"SkinPreviewCapture_Configure\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture_config.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Configure\",\"detail\":\"SkinPreviewCapture_Configure()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture_config.scar, line 1\"},{\"id\":\"workspace_AOH_PreInit\",\"name\":\"AOH_PreInit\",\"filepath\":\"e:coh2_modsage_of_heroes_oldaoh_wincondition_packscaraoh_core.scar\",\"kind\":8,\"label\":\"AOH_PreInit\",\"detail\":\"AOH_PreInit()\",\"documentation\":\"File: e:coh2_modsage_of_heroes_oldaoh_wincondition_packscaraoh_core.scar, line 3\"},{\"id\":\"workspace_AV_PreInit\",\"name\":\"AV_PreInit\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory_core.scar\",\"kind\":8,\"label\":\"AV_PreInit\",\"detail\":\"AV_PreInit()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory_core.scar, line 8\"},{\"id\":\"workspace_AV_Init\",\"name\":\"AV_Init\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_Init\",\"detail\":\"AV_Init()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 8\"},{\"id\":\"workspace_AV_UpdateObjectiveTimer\",\"name\":\"AV_UpdateObjectiveTimer\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_UpdateObjectiveTimer\",\"detail\":\"AV_UpdateObjectiveTimer()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 15\"},{\"id\":\"workspace_AV_UIInit\",\"name\":\"AV_UIInit\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_UIInit\",\"detail\":\"AV_UIInit()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 46\"},{\"id\":\"workspace_AV_End\",\"name\":\"AV_End\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_End\",\"detail\":\"AV_End()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 105\"},{\"id\":\"workspace_CCM_ActionSpawnUKFSpawner\",\"name\":\"CCM_ActionSpawnUKFSpawner\",\"filepath\":\"e:coh2_modsccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnUKFSpawner\",\"detail\":\"CCM_ActionSpawnUKFSpawner(caster, target)\",\"documentation\":\"File: e:coh2_modsccmscarccm_action.scar, line 261\"},{\"id\":\"workspace_CCM_ActionSpawnUKFMiscSpawner\",\"name\":\"CCM_ActionSpawnUKFMiscSpawner\",\"filepath\":\"e:coh2_modsccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnUKFMiscSpawner\",\"detail\":\"CCM_ActionSpawnUKFMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_modsccmscarccm_action.scar, line 301\"},{\"id\":\"workspace_Squad_ToClipboardData\",\"name\":\"Squad_ToClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Squad_ToClipboardData\",\"detail\":\"Squad_ToClipboardData(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 22\"},{\"id\":\"workspace_Squad_FromClipboardData\",\"name\":\"Squad_FromClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Squad_FromClipboardData\",\"detail\":\"Squad_FromClipboardData(data, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 52\"},{\"id\":\"workspace_Entity_FromClipboardData\",\"name\":\"Entity_FromClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Entity_FromClipboardData\",\"detail\":\"Entity_FromClipboardData(data, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 125\"},{\"id\":\"workspace_Entity_ToDataParameters\",\"name\":\"Entity_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Entity_ToDataParameters\",\"detail\":\"Entity_ToDataParameters(entity)\",\"documentation\":\"****************************************************************************************--n*************************************** ENTITY *****************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 26\"},{\"id\":\"workspace_Entity_GetHealthPointsString\",\"name\":\"Entity_GetHealthPointsString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Entity_GetHealthPointsString\",\"detail\":\"Entity_GetHealthPointsString(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 30\"},{\"id\":\"workspace_Squad_ToDataParameters\",\"name\":\"Squad_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Squad_ToDataParameters\",\"detail\":\"Squad_ToDataParameters(squad)\",\"documentation\":\"****************************************************************************************--n*************************************** SQUAD ******************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 37\"},{\"id\":\"workspace_Squad_GetHealthPointsString\",\"name\":\"Squad_GetHealthPointsString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Squad_GetHealthPointsString\",\"detail\":\"Squad_GetHealthPointsString(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 41\"},{\"id\":\"workspace_Player_ToDataParameters\",\"name\":\"Player_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_ToDataParameters\",\"detail\":\"Player_ToDataParameters(player)\",\"documentation\":\"****************************************************************************************--n*************************************** PLAYER *****************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 48\"},{\"id\":\"workspace_Player_GetSetting\",\"name\":\"Player_GetSetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_GetSetting\",\"detail\":\"Player_GetSetting(player, name)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 52\"},{\"id\":\"workspace_Player_SetSetting\",\"name\":\"Player_SetSetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_SetSetting\",\"detail\":\"Player_SetSetting(player, name, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 56\"},{\"id\":\"workspace_Player_GetSettings\",\"name\":\"Player_GetSettings\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_GetSettings\",\"detail\":\"Player_GetSettings(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 60\"},{\"id\":\"workspace_LocalPlayer_GetSettings\",\"name\":\"LocalPlayer_GetSettings\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"LocalPlayer_GetSettings\",\"detail\":\"LocalPlayer_GetSettings()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 64\"},{\"id\":\"workspace_Data_GetHealthModifiedString\",\"name\":\"Data_GetHealthModifiedString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Data_GetHealthModifiedString\",\"detail\":\"Data_GetHealthModifiedString(playerData, data, itemType, valueUnit, editMethod)\",\"documentation\":\"****************************************************************************************--n**************************************** MISC ******************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 70\"},{\"id\":\"workspace_Data_GetOwnerChangedString\",\"name\":\"Data_GetOwnerChangedString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Data_GetOwnerChangedString\",\"detail\":\"Data_GetOwnerChangedString(playerData, data, newOwner)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 105\"},{\"id\":\"workspace_CCM_EventCueClickManger\",\"name\":\"CCM_EventCueClickManger\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventCueClickManger\",\"detail\":\"CCM_EventCueClickManger(id)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 128\"},{\"id\":\"workspace_CCM_EventMessage\",\"name\":\"CCM_EventMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventMessage\",\"detail\":\"CCM_EventMessage(msg, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 134\"},{\"id\":\"workspace_CCM_EventKickerMessage\",\"name\":\"CCM_EventKickerMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerMessage\",\"detail\":\"CCM_EventKickerMessage(msg, pos, color)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 140\"},{\"id\":\"workspace_CCM_EventKickerMessageEval\",\"name\":\"CCM_EventKickerMessageEval\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerMessageEval\",\"detail\":\"CCM_EventKickerMessageEval(msg, pos, eval, prependTrue, prependFalse, colorTrue, colorFalse)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 154\"},{\"id\":\"workspace_CCM_EventKickerHealthMessageEval\",\"name\":\"CCM_EventKickerHealthMessageEval\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerHealthMessageEval\",\"detail\":\"CCM_EventKickerHealthMessageEval(msg, pos, eval, prependTrue, prependFalse, colorTrue, colorFalse)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 170\"},{\"id\":\"workspace_CCM_ErrorMessage\",\"name\":\"CCM_ErrorMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_ErrorMessage\",\"detail\":\"CCM_ErrorMessage(msg, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 188\"},{\"id\":\"workspace_Item_GetEnemyPlayer\",\"name\":\"Item_GetEnemyPlayer\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Item_GetEnemyPlayer\",\"detail\":\"Item_GetEnemyPlayer(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 194\"},{\"id\":\"workspace_CCM_SpawnQueueTick\",\"name\":\"CCM_SpawnQueueTick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueTick\",\"detail\":\"CCM_SpawnQueueTick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 218\"},{\"id\":\"workspace_CCM_SpawnQueueInit\",\"name\":\"CCM_SpawnQueueInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueInit\",\"detail\":\"CCM_SpawnQueueInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 239\"},{\"id\":\"workspace_CCM_SpawnQueueAdd\",\"name\":\"CCM_SpawnQueueAdd\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueAdd\",\"detail\":\"CCM_SpawnQueueAdd(command, parameters)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 245\"},{\"id\":\"workspace_CCM_DummyMessage\",\"name\":\"CCM_DummyMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_DummyMessage\",\"detail\":\"CCM_DummyMessage()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 249\"},{\"id\":\"workspace_CCM_PlayerCommandIssued\",\"name\":\"CCM_PlayerCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_PlayerCommandIssued\",\"detail\":\"CCM_PlayerCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 264\"},{\"id\":\"workspace_CCM_SquadCommandIssued\",\"name\":\"CCM_SquadCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SquadCommandIssued\",\"detail\":\"CCM_SquadCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 269\"},{\"id\":\"workspace_CCM_EntityCommandIssued\",\"name\":\"CCM_EntityCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EntityCommandIssued\",\"detail\":\"CCM_EntityCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 274\"},{\"id\":\"workspace_CCM_CustomUIEvent\",\"name\":\"CCM_CustomUIEvent\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_CustomUIEvent\",\"detail\":\"CCM_CustomUIEvent()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 280\"},{\"id\":\"workspace_Variable_FromG\",\"name\":\"Variable_FromG\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Variable_FromG\",\"detail\":\"Variable_FromG(var)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 287\"},{\"id\":\"workspace_Ternary\",\"name\":\"Ternary\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Ternary\",\"detail\":\"Ternary(var, _true, _false)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 297\"},{\"id\":\"workspace_CCM_PlayerCommandIssued2\",\"name\":\"CCM_PlayerCommandIssued2\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_PlayerCommandIssued2\",\"detail\":\"CCM_PlayerCommandIssued2()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 301\"},{\"id\":\"workspace_CCM_ConfigInit\",\"name\":\"CCM_ConfigInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"CCM_ConfigInit\",\"detail\":\"CCM_ConfigInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 28\"},{\"id\":\"workspace___subMenu_SetUpdateRate\",\"name\":\"__subMenu_SetUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_SetUpdateRate\",\"detail\":\"__subMenu_SetUpdateRate(setterFunction, settingName)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2483\"},{\"id\":\"workspace___subMenu_SpawnUnits\",\"name\":\"__subMenu_SpawnUnits\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_SpawnUnits\",\"detail\":\"__subMenu_SpawnUnits(name, units, icon)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2506\"},{\"id\":\"workspace___subMenu_ManipulateSquadMembers\",\"name\":\"__subMenu_ManipulateSquadMembers\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_ManipulateSquadMembers\",\"detail\":\"__subMenu_ManipulateSquadMembers(func)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2651\"},{\"id\":\"workspace___panel_SelectionHealth\",\"name\":\"__panel_SelectionHealth\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__panel_SelectionHealth\",\"detail\":\"__panel_SelectionHealth()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2700\"},{\"id\":\"workspace_TestFormAdd\",\"name\":\"TestFormAdd\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"TestFormAdd\",\"detail\":\"TestFormAdd()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2843\"},{\"id\":\"workspace_TestFormRender\",\"name\":\"TestFormRender\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"TestFormRender\",\"detail\":\"TestFormRender()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2932\"},{\"id\":\"workspace_Test_SlotItemRemoveSpam\",\"name\":\"Test_SlotItemRemoveSpam\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"Test_SlotItemRemoveSpam\",\"detail\":\"Test_SlotItemRemoveSpam()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2940\"},{\"id\":\"workspace_Test_SlotItemRemoveSpam_Tick\",\"name\":\"Test_SlotItemRemoveSpam_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"Test_SlotItemRemoveSpam_Tick\",\"detail\":\"Test_SlotItemRemoveSpam_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2944\"},{\"id\":\"workspace_CCM_HealthMonitor_Tick\",\"name\":\"CCM_HealthMonitor_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_Tick\",\"detail\":\"CCM_HealthMonitor_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 24\"},{\"id\":\"workspace_CCM_HealthMonitor_HandleHealthMessage\",\"name\":\"CCM_HealthMonitor_HandleHealthMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_HandleHealthMessage\",\"detail\":\"CCM_HealthMonitor_HandleHealthMessage(player, difference, pos, item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 76\"},{\"id\":\"workspace_CCM_HealthMonitor_RegisterNewItem\",\"name\":\"CCM_HealthMonitor_RegisterNewItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_RegisterNewItem\",\"detail\":\"CCM_HealthMonitor_RegisterNewItem(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 108\"},{\"id\":\"workspace_CCM_HealthMonitorInit\",\"name\":\"CCM_HealthMonitorInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitorInit\",\"detail\":\"CCM_HealthMonitorInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 134\"},{\"id\":\"workspace_CCM_SuppressionMonitor_Tick\",\"name\":\"CCM_SuppressionMonitor_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitor_Tick\",\"detail\":\"CCM_SuppressionMonitor_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 24\"},{\"id\":\"workspace_CCM_SuppressionMonitor_HandleMessage\",\"name\":\"CCM_SuppressionMonitor_HandleMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitor_HandleMessage\",\"detail\":\"CCM_SuppressionMonitor_HandleMessage(player, suppression, pos, item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 53\"},{\"id\":\"workspace_CCM_SuppressionhMonitor_RegisterNewItem\",\"name\":\"CCM_SuppressionhMonitor_RegisterNewItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionhMonitor_RegisterNewItem\",\"detail\":\"CCM_SuppressionhMonitor_RegisterNewItem(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 74\"},{\"id\":\"workspace_CCM_SuppressionMonitorInit\",\"name\":\"CCM_SuppressionMonitorInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitorInit\",\"detail\":\"CCM_SuppressionMonitorInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 88\"},{\"id\":\"workspace_CCM_Init\",\"name\":\"CCM_Init\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_Init\",\"detail\":\"CCM_Init()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 22\"},{\"id\":\"workspace_CCM_UIInit\",\"name\":\"CCM_UIInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_UIInit\",\"detail\":\"CCM_UIInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 165\"},{\"id\":\"workspace_CCM_BroadcastMessageReceived\",\"name\":\"CCM_BroadcastMessageReceived\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_BroadcastMessageReceived\",\"detail\":\"CCM_BroadcastMessageReceived(player, command, data)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 227\"},{\"id\":\"workspace_CCM_Broadcast\",\"name\":\"CCM_Broadcast\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_Broadcast\",\"detail\":\"CCM_Broadcast(command, data)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1132\"},{\"id\":\"workspace_CCM_ShowCrosshair\",\"name\":\"CCM_ShowCrosshair\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ShowCrosshair\",\"detail\":\"CCM_ShowCrosshair()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1139\"},{\"id\":\"workspace_CCM_HideCrosshair\",\"name\":\"CCM_HideCrosshair\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_HideCrosshair\",\"detail\":\"CCM_HideCrosshair()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1145\"},{\"id\":\"workspace_CCM_DisableUI\",\"name\":\"CCM_DisableUI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableUI\",\"detail\":\"CCM_DisableUI(renableSeconds)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1151\"},{\"id\":\"workspace_CCM_EnableUI\",\"name\":\"CCM_EnableUI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableUI\",\"detail\":\"CCM_EnableUI()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1165\"},{\"id\":\"workspace_CCM_KillSelection\",\"name\":\"CCM_KillSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillSelection\",\"detail\":\"CCM_KillSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1171\"},{\"id\":\"workspace_CCM_DeleteSelection\",\"name\":\"CCM_DeleteSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteSelection\",\"detail\":\"CCM_DeleteSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1180\"},{\"id\":\"workspace_CCM_KillSquad\",\"name\":\"CCM_KillSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillSquad\",\"detail\":\"CCM_KillSquad(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1189\"},{\"id\":\"workspace_CCM_DeleteSquad\",\"name\":\"CCM_DeleteSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteSquad\",\"detail\":\"CCM_DeleteSquad(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1193\"},{\"id\":\"workspace_CCM_KillEntity\",\"name\":\"CCM_KillEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillEntity\",\"detail\":\"CCM_KillEntity(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1197\"},{\"id\":\"workspace_CCM_DeleteEntity\",\"name\":\"CCM_DeleteEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteEntity\",\"detail\":\"CCM_DeleteEntity(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1201\"},{\"id\":\"workspace_CCM_EnableFOW\",\"name\":\"CCM_EnableFOW\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableFOW\",\"detail\":\"CCM_EnableFOW()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1205\"},{\"id\":\"workspace_CCM_DisableFOW\",\"name\":\"CCM_DisableFOW\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableFOW\",\"detail\":\"CCM_DisableFOW()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1209\"},{\"id\":\"workspace_CCM_EnableAI\",\"name\":\"CCM_EnableAI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableAI\",\"detail\":\"CCM_EnableAI(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1213\"},{\"id\":\"workspace_CCM_DisableAI\",\"name\":\"CCM_DisableAI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableAI\",\"detail\":\"CCM_DisableAI(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1217\"},{\"id\":\"workspace_CCM_SetAIDifficulty\",\"name\":\"CCM_SetAIDifficulty\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetAIDifficulty\",\"detail\":\"CCM_SetAIDifficulty(player, difficulty)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1221\"},{\"id\":\"workspace_CCM_SetSelectionHealth\",\"name\":\"CCM_SetSelectionHealth\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionHealth\",\"detail\":\"CCM_SetSelectionHealth(percentage)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1225\"},{\"id\":\"workspace_CCM_AddSelectionHealthPercentage\",\"name\":\"CCM_AddSelectionHealthPercentage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionHealthPercentage\",\"detail\":\"CCM_AddSelectionHealthPercentage(percentageAdd)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1235\"},{\"id\":\"workspace_CCM_AddSelectionHealthPoints\",\"name\":\"CCM_AddSelectionHealthPoints\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionHealthPoints\",\"detail\":\"CCM_AddSelectionHealthPoints(pointsAdd)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1245\"},{\"id\":\"workspace_CCM_SetSelectionInvulnerability\",\"name\":\"CCM_SetSelectionInvulnerability\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionInvulnerability\",\"detail\":\"CCM_SetSelectionInvulnerability(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1256\"},{\"id\":\"workspace_CCM_SetSelectionOwner\",\"name\":\"CCM_SetSelectionOwner\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionOwner\",\"detail\":\"CCM_SetSelectionOwner(owner)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1266\"},{\"id\":\"workspace_CCM_AddResource\",\"name\":\"CCM_AddResource\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddResource\",\"detail\":\"CCM_AddResource(player, resourceType, amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1291\"},{\"id\":\"workspace_CCM_ResetResource\",\"name\":\"CCM_ResetResource\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ResetResource\",\"detail\":\"CCM_ResetResource(player, resourceType)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1295\"},{\"id\":\"workspace_CCM_AddPopulationCap\",\"name\":\"CCM_AddPopulationCap\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddPopulationCap\",\"detail\":\"CCM_AddPopulationCap(player, amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1299\"},{\"id\":\"workspace_CCM_SetInstantProductionEnabled\",\"name\":\"CCM_SetInstantProductionEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantProductionEnabled\",\"detail\":\"CCM_SetInstantProductionEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1303\"},{\"id\":\"workspace_CCM_SetInstantConstructionEnabled\",\"name\":\"CCM_SetInstantConstructionEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantConstructionEnabled\",\"detail\":\"CCM_SetInstantConstructionEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1307\"},{\"id\":\"workspace_CCM_SetInstantAbilityRechargeEnabled\",\"name\":\"CCM_SetInstantAbilityRechargeEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantAbilityRechargeEnabled\",\"detail\":\"CCM_SetInstantAbilityRechargeEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1311\"},{\"id\":\"workspace_CCM_SpawnSquad\",\"name\":\"CCM_SpawnSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnSquad\",\"detail\":\"CCM_SpawnSquad(player, sbp)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1315\"},{\"id\":\"workspace_CCM_SpawnEntity\",\"name\":\"CCM_SpawnEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnEntity\",\"detail\":\"CCM_SpawnEntity(player, ebp)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1321\"},{\"id\":\"workspace_CCM_SpawnSlotItem\",\"name\":\"CCM_SpawnSlotItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnSlotItem\",\"detail\":\"CCM_SpawnSlotItem(player, slotItem)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1326\"},{\"id\":\"workspace_CCM_IncreaseSelectionXP\",\"name\":\"CCM_IncreaseSelectionXP\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_IncreaseSelectionXP\",\"detail\":\"CCM_IncreaseSelectionXP(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1331\"},{\"id\":\"workspace_CCM_IncreaseSelectionVeterancyLevel\",\"name\":\"CCM_IncreaseSelectionVeterancyLevel\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_IncreaseSelectionVeterancyLevel\",\"detail\":\"CCM_IncreaseSelectionVeterancyLevel(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1341\"},{\"id\":\"workspace_CCM_InstantReinforceSelection\",\"name\":\"CCM_InstantReinforceSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_InstantReinforceSelection\",\"detail\":\"CCM_InstantReinforceSelection(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1347\"},{\"id\":\"workspace_CCM_SplitSelection\",\"name\":\"CCM_SplitSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SplitSelection\",\"detail\":\"CCM_SplitSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1353\"},{\"id\":\"workspace_CCM_RemoveSelectionCriticals\",\"name\":\"CCM_RemoveSelectionCriticals\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSelectionCriticals\",\"detail\":\"CCM_RemoveSelectionCriticals()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1359\"},{\"id\":\"workspace_CCM_RemoveSquadCritical\",\"name\":\"CCM_RemoveSquadCritical\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadCritical\",\"detail\":\"CCM_RemoveSquadCritical(squad, crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1368\"},{\"id\":\"workspace_CCM_RemoveEntityCritical\",\"name\":\"CCM_RemoveEntityCritical\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveEntityCritical\",\"detail\":\"CCM_RemoveEntityCritical(entity, crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1372\"},{\"id\":\"workspace_CCM_ApplyCriticalToSelection\",\"name\":\"CCM_ApplyCriticalToSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ApplyCriticalToSelection\",\"detail\":\"CCM_ApplyCriticalToSelection(crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1376\"},{\"id\":\"workspace_CCM_SetSquadAutoTargetting\",\"name\":\"CCM_SetSquadAutoTargetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSquadAutoTargetting\",\"detail\":\"CCM_SetSquadAutoTargetting(squad, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1385\"},{\"id\":\"workspace_CCM_RemoveSquadUpgrade\",\"name\":\"CCM_RemoveSquadUpgrade\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadUpgrade\",\"detail\":\"CCM_RemoveSquadUpgrade(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1389\"},{\"id\":\"workspace_CCM_RemoveEntityUpgrade\",\"name\":\"CCM_RemoveEntityUpgrade\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveEntityUpgrade\",\"detail\":\"CCM_RemoveEntityUpgrade(entity, upgrade)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1393\"},{\"id\":\"workspace_CCM_RemoveSquadSlotItem\",\"name\":\"CCM_RemoveSquadSlotItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadSlotItem\",\"detail\":\"CCM_RemoveSquadSlotItem(squad, slotItem)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1397\"},{\"id\":\"workspace_CCM_SetSelectionFacing\",\"name\":\"CCM_SetSelectionFacing\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionFacing\",\"detail\":\"CCM_SetSelectionFacing()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1401\"},{\"id\":\"workspace_CCM_TeleportSelection\",\"name\":\"CCM_TeleportSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_TeleportSelection\",\"detail\":\"CCM_TeleportSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1409\"},{\"id\":\"workspace_CCM_KillEverything\",\"name\":\"CCM_KillEverything\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillEverything\",\"detail\":\"CCM_KillEverything(radius)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1420\"},{\"id\":\"workspace_CCM_DeleteEverything\",\"name\":\"CCM_DeleteEverything\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteEverything\",\"detail\":\"CCM_DeleteEverything(radius)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1425\"},{\"id\":\"workspace_CCM_RotateEntity\",\"name\":\"CCM_RotateEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RotateEntity\",\"detail\":\"CCM_RotateEntity(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1430\"},{\"id\":\"workspace_CCM_SetHealthMonitorEnabled\",\"name\":\"CCM_SetHealthMonitorEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetHealthMonitorEnabled\",\"detail\":\"CCM_SetHealthMonitorEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1452\"},{\"id\":\"workspace_CCM_SetSuppressionMonitorEnabled\",\"name\":\"CCM_SetSuppressionMonitorEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSuppressionMonitorEnabled\",\"detail\":\"CCM_SetSuppressionMonitorEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1456\"},{\"id\":\"workspace_CCM_SelectedTeamWeaponGarrisonFacePosition\",\"name\":\"CCM_SelectedTeamWeaponGarrisonFacePosition\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SelectedTeamWeaponGarrisonFacePosition\",\"detail\":\"CCM_SelectedTeamWeaponGarrisonFacePosition()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1460\"},{\"id\":\"workspace_CCM_CancelTeamWeaponGarrisonFacingOrder\",\"name\":\"CCM_CancelTeamWeaponGarrisonFacingOrder\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_CancelTeamWeaponGarrisonFacingOrder\",\"detail\":\"CCM_CancelTeamWeaponGarrisonFacingOrder()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1470\"},{\"id\":\"workspace_CCM_AddSelectionSuppression\",\"name\":\"CCM_AddSelectionSuppression\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionSuppression\",\"detail\":\"CCM_AddSelectionSuppression(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1478\"},{\"id\":\"workspace_CCM_SetAllAIPlayersEnabled\",\"name\":\"CCM_SetAllAIPlayersEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetAllAIPlayersEnabled\",\"detail\":\"CCM_SetAllAIPlayersEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1486\"},{\"id\":\"workspace_CCM_ResetSelectionVeterancy\",\"name\":\"CCM_ResetSelectionVeterancy\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ResetSelectionVeterancy\",\"detail\":\"CCM_ResetSelectionVeterancy()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1490\"},{\"id\":\"workspace_CCM_SetResourceIncomeEnabled\",\"name\":\"CCM_SetResourceIncomeEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetResourceIncomeEnabled\",\"detail\":\"CCM_SetResourceIncomeEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1496\"},{\"id\":\"workspace_CCM_SetHealthMonitorUpdateRate\",\"name\":\"CCM_SetHealthMonitorUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetHealthMonitorUpdateRate\",\"detail\":\"CCM_SetHealthMonitorUpdateRate(rate)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1500\"},{\"id\":\"workspace_CCM_SetSuppressionMonitorUpdateRate\",\"name\":\"CCM_SetSuppressionMonitorUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSuppressionMonitorUpdateRate\",\"detail\":\"CCM_SetSuppressionMonitorUpdateRate(rate)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1504\"},{\"id\":\"workspace_CCM_UnlockCommanderAbility\",\"name\":\"CCM_UnlockCommanderAbility\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_UnlockCommanderAbility\",\"detail\":\"CCM_UnlockCommanderAbility(player, ability, upgrade, abilityName)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1508\"},{\"id\":\"workspace_CCM_ClearCommanderAbilities\",\"name\":\"CCM_ClearCommanderAbilities\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ClearCommanderAbilities\",\"detail\":\"CCM_ClearCommanderAbilities(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1518\"},{\"id\":\"workspace_CCM_ModifySquadMovementSpeed\",\"name\":\"CCM_ModifySquadMovementSpeed\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ModifySquadMovementSpeed\",\"detail\":\"CCM_ModifySquadMovementSpeed(squad, addition)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1522\"},{\"id\":\"workspace_CCM_SetSelectionOwnerToEnemy\",\"name\":\"CCM_SetSelectionOwnerToEnemy\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionOwnerToEnemy\",\"detail\":\"CCM_SetSelectionOwnerToEnemy()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1526\"},{\"id\":\"workspace_CCM_SquadToEntity\",\"name\":\"CCM_SquadToEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SquadToEntity\",\"detail\":\"CCM_SquadToEntity(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1535\"},{\"id\":\"workspace_CCM_SetEntityAnimatorState\",\"name\":\"CCM_SetEntityAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetEntityAnimatorState\",\"detail\":\"CCM_SetEntityAnimatorState(entity, state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1539\"},{\"id\":\"workspace_CCM_SetSquadAnimatorState\",\"name\":\"CCM_SetSquadAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSquadAnimatorState\",\"detail\":\"CCM_SetSquadAnimatorState(squad, state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1543\"},{\"id\":\"workspace_CCM_SetSelectionAnimatorState\",\"name\":\"CCM_SetSelectionAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionAnimatorState\",\"detail\":\"CCM_SetSelectionAnimatorState(state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1547\"},{\"id\":\"workspace_CCM_SetSelectionSkinType\",\"name\":\"CCM_SetSelectionSkinType\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionSkinType\",\"detail\":\"CCM_SetSelectionSkinType(skinType)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1556\"},{\"id\":\"workspace_CCM_DropSelectionWeapons\",\"name\":\"CCM_DropSelectionWeapons\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DropSelectionWeapons\",\"detail\":\"CCM_DropSelectionWeapons()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1567\"},{\"id\":\"workspace_CCM_CaptureAllTerritorySectors\",\"name\":\"CCM_CaptureAllTerritorySectors\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_CaptureAllTerritorySectors\",\"detail\":\"CCM_CaptureAllTerritorySectors()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1573\"},{\"id\":\"workspace_CCM_NeutralizeAllTerritorySectors\",\"name\":\"CCM_NeutralizeAllTerritorySectors\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_NeutralizeAllTerritorySectors\",\"detail\":\"CCM_NeutralizeAllTerritorySectors()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1578\"},{\"id\":\"workspace_CCM_SquadToSkinPreviewEntity\",\"name\":\"CCM_SquadToSkinPreviewEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SquadToSkinPreviewEntity\",\"detail\":\"CCM_SquadToSkinPreviewEntity(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1582\"},{\"id\":\"workspace_Enhanced_Init\",\"name\":\"Enhanced_Init\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_Init\",\"detail\":\"Enhanced_Init()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 22\"},{\"id\":\"workspace_Enhanced_SystemInit\",\"name\":\"Enhanced_SystemInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SystemInit\",\"detail\":\"Enhanced_SystemInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 56\"},{\"id\":\"workspace_Enhanced_BroadcastMessageReceived\",\"name\":\"Enhanced_BroadcastMessageReceived\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_BroadcastMessageReceived\",\"detail\":\"Enhanced_BroadcastMessageReceived(player, command, data)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 62\"},{\"id\":\"workspace_Enhanced_UITick\",\"name\":\"Enhanced_UITick\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_UITick\",\"detail\":\"Enhanced_UITick()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 162\"},{\"id\":\"workspace_Enhanced_SetButtonsEnabled\",\"name\":\"Enhanced_SetButtonsEnabled\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SetButtonsEnabled\",\"detail\":\"Enhanced_SetButtonsEnabled(enabled)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 203\"},{\"id\":\"workspace_Enhanced_ResetButtonIcons\",\"name\":\"Enhanced_ResetButtonIcons\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_ResetButtonIcons\",\"detail\":\"Enhanced_ResetButtonIcons()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 210\"},{\"id\":\"workspace_Enhanced_SetButtonsVisible\",\"name\":\"Enhanced_SetButtonsVisible\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SetButtonsVisible\",\"detail\":\"Enhanced_SetButtonsVisible(visible)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 217\"},{\"id\":\"workspace_Enhanced_PreInit\",\"name\":\"Enhanced_PreInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_init.scar\",\"kind\":8,\"label\":\"Enhanced_PreInit\",\"detail\":\"Enhanced_PreInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_init.scar, line 29\"},{\"id\":\"workspace_Enhanced_UIInit\",\"name\":\"Enhanced_UIInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_ui.scar\",\"kind\":8,\"label\":\"Enhanced_UIInit\",\"detail\":\"Enhanced_UIInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_ui.scar, line 1\"},{\"id\":\"workspace_Dude\",\"name\":\"Dude\",\"filepath\":\"e:coh2_modsdemodemo.lua\",\"kind\":8,\"label\":\"Dude\",\"detail\":\"Dude()\",\"documentation\":\"File: e:coh2_modsdemodemo.lua, line 1\"},{\"id\":\"workspace_MyMap_OnInit\",\"name\":\"MyMap_OnInit\",\"filepath\":\"e:coh2_modsdemodemo.scar\",\"kind\":8,\"label\":\"MyMap_OnInit\",\"detail\":\"MyMap_OnInit()\",\"documentation\":\"File: e:coh2_modsdemodemo.scar, line 1\"},{\"id\":\"workspace_MyMap_BonusUnitKilled\",\"name\":\"MyMap_BonusUnitKilled\",\"filepath\":\"e:coh2_modsdemodemo.scar\",\"kind\":8,\"label\":\"MyMap_BonusUnitKilled\",\"detail\":\"MyMap_BonusUnitKilled(squad, killer)\",\"documentation\":\"File: e:coh2_modsdemodemo.scar, line 35\"},{\"id\":\"workspace_prnt\",\"name\":\"prnt\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"prnt\",\"detail\":\"prnt(str)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 32\"},{\"id\":\"workspace_toCharArray\",\"name\":\"toCharArray\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"toCharArray\",\"detail\":\"toCharArray(s)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 38\"},{\"id\":\"workspace_export\",\"name\":\"export\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"export\",\"detail\":\"export(path, output)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 48\"},{\"id\":\"workspace_include\",\"name\":\"include\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"include\",\"detail\":\"include(path)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 60\"},{\"id\":\"workspace_getBlueprintIfItExists\",\"name\":\"getBlueprintIfItExists\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"getBlueprintIfItExists\",\"detail\":\"getBlueprintIfItExists(blueprintFunction, blueprintName)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 119\"},{\"id\":\"workspace_getBlueprintName\",\"name\":\"getBlueprintName\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"getBlueprintName\",\"detail\":\"getBlueprintName(blueprint)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 130\"},{\"id\":\"workspace_instanceOf\",\"name\":\"instanceOf\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"instanceOf\",\"detail\":\"instanceOf(subClass, class)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 134\"},{\"id\":\"workspace_parent\",\"name\":\"parent\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"parent\",\"detail\":\"parent(child)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 149\"},{\"id\":\"workspace_Loc_Create\",\"name\":\"Loc_Create\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"Loc_Create\",\"detail\":\"Loc_Create(text)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 153\"},{\"id\":\"workspace_broadcastMessage\",\"name\":\"broadcastMessage\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"broadcastMessage\",\"detail\":\"broadcastMessage(messageType, message)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 160\"},{\"id\":\"workspace_delayedStart\",\"name\":\"delayedStart\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"delayedStart\",\"detail\":\"delayedStart()\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 184\"},{\"id\":\"workspace_Map_PlayerBonusUnitKilled\",\"name\":\"Map_PlayerBonusUnitKilled\",\"filepath\":\"e:coh2_modsdemodemo4.scar\",\"kind\":8,\"label\":\"Map_PlayerBonusUnitKilled\",\"detail\":\"Map_PlayerBonusUnitKilled(squad, killer)\",\"documentation\":\"File: e:coh2_modsdemodemo4.scar, line 34\"},{\"id\":\"workspace_MyFunction\",\"name\":\"MyFunction\",\"filepath\":\"e:coh2_modsdemodemo4.scar\",\"kind\":8,\"label\":\"MyFunction\",\"detail\":\"MyFunction()\",\"documentation\":\"File: e:coh2_modsdemodemo4.scar, line 44\"},{\"id\":\"workspace_Map_OnInit\",\"name\":\"Map_OnInit\",\"filepath\":\"e:coh2_modsdemosnowrail.scar\",\"kind\":8,\"label\":\"Map_OnInit\",\"detail\":\"Map_OnInit()\",\"documentation\":\"File: e:coh2_modsdemosnowrail.scar, line 1\"},{\"id\":\"workspace_Gardeners_PreInit\",\"name\":\"Gardeners_PreInit\",\"filepath\":\"e:coh2_modsgardenersscargardeners_core.scar\",\"kind\":8,\"label\":\"Gardeners_PreInit\",\"detail\":\"Gardeners_PreInit()\",\"documentation\":\"File: e:coh2_modsgardenersscargardeners_core.scar, line 2\"},{\"id\":\"workspace_AutoAbandonManager\",\"name\":\"AutoAbandonManager\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandonManager\",\"detail\":\"AutoAbandonManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 32\"},{\"id\":\"workspace_AutoAbandon_Add\",\"name\":\"AutoAbandon_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandon_Add\",\"detail\":\"AutoAbandon_Add(squad, config, all, abandonCrit, spawnFakeCrew, crewRace, crewReatreatPos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 120\"},{\"id\":\"workspace_AutoAbandon_Remove\",\"name\":\"AutoAbandon_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandon_Remove\",\"detail\":\"AutoAbandon_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 144\"},{\"id\":\"workspace_AutoDeleteManager\",\"name\":\"AutoDeleteManager\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDeleteManager\",\"detail\":\"AutoDeleteManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 25\"},{\"id\":\"workspace_AutoDelete_Add\",\"name\":\"AutoDelete_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDelete_Add\",\"detail\":\"AutoDelete_Add(squad, pos, distance)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 40\"},{\"id\":\"workspace_AutoDelete_Remove\",\"name\":\"AutoDelete_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDelete_Remove\",\"detail\":\"AutoDelete_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 62\"},{\"id\":\"workspace_AutoRetreatManager\",\"name\":\"AutoRetreatManager\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreatManager\",\"detail\":\"AutoRetreatManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 30\"},{\"id\":\"workspace_AutoRetreat_Add\",\"name\":\"AutoRetreat_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreat_Add\",\"detail\":\"AutoRetreat_Add(squad, retreatLocation, retreatCondition, retreatThreshold, autoDelete, autoDeleteDistance, encounter, callback, removeAfterRetreat)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 82\"},{\"id\":\"workspace_AutoRetreat_Remove\",\"name\":\"AutoRetreat_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreat_Remove\",\"detail\":\"AutoRetreat_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 111\"},{\"id\":\"workspace_Parameters_ToStringData\",\"name\":\"Parameters_ToStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Parameters_ToStringData\",\"detail\":\"Parameters_ToStringData(parameters, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 24\"},{\"id\":\"workspace_Parameters_FromStringData\",\"name\":\"Parameters_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Parameters_FromStringData\",\"detail\":\"Parameters_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 52\"},{\"id\":\"workspace_Player_FromStringData\",\"name\":\"Player_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Player_FromStringData\",\"detail\":\"Player_FromStringData(data, nameWithFaction, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 115\"},{\"id\":\"workspace_Squad_FromStringData\",\"name\":\"Squad_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Squad_FromStringData\",\"detail\":\"Squad_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 145\"},{\"id\":\"workspace_Entity_FromStringData\",\"name\":\"Entity_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Entity_FromStringData\",\"detail\":\"Entity_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 163\"},{\"id\":\"workspace_Broadcast\",\"name\":\"Broadcast\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Broadcast\",\"detail\":\"Broadcast(command, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 179\"},{\"id\":\"workspace_Camera_MoveToCallback\",\"name\":\"Camera_MoveToCallback\",\"filepath\":\"e:coh2_modsgenericscarlibcamera.scar\",\"kind\":8,\"label\":\"Camera_MoveToCallback\",\"detail\":\"Camera_MoveToCallback(where, pan, panRate, lockInput, callback)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcamera.scar, line 25\"},{\"id\":\"workspace_Camera_MoveToCallback_Tick\",\"name\":\"Camera_MoveToCallback_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibcamera.scar\",\"kind\":8,\"label\":\"Camera_MoveToCallback_Tick\",\"detail\":\"Camera_MoveToCallback_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcamera.scar, line 42\"},{\"id\":\"workspace_CameraPosition\",\"name\":\"CameraPosition\",\"filepath\":\"e:coh2_modsgenericscarlibclassescameraposition.scar\",\"kind\":8,\"label\":\"CameraPosition\",\"detail\":\"CameraPosition(child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassescameraposition.scar, line 23\"},{\"id\":\"workspace_Class\",\"name\":\"Class\",\"filepath\":\"e:coh2_modsgenericscarlibclassesclass.scar\",\"kind\":8,\"label\":\"Class\",\"detail\":\"Class(child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesclass.scar, line 22\"},{\"id\":\"workspace_Color\",\"name\":\"Color\",\"filepath\":\"e:coh2_modsgenericscarlibclassescolor.scar\",\"kind\":8,\"label\":\"Color\",\"detail\":\"Color(r, g, b, a, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassescolor.scar, line 23\"},{\"id\":\"workspace_Margin\",\"name\":\"Margin\",\"filepath\":\"e:coh2_modsgenericscarlibclassesmargin.scar\",\"kind\":8,\"label\":\"Margin\",\"detail\":\"Margin(data, right, bottom, left, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesmargin.scar, line 23\"},{\"id\":\"workspace_Padding\",\"name\":\"Padding\",\"filepath\":\"e:coh2_modsgenericscarlibclassespadding.scar\",\"kind\":8,\"label\":\"Padding\",\"detail\":\"Padding(data, right, bottom, left, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassespadding.scar, line 23\"},{\"id\":\"workspace_Player\",\"name\":\"Player\",\"filepath\":\"e:coh2_modsgenericscarlibclassesplayer.scar\",\"kind\":8,\"label\":\"Player\",\"detail\":\"Player(index)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesplayer.scar, line 22\"},{\"id\":\"workspace_Control\",\"name\":\"Control\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuicontrol.scar\",\"kind\":8,\"label\":\"Control\",\"detail\":\"Control(x, y, width, height, margin, color, data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuicontrol.scar, line 23\"},{\"id\":\"workspace_Button_CreateConfig\",\"name\":\"Button_CreateConfig\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button_CreateConfig\",\"detail\":\"Button_CreateConfig(steps)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 22\"},{\"id\":\"workspace_Button_GetIcon\",\"name\":\"Button_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button_GetIcon\",\"detail\":\"Button_GetIcon(button)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 57\"},{\"id\":\"workspace_Button\",\"name\":\"Button\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button\",\"detail\":\"Button(data, x, y, width, height, icon, callback, tag, enabled, buttonIconStyle, margin, color, autoIcon, autoIconArrow, autoIconActive, checkButton, checked, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 104\"},{\"id\":\"workspace_FormControl_Init\",\"name\":\"FormControl_Init\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"FormControl_Init\",\"detail\":\"FormControl_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 25\"},{\"id\":\"workspace_FormControl_Refresh\",\"name\":\"FormControl_Refresh\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"FormControl_Refresh\",\"detail\":\"FormControl_Refresh()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 33\"},{\"id\":\"workspace_Form\",\"name\":\"Form\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"Form\",\"detail\":\"Form(data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 46\"},{\"id\":\"workspace_Icon\",\"name\":\"Icon\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiicon.scar\",\"kind\":8,\"label\":\"Icon\",\"detail\":\"Icon(data, x, y, width, height, margin, color, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiicon.scar, line 23\"},{\"id\":\"workspace_Label\",\"name\":\"Label\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuilabel.scar\",\"kind\":8,\"label\":\"Label\",\"detail\":\"Label(data, x, y, width, height, fontSize, bold, italic, labelAlignHorizontal, labelAlignVertical, margin, color, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuilabel.scar, line 23\"},{\"id\":\"workspace_NumericUpDown_CreateIconConfig\",\"name\":\"NumericUpDown_CreateIconConfig\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_CreateIconConfig\",\"detail\":\"NumericUpDown_CreateIconConfig(name, buttonWidth, inputAreaPartWidth, buttonIconStyle)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 23\"},{\"id\":\"workspace_NumericUpDownScroll_Tick\",\"name\":\"NumericUpDownScroll_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDownScroll_Tick\",\"detail\":\"NumericUpDownScroll_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 39\"},{\"id\":\"workspace_NumericUpDown_RegisterAutoScroll\",\"name\":\"NumericUpDown_RegisterAutoScroll\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_RegisterAutoScroll\",\"detail\":\"NumericUpDown_RegisterAutoScroll(control)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 51\"},{\"id\":\"workspace_NumericUpDown_UnregisterAutoScroll\",\"name\":\"NumericUpDown_UnregisterAutoScroll\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_UnregisterAutoScroll\",\"detail\":\"NumericUpDown_UnregisterAutoScroll(control)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 57\"},{\"id\":\"workspace_NumericUpDown\",\"name\":\"NumericUpDown\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown\",\"detail\":\"NumericUpDown(data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 61\"},{\"id\":\"workspace_MenuControl_Init\",\"name\":\"MenuControl_Init\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"MenuControl_Init\",\"detail\":\"MenuControl_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 30\"},{\"id\":\"workspace_Menu_AutoRefresh\",\"name\":\"Menu_AutoRefresh\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoRefresh\",\"detail\":\"Menu_AutoRefresh()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 41\"},{\"id\":\"workspace_Menu_AutoCheckEnabledScan\",\"name\":\"Menu_AutoCheckEnabledScan\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoCheckEnabledScan\",\"detail\":\"Menu_AutoCheckEnabledScan()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 58\"},{\"id\":\"workspace_Menu_AutoCheckCheckedScan\",\"name\":\"Menu_AutoCheckCheckedScan\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoCheckCheckedScan\",\"detail\":\"Menu_AutoCheckCheckedScan()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 69\"},{\"id\":\"workspace_CloseMenus\",\"name\":\"CloseMenus\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"CloseMenus\",\"detail\":\"CloseMenus(menuID, level)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 77\"},{\"id\":\"workspace_Menu\",\"name\":\"Menu\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu\",\"detail\":\"Menu(data, parentMenu, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 90\"},{\"id\":\"workspace_Menu_CreateBorderImage\",\"name\":\"Menu_CreateBorderImage\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Menu_CreateBorderImage\",\"detail\":\"Menu_CreateBorderImage(baseName, size)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 22\"},{\"id\":\"workspace_Panel_GetMultipartBackground\",\"name\":\"Panel_GetMultipartBackground\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Panel_GetMultipartBackground\",\"detail\":\"Panel_GetMultipartBackground(panel)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 40\"},{\"id\":\"workspace_Panel\",\"name\":\"Panel\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Panel\",\"detail\":\"Panel(data, y, width, height, background, padding, margin, color, controls, autoWidth, autoHeight, uniformItemWidth, removeAfterLastChildRemoved, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 62\"},{\"id\":\"workspace_PanelColumn\",\"name\":\"PanelColumn\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanelcolumn.scar\",\"kind\":8,\"label\":\"PanelColumn\",\"detail\":\"PanelColumn(panel, index, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanelcolumn.scar, line 23\"},{\"id\":\"workspace_PanelColumnCollection\",\"name\":\"PanelColumnCollection\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanelcolumncollection.scar\",\"kind\":8,\"label\":\"PanelColumnCollection\",\"detail\":\"PanelColumnCollection(panel, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanelcolumncollection.scar, line 23\"},{\"id\":\"workspace_Class_GetUniqueID\",\"name\":\"Class_GetUniqueID\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Class_GetUniqueID\",\"detail\":\"Class_GetUniqueID()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 25\"},{\"id\":\"workspace_Class_CreateInstance\",\"name\":\"Class_CreateInstance\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Class_CreateInstance\",\"detail\":\"Class_CreateInstance(classType, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 30\"},{\"id\":\"workspace_Construct\",\"name\":\"Construct\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Construct\",\"detail\":\"Construct(this)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 37\"},{\"id\":\"workspace_CompanyCommander_Create\",\"name\":\"CompanyCommander_Create\",\"filepath\":\"e:coh2_modsgenericscarlibcompanycommander.scar\",\"kind\":8,\"label\":\"CompanyCommander_Create\",\"detail\":\"CompanyCommander_Create()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcompanycommander.scar, line 22\"},{\"id\":\"workspace_ControlSystem_Init\",\"name\":\"ControlSystem_Init\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"ControlSystem_Init\",\"detail\":\"ControlSystem_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 23\"},{\"id\":\"workspace_Button_FromTag\",\"name\":\"Button_FromTag\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Button_FromTag\",\"detail\":\"Button_FromTag(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 86\"},{\"id\":\"workspace_ButtonCallbackHandler\",\"name\":\"ButtonCallbackHandler\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"ButtonCallbackHandler\",\"detail\":\"ButtonCallbackHandler(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 94\"},{\"id\":\"workspace_Control_GetName\",\"name\":\"Control_GetName\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetName\",\"detail\":\"Control_GetName(controlType, name)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 103\"},{\"id\":\"workspace_Control_GetX\",\"name\":\"Control_GetX\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetX\",\"detail\":\"Control_GetX(x, debug)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 115\"},{\"id\":\"workspace_Control_GetY\",\"name\":\"Control_GetY\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetY\",\"detail\":\"Control_GetY(y, debug)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 130\"},{\"id\":\"workspace_Control_GetPath\",\"name\":\"Control_GetPath\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetPath\",\"detail\":\"Control_GetPath(parent)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 145\"},{\"id\":\"workspace_Control_GetText\",\"name\":\"Control_GetText\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetText\",\"detail\":\"Control_GetText(text)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 159\"},{\"id\":\"workspace_Control_GetTag\",\"name\":\"Control_GetTag\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetTag\",\"detail\":\"Control_GetTag(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 172\"},{\"id\":\"workspace_BPData_GetExtensions\",\"name\":\"BPData_GetExtensions\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"BPData_GetExtensions\",\"detail\":\"BPData_GetExtensions(data, name)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 31\"},{\"id\":\"workspace_Loc_Get\",\"name\":\"Loc_Get\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"Loc_Get\",\"detail\":\"Loc_Get(key)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 50\"},{\"id\":\"workspace_EBP_HasExtension\",\"name\":\"EBP_HasExtension\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_HasExtension\",\"detail\":\"EBP_HasExtension(ebpName, extensionName)\",\"documentation\":\"****************************************************************************************--n***************************************** EBPS *****************************************--n****************************************************************************************-- File: e:coh2_modsgenericscarlibdatadata.scar, line 60\"},{\"id\":\"workspace_EBPData_HasExtension\",\"name\":\"EBPData_HasExtension\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_HasExtension\",\"detail\":\"EBPData_HasExtension(data, extensionName, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 70\"},{\"id\":\"workspace_EBP_GetScreenName\",\"name\":\"EBP_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_GetScreenName\",\"detail\":\"EBP_GetScreenName(ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 83\"},{\"id\":\"workspace_EBP_GetIcon\",\"name\":\"EBP_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_GetIcon\",\"detail\":\"EBP_GetIcon(ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 95\"},{\"id\":\"workspace_EBPData_GetUIExt\",\"name\":\"EBPData_GetUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetUIExt\",\"detail\":\"EBPData_GetUIExt(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 108\"},{\"id\":\"workspace_EBPData_GetScreenName\",\"name\":\"EBPData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetScreenName\",\"detail\":\"EBPData_GetScreenName(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 126\"},{\"id\":\"workspace_EBPData_GetIcon\",\"name\":\"EBPData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetIcon\",\"detail\":\"EBPData_GetIcon(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 156\"},{\"id\":\"workspace_SBP_GetScreenName\",\"name\":\"SBP_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBP_GetScreenName\",\"detail\":\"SBP_GetScreenName(sbpName)\",\"documentation\":\"****************************************************************************************--n***************************************** SBPS *****************************************--n****************************************************************************************-- File: e:coh2_modsgenericscarlibdatadata.scar, line 174\"},{\"id\":\"workspace_SBP_GetIcon\",\"name\":\"SBP_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBP_GetIcon\",\"detail\":\"SBP_GetIcon(sbpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 187\"},{\"id\":\"workspace_SBPData_GetRaceUIExt\",\"name\":\"SBPData_GetRaceUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetRaceUIExt\",\"detail\":\"SBPData_GetRaceUIExt(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 200\"},{\"id\":\"workspace_SBPData_GetScreenName\",\"name\":\"SBPData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetScreenName\",\"detail\":\"SBPData_GetScreenName(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 251\"},{\"id\":\"workspace_SBPData_GetIcon\",\"name\":\"SBPData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetIcon\",\"detail\":\"SBPData_GetIcon(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 276\"},{\"id\":\"workspace_Crit_GetScreenName\",\"name\":\"Crit_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"Crit_GetScreenName\",\"detail\":\"Crit_GetScreenName(critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 295\"},{\"id\":\"workspace_CritData_GetUIExt\",\"name\":\"CritData_GetUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetUIExt\",\"detail\":\"CritData_GetUIExt(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 308\"},{\"id\":\"workspace_CritData_GetScreenName\",\"name\":\"CritData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetScreenName\",\"detail\":\"CritData_GetScreenName(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 336\"},{\"id\":\"workspace_CritData_GetIcon\",\"name\":\"CritData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetIcon\",\"detail\":\"CritData_GetIcon(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 354\"},{\"id\":\"workspace_UPG_GetScreenName\",\"name\":\"UPG_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"UPG_GetScreenName\",\"detail\":\"UPG_GetScreenName(upgName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 370\"},{\"id\":\"workspace_UPGData_GetScreenName\",\"name\":\"UPGData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"UPGData_GetScreenName\",\"detail\":\"UPGData_GetScreenName(data, upgName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 384\"},{\"id\":\"workspace_SlotItem_GetScreenName\",\"name\":\"SlotItem_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SlotItem_GetScreenName\",\"detail\":\"SlotItem_GetScreenName(slotItemName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 393\"},{\"id\":\"workspace_SlotItemData_GetScreenName\",\"name\":\"SlotItemData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SlotItemData_GetScreenName\",\"detail\":\"SlotItemData_GetScreenName(data, slotItemName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 407\"},{\"id\":\"workspace_EGroup_ToTable\",\"name\":\"EGroup_ToTable\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_ToTable\",\"detail\":\"EGroup_ToTable(egroup)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 66\"},{\"id\":\"workspace_EGroup_IsAlive\",\"name\":\"EGroup_IsAlive\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_IsAlive\",\"detail\":\"EGroup_IsAlive(egroup, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 76\"},{\"id\":\"workspace_EGroup_IsCapturedByTeam2\",\"name\":\"EGroup_IsCapturedByTeam2\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_IsCapturedByTeam2\",\"detail\":\"EGroup_IsCapturedByTeam2(egroup, teamid, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 93\"},{\"id\":\"workspace_LocalImport\",\"name\":\"LocalImport\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"LocalImport\",\"detail\":\"LocalImport(file)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 27\"},{\"id\":\"workspace_ImportSystem\",\"name\":\"ImportSystem\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"ImportSystem\",\"detail\":\"ImportSystem(files, relativeRoot, absoluteRoot)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 38\"},{\"id\":\"workspace_ImportDataTables\",\"name\":\"ImportDataTables\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"ImportDataTables\",\"detail\":\"ImportDataTables(files, relativeRoot)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 50\"},{\"id\":\"workspace_Library_Load\",\"name\":\"Library_Load\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Library_Load\",\"detail\":\"Library_Load(relativePath)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 120\"},{\"id\":\"workspace_Lib_EnableMessages\",\"name\":\"Lib_EnableMessages\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_EnableMessages\",\"detail\":\"Lib_EnableMessages()\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 164\"},{\"id\":\"workspace_Lib_SetMessagesEnabled\",\"name\":\"Lib_SetMessagesEnabled\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_SetMessagesEnabled\",\"detail\":\"Lib_SetMessagesEnabled(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 168\"},{\"id\":\"workspace_Lib_SetupMod\",\"name\":\"Lib_SetupMod\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_SetupMod\",\"detail\":\"Lib_SetupMod(guid, name, enableMessages)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 172\"},{\"id\":\"workspace_Mod_GetIcon\",\"name\":\"Mod_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetIcon\",\"detail\":\"Mod_GetIcon(icon)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 181\"},{\"id\":\"workspace_Mod_GetAbilityBlueprint\",\"name\":\"Mod_GetAbilityBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetAbilityBlueprint\",\"detail\":\"Mod_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 185\"},{\"id\":\"workspace_Mod_GetSquadBlueprint\",\"name\":\"Mod_GetSquadBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetSquadBlueprint\",\"detail\":\"Mod_GetSquadBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 189\"},{\"id\":\"workspace_Mod_GetEntityBlueprint\",\"name\":\"Mod_GetEntityBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetEntityBlueprint\",\"detail\":\"Mod_GetEntityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 193\"},{\"id\":\"workspace_Mod_GetUpgradeBlueprint\",\"name\":\"Mod_GetUpgradeBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetUpgradeBlueprint\",\"detail\":\"Mod_GetUpgradeBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 197\"},{\"id\":\"workspace_Msg_Pos\",\"name\":\"Msg_Pos\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Msg_Pos\",\"detail\":\"Msg_Pos(pos, text, r, g, b, frame)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 203\"},{\"id\":\"workspace_Msg_3D\",\"name\":\"Msg_3D\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Msg_3D\",\"detail\":\"Msg_3D(pos, text, r, g, b)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 212\"},{\"id\":\"workspace_Lib_GameOver\",\"name\":\"Lib_GameOver\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_GameOver\",\"detail\":\"Lib_GameOver(winningTeam, losingTeam)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 220\"},{\"id\":\"workspace_Debug_SetMessagesEnabled\",\"name\":\"Debug_SetMessagesEnabled\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Debug_SetMessagesEnabled\",\"detail\":\"Debug_SetMessagesEnabled(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 235\"},{\"id\":\"workspace_TryCatch\",\"name\":\"TryCatch\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"TryCatch\",\"detail\":\"TryCatch(config)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 240\"},{\"id\":\"workspace_Library_Setup\",\"name\":\"Library_Setup\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Library_Setup\",\"detail\":\"Library_Setup()\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 260\"},{\"id\":\"workspace_Entity_Validate\",\"name\":\"Entity_Validate\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Validate\",\"detail\":\"Entity_Validate(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 159\"},{\"id\":\"workspace_Entity_AddHealthPercentage\",\"name\":\"Entity_AddHealthPercentage\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_AddHealthPercentage\",\"detail\":\"Entity_AddHealthPercentage(entity, percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 176\"},{\"id\":\"workspace_Entity_AddHealthPoints\",\"name\":\"Entity_AddHealthPoints\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_AddHealthPoints\",\"detail\":\"Entity_AddHealthPoints(entity, points)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 183\"},{\"id\":\"workspace_Entity_GetOwnerString\",\"name\":\"Entity_GetOwnerString\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetOwnerString\",\"detail\":\"Entity_GetOwnerString(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 193\"},{\"id\":\"workspace_Entity_GetBPName\",\"name\":\"Entity_GetBPName\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetBPName\",\"detail\":\"Entity_GetBPName(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 208\"},{\"id\":\"workspace_Entity_GetCriticals\",\"name\":\"Entity_GetCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetCriticals\",\"detail\":\"Entity_GetCriticals(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 212\"},{\"id\":\"workspace_Entity_RemoveCriticals\",\"name\":\"Entity_RemoveCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_RemoveCriticals\",\"detail\":\"Entity_RemoveCriticals(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 223\"},{\"id\":\"workspace_Entity_IsTeamWeapon\",\"name\":\"Entity_IsTeamWeapon\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsTeamWeapon\",\"detail\":\"Entity_IsTeamWeapon(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 235\"},{\"id\":\"workspace_Entity_IsValidSafe\",\"name\":\"Entity_IsValidSafe\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsValidSafe\",\"detail\":\"Entity_IsValidSafe(entityId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 240\"},{\"id\":\"workspace_Entity_GetUpgrades\",\"name\":\"Entity_GetUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetUpgrades\",\"detail\":\"Entity_GetUpgrades(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 248\"},{\"id\":\"workspace_Entity_Rotate\",\"name\":\"Entity_Rotate\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Rotate\",\"detail\":\"Entity_Rotate(entity, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 262\"},{\"id\":\"workspace_Entity_GetTypes\",\"name\":\"Entity_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetTypes\",\"detail\":\"Entity_GetTypes(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 271\"},{\"id\":\"workspace_Entity_IsOfType2\",\"name\":\"Entity_IsOfType2\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsOfType2\",\"detail\":\"Entity_IsOfType2(entity, ebpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 277\"},{\"id\":\"workspace_Entity_HasUpgrades\",\"name\":\"Entity_HasUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_HasUpgrades\",\"detail\":\"Entity_HasUpgrades(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 283\"},{\"id\":\"workspace_EBP_GetTypes\",\"name\":\"EBP_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"EBP_GetTypes\",\"detail\":\"EBP_GetTypes(ebp)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 295\"},{\"id\":\"workspace_EBP_IsOfType\",\"name\":\"EBP_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"EBP_IsOfType\",\"detail\":\"EBP_IsOfType(ebp, ebpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 306\"},{\"id\":\"workspace_Entity_Decrew\",\"name\":\"Entity_Decrew\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Decrew\",\"detail\":\"Entity_Decrew(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 331\"},{\"id\":\"workspace_Entity_PrepareForScreenshot\",\"name\":\"Entity_PrepareForScreenshot\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_PrepareForScreenshot\",\"detail\":\"Entity_PrepareForScreenshot(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 336\"},{\"id\":\"workspace_Entity_SetSkinSeason\",\"name\":\"Entity_SetSkinSeason\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_SetSkinSeason\",\"detail\":\"Entity_SetSkinSeason(entity, season)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 348\"},{\"id\":\"workspace_Entity_GetBlueprintName\",\"name\":\"Entity_GetBlueprintName\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetBlueprintName\",\"detail\":\"Entity_GetBlueprintName(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 355\"},{\"id\":\"workspace_Entity_HasModifierExt\",\"name\":\"Entity_HasModifierExt\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_HasModifierExt\",\"detail\":\"Entity_HasModifierExt(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 359\"},{\"id\":\"workspace_Percentage_Normalize\",\"name\":\"Percentage_Normalize\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"Percentage_Normalize\",\"detail\":\"Percentage_Normalize(percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 22\"},{\"id\":\"workspace_Round\",\"name\":\"Round\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"Round\",\"detail\":\"Round(num, decimals, func)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 32\"},{\"id\":\"workspace_scientific\",\"name\":\"scientific\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"scientific\",\"detail\":\"scientific(num)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 38\"},{\"id\":\"workspace_Player_GetIndex\",\"name\":\"Player_GetIndex\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetIndex\",\"detail\":\"Player_GetIndex(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 74\"},{\"id\":\"workspace_Player_SetResourcesEnabled\",\"name\":\"Player_SetResourcesEnabled\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_SetResourcesEnabled\",\"detail\":\"Player_SetResourcesEnabled(player, enabled, reset)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 103\"},{\"id\":\"workspace_Player_ResetResources\",\"name\":\"Player_ResetResources\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_ResetResources\",\"detail\":\"Player_ResetResources(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 130\"},{\"id\":\"workspace_Player_GetAllSquads\",\"name\":\"Player_GetAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetAllSquads\",\"detail\":\"Player_GetAllSquads(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 138\"},{\"id\":\"workspace_Player_DestroyAllSquads\",\"name\":\"Player_DestroyAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_DestroyAllSquads\",\"detail\":\"Player_DestroyAllSquads(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 146\"},{\"id\":\"workspace_Player_GetDisplayRaceName\",\"name\":\"Player_GetDisplayRaceName\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetDisplayRaceName\",\"detail\":\"Player_GetDisplayRaceName(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 150\"},{\"id\":\"workspace_Player_GetDisplayRaceNameLong\",\"name\":\"Player_GetDisplayRaceNameLong\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetDisplayRaceNameLong\",\"detail\":\"Player_GetDisplayRaceNameLong(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 168\"},{\"id\":\"workspace_Player_GetNameWithFaction\",\"name\":\"Player_GetNameWithFaction\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetNameWithFaction\",\"detail\":\"Player_GetNameWithFaction(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 186\"},{\"id\":\"workspace_AIDifficulty_Tostring\",\"name\":\"AIDifficulty_Tostring\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"AIDifficulty_Tostring\",\"detail\":\"AIDifficulty_Tostring(difficulty)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 190\"},{\"id\":\"workspace_Player_IsAI\",\"name\":\"Player_IsAI\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_IsAI\",\"detail\":\"Player_IsAI(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 204\"},{\"id\":\"workspace_Player_ForEachSquad\",\"name\":\"Player_ForEachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_ForEachSquad\",\"detail\":\"Player_ForEachSquad(player, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 209\"},{\"id\":\"workspace_Pos_NormalizeHeight\",\"name\":\"Pos_NormalizeHeight\",\"filepath\":\"e:coh2_modsgenericscarlibposition.scar\",\"kind\":8,\"label\":\"Pos_NormalizeHeight\",\"detail\":\"Pos_NormalizeHeight(pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibposition.scar, line 30\"},{\"id\":\"workspace_Rule_AddIntervalAndRun\",\"name\":\"Rule_AddIntervalAndRun\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIntervalAndRun\",\"detail\":\"Rule_AddIntervalAndRun(luaFunc, interval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 22\"},{\"id\":\"workspace_Rule_AddIfNotExists\",\"name\":\"Rule_AddIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIfNotExists\",\"detail\":\"Rule_AddIfNotExists(rule)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 27\"},{\"id\":\"workspace_Rule_AddIntervalIfNotExists\",\"name\":\"Rule_AddIntervalIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIntervalIfNotExists\",\"detail\":\"Rule_AddIntervalIfNotExists(rule, interval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 33\"},{\"id\":\"workspace_Rule_ChangeIntervalIfExists\",\"name\":\"Rule_ChangeIntervalIfExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_ChangeIntervalIfExists\",\"detail\":\"Rule_ChangeIntervalIfExists(rule, newInterval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 39\"},{\"id\":\"workspace_Rule_AddDelayed\",\"name\":\"Rule_AddDelayed\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddDelayed\",\"detail\":\"Rule_AddDelayed(rule, delay, priority)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 45\"},{\"id\":\"workspace_Rule_AddDelayedIfNotExists\",\"name\":\"Rule_AddDelayedIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddDelayedIfNotExists\",\"detail\":\"Rule_AddDelayedIfNotExists(rule, delay, priority)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 49\"},{\"id\":\"workspace_Modify_SetSquadtAutoTargetting\",\"name\":\"Modify_SetSquadtAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSquadtAutoTargetting\",\"detail\":\"Modify_SetSquadtAutoTargetting(squad, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 23\"},{\"id\":\"workspace_Modify_SetEntityAutoTargetting\",\"name\":\"Modify_SetEntityAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEntityAutoTargetting\",\"detail\":\"Modify_SetEntityAutoTargetting(entity, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 34\"},{\"id\":\"workspace_Modify_SetEntityAutoTargettingAllHardpoints\",\"name\":\"Modify_SetEntityAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEntityAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetEntityAutoTargettingAllHardpoints(entity, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 47\"},{\"id\":\"workspace_Modify_SetSquadAutoTargettingAllHardpoints\",\"name\":\"Modify_SetSquadAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSquadAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetSquadAutoTargettingAllHardpoints(squad, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 66\"},{\"id\":\"workspace_Modify_SetSGroupAutoTargettingAllHardpoints\",\"name\":\"Modify_SetSGroupAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSGroupAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetSGroupAutoTargettingAllHardpoints(sgroup, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 75\"},{\"id\":\"workspace_Modify_SetEGroupAutoTargettingAllHardpoints\",\"name\":\"Modify_SetEGroupAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEGroupAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetEGroupAutoTargettingAllHardpoints(entity, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 84\"},{\"id\":\"workspace_Modify_SquadTypeEnableCapturing\",\"name\":\"Modify_SquadTypeEnableCapturing\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SquadTypeEnableCapturing\",\"detail\":\"Modify_SquadTypeEnableCapturing(playerid, blueprint, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 93\"},{\"id\":\"workspace_Selection_UnselectAll\",\"name\":\"Selection_UnselectAll\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_UnselectAll\",\"detail\":\"Selection_UnselectAll()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 23\"},{\"id\":\"workspace_Selection_IsOneEntity\",\"name\":\"Selection_IsOneEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneEntity\",\"detail\":\"Selection_IsOneEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 36\"},{\"id\":\"workspace_Selection_IsOneSquad\",\"name\":\"Selection_IsOneSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneSquad\",\"detail\":\"Selection_IsOneSquad()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 42\"},{\"id\":\"workspace_Selection_IsOneSquadOrOneEntity\",\"name\":\"Selection_IsOneSquadOrOneEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneSquadOrOneEntity\",\"detail\":\"Selection_IsOneSquadOrOneEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 48\"},{\"id\":\"workspace_Selection_IsOneOrMoreSquads\",\"name\":\"Selection_IsOneOrMoreSquads\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneOrMoreSquads\",\"detail\":\"Selection_IsOneOrMoreSquads()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 52\"},{\"id\":\"workspace_Selection_IsOneOrMoreEntities\",\"name\":\"Selection_IsOneOrMoreEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneOrMoreEntities\",\"detail\":\"Selection_IsOneOrMoreEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 59\"},{\"id\":\"workspace_Selection_IsSquadsOrEntities\",\"name\":\"Selection_IsSquadsOrEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsSquadsOrEntities\",\"detail\":\"Selection_IsSquadsOrEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 65\"},{\"id\":\"workspace_Selection_IsSquadOrEntity\",\"name\":\"Selection_IsSquadOrEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsSquadOrEntity\",\"detail\":\"Selection_IsSquadOrEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 69\"},{\"id\":\"workspace_Selection_GetSquad\",\"name\":\"Selection_GetSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetSquad\",\"detail\":\"Selection_GetSquad()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 73\"},{\"id\":\"workspace_Selection_GetEntity\",\"name\":\"Selection_GetEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetEntity\",\"detail\":\"Selection_GetEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 81\"},{\"id\":\"workspace_Selection_GetSquads\",\"name\":\"Selection_GetSquads\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetSquads\",\"detail\":\"Selection_GetSquads()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 89\"},{\"id\":\"workspace_Selection_GetEntities\",\"name\":\"Selection_GetEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetEntities\",\"detail\":\"Selection_GetEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 96\"},{\"id\":\"workspace_Misc_SomethingIsSelected\",\"name\":\"Misc_SomethingIsSelected\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Misc_SomethingIsSelected\",\"detail\":\"Misc_SomethingIsSelected()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 103\"},{\"id\":\"workspace_Selection_ForEachSquad\",\"name\":\"Selection_ForEachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_ForEachSquad\",\"detail\":\"Selection_ForEachSquad(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 120\"},{\"id\":\"workspace_Selection_ForEachEntity\",\"name\":\"Selection_ForEachEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_ForEachEntity\",\"detail\":\"Selection_ForEachEntity(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 126\"},{\"id\":\"workspace_Selection_IsNotInvulnerable\",\"name\":\"Selection_IsNotInvulnerable\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsNotInvulnerable\",\"detail\":\"Selection_IsNotInvulnerable()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 132\"},{\"id\":\"workspace_Selection_IsNotNeutralSquadOrEntity\",\"name\":\"Selection_IsNotNeutralSquadOrEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsNotNeutralSquadOrEntity\",\"detail\":\"Selection_IsNotNeutralSquadOrEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 137\"},{\"id\":\"workspace_Selection_CountInvulnerables\",\"name\":\"Selection_CountInvulnerables\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_CountInvulnerables\",\"detail\":\"Selection_CountInvulnerables()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 154\"},{\"id\":\"workspace_Selection_IsInvulnerable\",\"name\":\"Selection_IsInvulnerable\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsInvulnerable\",\"detail\":\"Selection_IsInvulnerable()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 177\"},{\"id\":\"workspace_SelectionMonitor_Init\",\"name\":\"SelectionMonitor_Init\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_Init\",\"detail\":\"SelectionMonitor_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 22\"},{\"id\":\"workspace_SelectionMonitor\",\"name\":\"SelectionMonitor\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor\",\"detail\":\"SelectionMonitor()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 33\"},{\"id\":\"workspace_SelectionMonitor_GetID\",\"name\":\"SelectionMonitor_GetID\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_GetID\",\"detail\":\"SelectionMonitor_GetID()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 86\"},{\"id\":\"workspace_SelectionMonitor_AddSquad\",\"name\":\"SelectionMonitor_AddSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_AddSquad\",\"detail\":\"SelectionMonitor_AddSquad(squad, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 93\"},{\"id\":\"workspace_SelectionMonitor_AddEntity\",\"name\":\"SelectionMonitor_AddEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_AddEntity\",\"detail\":\"SelectionMonitor_AddEntity(entity, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 110\"},{\"id\":\"workspace_SelectionMonitor_RemoveSquad\",\"name\":\"SelectionMonitor_RemoveSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveSquad\",\"detail\":\"SelectionMonitor_RemoveSquad(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 127\"},{\"id\":\"workspace_SelectionMonitor_RemoveEntity\",\"name\":\"SelectionMonitor_RemoveEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveEntity\",\"detail\":\"SelectionMonitor_RemoveEntity(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 132\"},{\"id\":\"workspace_SelectionMonitor_RemoveItemListener\",\"name\":\"SelectionMonitor_RemoveItemListener\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveItemListener\",\"detail\":\"SelectionMonitor_RemoveItemListener(key, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 137\"},{\"id\":\"workspace_SelectionMonitor_RemoveSquadLister\",\"name\":\"SelectionMonitor_RemoveSquadLister\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveSquadLister\",\"detail\":\"SelectionMonitor_RemoveSquadLister(squad, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 146\"},{\"id\":\"workspace_SelectionSystem_RemoveEntityLister\",\"name\":\"SelectionSystem_RemoveEntityLister\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionSystem_RemoveEntityLister\",\"detail\":\"SelectionSystem_RemoveEntityLister(entity, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 150\"},{\"id\":\"workspace_SGroup_ToTable\",\"name\":\"SGroup_ToTable\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_ToTable\",\"detail\":\"SGroup_ToTable(sgroup)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 29\"},{\"id\":\"workspace_SGroup_SetPosition\",\"name\":\"SGroup_SetPosition\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_SetPosition\",\"detail\":\"SGroup_SetPosition(sgroup, pos, variation)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 39\"},{\"id\":\"workspace_SGroup_CountEntities\",\"name\":\"SGroup_CountEntities\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_CountEntities\",\"detail\":\"SGroup_CountEntities(sgroup, vehicleMultiplier)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 54\"},{\"id\":\"workspace_SGroup_IsAlive2\",\"name\":\"SGroup_IsAlive2\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_IsAlive2\",\"detail\":\"SGroup_IsAlive2(sgroup, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 80\"},{\"id\":\"workspace_Squad_CountSpawned\",\"name\":\"Squad_CountSpawned\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_CountSpawned\",\"detail\":\"Squad_CountSpawned(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 81\"},{\"id\":\"workspace_Squad_IsPlane\",\"name\":\"Squad_IsPlane\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsPlane\",\"detail\":\"Squad_IsPlane(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 103\"},{\"id\":\"workspace_Squad_SetSelectable\",\"name\":\"Squad_SetSelectable\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetSelectable\",\"detail\":\"Squad_SetSelectable(squad, selectabe)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 113\"},{\"id\":\"workspace_Squad_GetLastAttackerSquad\",\"name\":\"Squad_GetLastAttackerSquad\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetLastAttackerSquad\",\"detail\":\"Squad_GetLastAttackerSquad(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 117\"},{\"id\":\"workspace_Squad_IsSelected\",\"name\":\"Squad_IsSelected\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsSelected\",\"detail\":\"Squad_IsSelected(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 131\"},{\"id\":\"workspace_Squad_AddHealthPercentage\",\"name\":\"Squad_AddHealthPercentage\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddHealthPercentage\",\"detail\":\"Squad_AddHealthPercentage(squad, percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 135\"},{\"id\":\"workspace_Squad_AddHealthPoints\",\"name\":\"Squad_AddHealthPoints\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddHealthPoints\",\"detail\":\"Squad_AddHealthPoints(squad, points)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 146\"},{\"id\":\"workspace_Squad_Abandon\",\"name\":\"Squad_Abandon\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_Abandon\",\"detail\":\"Squad_Abandon(squad, vehicleCrit)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 160\"},{\"id\":\"workspace_Squad_GetOwnerString\",\"name\":\"Squad_GetOwnerString\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetOwnerString\",\"detail\":\"Squad_GetOwnerString(squad, nameWithFaction)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 190\"},{\"id\":\"workspace_Squad_GetBPName\",\"name\":\"Squad_GetBPName\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetBPName\",\"detail\":\"Squad_GetBPName(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 205\"},{\"id\":\"workspace_Squad_GetCriticals\",\"name\":\"Squad_GetCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetCriticals\",\"detail\":\"Squad_GetCriticals(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 209\"},{\"id\":\"workspace_Squad_RemoveCriticals\",\"name\":\"Squad_RemoveCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveCriticals\",\"detail\":\"Squad_RemoveCriticals(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 228\"},{\"id\":\"workspace_Squad_IsValidSafe\",\"name\":\"Squad_IsValidSafe\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsValidSafe\",\"detail\":\"Squad_IsValidSafe(squadId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 240\"},{\"id\":\"workspace_Squad_SetAutoTargetting\",\"name\":\"Squad_SetAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetAutoTargetting\",\"detail\":\"Squad_SetAutoTargetting(squad, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 253\"},{\"id\":\"workspace___RegisterSquadAutoTargettingModifier\",\"name\":\"__RegisterSquadAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__RegisterSquadAutoTargettingModifier\",\"detail\":\"__RegisterSquadAutoTargettingModifier(squadId, hardpoint, modId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 307\"},{\"id\":\"workspace___UnRegisterSquadAutoTargettingModifier\",\"name\":\"__UnRegisterSquadAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__UnRegisterSquadAutoTargettingModifier\",\"detail\":\"__UnRegisterSquadAutoTargettingModifier(squadId, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 315\"},{\"id\":\"workspace___RegisterEntityAutoTargettingModifier\",\"name\":\"__RegisterEntityAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__RegisterEntityAutoTargettingModifier\",\"detail\":\"__RegisterEntityAutoTargettingModifier(entityId, hardpoint, modId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 321\"},{\"id\":\"workspace___UnRegisterEntityAutoTargettingModifier\",\"name\":\"__UnRegisterEntityAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__UnRegisterEntityAutoTargettingModifier\",\"detail\":\"__UnRegisterEntityAutoTargettingModifier(entityId, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 329\"},{\"id\":\"workspace_Squad_SetAllAutoTargetting\",\"name\":\"Squad_SetAllAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetAllAutoTargetting\",\"detail\":\"Squad_SetAllAutoTargetting(squad, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 335\"},{\"id\":\"workspace_Squad_GetAutoTargetting\",\"name\":\"Squad_GetAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetAutoTargetting\",\"detail\":\"Squad_GetAutoTargetting(squad, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 352\"},{\"id\":\"workspace_Squad_GetAllAutoTargetting\",\"name\":\"Squad_GetAllAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetAllAutoTargetting\",\"detail\":\"Squad_GetAllAutoTargetting(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 357\"},{\"id\":\"workspace_Squad_GetUpgrades\",\"name\":\"Squad_GetUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetUpgrades\",\"detail\":\"Squad_GetUpgrades(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 371\"},{\"id\":\"workspace_Squad_HasUpgrades\",\"name\":\"Squad_HasUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_HasUpgrades\",\"detail\":\"Squad_HasUpgrades(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 397\"},{\"id\":\"workspace_Squad_RemoveSlotItem\",\"name\":\"Squad_RemoveSlotItem\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveSlotItem\",\"detail\":\"Squad_RemoveSlotItem(squad, slotItem)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 419\"},{\"id\":\"workspace_Squad_RemoveUpgradeFully\",\"name\":\"Squad_RemoveUpgradeFully\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradeFully\",\"detail\":\"Squad_RemoveUpgradeFully(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 442\"},{\"id\":\"workspace_Squad_ForEachHeldSquad\",\"name\":\"Squad_ForEachHeldSquad\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ForEachHeldSquad\",\"detail\":\"Squad_ForEachHeldSquad(parentSquad, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 454\"},{\"id\":\"workspace_Squad_DestroyHeldSquads\",\"name\":\"Squad_DestroyHeldSquads\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_DestroyHeldSquads\",\"detail\":\"Squad_DestroyHeldSquads(parentSquad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 463\"},{\"id\":\"workspace_Squad_KillHeldSquads\",\"name\":\"Squad_KillHeldSquads\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_KillHeldSquads\",\"detail\":\"Squad_KillHeldSquads(parentSquad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 469\"},{\"id\":\"workspace_Squad_ModifyVehicleSpeed\",\"name\":\"Squad_ModifyVehicleSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyVehicleSpeed\",\"detail\":\"Squad_ModifyVehicleSpeed(squad, addition, mathType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 481\"},{\"id\":\"workspace_Squad_ModifyVehicleRotationSpeed\",\"name\":\"Squad_ModifyVehicleRotationSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyVehicleRotationSpeed\",\"detail\":\"Squad_ModifyVehicleRotationSpeed(squad, addition, mathType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 487\"},{\"id\":\"workspace_Squad_ModifyTurretHorizontalSpeed\",\"name\":\"Squad_ModifyTurretHorizontalSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyTurretHorizontalSpeed\",\"detail\":\"Squad_ModifyTurretHorizontalSpeed(squad, addition, mathType, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 493\"},{\"id\":\"workspace_Squad_ModifyMovementSpeed\",\"name\":\"Squad_ModifyMovementSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyMovementSpeed\",\"detail\":\"Squad_ModifyMovementSpeed(squad, addition)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 503\"},{\"id\":\"workspace_Squad_GetTypes\",\"name\":\"Squad_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetTypes\",\"detail\":\"Squad_GetTypes(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 538\"},{\"id\":\"workspace_Squad_IsOfType\",\"name\":\"Squad_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsOfType\",\"detail\":\"Squad_IsOfType(squad, sbpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 544\"},{\"id\":\"workspace_SBP_GetTypes\",\"name\":\"SBP_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"SBP_GetTypes\",\"detail\":\"SBP_GetTypes(sbp)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 550\"},{\"id\":\"workspace_SBP_IsOfType\",\"name\":\"SBP_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"SBP_IsOfType\",\"detail\":\"SBP_IsOfType(sbp, sbpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 561\"},{\"id\":\"workspace_Squad_GetEntityTable\",\"name\":\"Squad_GetEntityTable\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityTable\",\"detail\":\"Squad_GetEntityTable(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 581\"},{\"id\":\"workspace_Squad_ToEntities\",\"name\":\"Squad_ToEntities\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ToEntities\",\"detail\":\"Squad_ToEntities(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 591\"},{\"id\":\"workspace_Squad_ToEntity\",\"name\":\"Squad_ToEntity\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ToEntity\",\"detail\":\"Squad_ToEntity(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 608\"},{\"id\":\"workspace_Squad_AddMainGunHorizontalRotation\",\"name\":\"Squad_AddMainGunHorizontalRotation\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddMainGunHorizontalRotation\",\"detail\":\"Squad_AddMainGunHorizontalRotation(squad, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 625\"},{\"id\":\"workspace_Squad_SetMainGunHorizontalRotation\",\"name\":\"Squad_SetMainGunHorizontalRotation\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetMainGunHorizontalRotation\",\"detail\":\"Squad_SetMainGunHorizontalRotation(squad, rotation)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 637\"},{\"id\":\"workspace_Squad_Decrew\",\"name\":\"Squad_Decrew\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_Decrew\",\"detail\":\"Squad_Decrew(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 643\"},{\"id\":\"workspace_Squad_SetSkinSeason\",\"name\":\"Squad_SetSkinSeason\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetSkinSeason\",\"detail\":\"Squad_SetSkinSeason(squad, season)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 657\"},{\"id\":\"workspace_Squad_RemoveSlotItems\",\"name\":\"Squad_RemoveSlotItems\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveSlotItems\",\"detail\":\"Squad_RemoveSlotItems(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 664\"},{\"id\":\"workspace_Squad_GetEntityStateString\",\"name\":\"Squad_GetEntityStateString\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityStateString\",\"detail\":\"Squad_GetEntityStateString(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 672\"},{\"id\":\"workspace_Squad_RemoveUpgradeIfPresent\",\"name\":\"Squad_RemoveUpgradeIfPresent\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradeIfPresent\",\"detail\":\"Squad_RemoveUpgradeIfPresent(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 681\"},{\"id\":\"workspace_Squad_RemoveUpgradesIfPResent\",\"name\":\"Squad_RemoveUpgradesIfPResent\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradesIfPResent\",\"detail\":\"Squad_RemoveUpgradesIfPResent(squad, upgrades)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 693\"},{\"id\":\"workspace_String_Match\",\"name\":\"String_Match\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Match\",\"detail\":\"String_Match(s, matches)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 23\"},{\"id\":\"workspace_String_Replace\",\"name\":\"String_Replace\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Replace\",\"detail\":\"String_Replace(s, find, replace)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 35\"},{\"id\":\"workspace_String_AddGenetive\",\"name\":\"String_AddGenetive\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_AddGenetive\",\"detail\":\"String_AddGenetive(str, genetive)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 68\"},{\"id\":\"workspace_String_Split\",\"name\":\"String_Split\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Split\",\"detail\":\"String_Split(str, separator)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 81\"},{\"id\":\"workspace_Number_TrailingZeroes\",\"name\":\"Number_TrailingZeroes\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"Number_TrailingZeroes\",\"detail\":\"Number_TrailingZeroes(num, zeroes)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 94\"},{\"id\":\"workspace_Outpost\",\"name\":\"Outpost\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar\",\"kind\":8,\"label\":\"Outpost\",\"detail\":\"Outpost(config, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar, line 23\"},{\"id\":\"workspace_Outpost_Init\",\"name\":\"Outpost_Init\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar\",\"kind\":8,\"label\":\"Outpost_Init\",\"detail\":\"Outpost_Init()\",\"documentation\":\" File: e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar, line 266\"},{\"id\":\"workspace_OutpostManager_Register\",\"name\":\"OutpostManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar\",\"kind\":8,\"label\":\"OutpostManager_Register\",\"detail\":\"OutpostManager_Register(outpost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar, line 24\"},{\"id\":\"workspace_OutpostManager_Tick\",\"name\":\"OutpostManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar\",\"kind\":8,\"label\":\"OutpostManager_Tick\",\"detail\":\"OutpostManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar, line 31\"},{\"id\":\"workspace_OutpostPatrol\",\"name\":\"OutpostPatrol\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrol.scar\",\"kind\":8,\"label\":\"OutpostPatrol\",\"detail\":\"OutpostPatrol(config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrol.scar, line 23\"},{\"id\":\"workspace_OutpostCaptureTrigger\",\"name\":\"OutpostCaptureTrigger\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostcapturetrigger.scar\",\"kind\":8,\"label\":\"OutpostCaptureTrigger\",\"detail\":\"OutpostCaptureTrigger(triggerType, config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostcapturetrigger.scar, line 41\"},{\"id\":\"workspace_OutpostPatrolAlarmedSquads_Register\",\"name\":\"OutpostPatrolAlarmedSquads_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolAlarmedSquads_Register\",\"detail\":\"OutpostPatrolAlarmedSquads_Register(squad, patrol, encounter, radioPost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar, line 24\"},{\"id\":\"workspace_OutpostPatrolAlarmedSquads_Tick\",\"name\":\"OutpostPatrolAlarmedSquads_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolAlarmedSquads_Tick\",\"detail\":\"OutpostPatrolAlarmedSquads_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar, line 37\"},{\"id\":\"workspace_OutpostPatrolManager_Register\",\"name\":\"OutpostPatrolManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolManager_Register\",\"detail\":\"OutpostPatrolManager_Register(enc, patrol)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar, line 24\"},{\"id\":\"workspace_OutpostPatrolManager_Tick\",\"name\":\"OutpostPatrolManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolManager_Tick\",\"detail\":\"OutpostPatrolManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar, line 32\"},{\"id\":\"workspace_OutpostRadioPost\",\"name\":\"OutpostRadioPost\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopost.scar\",\"kind\":8,\"label\":\"OutpostRadioPost\",\"detail\":\"OutpostRadioPost(config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopost.scar, line 23\"},{\"id\":\"workspace_OutpostRadioPostManager_Register\",\"name\":\"OutpostRadioPostManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar\",\"kind\":8,\"label\":\"OutpostRadioPostManager_Register\",\"detail\":\"OutpostRadioPostManager_Register(radio)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar, line 25\"},{\"id\":\"workspace_OutpostRadioPostManager_Tick\",\"name\":\"OutpostRadioPostManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar\",\"kind\":8,\"label\":\"OutpostRadioPostManager_Tick\",\"detail\":\"OutpostRadioPostManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar, line 29\"},{\"id\":\"workspace_Table_AddTable\",\"name\":\"Table_AddTable\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_AddTable\",\"detail\":\"Table_AddTable(t, add, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 22\"},{\"id\":\"workspace_Table_GetSmallest\",\"name\":\"Table_GetSmallest\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetSmallest\",\"detail\":\"Table_GetSmallest(t, itemField)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 39\"},{\"id\":\"workspace_Table_GetLargest\",\"name\":\"Table_GetLargest\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetLargest\",\"detail\":\"Table_GetLargest(t, itemField)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 62\"},{\"id\":\"workspace_Table_RemoveValue\",\"name\":\"Table_RemoveValue\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_RemoveValue\",\"detail\":\"Table_RemoveValue(t, v)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 85\"},{\"id\":\"workspace_Table_IsEmpty\",\"name\":\"Table_IsEmpty\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_IsEmpty\",\"detail\":\"Table_IsEmpty(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 93\"},{\"id\":\"workspace_Table_GetRandomBlueprint\",\"name\":\"Table_GetRandomBlueprint\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetRandomBlueprint\",\"detail\":\"Table_GetRandomBlueprint(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 104\"},{\"id\":\"workspace_Table_Remove\",\"name\":\"Table_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Remove\",\"detail\":\"Table_Remove(t, removeValue)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 126\"},{\"id\":\"workspace_Table_ToIndexableList\",\"name\":\"Table_ToIndexableList\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_ToIndexableList\",\"detail\":\"Table_ToIndexableList(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 134\"},{\"id\":\"workspace_Table_Count\",\"name\":\"Table_Count\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Count\",\"detail\":\"Table_Count(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 142\"},{\"id\":\"workspace_Table_Compare\",\"name\":\"Table_Compare\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Compare\",\"detail\":\"Table_Compare(t1, t2)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 151\"},{\"id\":\"workspace_RangeTable_GetRandomValue\",\"name\":\"RangeTable_GetRandomValue\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"RangeTable_GetRandomValue\",\"detail\":\"RangeTable_GetRandomValue(t, minMultiplier, maxMultiplier)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 171\"},{\"id\":\"workspace_OutpostReinforcementsManager_Register\",\"name\":\"OutpostReinforcementsManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar\",\"kind\":8,\"label\":\"OutpostReinforcementsManager_Register\",\"detail\":\"OutpostReinforcementsManager_Register(enc, outpost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar, line 26\"},{\"id\":\"workspace_OutpostReinforcementsManager_Tick\",\"name\":\"OutpostReinforcementsManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar\",\"kind\":8,\"label\":\"OutpostReinforcementsManager_Tick\",\"detail\":\"OutpostReinforcementsManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar, line 34\"},{\"id\":\"workspace_Team_GetRandomPlayer\",\"name\":\"Team_GetRandomPlayer\",\"filepath\":\"e:coh2_modsgenericscarlibteam.scar\",\"kind\":8,\"label\":\"Team_GetRandomPlayer\",\"detail\":\"Team_GetRandomPlayer(team)\",\"documentation\":\"File: e:coh2_modsgenericscarlibteam.scar, line 33\"},{\"id\":\"workspace_Team_GetRandomPlayers\",\"name\":\"Team_GetRandomPlayers\",\"filepath\":\"e:coh2_modsgenericscarlibteam.scar\",\"kind\":8,\"label\":\"Team_GetRandomPlayers\",\"detail\":\"Team_GetRandomPlayers(team, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibteam.scar, line 37\"},{\"id\":\"workspace_Time_TicksToSeconds\",\"name\":\"Time_TicksToSeconds\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_TicksToSeconds\",\"detail\":\"Time_TicksToSeconds(ticks)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 22\"},{\"id\":\"workspace_Time_SecondsToTicks\",\"name\":\"Time_SecondsToTicks\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_SecondsToTicks\",\"detail\":\"Time_SecondsToTicks(seconds)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 26\"},{\"id\":\"workspace_Time_MinutesToTicks\",\"name\":\"Time_MinutesToTicks\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_MinutesToTicks\",\"detail\":\"Time_MinutesToTicks(minutes)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 30\"},{\"id\":\"workspace_UI_EnableSelectionVisuals\",\"name\":\"UI_EnableSelectionVisuals\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_EnableSelectionVisuals\",\"detail\":\"UI_EnableSelectionVisuals(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 24\"},{\"id\":\"workspace_UI_EnableSquadSelectionVisuals\",\"name\":\"UI_EnableSquadSelectionVisuals\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_EnableSquadSelectionVisuals\",\"detail\":\"UI_EnableSquadSelectionVisuals(squad, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 39\"},{\"id\":\"workspace_SelectionVisual_Tick\",\"name\":\"SelectionVisual_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"SelectionVisual_Tick\",\"detail\":\"SelectionVisual_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 45\"},{\"id\":\"workspace_SelectionVisual_RegisterEntity\",\"name\":\"SelectionVisual_RegisterEntity\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"SelectionVisual_RegisterEntity\",\"detail\":\"SelectionVisual_RegisterEntity(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 57\"},{\"id\":\"workspace_UI_ScalePoint\",\"name\":\"UI_ScalePoint\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_ScalePoint\",\"detail\":\"UI_ScalePoint(point, baseResolution)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 82\"},{\"id\":\"workspace_Util_DelaySeconds\",\"name\":\"Util_DelaySeconds\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelaySeconds\",\"detail\":\"Util_DelaySeconds(delay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 50\"},{\"id\":\"workspace_Util_DelayMinutes\",\"name\":\"Util_DelayMinutes\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayMinutes\",\"detail\":\"Util_DelayMinutes(delay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 54\"},{\"id\":\"workspace_Util_DelayRandom\",\"name\":\"Util_DelayRandom\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayRandom\",\"detail\":\"Util_DelayRandom(minDelay, maxDelay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 58\"},{\"id\":\"workspace_Util_DelayRandomSeconds\",\"name\":\"Util_DelayRandomSeconds\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayRandomSeconds\",\"detail\":\"Util_DelayRandomSeconds(minDelay, maxDelay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 62\"},{\"id\":\"workspace_Util_GetRandomPosExtended\",\"name\":\"Util_GetRandomPosExtended\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_GetRandomPosExtended\",\"detail\":\"Util_GetRandomPosExtended(pos, minRange, maxRange)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 137\"},{\"id\":\"workspace_Util_GetRandomHeadingPos\",\"name\":\"Util_GetRandomHeadingPos\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_GetRandomHeadingPos\",\"detail\":\"Util_GetRandomHeadingPos(pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 144\"},{\"id\":\"workspace_UIFrame_Destroy\",\"name\":\"UIFrame_Destroy\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"UIFrame_Destroy\",\"detail\":\"UIFrame_Destroy(frame)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 185\"},{\"id\":\"workspace_Misc_Tester\",\"name\":\"Misc_Tester\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Misc_Tester\",\"detail\":\"Misc_Tester(f, v)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 213\"},{\"id\":\"workspace_Util_DistanceFromLine\",\"name\":\"Util_DistanceFromLine\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DistanceFromLine\",\"detail\":\"Util_DistanceFromLine(vPoint, vBegin, vEnd)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 226\"},{\"id\":\"workspace_Util_DistancePointToTeamShortest\",\"name\":\"Util_DistancePointToTeamShortest\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DistancePointToTeamShortest\",\"detail\":\"Util_DistancePointToTeamShortest(team, point)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 230\"},{\"id\":\"workspace_HintPoints_Remove\",\"name\":\"HintPoints_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"HintPoints_Remove\",\"detail\":\"HintPoints_Remove(hintpoints)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 257\"},{\"id\":\"workspace_MapIcon_CreateAndFacePosition\",\"name\":\"MapIcon_CreateAndFacePosition\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"MapIcon_CreateAndFacePosition\",\"detail\":\"MapIcon_CreateAndFacePosition(pos, icon, scale, red, green, blue, alpha, face_pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 265\"},{\"id\":\"workspace_toboolean\",\"name\":\"toboolean\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"toboolean\",\"detail\":\"toboolean(value)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 271\"},{\"id\":\"workspace_ResourceType_ToString\",\"name\":\"ResourceType_ToString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_ToString\",\"detail\":\"ResourceType_ToString(resourceType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 284\"},{\"id\":\"workspace_ResourceType_FromString\",\"name\":\"ResourceType_FromString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_FromString\",\"detail\":\"ResourceType_FromString(str)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 300\"},{\"id\":\"workspace_ResourceType_ToDisplayString\",\"name\":\"ResourceType_ToDisplayString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_ToDisplayString\",\"detail\":\"ResourceType_ToDisplayString(resourceType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 306\"},{\"id\":\"workspace_Selection_GetPlayer\",\"name\":\"Selection_GetPlayer\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Selection_GetPlayer\",\"detail\":\"Selection_GetPlayer(useLocalIfNil)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 322\"},{\"id\":\"workspace_Objective_UpdateTitle\",\"name\":\"Objective_UpdateTitle\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Objective_UpdateTitle\",\"detail\":\"Objective_UpdateTitle(objTable, title, bShowTitle)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 353\"},{\"id\":\"workspace_Objective_StartLocally\",\"name\":\"Objective_StartLocally\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Objective_StartLocally\",\"detail\":\"Objective_StartLocally(objTable, players)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 357\"},{\"id\":\"workspace_Util_CallFunctionsWithParameters\",\"name\":\"Util_CallFunctionsWithParameters\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_CallFunctionsWithParameters\",\"detail\":\"Util_CallFunctionsWithParameters(functions, )\",\"documentation\":\" Lua 5.1, Lua 5.2 depricates arg and instead ... can be passed on, instead of unpack(arg) File: e:coh2_modsgenericscarlibutil.scar, line 370\"},{\"id\":\"workspace_World_ForEachEntity\",\"name\":\"World_ForEachEntity\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_ForEachEntity\",\"detail\":\"World_ForEachEntity(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 44\"},{\"id\":\"workspace_World_DivideTerritoryBetweenTeams\",\"name\":\"World_DivideTerritoryBetweenTeams\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_DivideTerritoryBetweenTeams\",\"detail\":\"World_DivideTerritoryBetweenTeams()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 67\"},{\"id\":\"workspace_World_GetWidthRange\",\"name\":\"World_GetWidthRange\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetWidthRange\",\"detail\":\"World_GetWidthRange()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 158\"},{\"id\":\"workspace_World_GetLengthRange\",\"name\":\"World_GetLengthRange\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetLengthRange\",\"detail\":\"World_GetLengthRange()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 162\"},{\"id\":\"workspace_World_RegisterPlayers\",\"name\":\"World_RegisterPlayers\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_RegisterPlayers\",\"detail\":\"World_RegisterPlayers()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 166\"},{\"id\":\"workspace_World_GetEverythingNearPoint\",\"name\":\"World_GetEverythingNearPoint\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetEverythingNearPoint\",\"detail\":\"World_GetEverythingNearPoint(pos, radius)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 173\"},{\"id\":\"workspace_World_GetAll\",\"name\":\"World_GetAll\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAll\",\"detail\":\"World_GetAll(asTables)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 204\"},{\"id\":\"workspace_World_GetAllSquads\",\"name\":\"World_GetAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAllSquads\",\"detail\":\"World_GetAllSquads(asTables)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 228\"},{\"id\":\"workspace_World_ForEeachSquad\",\"name\":\"World_ForEeachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_ForEeachSquad\",\"detail\":\"World_ForEeachSquad(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 247\"},{\"id\":\"workspace_World_OneOrMoreAIPlayerIsEnabled\",\"name\":\"World_OneOrMoreAIPlayerIsEnabled\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_OneOrMoreAIPlayerIsEnabled\",\"detail\":\"World_OneOrMoreAIPlayerIsEnabled()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 255\"},{\"id\":\"workspace_World_OneOrMoreAIPlayerIsDisabled\",\"name\":\"World_OneOrMoreAIPlayerIsDisabled\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_OneOrMoreAIPlayerIsDisabled\",\"detail\":\"World_OneOrMoreAIPlayerIsDisabled()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 266\"},{\"id\":\"workspace_World_CleanUpTheDeadAll\",\"name\":\"World_CleanUpTheDeadAll\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_CleanUpTheDeadAll\",\"detail\":\"World_CleanUpTheDeadAll()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 277\"},{\"id\":\"workspace_World_GetAllTerritoryPointEntities\",\"name\":\"World_GetAllTerritoryPointEntities\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAllTerritoryPointEntities\",\"detail\":\"World_GetAllTerritoryPointEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 283\"},{\"id\":\"workspace_Villagers_PreInit\",\"name\":\"Villagers_PreInit\",\"filepath\":\"e:coh2_modsvillagersscarcore.scar\",\"kind\":8,\"label\":\"Villagers_PreInit\",\"detail\":\"Villagers_PreInit()\",\"documentation\":\"File: e:coh2_modsvillagersscarcore.scar, line 7\"},{\"id\":\"workspace_WarDrive_Init\",\"name\":\"WarDrive_Init\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Init\",\"detail\":\"WarDrive_Init()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 2\"},{\"id\":\"workspace__getPlayerMineEBP\",\"name\":\"_getPlayerMineEBP\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"_getPlayerMineEBP\",\"detail\":\"_getPlayerMineEBP(player)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 91\"},{\"id\":\"workspace__spawnMines\",\"name\":\"_spawnMines\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"_spawnMines\",\"detail\":\"_spawnMines(pos)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 107\"},{\"id\":\"workspace_WarDrive_GetPlayerReconAbility\",\"name\":\"WarDrive_GetPlayerReconAbility\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetPlayerReconAbility\",\"detail\":\"WarDrive_GetPlayerReconAbility(player)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 953\"},{\"id\":\"workspace_WarDrive_ReconSweepBetweenTeams\",\"name\":\"WarDrive_ReconSweepBetweenTeams\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ReconSweepBetweenTeams\",\"detail\":\"WarDrive_ReconSweepBetweenTeams()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 968\"},{\"id\":\"workspace_WarDrive_GetNextEffectDelay\",\"name\":\"WarDrive_GetNextEffectDelay\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetNextEffectDelay\",\"detail\":\"WarDrive_GetNextEffectDelay(effect)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 983\"},{\"id\":\"workspace_WarDrive_PickRandomEffect\",\"name\":\"WarDrive_PickRandomEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_PickRandomEffect\",\"detail\":\"WarDrive_PickRandomEffect()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 992\"},{\"id\":\"workspace_WarDrive_SplitTimeUnits\",\"name\":\"WarDrive_SplitTimeUnits\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_SplitTimeUnits\",\"detail\":\"WarDrive_SplitTimeUnits(t)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1014\"},{\"id\":\"workspace_WarDrive_FormatTime\",\"name\":\"WarDrive_FormatTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_FormatTime\",\"detail\":\"WarDrive_FormatTime(t)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1020\"},{\"id\":\"workspace_WarDrive_Monitor\",\"name\":\"WarDrive_Monitor\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Monitor\",\"detail\":\"WarDrive_Monitor()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1030\"},{\"id\":\"workspace_Team_HasTerritoryPoint\",\"name\":\"Team_HasTerritoryPoint\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Team_HasTerritoryPoint\",\"detail\":\"Team_HasTerritoryPoint(team, ebp)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1088\"},{\"id\":\"workspace_WarDrive_EntityKilled\",\"name\":\"WarDrive_EntityKilled\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_EntityKilled\",\"detail\":\"WarDrive_EntityKilled(entity, killerEntity)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1102\"},{\"id\":\"workspace_WarDrive_SquadKilled\",\"name\":\"WarDrive_SquadKilled\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_SquadKilled\",\"detail\":\"WarDrive_SquadKilled(squad)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1125\"},{\"id\":\"workspace_TestEffect\",\"name\":\"TestEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"TestEffect\",\"detail\":\"TestEffect()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1156\"},{\"id\":\"workspace_WarDrive_EnableEffect\",\"name\":\"WarDrive_EnableEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_EnableEffect\",\"detail\":\"WarDrive_EnableEffect(effect, isOpeningEffect)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1160\"},{\"id\":\"workspace_WarDrive_RemoveModifiers\",\"name\":\"WarDrive_RemoveModifiers\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_RemoveModifiers\",\"detail\":\"WarDrive_RemoveModifiers()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1199\"},{\"id\":\"workspace_WarDrive_GetIcon\",\"name\":\"WarDrive_GetIcon\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetIcon\",\"detail\":\"WarDrive_GetIcon(icon)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1204\"},{\"id\":\"workspace_WarDrive_RegisterModifier\",\"name\":\"WarDrive_RegisterModifier\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_RegisterModifier\",\"detail\":\"WarDrive_RegisterModifier(modifier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1208\"},{\"id\":\"workspace_Modify_SquadBuildTime\",\"name\":\"Modify_SquadBuildTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_SquadBuildTime\",\"detail\":\"Modify_SquadBuildTime(playerid, blueprint, multiplier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1212\"},{\"id\":\"workspace_Modify_SquadReinforceTime\",\"name\":\"Modify_SquadReinforceTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_SquadReinforceTime\",\"detail\":\"Modify_SquadReinforceTime(playerid, blueprint, multiplier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1218\"},{\"id\":\"workspace_Modify_EntityCaptureTime\",\"name\":\"Modify_EntityCaptureTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_EntityCaptureTime\",\"detail\":\"Modify_EntityCaptureTime(entity, factor)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1224\"},{\"id\":\"workspace_WarDrive_ObjectiveInit\",\"name\":\"WarDrive_ObjectiveInit\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ObjectiveInit\",\"detail\":\"WarDrive_ObjectiveInit()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1229\"},{\"id\":\"workspace_WarDrive_ObjectiveAfterInt\",\"name\":\"WarDrive_ObjectiveAfterInt\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ObjectiveAfterInt\",\"detail\":\"WarDrive_ObjectiveAfterInt()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1247\"},{\"id\":\"workspace_WarDrive_Pager\",\"name\":\"WarDrive_Pager\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Pager\",\"detail\":\"WarDrive_Pager(caster, target)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1266\"},{\"id\":\"workspace_WarDrive_AbilityExecuted\",\"name\":\"WarDrive_AbilityExecuted\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_AbilityExecuted\",\"detail\":\"WarDrive_AbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1316\"},{\"id\":\"workspace_WarDrive_GetAbilityBlueprint\",\"name\":\"WarDrive_GetAbilityBlueprint\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetAbilityBlueprint\",\"detail\":\"WarDrive_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1333\"},{\"id\":\"workspace_WarDrive_PreInit\",\"name\":\"WarDrive_PreInit\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_init.scar\",\"kind\":8,\"label\":\"WarDrive_PreInit\",\"detail\":\"WarDrive_PreInit()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_init.scar, line 10\"},{\"id\":\"workspace_CCM_AddInfiniteResourcesPopcap\",\"name\":\"CCM_AddInfiniteResourcesPopcap\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_AddInfiniteResourcesPopcap\",\"detail\":\"CCM_AddInfiniteResourcesPopcap(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 3\"},{\"id\":\"workspace_CCM_ActionKillSelection\",\"name\":\"CCM_ActionKillSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionKillSelection\",\"detail\":\"CCM_ActionKillSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 16\"},{\"id\":\"workspace_CCM_ActionDeleteSelection\",\"name\":\"CCM_ActionDeleteSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDeleteSelection\",\"detail\":\"CCM_ActionDeleteSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 23\"},{\"id\":\"workspace_CCM_ActionTeleportSelection\",\"name\":\"CCM_ActionTeleportSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionTeleportSelection\",\"detail\":\"CCM_ActionTeleportSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 31\"},{\"id\":\"workspace_CCM_ActionIncreaseSelectionVeterancy\",\"name\":\"CCM_ActionIncreaseSelectionVeterancy\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionIncreaseSelectionVeterancy\",\"detail\":\"CCM_ActionIncreaseSelectionVeterancy(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 92\"},{\"id\":\"workspace_CCM_ActionIncreaseSelectionHealth\",\"name\":\"CCM_ActionIncreaseSelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionIncreaseSelectionHealth\",\"detail\":\"CCM_ActionIncreaseSelectionHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 101\"},{\"id\":\"workspace_CCM_ActionDecreaseSelectionHealth\",\"name\":\"CCM_ActionDecreaseSelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDecreaseSelectionHealth\",\"detail\":\"CCM_ActionDecreaseSelectionHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 105\"},{\"id\":\"workspace_CCM_ModifySelectionHealth\",\"name\":\"CCM_ModifySelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ModifySelectionHealth\",\"detail\":\"CCM_ModifySelectionHealth(caster, target, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 109\"},{\"id\":\"workspace_CCM_ActionAbandonSelected\",\"name\":\"CCM_ActionAbandonSelected\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAbandonSelected\",\"detail\":\"CCM_ActionAbandonSelected(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 151\"},{\"id\":\"workspace_CCM_ActionRemoveCriticals\",\"name\":\"CCM_ActionRemoveCriticals\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionRemoveCriticals\",\"detail\":\"CCM_ActionRemoveCriticals(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 169\"},{\"id\":\"workspace_CCM_ActionDropSlotItems\",\"name\":\"CCM_ActionDropSlotItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDropSlotItems\",\"detail\":\"CCM_ActionDropSlotItems(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 186\"},{\"id\":\"workspace_CCM_ActionInstantReinforce\",\"name\":\"CCM_ActionInstantReinforce\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionInstantReinforce\",\"detail\":\"CCM_ActionInstantReinforce(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 214\"},{\"id\":\"workspace_CCM_ActionAddPreciseManpower\",\"name\":\"CCM_ActionAddPreciseManpower\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseManpower\",\"detail\":\"CCM_ActionAddPreciseManpower(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 230\"},{\"id\":\"workspace_CCM_ActionAddPreciseFuel\",\"name\":\"CCM_ActionAddPreciseFuel\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseFuel\",\"detail\":\"CCM_ActionAddPreciseFuel(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 235\"},{\"id\":\"workspace_CCM_ActionAddPreciseMunition\",\"name\":\"CCM_ActionAddPreciseMunition\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseMunition\",\"detail\":\"CCM_ActionAddPreciseMunition(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 240\"},{\"id\":\"workspace__CCM_SpawnSpawnerSquad\",\"name\":\"_CCM_SpawnSpawnerSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"_CCM_SpawnSpawnerSquad\",\"detail\":\"_CCM_SpawnSpawnerSquad(caster, target, sbp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 246\"},{\"id\":\"workspace_CCM_ActionSpawnSovietSpawner\",\"name\":\"CCM_ActionSpawnSovietSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnSovietSpawner\",\"detail\":\"CCM_ActionSpawnSovietSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 255\"},{\"id\":\"workspace_CCM_ActionSpawnAEFSpawner\",\"name\":\"CCM_ActionSpawnAEFSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnAEFSpawner\",\"detail\":\"CCM_ActionSpawnAEFSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 258\"},{\"id\":\"workspace_CCM_ActionSpawnGermanSpawner\",\"name\":\"CCM_ActionSpawnGermanSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnGermanSpawner\",\"detail\":\"CCM_ActionSpawnGermanSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 261\"},{\"id\":\"workspace_CCM_ActionSpawnWestGermanSpawner\",\"name\":\"CCM_ActionSpawnWestGermanSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnWestGermanSpawner\",\"detail\":\"CCM_ActionSpawnWestGermanSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 264\"},{\"id\":\"workspace_CCM_ActionAddFullHealth\",\"name\":\"CCM_ActionAddFullHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddFullHealth\",\"detail\":\"CCM_ActionAddFullHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 268\"},{\"id\":\"workspace_CCM_ActionKillOneEntity\",\"name\":\"CCM_ActionKillOneEntity\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionKillOneEntity\",\"detail\":\"CCM_ActionKillOneEntity(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 272\"},{\"id\":\"workspace_CCM_ActionDeleteOneEntity\",\"name\":\"CCM_ActionDeleteOneEntity\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDeleteOneEntity\",\"detail\":\"CCM_ActionDeleteOneEntity(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 279\"},{\"id\":\"workspace_CCM_ActionSpawnGermanMiscSpawner\",\"name\":\"CCM_ActionSpawnGermanMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnGermanMiscSpawner\",\"detail\":\"CCM_ActionSpawnGermanMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 286\"},{\"id\":\"workspace_CCM_ActionSpawnSovietMiscSpawner\",\"name\":\"CCM_ActionSpawnSovietMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnSovietMiscSpawner\",\"detail\":\"CCM_ActionSpawnSovietMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 289\"},{\"id\":\"workspace_CCM_ActionSpawnWestGermanMiscSpawner\",\"name\":\"CCM_ActionSpawnWestGermanMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnWestGermanMiscSpawner\",\"detail\":\"CCM_ActionSpawnWestGermanMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 292\"},{\"id\":\"workspace_CCM_ActionSpawnAEFMiscSpawner\",\"name\":\"CCM_ActionSpawnAEFMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnAEFMiscSpawner\",\"detail\":\"CCM_ActionSpawnAEFMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 295\"},{\"id\":\"workspace_CCM_DataInit\",\"name\":\"CCM_DataInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_data.scar\",\"kind\":8,\"label\":\"CCM_DataInit\",\"detail\":\"CCM_DataInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_data.scar, line 1\"},{\"id\":\"workspace_CCM_CopySelection\",\"name\":\"CCM_CopySelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"CCM_CopySelection\",\"detail\":\"CCM_CopySelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 4\"},{\"id\":\"workspace_CCM_PasteSelection\",\"name\":\"CCM_PasteSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"CCM_PasteSelection\",\"detail\":\"CCM_PasteSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 55\"},{\"id\":\"workspace_Clipboard_Clear\",\"name\":\"Clipboard_Clear\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"Clipboard_Clear\",\"detail\":\"Clipboard_Clear(caster)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 123\"},{\"id\":\"workspace_CCM_PreInit\",\"name\":\"CCM_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PreInit\",\"detail\":\"CCM_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 10\"},{\"id\":\"workspace_CCM_SystemInit\",\"name\":\"CCM_SystemInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_SystemInit\",\"detail\":\"CCM_SystemInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 21\"},{\"id\":\"workspace_CCM_PlayerResetAbilities\",\"name\":\"CCM_PlayerResetAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerResetAbilities\",\"detail\":\"CCM_PlayerResetAbilities(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 87\"},{\"id\":\"workspace_Player_GetSettingsKey\",\"name\":\"Player_GetSettingsKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Player_GetSettingsKey\",\"detail\":\"Player_GetSettingsKey(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 103\"},{\"id\":\"workspace_CCM_PlayerAbilityCompleteListener\",\"name\":\"CCM_PlayerAbilityCompleteListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerAbilityCompleteListener\",\"detail\":\"CCM_PlayerAbilityCompleteListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 114\"},{\"id\":\"workspace_CCM_PlayerAbilityListener\",\"name\":\"CCM_PlayerAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerAbilityListener\",\"detail\":\"CCM_PlayerAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 119\"},{\"id\":\"workspace_CCM_RegisterPlayerAction\",\"name\":\"CCM_RegisterPlayerAction\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_RegisterPlayerAction\",\"detail\":\"CCM_RegisterPlayerAction(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 173\"},{\"id\":\"workspace_Squad_GetSpawnerRaceIndex\",\"name\":\"Squad_GetSpawnerRaceIndex\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnerRaceIndex\",\"detail\":\"Squad_GetSpawnerRaceIndex(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 178\"},{\"id\":\"workspace_Squad_GetSpawnerTable\",\"name\":\"Squad_GetSpawnerTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnerTable\",\"detail\":\"Squad_GetSpawnerTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 199\"},{\"id\":\"workspace_Squad_GetSpawnAbilityPrefix\",\"name\":\"Squad_GetSpawnAbilityPrefix\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnAbilityPrefix\",\"detail\":\"Squad_GetSpawnAbilityPrefix(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 220\"},{\"id\":\"workspace_CCM_SquadAbilityListener\",\"name\":\"CCM_SquadAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_SquadAbilityListener\",\"detail\":\"CCM_SquadAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 241\"},{\"id\":\"workspace_CCM_CountSpawnTableItems\",\"name\":\"CCM_CountSpawnTableItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_CountSpawnTableItems\",\"detail\":\"CCM_CountSpawnTableItems(t)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 325\"},{\"id\":\"workspace__CCM_InitSpawnerSquad\",\"name\":\"_CCM_InitSpawnerSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"_CCM_InitSpawnerSquad\",\"detail\":\"_CCM_InitSpawnerSquad(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 337\"},{\"id\":\"workspace_CCM_AutoHideAbilities\",\"name\":\"CCM_AutoHideAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_AutoHideAbilities\",\"detail\":\"CCM_AutoHideAbilities()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 343\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardTeamWeapon\",\"name\":\"Entity_CreateAndSpawnTowardTeamWeapon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardTeamWeapon\",\"detail\":\"Entity_CreateAndSpawnTowardTeamWeapon(ebp, player, pos, toward)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 23\"},{\"id\":\"workspace_Entity_GetUpgradeTable\",\"name\":\"Entity_GetUpgradeTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_GetUpgradeTable\",\"detail\":\"Entity_GetUpgradeTable(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 28\"},{\"id\":\"workspace_Entity_ApplyCriticalHit\",\"name\":\"Entity_ApplyCriticalHit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_ApplyCriticalHit\",\"detail\":\"Entity_ApplyCriticalHit(entity, criticals)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 41\"},{\"id\":\"workspace_Entity_GetText\",\"name\":\"Entity_GetText\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_GetText\",\"detail\":\"Entity_GetText(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 67\"},{\"id\":\"workspace_Entity_Abandon\",\"name\":\"Entity_Abandon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_Abandon\",\"detail\":\"Entity_Abandon(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 78\"},{\"id\":\"workspace_EntityBP_IsBuilding\",\"name\":\"EntityBP_IsBuilding\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"EntityBP_IsBuilding\",\"detail\":\"EntityBP_IsBuilding(ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 83\"},{\"id\":\"workspace_Util_Destroy\",\"name\":\"Util_Destroy\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_Destroy\",\"detail\":\"Util_Destroy(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 4\"},{\"id\":\"workspace_Util_GetBPName\",\"name\":\"Util_GetBPName\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetBPName\",\"detail\":\"Util_GetBPName(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 30\"},{\"id\":\"workspace_Misc_CheckForParentSquad\",\"name\":\"Misc_CheckForParentSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_CheckForParentSquad\",\"detail\":\"Misc_CheckForParentSquad(target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 33\"},{\"id\":\"workspace_Squad_GetTableKey\",\"name\":\"Squad_GetTableKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Squad_GetTableKey\",\"detail\":\"Squad_GetTableKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 46\"},{\"id\":\"workspace_Entity_GetTableKey\",\"name\":\"Entity_GetTableKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Entity_GetTableKey\",\"detail\":\"Entity_GetTableKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 50\"},{\"id\":\"workspace_Util_GetTablekey\",\"name\":\"Util_GetTablekey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetTablekey\",\"detail\":\"Util_GetTablekey(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 54\"},{\"id\":\"workspace_Util_SetInvulnerable\",\"name\":\"Util_SetInvulnerable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_SetInvulnerable\",\"detail\":\"Util_SetInvulnerable(target, enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 62\"},{\"id\":\"workspace_Player_GetIDSafe\",\"name\":\"Player_GetIDSafe\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Player_GetIDSafe\",\"detail\":\"Player_GetIDSafe(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 70\"},{\"id\":\"workspace_Table_ForEach\",\"name\":\"Table_ForEach\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Table_ForEach\",\"detail\":\"Table_ForEach(t, _mode, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 86\"},{\"id\":\"workspace_CCM_Msg\",\"name\":\"CCM_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_Msg\",\"detail\":\"CCM_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 93\"},{\"id\":\"workspace_CCM_ClearMSG\",\"name\":\"CCM_ClearMSG\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_ClearMSG\",\"detail\":\"CCM_ClearMSG()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 109\"},{\"id\":\"workspace_CCM_GetAbilityBleprint\",\"name\":\"CCM_GetAbilityBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetAbilityBleprint\",\"detail\":\"CCM_GetAbilityBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 113\"},{\"id\":\"workspace_CCM_GetSquadBlueprint\",\"name\":\"CCM_GetSquadBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetSquadBlueprint\",\"detail\":\"CCM_GetSquadBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 117\"},{\"id\":\"workspace_CCM_GetEntityBlueprint\",\"name\":\"CCM_GetEntityBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetEntityBlueprint\",\"detail\":\"CCM_GetEntityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 121\"},{\"id\":\"workspace_CCM_GetUpgradeBlueprint\",\"name\":\"CCM_GetUpgradeBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetUpgradeBlueprint\",\"detail\":\"CCM_GetUpgradeBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 124\"},{\"id\":\"workspace_CCM_GetIcon\",\"name\":\"CCM_GetIcon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetIcon\",\"detail\":\"CCM_GetIcon(icon)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 128\"},{\"id\":\"workspace_CCM_EventCue\",\"name\":\"CCM_EventCue\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_EventCue\",\"detail\":\"CCM_EventCue(msg)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 132\"},{\"id\":\"workspace_Misc_AddSpawnedItemToSystem\",\"name\":\"Misc_AddSpawnedItemToSystem\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_AddSpawnedItemToSystem\",\"detail\":\"Misc_AddSpawnedItemToSystem(item, caster)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 145\"},{\"id\":\"workspace_Util_AddHealth\",\"name\":\"Util_AddHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_AddHealth\",\"detail\":\"Util_AddHealth(item, addition_percentage)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 158\"},{\"id\":\"workspace_Misc_DoPercentageSum\",\"name\":\"Misc_DoPercentageSum\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_DoPercentageSum\",\"detail\":\"Misc_DoPercentageSum(value1, value2)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 170\"},{\"id\":\"workspace_Util_SetPosition\",\"name\":\"Util_SetPosition\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_SetPosition\",\"detail\":\"Util_SetPosition(item, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 180\"},{\"id\":\"workspace_Util_GetGameID\",\"name\":\"Util_GetGameID\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetGameID\",\"detail\":\"Util_GetGameID(item)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 198\"},{\"id\":\"workspace_Util_DecodeGameID\",\"name\":\"Util_DecodeGameID\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_DecodeGameID\",\"detail\":\"Util_DecodeGameID(id)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 206\"},{\"id\":\"workspace_Misc_SpawnSlotItemOnGround\",\"name\":\"Misc_SpawnSlotItemOnGround\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_SpawnSlotItemOnGround\",\"detail\":\"Misc_SpawnSlotItemOnGround(item, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 216\"},{\"id\":\"workspace_Squad_ModifySpeed\",\"name\":\"Squad_ModifySpeed\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ModifySpeed\",\"detail\":\"Squad_ModifySpeed(squad, addition)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 1\"},{\"id\":\"workspace_Squad_GetHealthTable\",\"name\":\"Squad_GetHealthTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetHealthTable\",\"detail\":\"Squad_GetHealthTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 62\"},{\"id\":\"workspace_Squad_ApplyHealthTable\",\"name\":\"Squad_ApplyHealthTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyHealthTable\",\"detail\":\"Squad_ApplyHealthTable(squad, health)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 70\"},{\"id\":\"workspace_Squad_GetPlayerOwnerSafe\",\"name\":\"Squad_GetPlayerOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetPlayerOwnerSafe\",\"detail\":\"Squad_GetPlayerOwnerSafe(squad, safe)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 81\"},{\"id\":\"workspace_Squad_GetHeadingTable\",\"name\":\"Squad_GetHeadingTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetHeadingTable\",\"detail\":\"Squad_GetHeadingTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 93\"},{\"id\":\"workspace_Squad_ApplyHeadingTable\",\"name\":\"Squad_ApplyHeadingTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyHeadingTable\",\"detail\":\"Squad_ApplyHeadingTable(squad, headings)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 101\"},{\"id\":\"workspace_Squad_GetUpgradesTable\",\"name\":\"Squad_GetUpgradesTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetUpgradesTable\",\"detail\":\"Squad_GetUpgradesTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 107\"},{\"id\":\"workspace_Squad_GetText\",\"name\":\"Squad_GetText\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetText\",\"detail\":\"Squad_GetText(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 120\"},{\"id\":\"workspace_Squad_GetCriticalsTable\",\"name\":\"Squad_GetCriticalsTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetCriticalsTable\",\"detail\":\"Squad_GetCriticalsTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 137\"},{\"id\":\"workspace_Squad_ApplyCriticalHitTable\",\"name\":\"Squad_ApplyCriticalHitTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyCriticalHitTable\",\"detail\":\"Squad_ApplyCriticalHitTable(squad, criticals)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 149\"},{\"id\":\"workspace_Squad_ModifyDamage\",\"name\":\"Squad_ModifyDamage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ModifyDamage\",\"detail\":\"Squad_ModifyDamage(squad, addition)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 161\"},{\"id\":\"workspace_Squad_DropSlotItems\",\"name\":\"Squad_DropSlotItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_DropSlotItems\",\"detail\":\"Squad_DropSlotItems(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 198\"},{\"id\":\"workspace_Squad_RemoveUpgrades\",\"name\":\"Squad_RemoveUpgrades\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgrades\",\"detail\":\"Squad_RemoveUpgrades(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 209\"},{\"id\":\"workspace_Squad_RemoveCritical\",\"name\":\"Squad_RemoveCritical\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_RemoveCritical\",\"detail\":\"Squad_RemoveCritical(squad, critical)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 219\"},{\"id\":\"workspace_Squad_HasCritical\",\"name\":\"Squad_HasCritical\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_HasCritical\",\"detail\":\"Squad_HasCritical(squad, critical)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 227\"},{\"id\":\"workspace_Squad_GetEntityPositionList\",\"name\":\"Squad_GetEntityPositionList\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityPositionList\",\"detail\":\"Squad_GetEntityPositionList(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 238\"},{\"id\":\"workspace_Squad_ApplyEntityPositionList\",\"name\":\"Squad_ApplyEntityPositionList\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyEntityPositionList\",\"detail\":\"Squad_ApplyEntityPositionList(squad, list)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 248\"},{\"id\":\"workspace_Squad_SetHealthPercentage\",\"name\":\"Squad_SetHealthPercentage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_SetHealthPercentage\",\"detail\":\"Squad_SetHealthPercentage(squad, percentage)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 257\"},{\"id\":\"workspace_Squad_IsVehicle\",\"name\":\"Squad_IsVehicle\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_IsVehicle\",\"detail\":\"Squad_IsVehicle(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 263\"},{\"id\":\"workspace_CCM_ToggleInstantProduction\",\"name\":\"CCM_ToggleInstantProduction\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleInstantProduction\",\"detail\":\"CCM_ToggleInstantProduction(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 5\"},{\"id\":\"workspace_CCM_ToggleFOW\",\"name\":\"CCM_ToggleFOW\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleFOW\",\"detail\":\"CCM_ToggleFOW(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 43\"},{\"id\":\"workspace_CCM_ToggleGlobalAI\",\"name\":\"CCM_ToggleGlobalAI\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleGlobalAI\",\"detail\":\"CCM_ToggleGlobalAI(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 54\"},{\"id\":\"workspace_CCM_ToggleSelectionInvulnerability\",\"name\":\"CCM_ToggleSelectionInvulnerability\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleSelectionInvulnerability\",\"detail\":\"CCM_ToggleSelectionInvulnerability(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 66\"},{\"id\":\"workspace_CCM_ToggleSelectionOwner\",\"name\":\"CCM_ToggleSelectionOwner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleSelectionOwner\",\"detail\":\"CCM_ToggleSelectionOwner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 83\"},{\"id\":\"workspace_CCM_ToggleDisableWeapons\",\"name\":\"CCM_ToggleDisableWeapons\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleDisableWeapons\",\"detail\":\"CCM_ToggleDisableWeapons(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 138\"},{\"id\":\"workspace_CCM_ToggleEngineOrPostureState\",\"name\":\"CCM_ToggleEngineOrPostureState\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleEngineOrPostureState\",\"detail\":\"CCM_ToggleEngineOrPostureState(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 162\"},{\"id\":\"workspace_CCM_ToggleHealthMonitor\",\"name\":\"CCM_ToggleHealthMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleHealthMonitor\",\"detail\":\"CCM_ToggleHealthMonitor(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 238\"},{\"id\":\"workspace_CCM_GetSquadKey\",\"name\":\"CCM_GetSquadKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_GetSquadKey\",\"detail\":\"CCM_GetSquadKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 245\"},{\"id\":\"workspace_CCM_GetEntityKey\",\"name\":\"CCM_GetEntityKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_GetEntityKey\",\"detail\":\"CCM_GetEntityKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 249\"},{\"id\":\"workspace_CCM_HealthMonitor\",\"name\":\"CCM_HealthMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor\",\"detail\":\"CCM_HealthMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 253\"},{\"id\":\"workspace__CCM_HealthMonitor_HandleHealth\",\"name\":\"_CCM_HealthMonitor_HandleHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"_CCM_HealthMonitor_HandleHealth\",\"detail\":\"_CCM_HealthMonitor_HandleHealth(currentHealth, unit, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 300\"},{\"id\":\"workspace__CCM_HealthMonitor_KickerMessage\",\"name\":\"_CCM_HealthMonitor_KickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"_CCM_HealthMonitor_KickerMessage\",\"detail\":\"_CCM_HealthMonitor_KickerMessage(pos, text, color)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 310\"},{\"id\":\"workspace_CTF_PreInit\",\"name\":\"CTF_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_PreInit\",\"detail\":\"CTF_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 5\"},{\"id\":\"workspace_CTFSystem_Init\",\"name\":\"CTFSystem_Init\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTFSystem_Init\",\"detail\":\"CTFSystem_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 13\"},{\"id\":\"workspace_CTF_GetRandomFlagSpawnPosition\",\"name\":\"CTF_GetRandomFlagSpawnPosition\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetRandomFlagSpawnPosition\",\"detail\":\"CTF_GetRandomFlagSpawnPosition()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 56\"},{\"id\":\"workspace_CTF_FreeFlagSpawnPosition\",\"name\":\"CTF_FreeFlagSpawnPosition\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FreeFlagSpawnPosition\",\"detail\":\"CTF_FreeFlagSpawnPosition(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 70\"},{\"id\":\"workspace_CTFSystem_InitDelayed\",\"name\":\"CTFSystem_InitDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTFSystem_InitDelayed\",\"detail\":\"CTFSystem_InitDelayed()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 80\"},{\"id\":\"workspace_CTF_StartCore\",\"name\":\"CTF_StartCore\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_StartCore\",\"detail\":\"CTF_StartCore()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 202\"},{\"id\":\"workspace_CTF_GetWinScoreLimit\",\"name\":\"CTF_GetWinScoreLimit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetWinScoreLimit\",\"detail\":\"CTF_GetWinScoreLimit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 213\"},{\"id\":\"workspace_CTF_FlagScoreMonitor\",\"name\":\"CTF_FlagScoreMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagScoreMonitor\",\"detail\":\"CTF_FlagScoreMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 247\"},{\"id\":\"workspace_CTF_BlinkFlagCarriers\",\"name\":\"CTF_BlinkFlagCarriers\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_BlinkFlagCarriers\",\"detail\":\"CTF_BlinkFlagCarriers()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 257\"},{\"id\":\"workspace_CTF_FlagRespawnMonitor\",\"name\":\"CTF_FlagRespawnMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagRespawnMonitor\",\"detail\":\"CTF_FlagRespawnMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 277\"},{\"id\":\"workspace_CTF_FlagStateMonitor\",\"name\":\"CTF_FlagStateMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagStateMonitor\",\"detail\":\"CTF_FlagStateMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 350\"},{\"id\":\"workspace_CTF_EnableResources\",\"name\":\"CTF_EnableResources\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_EnableResources\",\"detail\":\"CTF_EnableResources(enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 395\"},{\"id\":\"workspace_CTF_UpdateObjectiveUI\",\"name\":\"CTF_UpdateObjectiveUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_UpdateObjectiveUI\",\"detail\":\"CTF_UpdateObjectiveUI(flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 415\"},{\"id\":\"workspace_CTF_FixFlagColor\",\"name\":\"CTF_FixFlagColor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FixFlagColor\",\"detail\":\"CTF_FixFlagColor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 420\"},{\"id\":\"workspace_CTF_FixFlagColorDelayed\",\"name\":\"CTF_FixFlagColorDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FixFlagColorDelayed\",\"detail\":\"CTF_FixFlagColorDelayed()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 430\"},{\"id\":\"workspace_CTF_StopAlarm\",\"name\":\"CTF_StopAlarm\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_StopAlarm\",\"detail\":\"CTF_StopAlarm()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 437\"},{\"id\":\"workspace_CTF_FlagCarrierAbilityExecuted\",\"name\":\"CTF_FlagCarrierAbilityExecuted\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagCarrierAbilityExecuted\",\"detail\":\"CTF_FlagCarrierAbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 442\"},{\"id\":\"workspace_CTF_DropFlagRequestManager\",\"name\":\"CTF_DropFlagRequestManager\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_DropFlagRequestManager\",\"detail\":\"CTF_DropFlagRequestManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 459\"},{\"id\":\"workspace_CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"name\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"detail\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 473\"},{\"id\":\"workspace_CTF_FlagCaptured\",\"name\":\"CTF_FlagCaptured\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagCaptured\",\"detail\":\"CTF_FlagCaptured(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 575\"},{\"id\":\"workspace_CTF_FlagDropped\",\"name\":\"CTF_FlagDropped\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagDropped\",\"detail\":\"CTF_FlagDropped(squad, reset)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 590\"},{\"id\":\"workspace_CTF_FlagScored\",\"name\":\"CTF_FlagScored\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagScored\",\"detail\":\"CTF_FlagScored(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 604\"},{\"id\":\"workspace_CTF_GetOpposingTeam\",\"name\":\"CTF_GetOpposingTeam\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetOpposingTeam\",\"detail\":\"CTF_GetOpposingTeam(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 640\"},{\"id\":\"workspace_CTF_TeamFlagScore\",\"name\":\"CTF_TeamFlagScore\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_TeamFlagScore\",\"detail\":\"CTF_TeamFlagScore(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 647\"},{\"id\":\"workspace_CTF_ObjctiveInit\",\"name\":\"CTF_ObjctiveInit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_ObjctiveInit\",\"detail\":\"CTF_ObjctiveInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 655\"},{\"id\":\"workspace_CTF_AddObjectiveUI\",\"name\":\"CTF_AddObjectiveUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_AddObjectiveUI\",\"detail\":\"CTF_AddObjectiveUI(flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 711\"},{\"id\":\"workspace_Entity_IsReCrewable\",\"name\":\"Entity_IsReCrewable\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Entity_IsReCrewable\",\"detail\":\"Entity_IsReCrewable(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 728\"},{\"id\":\"workspace_Squad_AddFlagCarrierEffects\",\"name\":\"Squad_AddFlagCarrierEffects\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_AddFlagCarrierEffects\",\"detail\":\"Squad_AddFlagCarrierEffects(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 735\"},{\"id\":\"workspace_Squad_RemoveFlagCarrierEffects\",\"name\":\"Squad_RemoveFlagCarrierEffects\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_RemoveFlagCarrierEffects\",\"detail\":\"Squad_RemoveFlagCarrierEffects(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 760\"},{\"id\":\"workspace_Squad_SetCaptureEnabled\",\"name\":\"Squad_SetCaptureEnabled\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_SetCaptureEnabled\",\"detail\":\"Squad_SetCaptureEnabled(squad, enabled)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 774\"},{\"id\":\"workspace_Squad_EnableFlagCarrierUI\",\"name\":\"Squad_EnableFlagCarrierUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_EnableFlagCarrierUI\",\"detail\":\"Squad_EnableFlagCarrierUI(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 781\"},{\"id\":\"workspace_Squad_EnableCantHoldUI\",\"name\":\"Squad_EnableCantHoldUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_EnableCantHoldUI\",\"detail\":\"Squad_EnableCantHoldUI(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 790\"},{\"id\":\"workspace_Squad_ModifyInfantrySpeed\",\"name\":\"Squad_ModifyInfantrySpeed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_ModifyInfantrySpeed\",\"detail\":\"Squad_ModifyInfantrySpeed(squad, addition, exclusive)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 806\"},{\"id\":\"workspace_Squad_MonitorDeath\",\"name\":\"Squad_MonitorDeath\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_MonitorDeath\",\"detail\":\"Squad_MonitorDeath(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 817\"},{\"id\":\"workspace_Squad_DisableFlagCarrierUI\",\"name\":\"Squad_DisableFlagCarrierUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_DisableFlagCarrierUI\",\"detail\":\"Squad_DisableFlagCarrierUI(squad, dead, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 827\"},{\"id\":\"workspace_isset\",\"name\":\"isset\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"isset\",\"detail\":\"isset(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 848\"},{\"id\":\"workspace_Squad_FlagCarrierDeath\",\"name\":\"Squad_FlagCarrierDeath\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_FlagCarrierDeath\",\"detail\":\"Squad_FlagCarrierDeath()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 856\"},{\"id\":\"workspace_Squad_DropFlag\",\"name\":\"Squad_DropFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_DropFlag\",\"detail\":\"Squad_DropFlag(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 906\"},{\"id\":\"workspace_Squad_CarriesFlag\",\"name\":\"Squad_CarriesFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_CarriesFlag\",\"detail\":\"Squad_CarriesFlag(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 920\"},{\"id\":\"workspace_Squad_IsRegisteredFlagCarrier\",\"name\":\"Squad_IsRegisteredFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_IsRegisteredFlagCarrier\",\"detail\":\"Squad_IsRegisteredFlagCarrier(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 927\"},{\"id\":\"workspace_Squad_RegisterFlagCarrier\",\"name\":\"Squad_RegisterFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_RegisterFlagCarrier\",\"detail\":\"Squad_RegisterFlagCarrier(squad, flagid)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 935\"},{\"id\":\"workspace_Squad_UnRegisterFlagCarrier\",\"name\":\"Squad_UnRegisterFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_UnRegisterFlagCarrier\",\"detail\":\"Squad_UnRegisterFlagCarrier(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 955\"},{\"id\":\"workspace_Squad_GetSlotItemTable\",\"name\":\"Squad_GetSlotItemTable\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_GetSlotItemTable\",\"detail\":\"Squad_GetSlotItemTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 961\"},{\"id\":\"workspace_Player_EnableMoveFlagHereUI\",\"name\":\"Player_EnableMoveFlagHereUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_EnableMoveFlagHereUI\",\"detail\":\"Player_EnableMoveFlagHereUI(player, enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 994\"},{\"id\":\"workspace_Player_UnlockRetreat\",\"name\":\"Player_UnlockRetreat\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_UnlockRetreat\",\"detail\":\"Player_UnlockRetreat(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1024\"},{\"id\":\"workspace_Player_IsHoldingAnyFlags\",\"name\":\"Player_IsHoldingAnyFlags\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_IsHoldingAnyFlags\",\"detail\":\"Player_IsHoldingAnyFlags(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1029\"},{\"id\":\"workspace_SGroup_IsCarryingFlag\",\"name\":\"SGroup_IsCarryingFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"SGroup_IsCarryingFlag\",\"detail\":\"SGroup_IsCarryingFlag(sgroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1047\"},{\"id\":\"workspace_UI_LocalKickerMessage\",\"name\":\"UI_LocalKickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"UI_LocalKickerMessage\",\"detail\":\"UI_LocalKickerMessage(owner, params)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1062\"},{\"id\":\"workspace_UI_GlobalKickerMessage\",\"name\":\"UI_GlobalKickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"UI_GlobalKickerMessage\",\"detail\":\"UI_GlobalKickerMessage(owner, params)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1068\"},{\"id\":\"workspace_CTF_Msg\",\"name\":\"CTF_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_Msg\",\"detail\":\"CTF_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1072\"},{\"id\":\"workspace_ClearCTF_Msg\",\"name\":\"ClearCTF_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"ClearCTF_Msg\",\"detail\":\"ClearCTF_Msg()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1088\"},{\"id\":\"workspace_Listener\",\"name\":\"Listener\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Listener\",\"detail\":\"Listener()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1091\"},{\"id\":\"workspace_Table_Shuffle\",\"name\":\"Table_Shuffle\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Table_Shuffle\",\"detail\":\"Table_Shuffle(tab)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1100\"},{\"id\":\"workspace_Ability_GetUniqueKey\",\"name\":\"Ability_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Ability_GetUniqueKey\",\"detail\":\"Ability_GetUniqueKey(ability)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 8\"},{\"id\":\"workspace_Player_AddPopulation\",\"name\":\"Player_AddPopulation\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_AddPopulation\",\"detail\":\"Player_AddPopulation(player, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 43\"},{\"id\":\"workspace_Player_ExecuteLocally\",\"name\":\"Player_ExecuteLocally\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_ExecuteLocally\",\"detail\":\"Player_ExecuteLocally(player, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 48\"},{\"id\":\"workspace_Player_GetEnemyPlayer\",\"name\":\"Player_GetEnemyPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_GetEnemyPlayer\",\"detail\":\"Player_GetEnemyPlayer(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 54\"},{\"id\":\"workspace_Player_SetResourceIncomeNumber\",\"name\":\"Player_SetResourceIncomeNumber\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_SetResourceIncomeNumber\",\"detail\":\"Player_SetResourceIncomeNumber(player, resource_type, number, dbg_resname)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 60\"},{\"id\":\"workspace_Team_GetFirstPlayer\",\"name\":\"Team_GetFirstPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetFirstPlayer\",\"detail\":\"Team_GetFirstPlayer(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 70\"},{\"id\":\"workspace_Team_GetEntitiesNearPoint\",\"name\":\"Team_GetEntitiesNearPoint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetEntitiesNearPoint\",\"detail\":\"Team_GetEntitiesNearPoint(team, pos, radius)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 80\"},{\"id\":\"workspace_Team_GetSquadsNearPoint\",\"name\":\"Team_GetSquadsNearPoint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetSquadsNearPoint\",\"detail\":\"Team_GetSquadsNearPoint(team, pos, radius)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 93\"},{\"id\":\"workspace_Team_GetPlayerCount\",\"name\":\"Team_GetPlayerCount\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetPlayerCount\",\"detail\":\"Team_GetPlayerCount(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 106\"},{\"id\":\"workspace_Team_ExecuteLocally\",\"name\":\"Team_ExecuteLocally\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_ExecuteLocally\",\"detail\":\"Team_ExecuteLocally(team, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 130\"},{\"id\":\"workspace_SGroup_CreateTemp\",\"name\":\"SGroup_CreateTemp\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"SGroup_CreateTemp\",\"detail\":\"SGroup_CreateTemp(sgroupName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 136\"},{\"id\":\"workspace_EGroup_CreateTemp\",\"name\":\"EGroup_CreateTemp\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_CreateTemp\",\"detail\":\"EGroup_CreateTemp(egroupName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 141\"},{\"id\":\"workspace_EGroup_GetClosest\",\"name\":\"EGroup_GetClosest\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_GetClosest\",\"detail\":\"EGroup_GetClosest(pos, egroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 147\"},{\"id\":\"workspace_EGroup_AddGroup\",\"name\":\"EGroup_AddGroup\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_AddGroup\",\"detail\":\"EGroup_AddGroup(egroup, grouptoadd)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 155\"},{\"id\":\"workspace_EGroup_FilterByUnitType\",\"name\":\"EGroup_FilterByUnitType\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_FilterByUnitType\",\"detail\":\"EGroup_FilterByUnitType(egroup, filters, filter_mode)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 162\"},{\"id\":\"workspace_Entity_GetGarrisonedSquads\",\"name\":\"Entity_GetGarrisonedSquads\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetGarrisonedSquads\",\"detail\":\"Entity_GetGarrisonedSquads(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 188\"},{\"id\":\"workspace_Entity_AutoAlign\",\"name\":\"Entity_AutoAlign\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_AutoAlign\",\"detail\":\"Entity_AutoAlign(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 195\"},{\"id\":\"workspace_Entity_CreateAndSpawnToward\",\"name\":\"Entity_CreateAndSpawnToward\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnToward\",\"detail\":\"Entity_CreateAndSpawnToward(ebp, player, pos, toward, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 211\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardDelayed\",\"name\":\"Entity_CreateAndSpawnTowardDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardDelayed\",\"detail\":\"Entity_CreateAndSpawnTowardDelayed(ebp, player, pos, toward, delay, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 234\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardDelayedRandom\",\"name\":\"Entity_CreateAndSpawnTowardDelayedRandom\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardDelayedRandom\",\"detail\":\"Entity_CreateAndSpawnTowardDelayedRandom(ebp, player, pos, toward, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 259\"},{\"id\":\"workspace_Entity_GetName\",\"name\":\"Entity_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetName\",\"detail\":\"Entity_GetName(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 262\"},{\"id\":\"workspace_Entity_GetTempEGroup\",\"name\":\"Entity_GetTempEGroup\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetTempEGroup\",\"detail\":\"Entity_GetTempEGroup(entity, index)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 267\"},{\"id\":\"workspace_Entity_GetOwnerSafe\",\"name\":\"Entity_GetOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetOwnerSafe\",\"detail\":\"Entity_GetOwnerSafe(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 276\"},{\"id\":\"workspace_Entity_Replace\",\"name\":\"Entity_Replace\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_Replace\",\"detail\":\"Entity_Replace(entity, ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 284\"},{\"id\":\"workspace_Entity_IsSelected\",\"name\":\"Entity_IsSelected\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_IsSelected\",\"detail\":\"Entity_IsSelected(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 297\"},{\"id\":\"workspace_Entity_HasProductionQueueItem\",\"name\":\"Entity_HasProductionQueueItem\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_HasProductionQueueItem\",\"detail\":\"Entity_HasProductionQueueItem(entity, queueItem)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 301\"},{\"id\":\"workspace_Entity_IsValidEntity\",\"name\":\"Entity_IsValidEntity\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_IsValidEntity\",\"detail\":\"Entity_IsValidEntity(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 312\"},{\"id\":\"workspace_Squad_GetUniqueKey\",\"name\":\"Squad_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_GetUniqueKey\",\"detail\":\"Squad_GetUniqueKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 319\"},{\"id\":\"workspace_Squad_GetName\",\"name\":\"Squad_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_GetName\",\"detail\":\"Squad_GetName(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 323\"},{\"id\":\"workspace_Squad_IsIdle\",\"name\":\"Squad_IsIdle\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsIdle\",\"detail\":\"Squad_IsIdle(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 336\"},{\"id\":\"workspace_Squad_IsConcstructing\",\"name\":\"Squad_IsConcstructing\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsConcstructing\",\"detail\":\"Squad_IsConcstructing(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 340\"},{\"id\":\"workspace_Squad_IsHeadingToPosition\",\"name\":\"Squad_IsHeadingToPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsHeadingToPosition\",\"detail\":\"Squad_IsHeadingToPosition(squad, pos, distance)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 344\"},{\"id\":\"workspace_Squad_ForEachEntity\",\"name\":\"Squad_ForEachEntity\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_ForEachEntity\",\"detail\":\"Squad_ForEachEntity(squad, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 355\"},{\"id\":\"workspace_UI_FlashSquad\",\"name\":\"UI_FlashSquad\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"UI_FlashSquad\",\"detail\":\"UI_FlashSquad(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 362\"},{\"id\":\"workspace_Util_Repeat\",\"name\":\"Util_Repeat\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Repeat\",\"detail\":\"Util_Repeat(times, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 378\"},{\"id\":\"workspace_Util_Delay\",\"name\":\"Util_Delay\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Delay\",\"detail\":\"Util_Delay(delay, task)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 384\"},{\"id\":\"workspace_Util_IsPositionInPolygon\",\"name\":\"Util_IsPositionInPolygon\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_IsPositionInPolygon\",\"detail\":\"Util_IsPositionInPolygon(polygon, x, y)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 392\"},{\"id\":\"workspace_Util_GetDirectionalOffset\",\"name\":\"Util_GetDirectionalOffset\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetDirectionalOffset\",\"detail\":\"Util_GetDirectionalOffset(pos, heading, offset, angle)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 418\"},{\"id\":\"workspace_Util_GetDirectionalOffsetPosition\",\"name\":\"Util_GetDirectionalOffsetPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetDirectionalOffsetPosition\",\"detail\":\"Util_GetDirectionalOffsetPosition(pos, heading, offset, direction)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 430\"},{\"id\":\"workspace_Util_GetRandomPos\",\"name\":\"Util_GetRandomPos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetRandomPos\",\"detail\":\"Util_GetRandomPos(pos, range, updateY)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 454\"},{\"id\":\"workspace_Util_GetAngleTowardsPos\",\"name\":\"Util_GetAngleTowardsPos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetAngleTowardsPos\",\"detail\":\"Util_GetAngleTowardsPos(pos1, pos2)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 463\"},{\"id\":\"workspace_Util_CopyPosition\",\"name\":\"Util_CopyPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_CopyPosition\",\"detail\":\"Util_CopyPosition(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 489\"},{\"id\":\"workspace_Util_CreateUIFrame\",\"name\":\"Util_CreateUIFrame\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_CreateUIFrame\",\"detail\":\"Util_CreateUIFrame(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 493\"},{\"id\":\"workspace_Util_Tester\",\"name\":\"Util_Tester\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Tester\",\"detail\":\"Util_Tester(f, v)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 500\"},{\"id\":\"workspace_Misc_UnSelectAll\",\"name\":\"Misc_UnSelectAll\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Misc_UnSelectAll\",\"detail\":\"Misc_UnSelectAll()\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 505\"},{\"id\":\"workspace_Util_DefaultValue\",\"name\":\"Util_DefaultValue\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_DefaultValue\",\"detail\":\"Util_DefaultValue(value, defaultValue)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 522\"},{\"id\":\"workspace_World_ForEachEntitiesByBlueprint\",\"name\":\"World_ForEachEntitiesByBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"World_ForEachEntitiesByBlueprint\",\"detail\":\"World_ForEachEntitiesByBlueprint(ebp, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 551\"},{\"id\":\"workspace_World_GetEntitiesOfType\",\"name\":\"World_GetEntitiesOfType\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"World_GetEntitiesOfType\",\"detail\":\"World_GetEntitiesOfType(entityType)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 560\"},{\"id\":\"workspace_Pos_AddHeight\",\"name\":\"Pos_AddHeight\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Pos_AddHeight\",\"detail\":\"Pos_AddHeight(pos, height)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 569\"},{\"id\":\"workspace_Pos_GetString\",\"name\":\"Pos_GetString\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Pos_GetString\",\"detail\":\"Pos_GetString(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 573\"},{\"id\":\"workspace_dr_text3dpos\",\"name\":\"dr_text3dpos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"dr_text3dpos\",\"detail\":\"dr_text3dpos(frame, pos, text, r, g, b)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 577\"},{\"id\":\"workspace_Heading_Rotate\",\"name\":\"Heading_Rotate\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Heading_Rotate\",\"detail\":\"Heading_Rotate(heading, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 581\"},{\"id\":\"workspace_Squad_InfraRedReveal\",\"name\":\"Squad_InfraRedReveal\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_InfraRedReveal\",\"detail\":\"Squad_InfraRedReveal(squad, duration)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 589\"},{\"id\":\"workspace_WinCondition_PreInit\",\"name\":\"WinCondition_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"WinCondition_PreInit\",\"detail\":\"WinCondition_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 7\"},{\"id\":\"workspace_WinCondition_MonitorVictoryPoints\",\"name\":\"WinCondition_MonitorVictoryPoints\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"WinCondition_MonitorVictoryPoints\",\"detail\":\"WinCondition_MonitorVictoryPoints()\",\"documentation\":\"File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 29\"},{\"id\":\"workspace_Team_GetTitle\",\"name\":\"Team_GetTitle\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"Team_GetTitle\",\"detail\":\"Team_GetTitle(team)\",\"documentation\":\" misc function for forming a team title of the team player names File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 94\"},{\"id\":\"workspace_Team_GetOpposingTeam\",\"name\":\"Team_GetOpposingTeam\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"Team_GetOpposingTeam\",\"detail\":\"Team_GetOpposingTeam(team)\",\"documentation\":\" mis function for getting the opposing team of a team File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 115\"},{\"id\":\"workspace_OKWNoCache_PreInit\",\"name\":\"OKWNoCache_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddokw no cache incomescarcore.scar\",\"kind\":8,\"label\":\"OKWNoCache_PreInit\",\"detail\":\"OKWNoCache_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddokw no cache incomescarcore.scar, line 4\"},{\"id\":\"workspace_PK_SystemInit\",\"name\":\"PK_SystemInit\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_SystemInit\",\"detail\":\"PK_SystemInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 14\"},{\"id\":\"workspace_PK_ScanPlayers\",\"name\":\"PK_ScanPlayers\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_ScanPlayers\",\"detail\":\"PK_ScanPlayers()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 79\"},{\"id\":\"workspace_PK_PlayerAbilityListener\",\"name\":\"PK_PlayerAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_PlayerAbilityListener\",\"detail\":\"PK_PlayerAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 101\"},{\"id\":\"workspace_Player_RemoveTankDispatchAbilities\",\"name\":\"Player_RemoveTankDispatchAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_RemoveTankDispatchAbilities\",\"detail\":\"Player_RemoveTankDispatchAbilities(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 137\"},{\"id\":\"workspace_Squad_GetTempSGroup\",\"name\":\"Squad_GetTempSGroup\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Squad_GetTempSGroup\",\"detail\":\"Squad_GetTempSGroup(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 147\"},{\"id\":\"workspace_Player_GetMapEntryPositionClosest\",\"name\":\"Player_GetMapEntryPositionClosest\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_GetMapEntryPositionClosest\",\"detail\":\"Player_GetMapEntryPositionClosest(player, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 154\"},{\"id\":\"workspace_Util_SortPositionsByClosestImproved\",\"name\":\"Util_SortPositionsByClosestImproved\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Util_SortPositionsByClosestImproved\",\"detail\":\"Util_SortPositionsByClosestImproved(origin, positions, reverse)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 185\"},{\"id\":\"workspace_undefined\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"detail\":\"undefined(t)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 213\"},{\"id\":\"workspace_Pos_GetXYZString\",\"name\":\"Pos_GetXYZString\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Pos_GetXYZString\",\"detail\":\"Pos_GetXYZString(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 231\"},{\"id\":\"workspace_PK_Msg\",\"name\":\"PK_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_Msg\",\"detail\":\"PK_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 241\"},{\"id\":\"workspace_PK_ClearMSG\",\"name\":\"PK_ClearMSG\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_ClearMSG\",\"detail\":\"PK_ClearMSG()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 258\"},{\"id\":\"workspace_PK_GetAbilityBleprint\",\"name\":\"PK_GetAbilityBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetAbilityBleprint\",\"detail\":\"PK_GetAbilityBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 262\"},{\"id\":\"workspace_PK_GetUpgradeBleprint\",\"name\":\"PK_GetUpgradeBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetUpgradeBleprint\",\"detail\":\"PK_GetUpgradeBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 266\"},{\"id\":\"workspace_PK_GetSquadBleprint\",\"name\":\"PK_GetSquadBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetSquadBleprint\",\"detail\":\"PK_GetSquadBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 270\"},{\"id\":\"workspace_PK_EventCue\",\"name\":\"PK_EventCue\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_EventCue\",\"detail\":\"PK_EventCue(msg)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 274\"},{\"id\":\"workspace_Player_GetRaceIndex\",\"name\":\"Player_GetRaceIndex\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_GetRaceIndex\",\"detail\":\"Player_GetRaceIndex(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 293\"},{\"id\":\"workspace_PK_PreInit\",\"name\":\"PK_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkriegscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_PreInit\",\"detail\":\"PK_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkriegscarpanzerkrieg.scar, line 7\"},{\"id\":\"workspace_RotateThings\",\"name\":\"RotateThings\",\"filepath\":\"e:coh2_mods_from_old_hddrotationtestscarrotationtest.scar\",\"kind\":8,\"label\":\"RotateThings\",\"detail\":\"RotateThings()\",\"documentation\":\"File: e:coh2_mods_from_old_hddrotationtestscarrotationtest.scar, line 62\"},{\"id\":\"workspace_TC_PreInit\",\"name\":\"TC_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_PreInit\",\"detail\":\"TC_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 9\"},{\"id\":\"workspace_TC_Init\",\"name\":\"TC_Init\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_Init\",\"detail\":\"TC_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 26\"},{\"id\":\"workspace_TC_TogglePlayerCategory\",\"name\":\"TC_TogglePlayerCategory\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_TogglePlayerCategory\",\"detail\":\"TC_TogglePlayerCategory(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 191\"},{\"id\":\"workspace_System_PlayerAbilityComplete\",\"name\":\"System_PlayerAbilityComplete\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_PlayerAbilityComplete\",\"detail\":\"System_PlayerAbilityComplete(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 214\"},{\"id\":\"workspace_System_PlayerAbilityExecuted\",\"name\":\"System_PlayerAbilityExecuted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_PlayerAbilityExecuted\",\"detail\":\"System_PlayerAbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 224\"},{\"id\":\"workspace_TC_UpdatePlayerCircle\",\"name\":\"TC_UpdatePlayerCircle\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_UpdatePlayerCircle\",\"detail\":\"TC_UpdatePlayerCircle(player, origin, visibility)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 374\"},{\"id\":\"workspace_TC_UpdatePlayerArrow\",\"name\":\"TC_UpdatePlayerArrow\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_UpdatePlayerArrow\",\"detail\":\"TC_UpdatePlayerArrow(player, origin, heading, visibility)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 398\"},{\"id\":\"workspace_TC_GeneralManager\",\"name\":\"TC_GeneralManager\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GeneralManager\",\"detail\":\"TC_GeneralManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 426\"},{\"id\":\"workspace_TC_GetAbilityBlueprint\",\"name\":\"TC_GetAbilityBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetAbilityBlueprint\",\"detail\":\"TC_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 435\"},{\"id\":\"workspace_TC_GetMineIcon\",\"name\":\"TC_GetMineIcon\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineIcon\",\"detail\":\"TC_GetMineIcon(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 439\"},{\"id\":\"workspace_TC_GetMineIconScale\",\"name\":\"TC_GetMineIconScale\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineIconScale\",\"detail\":\"TC_GetMineIconScale(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 452\"},{\"id\":\"workspace_TC_MineIsAllowedToMark\",\"name\":\"TC_MineIsAllowedToMark\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineIsAllowedToMark\",\"detail\":\"TC_MineIsAllowedToMark(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 464\"},{\"id\":\"workspace_TC_MineIsPartOfSMineField\",\"name\":\"TC_MineIsPartOfSMineField\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineIsPartOfSMineField\",\"detail\":\"TC_MineIsPartOfSMineField(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 474\"},{\"id\":\"workspace_TC_GetMineMarkerColor\",\"name\":\"TC_GetMineMarkerColor\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineMarkerColor\",\"detail\":\"TC_GetMineMarkerColor(planted, mineOwner, displayToPlayer)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 484\"},{\"id\":\"workspace_TC_GetIcon\",\"name\":\"TC_GetIcon\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetIcon\",\"detail\":\"TC_GetIcon(icon)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 500\"},{\"id\":\"workspace_TC_MineMarkerManager\",\"name\":\"TC_MineMarkerManager\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineMarkerManager\",\"detail\":\"TC_MineMarkerManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 504\"},{\"id\":\"workspace_TC_BlibMinePlanted\",\"name\":\"TC_BlibMinePlanted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_BlibMinePlanted\",\"detail\":\"TC_BlibMinePlanted(pos, planted, owner, ebpName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 563\"},{\"id\":\"workspace_System_EntityConstructionCompleted\",\"name\":\"System_EntityConstructionCompleted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_EntityConstructionCompleted\",\"detail\":\"System_EntityConstructionCompleted(caster, ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 593\"},{\"id\":\"workspace_System_EntityKilled\",\"name\":\"System_EntityKilled\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_EntityKilled\",\"detail\":\"System_EntityKilled(entityTarget, entityCauser)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 632\"},{\"id\":\"workspace_Player_IsLocalPlayer\",\"name\":\"Player_IsLocalPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_IsLocalPlayer\",\"detail\":\"Player_IsLocalPlayer(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 661\"},{\"id\":\"workspace_Player_GetUniqueKey\",\"name\":\"Player_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_GetUniqueKey\",\"detail\":\"Player_GetUniqueKey(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 669\"},{\"id\":\"workspace_Player_GetName\",\"name\":\"Player_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_GetName\",\"detail\":\"Player_GetName(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 673\"},{\"id\":\"workspace_Players_ForEach\",\"name\":\"Players_ForEach\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Players_ForEach\",\"detail\":\"Players_ForEach(f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 677\"},{\"id\":\"workspace_Players_ForEachInTeam\",\"name\":\"Players_ForEachInTeam\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Players_ForEachInTeam\",\"detail\":\"Players_ForEachInTeam(team, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 685\"},{\"id\":\"workspace_Entity_GetPlayerOwnerSafe\",\"name\":\"Entity_GetPlayerOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_GetPlayerOwnerSafe\",\"detail\":\"Entity_GetPlayerOwnerSafe(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 693\"},{\"id\":\"workspace_Entity_GetUniqueKey\",\"name\":\"Entity_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_GetUniqueKey\",\"detail\":\"Entity_GetUniqueKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 701\"},{\"id\":\"workspace_Entity_CheckForParentSquad\",\"name\":\"Entity_CheckForParentSquad\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_CheckForParentSquad\",\"detail\":\"Entity_CheckForParentSquad(target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 705\"},{\"id\":\"workspace_EntityList_ContainsValidEntities\",\"name\":\"EntityList_ContainsValidEntities\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"EntityList_ContainsValidEntities\",\"detail\":\"EntityList_ContainsValidEntities(list)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 717\"},{\"id\":\"workspace_EGroup_GetEntityIds\",\"name\":\"EGroup_GetEntityIds\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"EGroup_GetEntityIds\",\"detail\":\"EGroup_GetEntityIds(egroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 726\"},{\"id\":\"workspace_Util_GlobalMessage\",\"name\":\"Util_GlobalMessage\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GlobalMessage\",\"detail\":\"Util_GlobalMessage(title, displaytime)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 734\"},{\"id\":\"workspace_Util_CreateLocString\",\"name\":\"Util_CreateLocString\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_CreateLocString\",\"detail\":\"Util_CreateLocString(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 738\"},{\"id\":\"workspace_Util_GetBlueprint\",\"name\":\"Util_GetBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GetBlueprint\",\"detail\":\"Util_GetBlueprint(item)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 744\"},{\"id\":\"workspace_Util_GetUnitOwner\",\"name\":\"Util_GetUnitOwner\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GetUnitOwner\",\"detail\":\"Util_GetUnitOwner(unit)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 754\"},{\"id\":\"workspace_Game_GetLocalPlayerID\",\"name\":\"Game_GetLocalPlayerID\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Game_GetLocalPlayerID\",\"detail\":\"Game_GetLocalPlayerID()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 762\"},{\"id\":\"workspace_World_OwnsUnit\",\"name\":\"World_OwnsUnit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_OwnsUnit\",\"detail\":\"World_OwnsUnit(unit)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 766\"},{\"id\":\"workspace_World_GetEntitiesByBlueprint\",\"name\":\"World_GetEntitiesByBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_GetEntitiesByBlueprint\",\"detail\":\"World_GetEntitiesByBlueprint(ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 774\"},{\"id\":\"workspace_World_ForEachEntities\",\"name\":\"World_ForEachEntities\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_ForEachEntities\",\"detail\":\"World_ForEachEntities(f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 789\"},{\"id\":\"workspace_Msg\",\"name\":\"Msg\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Msg\",\"detail\":\"Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 796\"},{\"id\":\"workspace_TC_DataInit_Ebps\",\"name\":\"TC_DataInit_Ebps\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_data_ebps.scar\",\"kind\":8,\"label\":\"TC_DataInit_Ebps\",\"detail\":\"TC_DataInit_Ebps()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_data_ebps.scar, line 1\"},{\"id\":\"workspace_TC_DataInit\",\"name\":\"TC_DataInit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_data.scar\",\"kind\":8,\"label\":\"TC_DataInit\",\"detail\":\"TC_DataInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_data.scar, line 1\"},{\"id\":\"workspace_WinCondition_GameOver\",\"name\":\"WinCondition_GameOver\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_GameOver\",\"detail\":\"WinCondition_GameOver(winningTeam, losingTeam)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 4\"},{\"id\":\"workspace_WinCondition_Check\",\"name\":\"WinCondition_Check\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_Check\",\"detail\":\"WinCondition_Check()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 14\"},{\"id\":\"workspace_WinCondition_Init\",\"name\":\"WinCondition_Init\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_Init\",\"detail\":\"WinCondition_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 55\"}] "} {"_id":"q-en-vscode-17400e3eb1b18bf8273bbc2589837c2a9475db229f0c1abcfc557ad3f550eab7","text":"resolved \"https://registry.yarnpkg.com/@types/vscode-notebook-renderer/-/vscode-notebook-renderer-1.72.0.tgz#8943dc3cef0ced2dfb1e04c0a933bd289e7d5199\" integrity sha512-5iTjb39DpLn03ULUwrDR3L2Dy59RV4blSUHy0oLdQuIY11PhgWO4mXIcoFS0VxY1GZQ4IcjSf3ooT2Jrrcahnw== \"@vscode/markdown-it-katex@^1.0.3\": version \"1.0.3\" resolved \"https://registry.yarnpkg.com/@vscode/markdown-it-katex/-/markdown-it-katex-1.0.3.tgz#5364e4dbcb0f7e7fd2fdab3847ba5d6b0c3ce9d9\" integrity sha512-a8ppdac0CG2lAQC6E6lT8dxmXkUk9gRtYNtILx31FyrPEwj875AAHc6tpRGeJBpWMpiMtcvz7ymWYBwYgxuFmw== \"@vscode/markdown-it-katex@^1.1.0\": version \"1.1.0\" resolved \"https://registry.yarnpkg.com/@vscode/markdown-it-katex/-/markdown-it-katex-1.1.0.tgz#e991b58f6eb7cf56aef74b98e1a5edc1494649bb\" integrity sha512-9cF2eJpsJOEs2V1cCAoJW/boKz9GQQLvZhNvI030K90z6ZE9lRGc9hDVvKut8zdFO2ObjwylPXXXVYvTdP2O2Q== dependencies: katex \"^0.16.4\""} {"_id":"q-en-vscode-1795c610eeeffd6dbbf45882e5546dc5ba79b1e2d2c58306150187d548372019","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { IQuickInputService } from 'vs/platform/quickinput/common/quickInput'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { IThemeService } from 'vs/platform/theme/common/themeService'; import { IThemeService, themeColorFromId } from 'vs/platform/theme/common/themeService'; const SEARCH_STRING_MAX_LENGTH = 524288;"} {"_id":"q-en-vscode-17e8e9afe71548b33bb52264cdd21ba3cc9a516c940991a999b908be15e8ba81","text":"} const outputs = viewCell.outputsViewModels; for (const output of outputs) { for (const output of outputs.slice(0, outputDisplayLimit)) { const [mimeTypes, pick] = output.resolveMimeTypes(this._notebookEditor.textModel!, undefined); if (!mimeTypes.find(mimeType => mimeType.isTrusted) || mimeTypes.length === 0) { continue;"} {"_id":"q-en-vscode-187216ef7db82bbb463f8a9992acbb44bb92f1cfea2462c03fe4bb957f6d5113","text":"editor.focus(); }, next() { model.next().then(() => show()); contextViewService.hideContextView(); setTimeout(() => model.next().then(() => show()), 50); }, previous() { model.previous().then(() => show()); contextViewService.hideContextView(); setTimeout(() => model.previous().then(() => show()), 50); }, options: this._options });"} {"_id":"q-en-vscode-18c9d9c66b3266a111a4f01fc311ec87ca2fbb5b81c8df6cbcbbd24c81d88748","text":"order: 11 }); // --- Configure Tabs Layout export class ConfigureEditorTabsAction extends Action2 { static readonly ID = 'workbench.action.configureEditorTabs'; constructor() { super({ id: ConfigureEditorTabsAction.ID, title: localize2('configureTabs', \"Configure Tabs ...\"), category: Categories.View, }); } run(accessor: ServicesAccessor) { const preferencesService = accessor.get(IPreferencesService); preferencesService.openSettings({ jsonEditor: false, query: 'workbench.editor tab' }); } } registerAction2(ConfigureEditorTabsAction); // --- Configure Editor export class ConfigureEditorAction extends Action2 { static readonly ID = 'workbench.action.configureEditor'; constructor() { super({ id: ConfigureEditorAction.ID, title: localize2('configureEditor', \"Configure Editor ...\"), category: Categories.View, }); } run(accessor: ServicesAccessor) { const preferencesService = accessor.get(IPreferencesService); preferencesService.openSettings({ jsonEditor: false, query: 'workbench.editor' }); } } registerAction2(ConfigureEditorAction); // --- Toggle Pinned Tabs On Separate Row registerAction2(class extends Action2 {"} {"_id":"q-en-vscode-18d26ec6406f2300f118221fb4497766a21b95dd20b20f9430775908149005a5","text":"// never wrap hidden editor result.wordWrapOverride1 = 'off'; result.wordWrapOverride2 = 'off'; result.stickyScroll = { enabled: false }; } else { result.wordWrapOverride1 = this._options.get().diffWordWrap; }"} {"_id":"q-en-vscode-193c8473f8ec279ced06c08013c66a2ce16d97909dc76cc644cd24c3abf7c4df","text":"type: 'ptyHost', entryPoint: 'vs/platform/terminal/node/ptyHostMain', execArgv, args: ['--logsPath', this._environmentMainService.logsHome.fsPath], env: this._createPtyHostConfiguration(lastPtyId) });"} {"_id":"q-en-vscode-195cce9332696cbccf83f448754687394a98bb1c60c1d93c6a638e21916fe03d","text":"} } if (typeof anchorElementIndex === 'number') { if (updateScrollTop && typeof anchorElementIndex === 'number') { this.scrollTop = this.elementTop(anchorElementIndex) - anchorElementTopDelta!; }"} {"_id":"q-en-vscode-198401ea0305579bbf77397a24263f4668459e73a6178ddca3936fa8980513e7","text":"}); } async function runCommand(instance: ITerminalInstance, commandLine: string, addNewLine: boolean): Promise { // Determine whether to send ETX (ctrl+c) before running the command. This should always // happen unless command detection can reliably say that a command is being entered and // there is no content in the prompt if (instance.capabilities.get(TerminalCapability.CommandDetection)?.hasInput !== false) { await instance.sendText('x03', false); // Wait a little before running the command to avoid the sequences being echoed while the ^C // is being evaluated await timeout(100); } // Use bracketed paste mode only when not running the command await instance.sendText(commandLine, addNewLine, !addNewLine); } class TerminalOutputProvider implements ITextModelContentProvider { static scheme = 'TERMINAL_OUTPUT';"} {"_id":"q-en-vscode-19ef89ae16b533395e9c63712662f4af2a58fe4ee613f8e9d6bbe07bbe5072ee","text":"}; function renderHTML(outputInfo: OutputItem, container: HTMLElement): void { clearContainer(container); const htmlContent = outputInfo.text(); const element = document.createElement('div'); const trustedHtml = ttPolicy?.createHTML(htmlContent) ?? htmlContent;"} {"_id":"q-en-vscode-1a087ef7822eee00e16710b04c3e8f211690965b2ef4ce3ea273692785962cf1","text":"\"editor.selectionHighlightBackground\": \"#ADD6FF4D\", \"editorSuggestWidget.background\": \"#F3F3F3\", \"activityBarBadge.background\": \"#007ACC\", \"sideBarTitle.foreground\": \"#6F6F6F\" \"sideBarTitle.foreground\": \"#6F6F6F\", \"list.hoverBackground\": \"#e0e0e0\" } } No newline at end of file"} {"_id":"q-en-vscode-1a17b20d1893f83e03c8bd39c43f8483beeef13404fb5b535672b63df9c69394","text":"throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } } } else { // Remove the extension with same version if it is already uninstalled. // Installing a VSIX extension shall replace the existing extension always. const existingWithSameVersion = await this.unsetIfUninstalled(this.extensionKey); if (existingWithSameVersion) { try { await this.extensionsScanner.removeExtension(existingWithSameVersion, 'existing'); } catch (e) { throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } } // Remove the extension with same version if it is already uninstalled. // Installing a VSIX extension shall replace the existing extension always. const existingWithSameVersion = await this.unsetIfUninstalled(this.extensionKey); if (existingWithSameVersion) { try { await this.extensionsScanner.removeExtension(existingWithSameVersion, 'existing'); } catch (e) { throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } }"} {"_id":"q-en-vscode-1a59bc9cb6ff424c97dc637f2ad297e829193419e6c48b9b509efbc8f574d83d","text":"super({ id: 'chat.action.focus', title: localize2('actions.interactiveSession.focus', 'Focus Chat List'), precondition: ContextKeyExpr.and(CONTEXT_IN_CHAT_INPUT, CONTEXT_CHAT_LOCATION.isEqualTo(ChatAgentLocation.Panel)), precondition: ContextKeyExpr.and(CONTEXT_IN_CHAT_INPUT), category: CHAT_CATEGORY, keybinding: [ // On mac, require that the cursor is at the top of the input, to avoid stealing cmd+up to move the cursor to the top"} {"_id":"q-en-vscode-1a609e6dcbea466689a97ace4d04c0259098da639fce92831ff5258400963979","text":".pipe(replace('@@UPDATEURL@@', product.updateUrl || '@@UPDATEURL@@')) .pipe(rename('DEBIAN/postinst')); const all = es.merge(control, postinst, postrm, prerm, desktop, appdata, icon, code); const all = es.merge(control, postinst, postrm, prerm, desktop, desktopUrlHandler, appdata, icon, code); return all.pipe(vfs.dest(destination)); };"} {"_id":"q-en-vscode-1a69b710cda88b465e06407d2316c35f1514fa445b38829094919bdbed2281e9","text":"default: true, markdownDescription: localize('interactiveWindow.alwaysScrollOnNewCell', \"Automatically scroll the interactive window to show the output of the last statement executed. If this value is false, the window will only scroll if the last cell was already the one scrolled to.\") }, [InteractiveWindowSetting.interactiveWindowHotExit]: { [InteractiveWindowSetting.interactiveWindowRestore]: { type: 'boolean', default: false, markdownDescription: localize('interactiveWindow.hotExit', \"Controls whether the interactive window sessions should be restored when the workspace reloads.\") markdownDescription: localize('interactiveWindow.restore', \"Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers.\") } } });"} {"_id":"q-en-vscode-1a798001f4cc5644f477c3b6d052bfab7cf2f001ef91c1e9712efecc1ff3b0ed","text":"import { ElementsDragAndDropData, ListViewTargetSector } from 'vs/base/browser/ui/list/listView'; import { IAsyncDataSource, ITreeContextMenuEvent, ITreeDragAndDrop, ITreeDragOverReaction, ITreeNode, ITreeRenderer, TreeDragOverBubble } from 'vs/base/browser/ui/tree/tree'; import { CollapseAllAction } from 'vs/base/browser/ui/tree/treeDefaults'; import { ActionRunner, IAction } from 'vs/base/common/actions'; import { ActionRunner, IAction, Separator } from 'vs/base/common/actions'; import { timeout } from 'vs/base/common/async'; import { CancellationToken, CancellationTokenSource } from 'vs/base/common/cancellation'; import { Codicon } from 'vs/base/common/codicons';"} {"_id":"q-en-vscode-1a9f19154646ba5b6639fcfa2909b9ebc15fc1a9df3ff08d524f187e6c3a0af2","text":"* and searches with the same session object can search the same cache. When the object is garbage-collected, the session is complete and the cache can be cleared. * Please do not store any references to the session object, except via a weak reference (e.g. `WeakRef` or `WeakMap`). */ session: unknown; session: object; /** * The maximum number of results to be returned."} {"_id":"q-en-vscode-1ab69718c34a5eb8b1ea40ae098d3868774d77af15913ee7fd7a0d69de4fc932","text":"import { IEditableData } from 'vs/workbench/common/views'; import { TerminalFindWidget } from 'vs/workbench/contrib/terminal/browser/terminalFindWidget'; import { ITerminalStatusList } from 'vs/workbench/contrib/terminal/browser/terminalStatusList'; import { ScrollPosition } from 'vs/workbench/contrib/terminal/browser/xterm/markNavigationAddon'; import { ITerminalQuickFixAddon } from 'vs/workbench/contrib/terminal/browser/xterm/quickFixAddon'; import { INavigationMode, IRegisterContributedProfileArgs, IRemoteTerminalAttachTarget, IStartExtensionTerminalRequest, ITerminalBackend, ITerminalConfigHelper, ITerminalFont, ITerminalProcessExtHostProxy } from 'vs/workbench/contrib/terminal/common/terminal'; import { EditorGroupColumn } from 'vs/workbench/services/editor/common/editorGroupColumn';"} {"_id":"q-en-vscode-1b1119a86d4ba402819bd13f2952994ad7bda9b43c84147a3e7bc5d231533fd4","text":"const os = this._processManager.os || OS; const parsedLinks = detectLinks(text, os); this._logService.trace('terminalLocaLinkDetector#detect text', text); this._logService.trace('terminalLocaLinkDetector#detect parsedLinks', parsedLinks); for (const parsedLink of parsedLinks) { // Don't try resolve any links of excessive length if (parsedLink.path.text.length > Constants.MaxResolvedLinkLength) { continue;"} {"_id":"q-en-vscode-1b1cbaae1573f1f548af0aa4abc81f813aacdac97a80efdc0c1a27292b4104c2","text":"} })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.MOUSE_UP, (e) => { dom.EventHelper.stop(e); })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.MOUSE_DOWN, (e) => { dom.EventHelper.stop(e); })); // Intercept keyboard handling this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.KEY_UP, (e: KeyboardEvent) => { dom.EventHelper.stop(e); })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.KEY_DOWN, (e: KeyboardEvent) => { const event = new StandardKeyboardEvent(e); let showDropDown = false;"} {"_id":"q-en-vscode-1b2a7f91dbb9d729a3154f2fe11cad9189c24b466782a216e106a549f6b4328d","text":"return this._dirty; } isUntitled() { return this._notebook.uri.scheme === Schemas.untitled; } getNotebook(): NotebookTextModel { return this._notebook; }"} {"_id":"q-en-vscode-1b3a54e47db422092198a3b03d4f7eb26a3bde8a39ffb39a5970b45877317dc3","text":"} }; this._contextViewService.showContextView(delegate); if (lineNumber) { // Context view takes time to show up, so we need to wait for it to show up before we can set the position setTimeout(() => { this._editorWidget.revealLine(lineNumber); this._editorWidget.setSelection({ startLineNumber: lineNumber, startColumn: 1, endLineNumber: lineNumber, endColumn: 1 }); }, 50); } if (symbol && this._currentProvider) { this.showSymbol(this._currentProvider, symbol); }"} {"_id":"q-en-vscode-1b3abb5f1cb38ddedc4f48287c4558af92dcb5837e7222a2306516095260ae10","text":"getMergeBase(ref1: string, ref2: string): Promise; tag(name: string, upstream: string): Promise; deleteTag(name: string): Promise; status(): Promise; checkout(treeish: string): Promise;"} {"_id":"q-en-vscode-1b913365c38ca7f3cca06d0ff59f39510ef150c475dcfb8831a64ee29d38791a","text":"parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_LINUX_ALPINE_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64 }} VSCODE_BUILD_LINUX_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ARM64 }} VSCODE_BUILD_LINUX_ARMHF: ${{ parameters.VSCODE_BUILD_LINUX_ARMHF }} - ${{ if eq(variables.VSCODE_BUILD_STAGE_MACOS, true) }}: - job: MacOS - ${{ if eq(parameters.VSCODE_BUILD_MACOS, true) }}: - job: MacOSX64 pool: vmImage: macOS-11 steps:"} {"_id":"q-en-vscode-1ba426f4b26481ab49f7039e0e36aee1e2ca99c689c463924b4f9f75a3fc2bd1","text":"import { EditorPaneDescriptor, IEditorPaneRegistry } from 'vs/workbench/browser/editor'; import { Extensions as WorkbenchExtensions, IWorkbenchContributionsRegistry } from 'vs/workbench/common/contributions'; import { EditorExtensions, IEditorFactoryRegistry } from 'vs/workbench/common/editor'; import { AcceptAllInput1, AcceptAllInput2, AcceptMerge, CompareInput1WithBaseCommand, CompareInput2WithBaseCommand, GoToNextUnhandledConflict, GoToPreviousUnhandledConflict, OpenBaseFile, OpenMergeEditor, OpenResultResource, ResetToBaseAndAutoMergeCommand, SetColumnLayout, SetMixedLayout, ShowHideAtTopBase, ShowHideBase, ShowNonConflictingChanges, ToggleActiveConflictInput1, ToggleActiveConflictInput2 } from 'vs/workbench/contrib/mergeEditor/browser/commands/commands'; import { AcceptAllInput1, AcceptAllInput2, AcceptMerge, CompareInput1WithBaseCommand, CompareInput2WithBaseCommand, GoToNextUnhandledConflict, GoToPreviousUnhandledConflict, OpenBaseFile, OpenMergeEditor, OpenResultResource, ResetToBaseAndAutoMergeCommand, SetColumnLayout, SetMixedLayout, ShowHideTopBase, ShowHideCenterBase, ShowHideBase, ShowNonConflictingChanges, ToggleActiveConflictInput1, ToggleActiveConflictInput2 } from 'vs/workbench/contrib/mergeEditor/browser/commands/commands'; import { MergeEditorCopyContentsToJSON, MergeEditorLoadContentsFromFolder, MergeEditorSaveContentsToFolder } from 'vs/workbench/contrib/mergeEditor/browser/commands/devCommands'; import { MergeEditorInput } from 'vs/workbench/contrib/mergeEditor/browser/mergeEditorInput'; import { MergeEditor, MergeEditorOpenHandlerContribution, MergeEditorResolverContribution } from 'vs/workbench/contrib/mergeEditor/browser/view/mergeEditor';"} {"_id":"q-en-vscode-1bbf1589cafe4727a9d8bc6ef94a08a5df9a12f188b8090bf4d0894f7fd511f8","text":"if (lineNumber === undefined) { return; } this.show(provider); this._editorWidget.revealLine(lineNumber); this._editorWidget.setSelection({ startLineNumber: lineNumber, startColumn: 1, endLineNumber: lineNumber, endColumn: 1 }); this.show(provider, undefined, undefined, lineNumber); this._updateContextKeys(provider, true); }"} {"_id":"q-en-vscode-1bd1ffe0ef61396eff5dde6e87b95ae91bbd5ae1e9c36f88069bd47a521ddb58","text":"} async acceptInput() { assertType(this._activeSession); assertType(this._widget); await this._sessionCtor; assertType(this._activeSession); this._warmupRequestCts?.dispose(true); this._warmupRequestCts = undefined; this._activeSession.addInput(new SessionPrompt(this._widget.inlineChatWidget.value));"} {"_id":"q-en-vscode-1be4bdf272c4c4d09b0d767eb0b4dcbc22c3bbc80842fec0e7a9f5db1fb2bee9","text":"{ \"displayName\": \"Markdown Math\", \"description\": \"Adds math support to Markdown in notebooks.\", \"config.markdown.math.enabled\": \"Enable/disable rendering math in the built-in Markdown preview.\" \"config.markdown.math.enabled\": \"Enable/disable rendering math in the built-in Markdown preview.\", \"config.markdown.math.macros\": \"A collection of custom macros. Each macro is a key-value pair where the key is a new command name and the value is the expansion of the macro.\" }"} {"_id":"q-en-vscode-1bea1833304eef9ad6f9e42c75478430cd47af6282ed695a267205069cd467f2","text":"const config = workspace.getConfiguration('git', Uri.file(this.repository.root)); const showActionButton = config.get<{ publish: boolean }>('showActionButton', { publish: true }); // Branch does have an upstream, commit/merge/rebase is in progress, or the button is disabled if (this.state.HEAD?.upstream || this.state.isCommitInProgress || this.state.isMergeInProgress || this.state.isRebaseInProgress || !showActionButton.publish) { return undefined; } // Not a branch (tag, detached), branch does have an upstream, commit/merge/rebase is in progress, or the button is disabled if (!this.state.HEAD?.name || this.state.HEAD?.upstream || this.state.isCommitInProgress || this.state.isMergeInProgress || this.state.isRebaseInProgress || !showActionButton.publish) { return undefined; } // Button icon const icon = this.state.isSyncInProgress ? '$(sync~spin)' : '$(cloud-upload)';"} {"_id":"q-en-vscode-1beacb0df57aa75ac00ea05c69b026801606a7cea53f74d5ad79a996c64535c5","text":"return (listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]) => event(e => filter(e) && listener.call(thisArgs, e), null, disposables); } export function runAndSubscribeEvent(event: Event, handler: (e: T) => any, initial: T): IDisposable; export function runAndSubscribeEvent(event: Event, handler: (e: T | undefined) => any): IDisposable; export function runAndSubscribeEvent(event: Event, handler: (e: T | undefined) => any, initial?: T): IDisposable { handler(initial); return event(e => handler(e)); } export function anyEvent(...events: Event[]): Event { return (listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]) => { const result = combinedDisposable(events.map(event => event(i => listener.call(thisArgs, i))));"} {"_id":"q-en-vscode-1c05235b3001e4dc7dd768d0543a628bf042840f0a469a8344d3645ccfb27b8c","text":"let mut addr = url::Url::parse(\"https://insiders.vscode.dev\").unwrap(); { let mut ps = addr.path_segments_mut().unwrap(); ps.push(extension_name); ps.push(\"tunnel\"); ps.push(tunnel_name); for segment in &dir { let as_str = segment.to_string_lossy();"} {"_id":"q-en-vscode-1c19ea03297a8469705f1f64fa82c707a7f19fe10707ddd83c0087a658ddfd44","text":"return super.saveTextEditorViewState(arg1); } if (arg1 instanceof UntitledEditorInput && !arg1.isDisposed()) { if ((arg1 instanceof UntitledEditorInput || arg1 instanceof ResourceEditorInput) && !arg1.isDisposed()) { return super.saveTextEditorViewState(arg1.getResource().toString()); } }"} {"_id":"q-en-vscode-1c4afcb6eadcd6869eb6d44ea5fb7bde587459d26b0506f3560cdba37867e8c8","text":"} const firstPageElement = this.view.element(firstPageIndex); const currentlyFocusedElement = this.getFocusedElements()[0]; const currentlyFocusedElementIndex = this.getFocus()[0]; const currentlyFocusedElement = this.view.element(currentlyFocusedElementIndex); if (currentlyFocusedElement !== firstPageElement) { if (currentlyFocusedElement !== firstPageElement && currentlyFocusedElementIndex >= firstPageIndex) { const firstGoodPageIndex = this.findNextIndex(firstPageIndex, false, filter); if (firstGoodPageIndex > -1 && currentlyFocusedElement !== this.view.element(firstGoodPageIndex)) {"} {"_id":"q-en-vscode-1c6bde67d922e63e47799ceb23f70bd9e9f38f205f5224d4ceb9d3ac014d8fad","text":"this._register(this.instantiationService.createInstance(NotebookEditorContextKeys, this)); this._notebookOutline = this.instantiationService.createInstance(NotebookCellOutlineProvider, this, OutlineTarget.QuickPick); this._notebookOutline = this._register(this.instantiationService.createInstance(NotebookCellOutlineProvider, this, OutlineTarget.QuickPick)); this._register(notebookKernelService.onDidChangeSelectedNotebooks(e => { if (isEqual(e.notebook, this.viewModel?.uri)) {"} {"_id":"q-en-vscode-1c6db5e53def6696134bdf66dc9e6f73d040f7cb02b13d31ec6786111ddc9607","text":"path: 'tmux' } }, additionalProperties: terminalProfileSchema }, 'terminal.integrated.profiles.linux': { markdownDescription: localize("} {"_id":"q-en-vscode-1caeb264a03c96ebfdd451b3bb4d0d92a71dfa8d4b67e72d21a868359c120f36","text":"// Based on testing, the trigger character is always at the end of the query. // for the ':' trigger, only return suggestions if there was a '@' before it in the same word. const queryParts = query.split(/s/g); if (queryParts[queryParts.length - 1].startsWith('@')) { if (queryParts[queryParts.length - 1].startsWith(`@${LANGUAGE_SETTING_TAG}`)) { return this.languageService.getRegisteredLanguageIds().map(languageId => { return `@${LANGUAGE_SETTING_TAG}${languageId} `; }).sort(); } else if (queryParts[queryParts.length - 1].startsWith('@')) { return SettingsEditor2.SUGGESTIONS.filter(tag => !query.includes(tag)).map(tag => tag.endsWith(':') ? tag : tag + ' '); } return [];"} {"_id":"q-en-vscode-1cb4f3c202945e4b133e905cf298cdb5c264c27c0b4de3844d9c85da48166ed1","text":"for (( i=0; i < \"${#str}\"; ++i )); do byte=\"${str:$i:1}\" # Escape backslashes, semi-colons specially, then special ASCII chars below space (0x20) # Escape backslashes, semi-colons specially, then special ASCII chars below space (0x20). # This is done in an unwrapped loop instead of using printf as the latter is very slow. if [ \"$byte\" = \"\" ]; then token=\"\" elif [ \"$byte\" = \";\" ]; then token=\"x3b\" elif (( $(builtin printf '%d' \"'$byte\") < 31 )); then token=$(builtin printf 'x%02x' \"'$byte\") elif [ \"$byte\" = $'x00' ]; then token=\"x00\" elif [ \"$byte\" = $'x01' ]; then token=\"x01\" elif [ \"$byte\" = $'x02' ]; then token=\"x02\" elif [ \"$byte\" = $'x03' ]; then token=\"x03\" elif [ \"$byte\" = $'x04' ]; then token=\"x04\" elif [ \"$byte\" = $'x05' ]; then token=\"x05\" elif [ \"$byte\" = $'x06' ]; then token=\"x06\" elif [ \"$byte\" = $'x07' ]; then token=\"x07\" elif [ \"$byte\" = $'x08' ]; then token=\"x08\" elif [ \"$byte\" = $'x09' ]; then token=\"x09\" elif [ \"$byte\" = $'x0a' ]; then token=\"x0a\" elif [ \"$byte\" = $'x0b' ]; then token=\"x0b\" elif [ \"$byte\" = $'x0c' ]; then token=\"x0c\" elif [ \"$byte\" = $'x0d' ]; then token=\"x0d\" elif [ \"$byte\" = $'x0e' ]; then token=\"x0e\" elif [ \"$byte\" = $'x0f' ]; then token=\"x0f\" elif [ \"$byte\" = $'x10' ]; then token=\"x10\" elif [ \"$byte\" = $'x11' ]; then token=\"x11\" elif [ \"$byte\" = $'x12' ]; then token=\"x12\" elif [ \"$byte\" = $'x13' ]; then token=\"x13\" elif [ \"$byte\" = $'x14' ]; then token=\"x14\" elif [ \"$byte\" = $'x15' ]; then token=\"x15\" elif [ \"$byte\" = $'x16' ]; then token=\"x16\" elif [ \"$byte\" = $'x17' ]; then token=\"x17\" elif [ \"$byte\" = $'x18' ]; then token=\"x18\" elif [ \"$byte\" = $'x19' ]; then token=\"x19\" elif [ \"$byte\" = $'x1a' ]; then token=\"x1a\" elif [ \"$byte\" = $'x1b' ]; then token=\"x1b\" elif [ \"$byte\" = $'x1c' ]; then token=\"x1c\" elif [ \"$byte\" = $'x1d' ]; then token=\"x1d\" elif [ \"$byte\" = $'x1e' ]; then token=\"x1e\" elif [ \"$byte\" = $'x1f' ]; then token=\"x1f\" else token=\"$byte\" fi"} {"_id":"q-en-vscode-1cdb41db0bd54061acdc00be1768312579d5ec87e0808674a57ac176991f9d8c","text":"this.update(); } get valueSelection() { const selection = this.ui.inputBox.getSelection(); if (!selection) { return undefined; } return [selection.start, selection.end]; } set valueSelection(valueSelection: Readonly<[number, number]> | undefined) { set valueSelection(valueSelection: Readonly<[number, number]>) { this._valueSelection = valueSelection; this.valueSelectionUpdated = true; this.update();"} {"_id":"q-en-vscode-1d31ccdd882cb35a0cf7f5f1949b9c75fde367e6d7998298f30123f6d8fbc498","text":"@IInstantiationService instantiationService: IInstantiationService, @IWorkspaceContextService private contextService: IWorkspaceContextService, @IStorageService storageService: IStorageService, @IHistoryService private historyService: IHistoryService, @ITextResourceConfigurationService configurationService: ITextResourceConfigurationService, @IWorkbenchEditorService private editorService: IWorkbenchEditorService, @IThemeService themeService: IThemeService,"} {"_id":"q-en-vscode-1d46ec1e2f669e95bc96b89d6e539896386a7afed533ed84d4909efeea58b354","text":"private _sortByLabel = true; private _autoFocusOnList = true; private _keepScrollPosition = false; private _itemActivation = this.ui.isScreenReaderOptimized() ? ItemActivation.NONE /* https://github.com/microsoft/vscode/issues/57501 */ : ItemActivation.FIRST; private _itemActivation = ItemActivation.FIRST; private _activeItems: T[] = []; private activeItemsUpdated = false; private activeItemsToConfirm: T[] | null = [];"} {"_id":"q-en-vscode-1d50b3843c9bcc4259d222500e1d59977e054026e49946eea796678fbe9b5938","text":"this.element.ariaRoleDescription = localize('terminal.integrated.accessibleBuffer', 'Terminal buffer'); _instance.onDidRequestFocus(() => this.hide(true)); this.updateEditor(); this.add(this.editorWidget.onDidFocusEditorText(async () => { if (this.element.classList.contains(ClassName.Active)) { // the user has focused the editor via mouse or // Go to Command was run so we've already updated the editor return; } // if the editor is focused via tab, we need to update the model // and show it this.registerListeners(); await this.updateEditor(); this.element.classList.add(ClassName.Active); })); // xterm's initial layout call has already happened this.layout(); }"} {"_id":"q-en-vscode-1d79e55ab58de5fc25ae2db9200d5bbb8f8e92a2ce5c2fa402c1eb765ff7a3b3","text":"\"html.mirrorCursorOnMatchingTag\": { \"type\": \"boolean\", \"scope\": \"resource\", \"default\": true, \"default\": false, \"description\": \"%html.mirrorCursorOnMatchingTag%\" }, \"html.trace.server\": {"} {"_id":"q-en-vscode-1d94d97f1672be82b05db7e5ef3390a9625846302fe9c03a291c8e96d9aec45e","text":"return; } await ensurePublished(gitRepo, uri); if (shouldEnsurePublished) { await ensurePublished(gitRepo, uri); } let repo: { owner: string; repo: string } | undefined; gitRepo.state.remotes.find(remote => {"} {"_id":"q-en-vscode-1d9e35d480ac9c2d1ab44fcbb30886bccc30207fb6886846f162c32d19eeebd9","text":"id: ShowCurrentReleaseNotesActionId, title: { value: localize('showReleaseNotes', \"Show Release Notes\"), mnemonicTitle: localize('mshowReleaseNotes', \"Show &&Release Notes\"), mnemonicTitle: localize({ key: 'mshowReleaseNotes', comment: ['&& denotes a mnemonic'] }, \"Show &&Release Notes\"), original: 'Show Release Notes' }, category: { value: product.nameShort, original: product.nameShort },"} {"_id":"q-en-vscode-1e1873c2c345367e43e4dd0b48765d674def8bed5cc244c2c8cefcb60aa81388","text":"return; } await result.repository.applyStash(result.stash.index); await commands.executeCommand('workbench.action.closeActiveEditor'); await result.repository.applyStash(result.stash.index); } @command('git.stashDrop', { repository: true })"} {"_id":"q-en-vscode-1e224a37ac62fea9aba9c4c9966d2b62c3960c7e3e9defccb5c08d961c0c6d26","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { Registry } from 'vs/platform/registry/common/platform'; import { IConfigurationRegistry, Extensions as ConfigurationExtensions } from 'vs/platform/configuration/common/configurationRegistry'; suite('ConfigurationRegistry', () => { const configurationRegistry = Registry.as(ConfigurationExtensions.Configuration); test('configuration override', async () => { configurationRegistry.registerConfiguration({ 'id': '_test_default', 'type': 'object', 'properties': { 'config': { 'type': 'object', } } }); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['config'].default, { a: 1, b: 2 }); assert.deepEqual(configurationRegistry.getConfigurationProperties()['[lang]'].default, { a: 2, c: 3 }); }); test('configuration override defaults - merges defaults', async () => { configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['[lang]'].default, { a: 2, b: 2, c: 3 }); }); test('configuration defaults - overrides defaults', async () => { configurationRegistry.registerConfiguration({ 'id': '_test_default', 'type': 'object', 'properties': { 'config': { 'type': 'object', } } }); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['config'].default, { a: 2, c: 3 }); }); }); "} {"_id":"q-en-vscode-1e43ac0b7d3799a4817edd9bdf229a0cc2068f7ed61656cb47baa8143223b4d9","text":"@IFileService private readonly fileService: IFileService ) { super(lifecycleMainService, configurationService, environmentService, requestService, logService); } initialize(): void { super.initialize(); if (getUpdateType() === UpdateType.Setup) { /* __GDPR__"} {"_id":"q-en-vscode-1ea1374ef70874364dce0e726dde0e9b7a498931353fb218b779e79ac315c2c7","text":"@ITextFileService private readonly textFileService: ITextFileService, @IExplorerService private readonly explorerService: IExplorerService, @IUriIdentityService private readonly uriIdentityService: IUriIdentityService, @IPathService private readonly pathService: IPathService @IPathService private readonly pathService: IPathService, @IConfigurationService private readonly configurationService: IConfigurationService ) { super(TextFileEditor.ID, telemetryService, instantiationService, storageService, textResourceConfigurationService, themeService, editorService, editorGroupService);"} {"_id":"q-en-vscode-1ea43363c1432bb049a7a72270c10727fb2bfc0dcacc806d6a251de525fb61b6","text":"for (const defaultConfiguration of defaultConfigurations) { for (const key in defaultConfiguration) { properties.push(key); this.defaultValues[key] = defaultConfiguration[key]; if (OVERRIDE_PROPERTY_PATTERN.test(key)) { this.defaultValues[key] = { ...(this.defaultValues[key] || {}), ...defaultConfiguration[key] }; const property: IConfigurationPropertySchema = { type: 'object', default: this.defaultValues[key],"} {"_id":"q-en-vscode-1eaa64339a05af17cf637793c9d5128a31a2232206295fedc67600d905c9de13","text":"type: string - name: VSCODE_BUILD_MACOS type: boolean default: false - name: VSCODE_BUILD_MACOS_ARM64 type: boolean default: false - name: channel type: string default: stable"} {"_id":"q-en-vscode-1ee0556c430cb39295e4ef5474d7a9a72d5b455ee3591b47ab944f4d2686a510","text":"return; } const root = element instanceof SearchResult ? null : element; this.tree.setChildren(root, this.createIterator(element, collapseResults)); if (element instanceof SearchResult) { this.tree.setChildren(null, this.createIterator(element, collapseResults)); } else { this.tree.setChildren(element, this.createIterator(element, collapseResults)); this.tree.rerender(element); } }); } }"} {"_id":"q-en-vscode-1ef7d51773387c8b73f1312c1d88d747e4ecf60fd68ddc828af405b5562a2a9b","text":"id: 'editor.action.inlineSuggest.acceptNextWord', label: nls.localize('action.inlineSuggest.acceptNextWord', \"Accept Next Word Of Inline Suggestion\"), alias: 'Accept Next Word Of Inline Suggestion', precondition: EditorContextKeys.writable precondition: ContextKeyExpr.and(EditorContextKeys.writable, GhostTextController.inlineSuggestionVisible), kbOpts: { weight: 1000, primary: KeyMod.CtrlCmd | KeyCode.RightArrow, } }); }"} {"_id":"q-en-vscode-1f3cdaf8408ca21ab0bcf3d34be35ed8e3deea3b6ec5585e27cb600700f57341","text":"{ \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\", \"foreground\": \"#6796e6\" } },"} {"_id":"q-en-vscode-1f7f0e03812975088c4192f11b52a973f31c49a1484333ef1043ecab897ce06b","text":"*/ toString(skipEncoding?: boolean): string; toJSON(): UriComponents; /** * A helper function to revive URIs. * * **Note** that this function should only be used when receiving Uri#toJSON generated data * and that it doesn't do any validation. Use {@link Uri.from} when received \"untrusted\" * uri components such as command arguments or data from storage. * * @param data The Uri components or Uri to revive. * @returns The revived Uri or undefined or null. */ static revive(data: UriComponents | Uri): Uri; static revive(data: UriComponents | Uri | undefined): Uri | undefined; static revive(data: UriComponents | Uri | null): Uri | null;"} {"_id":"q-en-vscode-1f85882311c589e9f801aac8a9c9f4a53e85b4f89810093b91c97a568038b761","text":"isItemVisible(item: ExplorerItem): boolean; isItemCollapsed(item: ExplorerItem): boolean; hasFocus(): boolean; getFocus(): ExplorerItem[]; focusNext(): void; focusLast(): void; } function getFocus(listService: IListService): unknown | undefined {"} {"_id":"q-en-vscode-1fb0b0922c02125a2f8dc9e67219945152226cae529c69562127791e9e5975ef","text":"export async function getInlayHints(model: ITextModel, ranges: Range[], token: CancellationToken): Promise { const datas: InlayHintsData[] = []; const providers = InlayHintsProviderRegistry.ordered(model).reverse(); const promises = flatten(providers.map(provider => ranges.map(range => Promise.resolve(provider.provideInlayHints(model, range, token)).then(result => { if (result) { datas.push({ list: result, provider }); } }, err => { onUnexpectedExternalError(err); })))); const promises = flatten(providers.map(provider => ranges.map(range => { return Promise.resolve(provider.provideInlayHints(model, range, token)).then(result => { const itemsInRange = result?.filter(hint => range.containsPosition(hint.position)); if (itemsInRange?.length) { datas.push({ list: itemsInRange, provider }); } }, err => { onUnexpectedExternalError(err); }); }))); await Promise.all(promises);"} {"_id":"q-en-vscode-1fd8c768e136cdbec9e75db57c3d498e951e4f4bd08ef7604f041fa5190066e5","text":"box-shadow: none; } .hc-black .monaco-menu .monaco-action-bar.vertical .action-item { border: 1px solid transparent; /* prevents jumpig behaviour on hover or focus */ } .hc-black .monaco-menu .monaco-action-bar.vertical .action-item.focused { background: none; border: 1px dotted #f38518;"} {"_id":"q-en-vscode-204571882684943416f13762ecf7382ce3987cba470b885ed63c59c5a07ba4bb","text":"return this.shouldShowCompositeBar() ? super.getVisiblePaneCompositeIds() : this.acitivityBarPart.getVisiblePaneCompositeIds(); } focusActivityBar(): void { async focusActivityBar(): Promise { if (this.configurationService.getValue(LayoutSettings.ACTIVITY_BAR_LOCATION) === ActivityBarPosition.HIDDEN) { await this.configurationService.updateValue(LayoutSettings.ACTIVITY_BAR_LOCATION, this.getRememberedActivityBarVisiblePosition()); this.onDidChangeActivityBarLocation(); } if (this.shouldShowCompositeBar()) { this.focusComositeBar(); } else { if (!this.layoutService.isVisible(Parts.ACTIVITYBAR_PART)) { this.layoutService.setPartHidden(false, Parts.ACTIVITYBAR_PART); } this.acitivityBarPart.focus(); this.acitivityBarPart.show(true); } }"} {"_id":"q-en-vscode-2072ca7015ee161cba21a69caa7e01b76e34889fcb1874709cdac5bae741dc20","text":"import { ServiceCollection } from 'vs/platform/instantiation/common/serviceCollection'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { IThemeService } from 'vs/platform/theme/common/themeService'; import { hasCustomTitlebar } from 'vs/platform/window/common/window'; import { hasNativeTitlebar } from 'vs/platform/window/common/window'; import { IEditorGroupView, IEditorPartsView } from 'vs/workbench/browser/parts/editor/editor'; import { EditorPart, IEditorPartUIState } from 'vs/workbench/browser/parts/editor/editorPart'; import { IAuxiliaryTitlebarPart } from 'vs/workbench/browser/parts/titlebar/titlebarPart';"} {"_id":"q-en-vscode-208b53324191a7abdb3f0b91ae643ae4272cd9e55fe7137d8d4956ab2f135c99","text":"export class ExplorerViewPaneContainer extends ViewPaneContainer { private viewletVisibleContextKey: IContextKey; constructor( @IWorkbenchLayoutService layoutService: IWorkbenchLayoutService, @ITelemetryService telemetryService: ITelemetryService,"} {"_id":"q-en-vscode-2092bf355270993df707d517984ab499d123be9f48601e8bf0f086821ec8d248","text":"import URI from 'vs/base/common/uri'; import * as errors from 'vs/base/common/errors'; import { TPromise } from 'vs/base/common/winjs.base'; import * as arrays from 'vs/base/common/arrays'; import * as objects from 'vs/base/common/objects'; import * as DOM from 'vs/base/browser/dom'; import { Separator } from 'vs/base/browser/ui/actionbar/actionbar';"} {"_id":"q-en-vscode-20ad7bbac5b9ed98f274faede237e5d9e379cfca6b449d8905f9c44e225a5447","text":"$Nonce = $env:VSCODE_NONCE $env:VSCODE_NONCE = $null $osVersion = [System.Environment]::OSVersion.Version $isWindows10 = $IsWindows10 -and $osVersion.Major -eq 10 -and $osVersion.Minor -eq 0 -and $osVersion.Build -lt 22000 if ($env:VSCODE_ENV_REPLACE) { $Split = $env:VSCODE_ENV_REPLACE.Split(\":\") foreach ($Item in $Split) {"} {"_id":"q-en-vscode-21068ec561b522f3932154832746e9c36414cfe5ed92d7bea930898d38dcbcf6","text":"export interface EditSession { version: number; machine?: string; folders: Folder[]; }"} {"_id":"q-en-vscode-21117b14ee470a137f0d1f496f4c12e0e2b1827b7328bc121103d2fc541bb231","text":"return path.split('/').map((segment) => encodeURIComponent(segment)).join('/'); } export async function getLink(gitAPI: GitAPI, useSelection: boolean, hostPrefix?: string, linkType: 'permalink' | 'headlink' = 'permalink', context?: LinkContext, useRange?: boolean): Promise { export async function getLink(gitAPI: GitAPI, useSelection: boolean, shouldEnsurePublished: boolean, hostPrefix?: string, linkType: 'permalink' | 'headlink' = 'permalink', context?: LinkContext, useRange?: boolean): Promise { hostPrefix = hostPrefix ?? 'https://github.com'; const fileAndPosition = getFileAndPosition(context); if (!fileAndPosition) {"} {"_id":"q-en-vscode-213cba58e5626ae57d366ef4b109e002dbe93583da3135518313a5d718e4483a","text":"public readonly inlineCompletionVisible = GhostTextController.inlineSuggestionVisible.bindTo(this.contextKeyService); public readonly inlineCompletionSuggestsIndentation = GhostTextController.inlineSuggestionHasIndentation.bindTo(this.contextKeyService); public readonly inlineCompletionSuggestsIndentationLessThanTabSize = GhostTextController.inlineSuggestionHasIndentationLessThanTabSize.bindTo(this.contextKeyService); public readonly inlineSuggestionJustCommitted = GhostTextController.inlineSuggestionJustCommitted.bindTo(this.contextKeyService); constructor(private readonly contextKeyService: IContextKeyService) { }"} {"_id":"q-en-vscode-21511a386a841270fd5d841053ded93898720a82a76203867137a28a085be2b2","text":"onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.Escape).on(e => this.onEscape(e), this, this.toDispose); onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.UpArrow).on(this.onUpArrow, this, this.toDispose); onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.DownArrow).on(this.onDownArrow, this, this.toDispose); onSelectDropDownKeyDown.filter(e => (e.keyCode >= KeyCode.KEY_0 && e.keyCode <= KeyCode.KEY_Z) || (e.keyCode >= KeyCode.US_SEMICOLON && e.keyCode <= KeyCode.NUMPAD_DIVIDE)).on(this.onCharacter, this, this.toDispose); // SetUp list mouse controller - control navigation, disabled items, focus"} {"_id":"q-en-vscode-215455aba9b33a9f22f2e7d25fe52fe653bca08db2e3e5215b96bc2910a7d0c6","text":"public commitPartially(): void { this.activeModel?.commitInlineCompletionPartially(); this.activeController?.value?.contextKeys.inlineSuggestionJustCommitted.set(true); } public commit(): void { this.activeModel?.commitInlineCompletion(); this.activeController?.value?.contextKeys.inlineSuggestionJustCommitted.set(true); } public hide(): void {"} {"_id":"q-en-vscode-21996da858dc959768aa0565231bc59fdab06447218186dba2aebf0cff271ae2","text":"import { Repository, GitResourceGroup } from './repository'; import { Model } from './model'; import { debounce } from './decorators'; import { filterEvent, dispose, anyEvent, fireEvent, PromiseSource, combinedDisposable } from './util'; import { filterEvent, dispose, anyEvent, fireEvent, PromiseSource, combinedDisposable, runAndSubscribeEvent } from './util'; import { Change, GitErrorCodes, Status } from './api/git'; class GitIgnoreDecorationProvider implements FileDecorationProvider {"} {"_id":"q-en-vscode-22497f59934c2eff2a8ebeed1f8222dcc04de6f7762fe28f480758cc6638a33b","text":"if (isEnabled()) { const katex = require('@vscode/markdown-it-katex').default; const settingsMacros = getMacros(); const options = { globalGroup: true, macros: { ...settingsMacros } }; const options = { enableFencedBlocks: true, globalGroup: true, macros: { ...settingsMacros } }; md.core.ruler.push('reset-katex-macros', () => { options.macros = { ...settingsMacros }; });"} {"_id":"q-en-vscode-225d53658bf0f507be286f696a309edd4038b88e1b54cf0471c28fd7ad4968f6","text":"export function registerInlineCompletionsProvider(languageId: string, provider: InlineCompletionsProvider): IDisposable; /** * Register an inlay hints provider. */ export function registerInlayHintsProvider(languageId: string, provider: InlayHintsProvider): IDisposable; /** * Contains additional diagnostic information about the context in which * a [code action](#CodeActionProvider.provideCodeActions) is run. */"} {"_id":"q-en-vscode-2275b0411a66d42f93e1abb854b8b619665750f09fb2353a54cce42015111fa0","text":"this._accessibleViewCurrentProviderId.reset(); } show(provider?: IAccessibleContentProvider, symbol?: IAccessibleViewSymbol, showAccessibleViewHelp?: boolean): void { show(provider?: IAccessibleContentProvider, symbol?: IAccessibleViewSymbol, showAccessibleViewHelp?: boolean, lineNumber?: number): void { provider = provider ?? this._currentProvider; if (!provider) { return;"} {"_id":"q-en-vscode-22b13318548b8b3312daf9f46ef3fe72cc01ecee1fc2938cf60fd49c56e48a59","text":"isFeatureTerminal: launchConfig.isFeatureTerminal, isExtensionOwnedTerminal: launchConfig.isExtensionOwnedTerminal, useShellEnvironment: launchConfig.useShellEnvironment, disablePersistence: launchConfig.disablePersistence }; const terminal = Promises.withAsyncBody(async r => { const terminal = await this._terminalService.createTerminal({"} {"_id":"q-en-vscode-23073ea014c6c5cbd0b8b17e46674935237bf9ff27302fcd7c8a7af7346c650c","text":"import { Codicon } from 'vs/base/common/codicons'; import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { IModelDecorationOptions, IModelDecorationsChangeAccessor, TrackedRangeStickiness } from 'vs/editor/common/model'; import { IModelDecorationOptions, IModelDecorationsChangeAccessor, MinimapPosition, TrackedRangeStickiness } from 'vs/editor/common/model'; import { ModelDecorationOptions } from 'vs/editor/common/model/textModel'; import { IDecorationProvider } from 'vs/editor/contrib/folding/browser/foldingModel'; import { localize } from 'vs/nls'; import { editorSelectionBackground, iconForeground, registerColor, transparent } from 'vs/platform/theme/common/colorRegistry'; import { registerIcon } from 'vs/platform/theme/common/iconRegistry'; import { ThemeIcon } from 'vs/platform/theme/common/themeService'; import { themeColorFromId, ThemeIcon } from 'vs/platform/theme/common/themeService'; const foldBackground = registerColor('editor.foldBackground', { light: transparent(editorSelectionBackground, 0.3), dark: transparent(editorSelectionBackground, 0.3), hcDark: null, hcLight: null }, localize('foldBackgroundBackground', \"Background color behind folded ranges. The color must not be opaque so as not to hide underlying decorations.\"), true); registerColor('editorGutter.foldingControlForeground', { dark: iconForeground, light: iconForeground, hcDark: iconForeground, hcLight: iconForeground }, localize('editorGutter.foldingControlForeground', 'Color of the folding control in the editor gutter.')); export const foldingExpandedIcon = registerIcon('folding-expanded', Codicon.chevronDown, localize('foldingExpandedIcon', 'Icon for expanded ranges in the editor glyph margin.')); export const foldingCollapsedIcon = registerIcon('folding-collapsed', Codicon.chevronRight, localize('foldingCollapsedIcon', 'Icon for collapsed ranges in the editor glyph margin.')); export const foldingManualCollapsedIcon = registerIcon('folding-manual-collapsed', foldingCollapsedIcon, localize('foldingManualCollapedIcon', 'Icon for manually collapsed ranges in the editor glyph margin.')); export const foldingManualExpandedIcon = registerIcon('folding-manual-expanded', foldingExpandedIcon, localize('foldingManualExpandedIcon', 'Icon for manually expanded ranges in the editor glyph margin.')); const foldedBackgroundMinimap = { color: themeColorFromId(foldBackground), position: MinimapPosition.Inline }; export class FoldingDecorationProvider implements IDecorationProvider { private static readonly COLLAPSED_VISUAL_DECORATION = ModelDecorationOptions.register({"} {"_id":"q-en-vscode-231a0bc571fafb7f2238ccbd46130352a9278465c29e331917fc497c32879e6f","text":"case FileOperation.DELETE: return await this._fireWillEvent(this._onWillDeleteFile, { files: files.map(f => URI.revive(f.target)) }, timeout, token); case FileOperation.CREATE: case FileOperation.COPY: return await this._fireWillEvent(this._onWillCreateFile, { files: files.map(f => URI.revive(f.target)) }, timeout, token); } return undefined;"} {"_id":"q-en-vscode-2371cd323ff8028730c4fc345a28cabab241b6c69713b89248694c25bce5b69e","text":"} } export class PreviousMatchFindAction extends MatchFindAction { constructor() {"} {"_id":"q-en-vscode-237608e1a2e7b6aebe8f870747f1285fc66397661ee0951021420457a5135c36","text":"followsCaret?: boolean; ignoreCharChanges?: boolean; alwaysRevealFirst?: boolean; findResultLoop?: boolean; } const defaultOptions: Options = { followsCaret: true, ignoreCharChanges: true, alwaysRevealFirst: true alwaysRevealFirst: true, findResultLoop: true }; export interface IDiffNavigator {"} {"_id":"q-en-vscode-23a13560b946c63cb002aeefb3dcae34a1c87cfb55288f9c378c4db6f14d3687","text":"type: 'boolean', default: typeof product.quality === 'string' && product.quality !== 'stable' // only enable as default in insiders }, [NotebookSetting.cellExecutionScroll]: { markdownDescription: nls.localize('notebook.revealNextOnExecuteBehavior.description', \"How far to scroll when revealing the next cell upon exectuting {0}.\", 'notebook.cell.executeAndSelectBelow'), [NotebookSetting.scrollToRevealCell]: { markdownDescription: nls.localize('notebook.scrolling.revealCellBehavior.description', \"How far to scroll when revealing the selected, e.g. when exectuting {0}.\", 'notebook.cell.executeAndSelectBelow'), type: 'string', enum: ['fullCell', 'firstLine', 'none'], markdownEnumDescriptions: [ nls.localize('notebook.revealNextOnExecuteBehavior.fullCell.description', 'Scroll to fully reveal the next cell.'), nls.localize('notebook.revealNextOnExecuteBehavior.firstLine.description', 'Scroll to reveal the first line of the next cell.'), nls.localize('notebook.revealNextOnExecuteBehavior.nonedescription', 'Do not scroll to reveal the next cell.'), nls.localize('notebook.scrolling.revealCellBehavior.fullCell.description', 'Scroll to fully reveal the selected cell.'), nls.localize('notebook.scrolling.revealCellBehavior.firstLine.description', 'Scroll to reveal the first line of the selected cell.'), nls.localize('notebook.scrolling.revealCellBehavior.nonedescription', 'Do not scroll to reveal the selected cell.'), ], default: 'fullCell' }, [NotebookSetting.anchorToFocusedCell]: { markdownDescription: nls.localize('notebook.scrolling.anchorToFocusedCell.description', \"Keep the focused cell steady while surrounding cells change size\"), type: 'string', enum: ['auto', 'true', 'false'], markdownEnumDescriptions: [ nls.localize('notebook.scrolling.anchorToFocusedCell.auto.description', \"Anchor to the focused cell unless {0} is set to {1}\", 'notebook.scrolling.revealCellBehavior', 'none') ], default: 'auto' } } });"} {"_id":"q-en-vscode-241e24b39c951270c0dac89945eba877ebb1a9317fba8e61e21cf0c94d79facc","text":"private _lastLineRelativePosition: number = 0; private _hoverOnLine: number = -1; private _hoverOnColumn: number = -1; private _state: StickyScrollWidgetState | undefined; constructor( private readonly _editor: ICodeEditor"} {"_id":"q-en-vscode-245bbb7207241a581688ca6d003d9249d5cbdb894c6dc58d22b789920c21341f","text":"thanks.removeClass('task-panel-hidden'); } yesButton.item(0).on('click', e => { yesButton.on('click', e => { if (!this.storageService.get(this.taskExperimentPart5)) { this.telemetryService.publicLog('taskPanel.yes'); this.storageService.store(this.taskExperimentPart5, true, StorageScope.GLOBAL);"} {"_id":"q-en-vscode-247d23c3b703d7cbdb2012bc4164ae5ce36698e2076632921f6bb3504e2faa58","text":"public createExtensionTerminal(options: vscode.ExtensionTerminalOptions, internalOptions?: ITerminalInternalOptions): vscode.Terminal { const terminal = new ExtHostTerminal(this._proxy, generateUuid(), options, options.name); const p = new ExtHostPseudoterminal(options.pty); terminal.createExtensionTerminal(options.location, this._serializeParentTerminal(options, internalOptions).resolvedExtHostIdentifier, asTerminalIcon(options.iconPath), asTerminalColor(options.color)).then(id => { terminal.createExtensionTerminal(options.location, internalOptions, this._serializeParentTerminal(options, internalOptions).resolvedExtHostIdentifier, asTerminalIcon(options.iconPath), asTerminalColor(options.color)).then(id => { const disposable = this._setupExtHostProcessListeners(id, p); this._terminalProcessDisposables[id] = disposable; });"} {"_id":"q-en-vscode-247d4a24f3fb75836873e299b9982d74b39c202dc571805efd0b9c48224ae253","text":"registerAction2(OpenResultResource); registerAction2(SetMixedLayout); registerAction2(SetColumnLayout); registerAction2(ShowHideBase); registerAction2(ShowHideAtTopBase); registerAction2(OpenMergeEditor); registerAction2(OpenBaseFile); registerAction2(ShowNonConflictingChanges); registerAction2(ShowHideBase); registerAction2(ShowHideTopBase); registerAction2(ShowHideCenterBase); registerAction2(GoToNextUnhandledConflict); registerAction2(GoToPreviousUnhandledConflict);"} {"_id":"q-en-vscode-24dab8538e59a1d55f47b842dcdddd3e9e0cbb294970f2b4de698153ceb581f2","text":"resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.5.0.tgz#41c0d96acc1e3bb6c6596eee64e163b6bca74be7\" integrity sha512-Jm4/g4QiTxiKiTbYICQgC791ubhIZyoIwxAIgOW8z8HWFNY+lwk+dwaKEaEeGBfM48Vk8fklsUW9u/PlenYEBg== xterm-addon-webgl@0.15.0-beta.7: version \"0.15.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.7.tgz#ab247b499f61e8eebff92e08ec5ca999d87e06af\" integrity sha512-7WCI/D6uFNp3y9TeTsbSo1h7gCy4h/yP2lWn8ZEjCaiGvO11DbKMq17fbiwaR3YmGWXoRKkcLaNIiqxFnjKO4w== xterm-addon-webgl@0.15.0-beta.8: version \"0.15.0-beta.8\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.8.tgz#2005198582f6f1f4a9b2612b9354c0bcc9f148d8\" integrity sha512-HjTr9bi3FvdOIPaaIpih6qdHX2z+H7sQPluLj5KzwCqRiEVUVRi19dl8SdHjf6dCmN3GahMhjV7D+zxHi2pLTw== xterm-headless@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.30.tgz#f40b950f744111537a6403d33782669b1149fabb\" integrity sha512-aW6yljrcuu74kxg3w1DG1CZJSz38nKY/HOX3YOOE7cqxlkVXM7lltXZFEiF0xXDR0GHcmnEwnFWqA2rDmdhoDA== xterm-headless@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.33.tgz#a1fbed45b0afbd73fbd6bdd22f1f8f7644244f7c\" integrity sha512-h9gdzCl3jGSrq7FoZ+e0qWdSYhhKA3hkyuIMelYWIMz8HihxbLAZHErYKtYyDhgXRLNM2ZpS1sjeXLrDC7m2dA== xterm@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.30.tgz#6f50796d1652a61b30eeed7fa2bdd9c485a7d8ee\" integrity sha512-l1YBwMnakKXd638oxbzEg9Y1sWqxcrm/q7i5gBuWaK8N7Tq1NvF51FCamxXtfdL4dostgw8WoM+/6KRlL53t6A== xterm@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.33.tgz#584fb261ec283573ddb9d3ef4b3ea63a9a359f81\" integrity sha512-HIkQgn0/akWLWLzUJquAeVF1/nqPgqL6KzmhkAOJbOtNHftNZbEK+lDGfzz1dUC/smpXQkKm7X2nn92h3i1tgQ== yallist@^4.0.0: version \"4.0.0\""} {"_id":"q-en-vscode-24fad79667bd378b3ece3952e59d90ea222fc5e1df0fbad97f4aed54084a1e3f","text":"if (this._xterm.getOption('disableStdin')) { this._attachPressAnyKeyToCloseListener(); } const neverMeasureRenderTime = this._storageService.getBoolean(NEVER_MEASURE_RENDER_TIME_STORAGE_KEY, StorageScope.GLOBAL, false); if (!neverMeasureRenderTime && this._configHelper.config.rendererType === 'auto') { this._measureRenderTime(); } }); } private _measureRenderTime(): void { const textRenderLayer = (this._xterm).renderer._renderLayers[0]; const originalOnGridChanged = textRenderLayer.onGridChanged; textRenderLayer.onGridChanged = (terminal: XTermTerminal, firstRow: number, lastRow: number) => { const startTime = performance.now(); originalOnGridChanged.call(textRenderLayer, terminal, firstRow, lastRow); const renderTimeMilliseconds = performance.now() - startTime; if (renderTimeMilliseconds > SLOW_CANVAS_RENDER_THRESHOLD) { const promptChoices: IPromptChoice[] = [ { label: nls.localize('yes', \"Yes\"), run: () => { this._configurationService.updateValue('terminal.integrated.rendererType', 'dom', ConfigurationTarget.USER).then(() => { this._notificationService.info(nls.localize('terminal.rendererInAllNewTerminals', \"All newly created terminals will use the non-GPU renderer.\")); }); } } as IPromptChoice, { label: nls.localize('no', \"No\") } as IPromptChoice, { label: nls.localize('dontShowAgain', \"Don't Show Again\"), isSecondary: true, run: () => this._storageService.store(NEVER_MEASURE_RENDER_TIME_STORAGE_KEY, true) } as IPromptChoice ]; this._notificationService.prompt( Severity.Warning, nls.localize('terminal.slowRendering', 'The current standard canvas renderer for the integrated terminal appears to be slow on your computer. Using the DOM-based renderer may improve performance, do you want to switch to the DOM-based renderer? [Read more about terminal settings](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered).'), promptChoices ); } // Restore original function textRenderLayer.onGridChanged = originalOnGridChanged; }; } public registerLinkMatcher(regex: RegExp, handler: (url: string) => void, matchIndex?: number, validationCallback?: (uri: string, callback: (isValid: boolean) => void) => void): number { return this._linkHandler.registerCustomLinkHandler(regex, handler, matchIndex, validationCallback); }"} {"_id":"q-en-vscode-2527c0beea19bc38e55aafc9da87c05a9aa479ef7926c81a676d6d1fe7c8dba6","text":"} async delete(item: ITrustedUriItem) { this.table.focusNext(); await this.workspaceTrustManagementService.setUrisTrust([item.uri], false); if (this.table.getFocus().length === 0) { this.table.focusLast(); } this._onDelete.fire(item); this.table.domFocus(); } async edit(item: ITrustedUriItem, usePickerIfPossible?: boolean) {"} {"_id":"q-en-vscode-2569fbbd7aab8687481c4f5b94a0e7089f400408da4519fb4f1b63a31445250e","text":"declare namespace monaco { // THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. export type Thenable = PromiseLike; export interface IDisposable {"} {"_id":"q-en-vscode-258d12004a7a7b12832c59fcf06261f0da22b346d2b17b68874a915b081361e2","text":"overviewRulerLanes: IEditorOption; parameterHints: IEditorOption; peekWidgetDefaultFocus: IEditorOption; definitionLinkOpensInPeek: IEditorOption; quickSuggestions: IEditorOption; quickSuggestionsDelay: IEditorOption; readOnly: IEditorOption;"} {"_id":"q-en-vscode-2597e6c44ee26e74fb713fe9ae6b988301977e1af4176ee37dd8e656faad613d","text":"\"name\": \"Markup Headings\", \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\", \"foreground\": \"#268BD2\" } },"} {"_id":"q-en-vscode-25d1c25df1aba5b59d11b4cc00b9cea34bc321c909954f8429b070238ba1eb64","text":"private launchJsonChanged: boolean; private firstSessionStart: boolean; private previousState: debug.State; private fetchThreadsSchedulers: Map; constructor( @IStorageService private storageService: IStorageService,"} {"_id":"q-en-vscode-26334f1a6ea3dc21728121084bd5231aa06e617da1cb91a76fc01838e1d29d23","text":"import { ICodeEditorService } from 'vs/editor/browser/services/codeEditorService'; import { mainWindow } from 'vs/base/browser/window'; import { TestCodeEditorService } from 'vs/editor/test/browser/editorTestServices'; import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat'; import { InlineChatServiceImpl } from 'vs/workbench/contrib/inlineChat/common/inlineChatServiceImpl'; import { INotebookCellOutlineProviderFactory, NotebookCellOutlineProviderFactory } from 'vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineProviderFactory'; import { ILanguageDetectionService } from 'vs/workbench/services/languageDetection/common/languageDetectionWorkerService';"} {"_id":"q-en-vscode-264cde82d052e7fcbac7ee884816856917e349dccfc7666c8093c23caaa530d9","text":"\"editorGutter.deletedBackground\": \"#f85149\", \"editorGutter.modifiedBackground\": \"#005FB8\", \"editorIndentGuide.background\": \"#D3D3D3\", \"editorInlayHint.background\": \"#8b949e33\", \"editorInlayHint.foreground\": \"#8b949e\", \"editorInlayHint.typeBackground\": \"#8b949e33\", \"editorInlayHint.typeForeground\": \"#8b949e\", \"editorInlayHint.background\": \"#8b949e1b\", \"editorInlayHint.typeBackground\": \"#8b949e1b\", \"editorLineNumber.activeForeground\": \"#171184\", \"editorLineNumber.foreground\": \"#6e7681\", \"editorOverviewRuler.border\": \"#0000001a\","} {"_id":"q-en-vscode-265faed8781d50b9a7453ac838bc9a2b728ebb75ed9869864b0cffed126cad2b","text":"this.setInput(input); this.disposables.push(this.onDidChangeSelection(event => { extensionsWorkdbenchService.open(event.elements[0], event.browserEvent instanceof MouseEvent && (event.browserEvent.ctrlKey || event.browserEvent.metaKey || event.browserEvent.altKey)); if (event.browserEvent && event.browserEvent instanceof KeyboardEvent) { extensionsWorkdbenchService.open(event.elements[0].extension, false); } })); } } No newline at end of file"} {"_id":"q-en-vscode-2683e50d07886814840c51740860b0196f45d6f816e6b03099a6435793109a18","text":"private resetCenteredEditor(layout: boolean = true) { this.centeredEditorLeftMarginRatio = 0.5; this.centeredEditorPreferedSize = Math.floor(this.dimension.width * EditorGroupsControl.GOLDEN_RATIO); this.centeredEditorPreferredSize = Math.floor(this.dimension.width * EditorGroupsControl.GOLDEN_RATIO); if (layout) { this.layoutContainers(); } this.storageServise.remove(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); this.storageService.remove(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); } public getInstantiationService(position: Position): IInstantiationService {"} {"_id":"q-en-vscode-2697979a7f8c3dc7b0d49b8fade3e73d101e1a125509b4c454082e46ffacb3bf","text":"description: nls.localize('search.globalFindClipboard', \"Controls whether the search view should read or modify the shared find clipboard on macOS.\"), included: platform.isMacintosh }, 'search.location': { type: 'string', enum: ['sidebar', 'panel'], default: 'sidebar', description: nls.localize('search.location', \"Controls whether the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space.\"), deprecationMessage: nls.localize('search.location.deprecationMessage', \"This setting is deprecated. Please use the search view's context menu instead.\") }, 'search.collapseResults': { type: 'string', enum: ['auto', 'alwaysCollapse', 'alwaysExpand'],"} {"_id":"q-en-vscode-26e07c967f45548ec589db11a48470e26a3ee0696cec95df3d3731dedeb89ef6","text":"execution_count: cell.executionSummary?.executionOrder ?? null, source: splitMultilineString(cell.value.replace(/rn/g, 'n')), outputs: (cell.outputs || []).map(translateCellDisplayOutput), metadata: metadata metadata: cellMetadata.metadata }; if (cellMetadata?.id) { codeCell.id = cellMetadata.id;"} {"_id":"q-en-vscode-27379d983105fcb67a91743ba7aa183920094dc74d4c11be0c6c2a16fe3ef643","text":"if (editorHighlighterContrib.wordHighlighter.decorations.length > 0) { editorHighlighterContrib.wordHighlighter.decorations.clear(); editorHighlighterContrib.wordHighlighter.workerRequest = null; editorHighlighterContrib.wordHighlighter._hasWordHighlights.set(false); } }"} {"_id":"q-en-vscode-279c23404cf56d834faaf2f410d7d9b470331b3719ec34cea591891240be130d","text":"return true; } if (!this._initialized) { return false; if (this.environmentService.extensionTestsLocationURI) { return true; // trust running tests with vscode-test } // Remote - remote authority explicitly sets workspace trust"} {"_id":"q-en-vscode-27ab87122f85998700d9b990e70db6cea2672c63a7aeb6bfcccb81708b380d79","text":"label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.Strict) + localize('strict.title', 'Strict'), description: localize('strict.description', 'Only load secure content'), }, { type: MarkdownPreviewSecurityLevel.AllowInsecureLocalContent, label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowInsecureLocalContent) + localize('insecureLocalContent.title', 'Allow insecure local content'), description: localize('insecureLocalContent.description', 'Enable loading content over http served from localhost'), }, { type: MarkdownPreviewSecurityLevel.AllowInsecureContent, label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowInsecureContent) + localize('insecureContent.title', 'Allow insecure content'), description: localize('insecureContent.description', 'Enable loading content over http'),"} {"_id":"q-en-vscode-27ac81a58eecb723cf0584747f1a7fee341c7464f202b24cf0d4b71a97928416","text":"} if (size > 3 * this.minSize && size < this.centeredEditorAvailableSize) { this.centeredEditorPreferedSize = size; this.centeredEditorPreferredSize = size; position -= EditorGroupsControl.CENTERED_EDITOR_MIN_MARGIN; position = Math.min(position, this.centeredEditorAvailableSize - this.centeredEditorSize); position = Math.max(0, position);"} {"_id":"q-en-vscode-27c4d6a7c271badf1ed7c246ee7b4a23180126bea98f4742c24ce18f253bd88b","text":"); // Apply extension environment variable collections to the environment if (!shellLaunchConfig.strictEnv) { if (shouldUseEnvironmentVariableCollection(shellLaunchConfig)) { const entries: [string, IEnvironmentVariableCollection][] = []; for (const [k, v, d] of args.envVariableCollections) { entries.push([k, { map: deserializeEnvironmentVariableCollection(v), descriptionMap: deserializeEnvironmentDescriptionMap(d) }]);"} {"_id":"q-en-vscode-27e3d9cb200e120a597243492faac41bc8de0988059c5ea412fef9004dd33f84","text":"this._cursorBlinking = options.get(EditorOption.cursorBlinking); this._cursorStyle = options.get(EditorOption.cursorStyle); this._cursorSmoothCaretAnimation = options.get(EditorOption.cursorSmoothCaretAnimation); this._experimentalEditContextEnabled = options.get(EditorOption.experimentalEditContextEnabled); this._selectionIsEmpty = true; this._isComposingInput = false;"} {"_id":"q-en-vscode-27f9b8e8364fb70734d1291bfd50cea1a6658f1dfbc8f33368c7f585d38772a5","text":"if (url.authority) { this._url = this.urlOrCommand; } else { const urlCommand: Promise = this.commandService.executeCommand(this.urlOrCommand); const urlCommand: Promise = this.commandService.executeCommand(this.urlOrCommand).then((result) => { // if executing this command times out, cache its value whenever it eventually resolves this._url = result; return this._url; }); // We must be defensive. The command may never return, meaning that no help at all is ever shown! const emptyString: Promise = new Promise(resolve => setTimeout(() => resolve(''), 500)); this._url = await Promise.race([urlCommand, emptyString]);"} {"_id":"q-en-vscode-2837bc4f1b871c04d8d44a4697fb34c38169d3de0fe5aa1beff8f9be2d42a3c6","text":"let resolverData: Map | undefined; async function quickResolve(that: AbstractTaskService, identifier: string | TaskIdentifier) { async function quickResolve(that: AbstractTaskService, uri: URI | string, identifier: string | TaskIdentifier) { const foundTasks = await that._findWorkspaceTasks((task: Task | ConfiguringTask): boolean => { const taskUri = ((ConfiguringTask.is(task) || CustomTask.is(task)) ? task._source.config.workspaceFolder?.uri : undefined); const originalUri = (typeof uri === 'string' ? uri : uri.toString()); if (taskUri?.toString() !== originalUri) { return false; } if (Types.isString(identifier)) { return ((task._label === identifier) || (task.configurationProperties.identifier === identifier)); } else {"} {"_id":"q-en-vscode-287f0a0d809fb84fa3740a8f7866352d63bdd62471f132b73cbf8b26be39ad67","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', isWholeLine: true, firstLineDecorationClassName: ThemeIcon.asClassName(foldingCollapsedIcon) firstLineDecorationClassName: ThemeIcon.asClassName(foldingCollapsedIcon), }); private static readonly COLLAPSED_HIGHLIGHTED_VISUAL_DECORATION = ModelDecorationOptions.register({"} {"_id":"q-en-vscode-291e667dea4e7c881c2f55c75b301ada257a99ffb09b8bbc6d4024943c289d91","text":"// Group editors count context groupEditorsCountContext.set(this.count); })); }; this._register(this.onDidModelChange(e => updateGroupContextKeys(e))); // Track the active editor and update context key that reflects // the dirty state of this editor this._register(this.onDidActiveEditorChange(() => { observeActiveEditor(); })); this._register(this.onDidActiveEditorChange(() => observeActiveEditor())); // Update context keys on startup observeActiveEditor(); updateGroupContextKeys({ kind: GroupModelChangeKind.EDITOR_ACTIVE }); updateGroupContextKeys({ kind: GroupModelChangeKind.GROUP_LOCKED }); } private registerContainerListeners(): void {"} {"_id":"q-en-vscode-2921baca0a6ea8ac5a9982ed796c75408052d8a0cbfd9e541998e95f020485a8","text":"color: var(--vscode-descriptionForeground); } .monaco-workbench .merge-editor .code-view.result > .header > .description { display: inline; flex-shrink: 1; } .monaco-workbench .merge-editor .code-view.result > .header > .detail { flex-shrink: 0; } .monaco-workbench .merge-editor .code-view.result > .header > .toolbar { flex-shrink: 0; } .monaco-workbench .merge-editor .code-view > .header > span.description .codicon { font-size: 14px; color: var(--vscode-descriptionForeground);"} {"_id":"q-en-vscode-2924088fbc9b4a047e2cf42743bc345cefb8604cdb12c74dfae36b6148373f37","text":"import { IObservableValue, MutableObservableValue, staticObservableValue } from 'vs/workbench/contrib/testing/common/observableValue'; import { IRichLocation, ISerializedTestResults, ITestItem, ITestMessage, ITestOutputMessage, ITestRunTask, ITestTaskState, ResolvedTestRunRequest, TestItemExpandState, TestMessageType, TestResultItem, TestResultState } from 'vs/workbench/contrib/testing/common/testCollection'; import { TestCoverage } from 'vs/workbench/contrib/testing/common/testCoverage'; import { maxPriority, statesInOrder } from 'vs/workbench/contrib/testing/common/testingStates'; import { maxPriority, statesInOrder, terminalStatePriorities } from 'vs/workbench/contrib/testing/common/testingStates'; export interface ITestRunTaskResults extends ITestRunTask { /**"} {"_id":"q-en-vscode-2983851ba0f449ea9b8dac3a801150b9bf100ceb2724ad2c454e2b16535d7b9b","text":"resource: symbolToOpen.location.uri, options: { preserveFocus: options?.preserveFocus, pinned: options.keyMods.alt || this.configuration.openEditorPinned, pinned: options.keyMods.alt || options.forcePinned || this.configuration.openEditorPinned, selection: symbolToOpen.location.range ? Range.collapseToStart(symbolToOpen.location.range) : undefined } }, options.keyMods.ctrlCmd || options?.forceOpenSideBySide ? SIDE_GROUP : ACTIVE_GROUP);"} {"_id":"q-en-vscode-298b61266300572456c01476ba689128554e5f39ab66e1b5ab5ebc9dc7435aed","text":"document.body.classList.remove('loading'); }); image.src = decodeURI(settings.src); image.src = settings.src; window.addEventListener('message', e => { switch (e.data.type) {"} {"_id":"q-en-vscode-29b0770518afb5d9ae054d2d39eb895fbbaa2baf3d94592410a21eea3416b187","text":"notificationService.prompt(Severity.Info, localize('configuringURL', \"Configuring trust for: {0}\", resource.toString()), [{ label: 'Copy', run: () => clipboardService.writeText(resource.toString()) }]); return trustedDomains; case 'trustDomain': case 'trustSubdomain': case 'trustAll': const itemToTrust = pickedResult.id === 'trustDomain' ? domainToConfigure : pickedResult.id === 'trustSubdomain' ? topLevelDomain : '*'; case 'trust': const itemToTrust = pickedResult.toTrust; if (trustedDomains.indexOf(itemToTrust) === -1) { storageService.remove(TRUSTED_DOMAINS_CONTENT_STORAGE_KEY, StorageScope.GLOBAL); storageService.store("} {"_id":"q-en-vscode-29dee07a6f203193a8c35400dd9de48d84c4d14468e1945f63f2f874ace86a17","text":"'application/x.notebook.stream', 'application/vnd.code.notebook.stderr', 'application/x.notebook.stderr', 'text/plain' 'text/plain', 'text/markdown', 'application/json' ];"} {"_id":"q-en-vscode-2a042938d2d569014dfbc96817877f7a12bff1c1e81982b780b0a2649923172e","text":"import { EditorOption } from 'vs/editor/common/config/editorOptions'; import * as dom from 'vs/base/browser/dom'; import { hash } from 'vs/base/common/hash'; import { IQuickInputService, IQuickPickItem, IQuickPickSeparator } from 'vs/platform/quickinput/common/quickInput'; export class CodeLensContribution implements IEditorContribution {"} {"_id":"q-en-vscode-2a4ab89ebff906074f05c7be045d0eb19af78625acd1c5ba6f940eb4ecddfda0","text":"import { TerminalInitialHintSettingId } from 'vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration'; import { ChatAgentLocation, IChatAgent, IChatAgentService } from 'vs/workbench/contrib/chat/common/chatAgents'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { StandardMouseEvent } from 'vs/base/browser/mouseEvent'; const $ = dom.$;"} {"_id":"q-en-vscode-2a8865d1d294f160932d304daa9d0f45c583497d81c632801794d360d083a9a9","text":"this._keyListener = this._register(this._editorWidget.onKeyUp((e) => { if (e.keyCode === KeyCode.Escape) { this._contextViewService.hideContextView(); // Delay to allow the context view to hide #186514 setTimeout(() => provider.onClose(), 100); this._keyListener?.dispose(); } else if (e.keyCode === KeyCode.KeyD && this._configurationService.getValue(settingKey)) { this._configurationService.updateValue(settingKey, false); } else if (e.keyCode === KeyCode.KeyH && provider.options.readMoreUrl) {"} {"_id":"q-en-vscode-2aaf5d0a2622034386021cbed918b886050efd435ba57be5660309db839479dd","text":"//TODO: update progress in a newly inserted cell below the widget instead of the fake editor const requestCts = new CancellationTokenSource(); this._activeRequestCts?.cancel(); this._activeRequestCts = new CancellationTokenSource(); const progressEdits: TextEdit[][] = []; const progressiveEditsQueue = new Queue(); const progressiveEditsClock = StopWatch.create(); const progressiveEditsAvgDuration = new MovingAverage(); const progressiveEditsCts = new CancellationTokenSource(requestCts.token); const progressiveEditsCts = new CancellationTokenSource(this._activeRequestCts.token); let progressiveChatResponse: IInlineChatMessageAppender | undefined; const progress = new AsyncProgress(async data => { // console.log('received chunk', data, request); if (requestCts.token.isCancellationRequested) { if (this._activeRequestCts?.token.isCancellationRequested) { return; }"} {"_id":"q-en-vscode-2aca793ded5b93801c8af9006e1e319394c44eb8c22702694c048f56a628c465","text":"border-width: 0 !important; } .action-widget .monaco-list:focus:before { outline: 0 !important; } .action-widget .monaco-list .monaco-scrollable-element .monaco-list-rows { height: 100% !important; }"} {"_id":"q-en-vscode-2ace5edcba6082cb333e948ae089ed9fcd4a29cfd40e4bf8803b80c8e3df673e","text":"private _tokenizeString(text: string, engine: MarkdownIt) { this._resetSlugCount(); return engine.parse(text.replace(UNICODE_NEWLINE_REGEX, ''), {}); return engine.parse(text, {}); } private _resetSlugCount(): void {"} {"_id":"q-en-vscode-2af4f29ecef69cb43e3766949048d4658ffc23cf0c2ee617320a6e27c9e08675","text":"} if (!this.storeClient) { this.storeClient = new UserDataSyncStoreClient(URI.parse(this.serverConfiguration.url), this.productService, this.requestService, this.logService, this.environmentService, this.fileService, this.storageService); this.storeClient = new EditSessionsStoreClient(URI.parse(this.serverConfiguration.url), this.productService, this.requestService, this.logService, this.environmentService, this.fileService, this.storageService); this._register(this.storeClient.onTokenFailed(() => { this.logService.info('Clearing edit sessions authentication preference because of successive token failures.'); this.clearAuthenticationPreference(); })); } if (this.machineClient === undefined) { this.machineClient = new UserDataSyncMachinesService(this.environmentService, this.fileService, this.storageService, this.storeClient!, this.logService, this.productService); } // If we already have an existing auth session in memory, use that if (this.#authenticationInfo !== undefined) { return true;"} {"_id":"q-en-vscode-2bd07009a0bc9230cdc770aa4e372edd66f8b44720371f5c71aa076b81f470ec","text":"container.style.borderColor = borderColor ? borderColor : ''; } show(): void { show(focus?: boolean): void { if (!this.content) { return; } if (this.compositeBar.value) { return; } if (!this.compositeBar.value) { this.compositeBar.value = this.createCompositeBar(); this.compositeBar.value.create(this.content); this.compositeBar.value = this.createCompositeBar(); this.compositeBar.value.create(this.content); if (this.dimension) { this.layout(this.dimension.width, this.dimension.height); } } if (this.dimension) { this.layout(this.dimension.width, this.dimension.height); if (focus) { this.focus(); } }"} {"_id":"q-en-vscode-2d06de03a16871874fb7fd9ea80a9cb29e839125de5b2cbe67be094141720935","text":"resolved \"https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-9.0.0.tgz#313c6c8792b0507aef35aeb81b6b370b37c44d6c\" integrity sha512-Cl65diFGxz7gpwbav10HqiY/eVYTO1sjQpmRmV991Bj7wAoOAjGQ97PpQcXorDE2Uc4hnGWLY17xme+5t6MlSg== xterm-addon-canvas@0.4.0-beta.7: version \"0.4.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.7.tgz#ae365d8e10c900292186529f70f7f275ac94b3d5\" integrity sha512-r1hbQTsulI49orR5G3qWrJCwn2dKsEUCrgj6xsmgXuTeoUcGfed6lly+MvYlL3P8aPrxS2fC2TEzSM0Au4SX+w== xterm-addon-canvas@0.4.0-beta.9: version \"0.4.0-beta.9\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.9.tgz#e570fa4592890f92cc86706f2bba0dd128a8641d\" integrity sha512-BWRVWyUW7NY2g4BBMm3ecPQvbdyKXFgABnpmh4m0TVHqFJMNeXdNuTc94KiDbE+cvw8jtAY9NC/OIM4HcgjAIQ== xterm-addon-search@0.11.0: version \"0.11.0\""} {"_id":"q-en-vscode-2d09b61e04cd422313bb3bdb8693c88db6c19217ea281a6a14b6e020b90f6a34","text":"} } export class ShowHideAtTopBase extends Action2 { export class ShowHideTopBase extends Action2 { constructor() { super({ id: 'merge.showBaseAtTop', id: 'merge.showBaseTop', title: { value: localize('layout.showBaseAtTop', 'Show Base At Top'), original: 'Show Base At Top', value: localize('layout.showBaseTop', 'Show Base Top'), original: 'Show Base Top', }, toggled: ctxMergeEditorShowBaseAtTop.isEqualTo(true), toggled: ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop), menu: [ { id: MenuId.EditorTitle, when: ctxIsMergeEditor, when: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorLayout.isEqualTo('mixed')), group: '2_merge', order: 10, }, ], precondition: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorShowBase, ctxMergeEditorLayout.isEqualTo('mixed')), }); } run(accessor: ServicesAccessor): void { const { activeEditorPane } = accessor.get(IEditorService); if (activeEditorPane instanceof MergeEditor) { activeEditorPane.toggleShowBaseAtTop(); activeEditorPane.toggleShowBaseTop(); } } } export class ShowHideCenterBase extends Action2 { constructor() { super({ id: 'merge.showBaseCenter', title: { value: localize('layout.showBaseCenter', 'Show Base Center'), original: 'Show Base Center', }, toggled: ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop.negate()), menu: [ { id: MenuId.EditorTitle, when: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorLayout.isEqualTo('mixed')), group: '2_merge', order: 11, }, ], }); } run(accessor: ServicesAccessor): void { const { activeEditorPane } = accessor.get(IEditorService); if (activeEditorPane instanceof MergeEditor) { activeEditorPane.toggleShowBaseCenter(); } } }"} {"_id":"q-en-vscode-2d61704c5951ff86fc7a1606cc2582a6133b22e767898e8d8276a53bc3c7c214","text":"return this._remoteTerminalChannel.setTerminalLayoutInfo(layout); } public getTerminalLayoutInfo(): Promise { public async getTerminalLayoutInfo(): Promise { await this._remoteTerminalChannel?.listProcesses(true); if (!this._remoteTerminalChannel) { throw new Error(`Cannot call getActiveInstanceId when there is no remote`); }"} {"_id":"q-en-vscode-2d6d26dd161718ee9424af6a228c7a72d6f1e362970c08ef6068e738a654a285","text":"resolved \"https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9\" integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== \"@types/uuid@^8.3.1\": version \"8.3.4\" resolved \"https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc\" integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== detect-indent@^6.0.0: version \"6.1.0\" resolved \"https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6\" integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== uuid@^8.3.2: version \"8.3.2\" resolved \"https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2\" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== "} {"_id":"q-en-vscode-2d7095b7d0c4a58c4a31b365b7f09b4f6ff6ef51f60963cfadcc56d8f812b14c","text":"return; } if (e.browserEvent.defaultPrevented) { return; } const focus = e.index; if (typeof focus === 'undefined') {"} {"_id":"q-en-vscode-2dd21ebedbfb5344d2d50a6f4611fc85021ad4e89827099bae291da6f4d03b08","text":"} private _getIcon(): TerminalIcon | undefined { const icon = this._shellLaunchConfig.icon || this._shellLaunchConfig.attachPersistentProcess?.icon; if (!icon) { return this._processManager.processState >= ProcessState.Launching ? Codicon.terminal : undefined; if (!this._icon) { this._icon = this._processManager.processState >= ProcessState.Launching ? Codicon.terminal : undefined; } return icon; return this._icon; } private _getColor(): string | undefined {"} {"_id":"q-en-vscode-2e137beedfc523adbaa7dd05df4baf136f0d20c367c0cb523dc39ee966497144","text":"reviveBuffer: string | undefined, private _icon?: TerminalIcon, private _color?: string, name?: string, fixedDimensions?: IFixedTerminalDimensions ) { super(); if (name) { this.setTitle(name, TitleEventSource.Api); } this._logService.trace('persistentTerminalProcess#ctor', _persistentProcessId, arguments); this._wasRevived = reviveBuffer !== undefined; this._serializer = new XtermSerializer("} {"_id":"q-en-vscode-2e8009a9d64550e43b81f940fd367a35dad1e9782d5e317895661b210a3af273","text":" fileTypes ini INI inf INF reg REG lng cfg CFG url URL .editorconfig name INI patterns captures 1 name punctuation.definition.comment.ini match ^s*(;|#).*$n? name comment.line.semicolon.ini captures 1 name punctuation.definition.section.ini 2 name entity.section.ini 3 name punctuation.definition.section.ini match ^s*([)(.*?)(]) name meta.tag.section.ini captures 1 name meta.property.ini 2 name punctuation.definition.quote.ini 3 name keyword.name.ini 4 name punctuation.definition.quote.ini 5 name punctuation.definition.equals.ini 6 name meta.value.ini 7 name punctuation.definition.quote.ini 8 name string.name.value.ini 9 name punctuation.definition.quote.ini 10 name comment.declarationline.semicolon.ini match ^(s*([\"']?)(.+?)(2)s*(=))?s*(([\"']?)(.*?)(7))s*(;.*)?$n? name meta.declaration.ini scopeName source.ini uuid 957acd74-6d7c-4732-a25b-5f66a1e637cd "} {"_id":"q-en-vscode-2f0922fc7aabddd4115fcccf7bf133b3050d8a1a8bef9c9b98960039d81a8c24","text":"@IPartService partService: IPartService, @IKeybindingService keybindingService: IKeybindingService, @IInstantiationService instantiationService: IInstantiationService, @IThemeService themeService: IThemeService @IThemeService themeService: IThemeService, @IContextKeyService contextKeyService: IContextKeyService, ) { super( notificationService,"} {"_id":"q-en-vscode-2f40d7c6898d0247e2e8a286960cb0a92bf708ed3930676481f45d373be97bf2","text":"registerEditorContribution(MarkerController); registerEditorAction(NextMarkerAction); registerEditorAction(PrevMarkerAction); registerEditorAction(NextMarkerInFilesAction); registerEditorAction(PrevMarkerInFilesAction); const CONTEXT_MARKERS_NAVIGATION_VISIBLE = new RawContextKey('markersNavigationVisible', false);"} {"_id":"q-en-vscode-2f56785438674b359d15740a6ecc18a7ac9baf2e7173922eba1e768dc49b9c55","text":"const keybindingService = accessor.get(IKeybindingService); const contextKeyService = accessor.get(IContextKeyService); const next = keybindingService.lookupKeybinding(AccessibleDiffViewerNext.id)?.getAriaLabel(); const previous = keybindingService.lookupKeybinding(AccessibleDiffViewerPrev.id)?.getAriaLabel(); if (!(editorService.activeTextEditorControl instanceof DiffEditorWidget)) { return; }"} {"_id":"q-en-vscode-2f7c0bbfc5c8a4c66f6e7e278cf123a8d7f703643e8b4f2c70ff410d9ca8600d","text":"let debugKeybindingLabel = ''; viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, { content: localize( { key: 'runAndDebugAction', comment: [ '{0} will be replaced with a keybinding', 'Please do not translate the word \"command\", it is part of our internal syntax which must not change', '{Locked=\"](command:{1})\"}' ] }, \"[Run and Debug{0}](command:{1})\", debugKeybindingLabel, DEBUG_START_COMMAND_ID), content: `[${localize('runAndDebugAction', \"Run and Debug\")}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`, when: CONTEXT_DEBUGGERS_AVAILABLE, group: ViewContentGroups.Debug, // Allow inserting more buttons directly after this one (by setting order to 1)."} {"_id":"q-en-vscode-2f7df1e93f7570437d3bb23076cba06f77de1de2208b950b16fe5e7683306160","text":"\"vscode-proxy-agent\": \"^0.12.0\", \"vscode-regexpp\": \"^3.1.0\", \"vscode-textmate\": \"7.0.1\", \"xterm\": \"5.0.0-beta.32\", \"xterm-addon-canvas\": \"0.2.0-beta.15\", \"xterm-addon-search\": \"0.10.0-beta.3\", \"xterm-addon-serialize\": \"0.8.0-beta.3\", \"xterm-addon-unicode11\": \"0.4.0-beta.3\", \"xterm-addon-webgl\": \"0.13.0-beta.32\", \"xterm\": \"5.0.0-beta.35\", \"xterm-addon-canvas\": \"0.2.0-beta.17\", \"xterm-addon-search\": \"0.10.0-beta.5\", \"xterm-addon-serialize\": \"0.8.0-beta.5\", \"xterm-addon-unicode11\": \"0.4.0-beta.5\", \"xterm-addon-webgl\": \"0.13.0-beta.35\", \"xterm-headless\": \"5.0.0-beta.5\", \"yauzl\": \"^2.9.2\", \"yazl\": \"^2.4.3\""} {"_id":"q-en-vscode-2f814c075909f67ae592cd30d74a4367c1d18f125fe4a08898a7014f8af0173e","text":"return undefined; } if ((resolverData === undefined) && (grouped === undefined)) { return (await quickResolve(this, identifier)) ?? fullResolve(this, uri, identifier); return (await quickResolve(this, uri, identifier)) ?? fullResolve(this, uri, identifier); } else { return fullResolve(this, uri, identifier); }"} {"_id":"q-en-vscode-2f95a8e92847ba335070ba9ff3c5808242ee8e27a1d5848e445781b213564679","text":"private readonly _onDidChangeVisibility = this._register(new Emitter()); readonly onDidChangeVisibility = this._onDidChangeVisibility.event; private readonly _onWillPaste = this._register(new Emitter()); readonly onWillPaste = this._onWillPaste.event; private readonly _onDidPaste = this._register(new Emitter()); readonly onDidPaste = this._onDidPaste.event; constructor( private readonly _terminalShellTypeContextKey: IContextKey, private readonly _terminalInRunCommandPicker: IContextKey,"} {"_id":"q-en-vscode-2fb0500dc82ecd53030e509cdd7e90e76b043597cb438d77539ff7c763e9fd12","text":"@IChatService chatService: IChatService, @IHoverService hoverService: IHoverService, ) { super(location, { ...options, chatWidgetViewOptions: { editorOverflowWidgetsDomNode: _parentEditor.getOverflowWidgetsDomNode() } }, instantiationService, contextKeyService, keybindingService, accessibilityService, configurationService, accessibleViewService, textModelResolverService, chatService, hoverService); super(location, { ...options, chatWidgetViewOptions: { ...options.chatWidgetViewOptions, editorOverflowWidgetsDomNode: _parentEditor.getOverflowWidgetsDomNode() } }, instantiationService, contextKeyService, keybindingService, accessibilityService, configurationService, accessibleViewService, textModelResolverService, chatService, hoverService); } // --- layout"} {"_id":"q-en-vscode-302859ae0344fedeb02d6ae0f9801945641f696132bebd0335560f3daefc8fab","text":"export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions & { branch: true }): Promise; export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions = {}): Promise { const quickpick = window.createQuickPick<(QuickPickItem & { provider?: RemoteSourceProvider; url?: string })>(); quickpick.ignoreFocusOut = true; quickpick.title = options.title; if (options.providerName) {"} {"_id":"q-en-vscode-304ead4b89bcb54cfc9d83fcf23c76db9ef035c693d3ae4ac4d0aed6c4e3888f","text":"this._register(this.remoteExplorerService.onEnabledPortsFeatures(() => this._proxy.$registerCandidateFinder(this.processFindingEnabled()))); } this._register(this.configurationService.onDidChangeConfiguration(async (e) => { if (e.affectsConfiguration(PORT_AUTO_FORWARD_SETTING) || e.affectsConfiguration(PORT_AUTO_SOURCE_SETTING)) { if (this.remoteExplorerService.portsFeaturesEnabled && (e.affectsConfiguration(PORT_AUTO_FORWARD_SETTING) || e.affectsConfiguration(PORT_AUTO_SOURCE_SETTING))) { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); } })); this._register(this.tunnelService.onAddedTunnelProvider(() => { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); this._register(this.tunnelService.onAddedTunnelProvider(async () => { if (this.remoteExplorerService.portsFeaturesEnabled) { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); } })); }"} {"_id":"q-en-vscode-30aeed4e007ccdc6c46ab3256f9d6af5b56d36454d0cce6f77126706fcf62cb0","text":"} try { return super.write(resource, value, options); return await super.write(resource, value, options); } catch (error) { // In case of permission denied, we need to check for readonly"} {"_id":"q-en-vscode-30dfdcd089d8fbe7d8a11349a6614a5d99417527bea53517a86543b1db9f0cdf","text":"if (seenVersions.has(version.version)) { return; } seenVersions.add(version.version); if (await this.isValidVersion(version, preRelease ? 'prerelease' : 'release', true, allTargetPlatforms, targetPlatform)) { result.push({ version: version.version, date: version.lastUpdated, isPreReleaseVersion: isPreReleaseVersion(version) }); seenVersions.add(version.version); } } catch (error) { /* Ignore error and skip version */ } }));"} {"_id":"q-en-vscode-30ee40f31d7b62d28229aa910eece878bc61d215599d2a3d55471cba3a923090","text":"* or via Size to Content Width */ fixedDimensions?: IFixedTerminalDimensions; /** * Opt-out of the default terminal persistence on restart and reload */ disablePersistence?: boolean; } export interface ICreateContributedTerminalProfileOptions {"} {"_id":"q-en-vscode-30f710f7b5109a0be2f81e4d2f369b5424a5cb8527d4b6023b820c52b29901fc","text":"\"list.activeSelectionBackground\": \"#707070\", \"list.focusBackground\": \"#707070\", \"list.inactiveSelectionBackground\": \"#4e4e4e\", \"list.hoverBackground\": \"#707070\", \"list.hoverBackground\": \"#444444\", \"list.highlightForeground\": \"#e58520\", \"button.background\": \"#565656\", \"editor.background\": \"#1e1e1e\","} {"_id":"q-en-vscode-311cb149c1879e035882dcbf343dee717227b1cbf390bf7042b9654023a1bb34","text":"osx: string[]; windows: string[]; }; altClickMovesCursor: boolean; macOptionIsMeta: boolean; macOptionClickForcesSelection: boolean; rendererType: 'auto' | 'canvas' | 'dom' | 'experimentalWebgl';"} {"_id":"q-en-vscode-314a1897c848a4e1a99f9c353ee39ac21307e13e3f3e54a7712dddc71d694471","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { ILogService } from 'vs/platform/log/common/log'; import { basename } from 'vs/base/common/path'; import { IWorkingCopyService, IWorkingCopyBackup } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IWorkingCopyService, IWorkingCopyBackup, WorkingCopyCapabilities } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IFilesConfigurationService } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService'; import { ILabelService } from 'vs/platform/label/common/label'; import { CancellationTokenSource } from 'vs/base/common/cancellation';"} {"_id":"q-en-vscode-314d9d4c637007f71202399049d0e37f363aebe093e81df173599ee8c193bb5d","text":"return pattern.toLowerCase(); } else if (strings.containsUppercaseCharacter(matches[0][0]) && pattern.length > 0) { return pattern[0].toUpperCase() + pattern.substr(1); } else if (matches[0][0].toUpperCase() !== matches[0][0] && pattern.length > 0) { return pattern[0].toLowerCase() + pattern.substr(1); } else { // we don't understand its pattern yet. return pattern;"} {"_id":"q-en-vscode-3200653e581acb0460aee011b63c3467e5249a56fa2f716ca1778f6040b32ed8","text":"import { deepClone } from 'vs/base/common/objects'; import { isObject, assertIsDefined, withUndefinedAsNull, withNullAsUndefined } from 'vs/base/common/types'; import { ICodeEditor, IDiffEditor } from 'vs/editor/browser/editorBrowser'; import { IDiffEditorOptions, IEditorOptions as ICodeEditorOptions } from 'vs/editor/common/config/editorOptions'; import { IDiffEditorOptions, EditorOption, IEditorOptions as ICodeEditorOptions } from 'vs/editor/common/config/editorOptions'; import { AbstractTextEditor, IEditorConfiguration } from 'vs/workbench/browser/parts/editor/textEditor'; import { TEXT_DIFF_EDITOR_ID, IEditorFactoryRegistry, EditorExtensions, ITextDiffEditorPane, IEditorOpenContext, EditorInputCapabilities, isEditorInput, isTextEditorViewState } from 'vs/workbench/common/editor'; import { EditorInput } from 'vs/workbench/common/editor/editorInput';"} {"_id":"q-en-vscode-3249e38a69528a683ebbc46f46ff361e0759b9d7a635423788bbb62f730efad9","text":"override async show(initialInput?: string, options?: IShowNotebookFindWidgetOptions): Promise { const searchStringUpdate = this._state.searchString !== initialInput; super.show(initialInput, options); this._state.change({ searchString: initialInput ?? '', isRevealed: true }, false); this._state.change({ searchString: initialInput ?? this._state.searchString, isRevealed: true }, false); if (typeof options?.matchIndex === 'number') { if (!this._findModel.findMatches.length) {"} {"_id":"q-en-vscode-3265bd5c54668990a92fd1955622bb7e8573c998ab1276f989a960117351136d","text":"}); inputBox.onDidHide(() => { this.clearDecorations(editor); inputBox.dispose(); }); inputBox.show(); } private clearDecorations(editor: ICodeEditor): void { editor.changeDecorations(changeAccessor => { this._highlightDecorations = changeAccessor.deltaDecorations(this._highlightDecorations, []); }); } private addDecorations(editor: ICodeEditor, range: IRange): void { editor.changeDecorations(changeAccessor => { this._highlightDecorations = changeAccessor.deltaDecorations(this._highlightDecorations, [ { range, options: { description: 'find-match-quick-access-range-highlight', className: 'rangeHighlight', isWholeLine: true } }, { range, options: { description: 'find-match-quick-access-range-highlight-overview', overviewRuler: { color: themeColorFromId(overviewRulerRangeHighlight), position: OverviewRulerLane.Full } } } ]); }); } } export abstract class SelectionMatchFindAction extends EditorAction {"} {"_id":"q-en-vscode-32767f0a079798c2a213b36632fbfd752ecbc86b1cca858f54403745c4f9fc07","text":"return null; } const linkUrl = this.extractLinkUrl(preprocessedLink); const linkUrl = removeLinkSuffix(preprocessedLink); if (!linkUrl) { this._resolvedLinkCache.set(link, null); return null;"} {"_id":"q-en-vscode-32ca34c80dda9d2ad58b9b896cfb18763dd10146315db66950b223658500540e","text":"@IEnvironmentService private readonly environmentService: IEnvironmentService, @IRequestService protected requestService: IRequestService, @ILogService protected logService: ILogService, ) { ) { } /** * This must be called before any other call. This is a performance * optimization, to avoid using extra CPU cycles before first window open. * https://github.com/microsoft/vscode/issues/89784 */ initialize(): void { if (!this.environmentService.isBuilt) { return; // updates are never enabled when running out of sources }"} {"_id":"q-en-vscode-32dd2724fbec2bec82ba3542a1e4ceaee42be95e61ff44bbd4494e8b61a8b92e","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { IAction, Action } from 'vs/base/common/actions'; import { normalizeDriveLetter } from 'vs/base/common/labels'; import { RunOnceScheduler } from 'vs/base/common/async'; const DEBUG_BREAKPOINTS_KEY = 'debug.breakpoint'; const DEBUG_BREAKPOINTS_ACTIVATED_KEY = 'debug.breakpointactivated';"} {"_id":"q-en-vscode-33585692863646e922816ea540861955f503dfe1644fe9c288810255f540b5c1","text":"} }); } public getLenses(): CodeLensWidget[] { return this._lenses; } } export class ShowLensesInCurrentLineCommand extends EditorCommand { public runEditorCommand(accessor: ServicesAccessor, editor: ICodeEditor, args: any): void | Promise { const quickInputService = accessor.get(IQuickInputService); const commandService = accessor.get(ICommandService); const notificationService = accessor.get(INotificationService); const lineNumber = editor.getSelection()?.positionLineNumber; const codelensController = editor.getContribution(CodeLensContribution.ID) as CodeLensContribution; const activeLensesWidgets = codelensController.getLenses().filter(lens => lens.getLineNumber() === lineNumber); const commandArguments: Map = new Map(); const items: (IQuickPickItem | IQuickPickSeparator)[] = []; activeLensesWidgets.forEach(widget => { widget.getItems().forEach(codelens => { const command = codelens.symbol.command; if (!command) { return; } items.push({ id: command.id, label: command.title }); commandArguments.set(command.id, command.arguments); }); }); // We dont want an empty picker if (!items.length) { return; } quickInputService.pick(items, { canPickMany: false }).then(item => { const id = item.id!; commandService.executeCommand(id, ...(commandArguments.get(id) || [])).catch(err => notificationService.error(err)); }); } } registerEditorContribution(CodeLensContribution.ID, CodeLensContribution); const showLensesInCurrentLineCommand = new ShowLensesInCurrentLineCommand({ id: 'codelens.showLensesInCurrentLine', precondition: undefined }); showLensesInCurrentLineCommand.register(); "} {"_id":"q-en-vscode-335c597379ad39e6f114d3871fa7ef49a56cffd32b7bbed723c36e441afae8c1","text":"} }, { \"name\": \"Markup Headings\", \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\" } }, { \"scope\": \"token.info-token\", \"settings\": { \"foreground\": \"#6796e6\""} {"_id":"q-en-vscode-336a910c48795d073356730e4b10e0c1b7f364ebe909ee273eceba46f6093c32","text":"} } class ShowCodeVersion extends Action { public static readonly ID = 'workbench.action.showCodeVersion'; public static LABEL = nls.localize('version', \"Show version of '{0}' installed\", product.applicationName); constructor( id: string, label: string, @IMessageService private messageService: IMessageService ) { super(id, label); } run(): TPromise { this.messageService.show(Severity.Info, nls.localize('successFromVersion', \"'{0}' version - {1}\", product.applicationName, IPackageConfiguration.version)); return TPromise.as(null); } } if (process.platform === 'darwin') { const category = nls.localize('shellCommand', \"Shell Command\"); const workbenchActionsRegistry = Registry.as(ActionExtensions.WorkbenchActions); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(InstallAction, InstallAction.ID, InstallAction.LABEL), 'Shell Command: Install 'code' command in PATH', category); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(UninstallAction, UninstallAction.ID, UninstallAction.LABEL), 'Shell Command: Uninstall 'code' command from PATH', category); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(ShowCodeVersion, ShowCodeVersion.ID, ShowCodeVersion.LABEL), 'Shell Command: Show 'code' version', category); }"} {"_id":"q-en-vscode-338823827aaf1274b7e172dc15f6d58a913ba80b4379a3da05801b95e01ee3b2","text":"// De-prioritze auto-imports // https://github.com/microsoft/vscode/issues/40311 this.sortText = 'uffff' + tsEntry.sortText; // Render \"fancy\" when source is a workspace path const qualifierCandidate = vscode.workspace.asRelativePath(tsEntry.source); if (qualifierCandidate !== tsEntry.source) { this.label2 = { name: tsEntry.name, qualifier: qualifierCandidate }; } } else { this.sortText = tsEntry.sortText; }"} {"_id":"q-en-vscode-33bb6028ea441588d732d404b12e3e77b11787c4d00b798b37f7a9d5aa0312bf","text":"import { INotebookKernelService } from 'vs/workbench/contrib/notebook/common/notebookKernelService'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; export type contextMenuArg = { source?: string; type?: string; value?: string; expression?: string; language?: string; extensionId?: string }; export type contextMenuArg = { source: string; name: string; type?: string; value?: string; expression?: string; language?: string; extensionId?: string }; export class NotebookVariablesView extends ViewPane {"} {"_id":"q-en-vscode-33bc9e7901296219aa235e2d0fc423e0c1187e34a943df49ba0fb1e2493ec59a","text":"const element = document.createElement('span'); element.classList.add('output-stream'); element.setAttribute('output-item-id', outputInfo.id); const text = outputInfo.text(); insertOutput(outputInfo.id, [text], ctx.settings.lineLimit, ctx.settings.outputScrolling, element);"} {"_id":"q-en-vscode-33ec62a0a5e131076dbda58d076dc930c0037b23b5cc28de41a6b235245c51fc","text":"promises.push(this.uninstallInServer(server, extensions)); } await Promise.allSettled(promises); const result = await Promise.allSettled(promises); const errors = result.filter(r => r.status === 'rejected').map(r => r.reason); if (errors.length) { throw new Error(errors.map(e => e.message).join('n')); } } private async uninstallInServer(server: IExtensionManagementServer, extensions: UninstallExtensionInfo[]): Promise {"} {"_id":"q-en-vscode-33ede6b488c4e6c44de76200e14d59a3c9722b3585caaa1eb000fcc99083f549","text":"readonly executingCommandObject: ITerminalCommand | undefined; /** The current cwd at the cursor's position. */ readonly cwd: string | undefined; /** * Whether a command is currently being input. If the a command is current not being input or * the state cannot reliably be detected the fallback of undefined will be used. */ readonly hasInput: boolean | undefined; readonly onCommandStarted: Event; readonly onCommandFinished: Event; readonly onCommandInvalidated: Event;"} {"_id":"q-en-vscode-33f1d3072ceb83393f58f9c61fd0885b00926d9200cc375f6a15b9fc5dd2c239","text":"import { DomEmitter } from 'vs/base/browser/event'; import { CommentContextKeys } from 'vs/workbench/contrib/comments/common/commentContextKeys'; import { FileAccess } from 'vs/base/common/network'; import { COMMENTS_SECTION, ICommentsConfiguration } from 'vs/workbench/contrib/comments/common/commentsConfiguration'; class CommentsActionRunner extends ActionRunner { protected override async runAction(action: IAction, context: any[]): Promise {"} {"_id":"q-en-vscode-3484c0eb47ac59ad93f6d7774ae39fde4992ea640e8c0fb7e68a325c774f9afb","text":"import { TreeResourceNavigator, WorkbenchTree } from 'vs/platform/list/browser/listService'; import { INotificationService, Severity } from 'vs/platform/notification/common/notification'; import { IProgressService } from 'vs/platform/progress/common/progress'; import { IPatternInfo, ISearchComplete, ISearchConfiguration, ISearchHistoryService, ISearchHistoryValues, ISearchProgressItem, ITextQuery, VIEW_ID, SearchErrorCode } from 'vs/platform/search/common/search'; import { IPatternInfo, ISearchComplete, ISearchConfiguration, ISearchHistoryService, ISearchHistoryValues, ISearchProgressItem, ITextQuery, VIEW_ID, SearchErrorCode, ISearchConfigurationProperties } from 'vs/platform/search/common/search'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { diffInserted, diffInsertedOutline, diffRemoved, diffRemovedOutline, editorFindMatchHighlight, editorFindMatchHighlightBorder, listActiveSelectionForeground } from 'vs/platform/theme/common/colorRegistry';"} {"_id":"q-en-vscode-34a76792a900d93d38fb01b496c1aba40e8040d624656a1ab57ce531bd2fa3cd","text":"taskPresentationGroup: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.taskPresentationGroup.d.ts', terminalDataWriteEvent: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDataWriteEvent.d.ts', terminalDimensions: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDimensions.d.ts', terminalDisablePersistence: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDisablePersistence.d.ts', terminalNameChangeEvent: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalNameChangeEvent.d.ts', testCoverage: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testCoverage.d.ts', testObserver: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testObserver.d.ts',"} {"_id":"q-en-vscode-3517b84fd24d63690e96daa65664eccfc963a6599d572f8114dd966de39e3839","text":"} async getRecentlyOpened(): Promise { const workspaces: Array = []; const files: IRecentFile[] = []; return this.mergeEntriesFromStorage(); } await this.addEntriesFromStorage(workspaces, files); private async mergeEntriesFromStorage(existingEntries?: IRecentlyOpened): Promise { return { workspaces, files }; } // Build maps for more efficient lookup of existing entries that // are passed in by storing based on workspace/file identifier const mapWorkspaceIdToWorkspace = new ResourceMap(uri => extUriBiasedIgnorePathCase.getComparisonKey(uri)); if (existingEntries?.workspaces) { for (const workspace of existingEntries.workspaces) { mapWorkspaceIdToWorkspace.set(this.location(workspace), workspace); } } private async addEntriesFromStorage(workspaces: Array, files: IRecentFile[]): Promise { const mapFileIdToFile = new ResourceMap(uri => extUriBiasedIgnorePathCase.getComparisonKey(uri)); if (existingEntries?.files) { for (const file of existingEntries.files) { mapFileIdToFile.set(this.location(file), file); } } // Merge in entries from storage, preserving existing known entries // Get from storage const recents = await this.getRecentlyOpenedFromStorage(); for (const recent of recents.workspaces) { const index = isRecentFolder(recent) ? this.indexOfFolder(workspaces, recent.folderUri) : this.indexOfWorkspace(workspaces, recent.workspace); if (index >= 0) { workspaces[index].label = workspaces[index].label || recent.label; const recentFromStorage = await this.getRecentlyOpenedFromStorage(); for (const recentWorkspaceFromStorage of recentFromStorage.workspaces) { const existingRecentWorkspace = mapWorkspaceIdToWorkspace.get(this.location(recentWorkspaceFromStorage)); if (existingRecentWorkspace) { existingRecentWorkspace.label = existingRecentWorkspace.label ?? recentWorkspaceFromStorage.label; } else { workspaces.push(recent); mapWorkspaceIdToWorkspace.set(this.location(recentWorkspaceFromStorage), recentWorkspaceFromStorage); } } for (const recent of recents.files) { const index = this.indexOfFile(files, recent.fileUri); if (index >= 0) { files[index].label = files[index].label || recent.label; for (const recentFileFromStorage of recentFromStorage.files) { const existingRecentFile = mapFileIdToFile.get(this.location(recentFileFromStorage)); if (existingRecentFile) { existingRecentFile.label = existingRecentFile.label ?? recentFileFromStorage.label; } else { files.push(recent); mapFileIdToFile.set(this.location(recentFileFromStorage), recentFileFromStorage); } } return { workspaces: [...mapWorkspaceIdToWorkspace.values()], files: [...mapFileIdToFile.values()] }; } private async getRecentlyOpenedFromStorage(): Promise {"} {"_id":"q-en-vscode-3528a417a50e4f629ccc267fb4d6dce8d50ba3dcf545ca5aafc492863d3d7918","text":"import { CancellationToken } from 'vs/base/common/cancellation'; import { IQuickPickItem, IPickOptions, IInputOptions, IQuickNavigateConfiguration, IQuickPick, IQuickInputButton, IInputBox, QuickPickInput } from 'vs/base/parts/quickinput/common/quickInput'; export { IQuickPickItem, IPickOptions, IInputOptions, IQuickNavigateConfiguration, IQuickPick, IQuickInput, IQuickInputButton, IInputBox, IQuickPickItemButtonEvent, QuickPickInput, IQuickPickSeparator, IKeyMods } from 'vs/base/parts/quickinput/common/quickInput'; export * from 'vs/base/parts/quickinput/common/quickInput'; export const IQuickInputService = createDecorator('quickInputService');"} {"_id":"q-en-vscode-35bc88849180aaeceddd2d25e9c6b009624ac2f88cc0633c24b3ad564190ce57","text":"import { stripIcons } from 'vs/base/common/iconLabels'; import { defaultButtonStyles, defaultCheckboxStyles, defaultDialogStyles, defaultInputBoxStyles } from 'vs/platform/theme/browser/defaultStyles'; import { ResultKind } from 'vs/platform/keybinding/common/keybindingResolver'; import { IUserActivityService } from 'vs/workbench/services/userActivity/common/userActivityService'; export class ProgressService extends Disposable implements IProgressService {"} {"_id":"q-en-vscode-35e65700226b86e7600c9260f65cefeee369831be21efe00059580af4657b8e2","text":"return; } this.isTreeLayoutViewVisible = visible; this.updateIndentStyles(this.themeService.getFileIconTheme()); this.refreshTree(); }"} {"_id":"q-en-vscode-3602ca61cf712b0fff620f6f972e3b2993d0d50b0eae0d7abe90809fb6d2ef8a","text":".extension-list-item > .icon-container { position: relative; display: flex; align-items: center; } .extension-list-item > .icon-container > .icon { width: 42px; height: 42px; padding: 10px 14px 10px 0; padding-right: 14px; flex-shrink: 0; object-fit: contain; }"} {"_id":"q-en-vscode-3606854b760ac0dfcb226de3a1f9379daeb6125c98ee604c450d0786a39ed0e7","text":"} } class PrevMarkerAction extends MarkerNavigationAction { class PrevMarkerInFilesAction extends MarkerNavigationAction { constructor() { super(false, { id: 'editor.action.marker.prev', label: nls.localize('markerAction.previous.label', \"Go to Previous Problem (Error, Warning, Info)\"), alias: 'Go to Previous Error or Warning', super(false, true, { id: 'editor.action.marker.prevInFiles', label: nls.localize('markerAction.previousInFiles.label', \"Go to Previous Problem in Files (Error, Warning, Info)\"), alias: 'Go to Previous Error or Warning in Files', precondition: EditorContextKeys.writable, kbOpts: { kbExpr: EditorContextKeys.focus,"} {"_id":"q-en-vscode-361c2d99d5d5502a455aa2498bacbe7d10d9c638c82c57a4d5809322166406f8","text":"installed.forEach(ext => this.progressByEvent(`extensionInstalled:${ext.identifier.id.toLowerCase()}`)); }); this._register(this.extensionManagementService.onDidInstallExtensions(async (result) => { const hadLastFoucs = await this.hostService.hadLastFocus(); this._register(this.extensionManagementService.onDidInstallExtensions((result) => { for (const e of result) { const skipWalkthrough = e?.context?.[EXTENSION_INSTALL_SKIP_WALKTHROUGH_CONTEXT] || e?.context?.[EXTENSION_INSTALL_DEP_PACK_CONTEXT]; // If the window had last focus and the install didn't specify to skip the walkthrough // Then add it to the sessionInstallExtensions to be opened if (hadLastFoucs && !skipWalkthrough) { if (!skipWalkthrough) { this.sessionInstalledExtensions.add(e.identifier.id.toLowerCase()); } this.progressByEvent(`extensionInstalled:${e.identifier.id.toLowerCase()}`);"} {"_id":"q-en-vscode-36561001836bb8dc29ee5a0ae38a572efea38c9b2b69b75ce5fdc71c0ce155a4","text":"import { ILanguageService } from '../../../../common/languages/language.js'; import { ILanguageConfigurationService } from '../../../../common/languages/languageConfigurationRegistry.js'; import { ViewModel } from '../../../../common/viewModel/viewModelImpl.js'; import { CursorWordEndLeft, CursorWordEndLeftSelect, CursorWordEndRight, CursorWordEndRightSelect, CursorWordLeft, CursorWordLeftSelect, CursorWordRight, CursorWordRightSelect, CursorWordStartLeft, CursorWordStartLeftSelect, CursorWordStartRight, CursorWordStartRightSelect, DeleteInsideWord, DeleteWordEndLeft, DeleteWordEndRight, DeleteWordLeft, DeleteWordRight, DeleteWordStartLeft, DeleteWordStartRight } from '../../browser/wordOperations.js'; import { CursorWordAccessibilityLeft, CursorWordAccessibilityLeftSelect, CursorWordAccessibilityRight, CursorWordAccessibilityRightSelect, CursorWordEndLeft, CursorWordEndLeftSelect, CursorWordEndRight, CursorWordEndRightSelect, CursorWordLeft, CursorWordLeftSelect, CursorWordRight, CursorWordRightSelect, CursorWordStartLeft, CursorWordStartLeftSelect, CursorWordStartRight, CursorWordStartRightSelect, DeleteInsideWord, DeleteWordEndLeft, DeleteWordEndRight, DeleteWordLeft, DeleteWordRight, DeleteWordStartLeft, DeleteWordStartRight } from '../../browser/wordOperations.js'; import { deserializePipePositions, serializePipePositions, testRepeatedActionAndExtractPositions } from './wordTestUtils.js'; import { createCodeEditorServices, instantiateTestCodeEditor, withTestCodeEditor } from '../../../../test/browser/testCodeEditor.js'; import { instantiateTextModel } from '../../../../test/common/testTextModel.js';"} {"_id":"q-en-vscode-36fb9cdcec6aa9485fd8bd67c5746a54edee52c3c01466593114341497ea3e13","text":") { super(); this.markersStatusItem = this._register(this.statusbarService.addEntry(this.getMarkersItem(), 'status.problems', StatusbarAlignment.LEFT, 50 /* Medium Priority */)); this.markersStatusItemOff = this._register(this.statusbarService.addEntry(this.getMarkersItemTurnedOff(), 'error-kind', StatusbarAlignment.LEFT, 49)); this.markersStatusItemOff = this._register(this.statusbarService.addEntry(this.getMarkersItemTurnedOff(), 'status.problemsVisibility', StatusbarAlignment.LEFT, 49)); this._register(this.markerService.onMarkerChanged(() => { this.markersStatusItem.update(this.getMarkersItem()); this.markersStatusItemOff.update(this.getMarkersItemTurnedOff());"} {"_id":"q-en-vscode-3716d7a0e6b15f9621ebbc20b479c45e1a69142e115c53096f684b574a286f1c","text":"this._zone.widget.updateStatus(message); } override needsMargin(): boolean { return true; } hasFocus(): boolean { return this._zone.widget.hasFocus(); }"} {"_id":"q-en-vscode-386ede5493b2fe87afd117af578d06f715031f9998887d00faaa2f5c47528677","text":"private validateInput(inputId: string): boolean { const inputElement = (this.getElementById(inputId)); const inputValidationMessage = this.getElementById(`${inputId}-empty-error`); const descriptionShortMessage = this.getElementById(`description-short-error`); if (!inputElement.value) { inputElement.classList.add('invalid-input'); inputValidationMessage?.classList.remove('hidden'); descriptionShortMessage?.classList.add('hidden'); return false; } else { } else if (inputId === 'description' && inputElement.value.length < 10) { inputElement.classList.add('invalid-input'); descriptionShortMessage?.classList.remove('hidden'); inputValidationMessage?.classList.add('hidden'); return false; } else { inputElement.classList.remove('invalid-input'); inputValidationMessage?.classList.add('hidden'); if (inputId === 'description') { descriptionShortMessage?.classList.add('hidden'); } return true; } }"} {"_id":"q-en-vscode-38a76264ca0f98fd917c69881a3448a25fa6ccbc6ea383b0f495ebb2eb381a06","text":"paddingOnRow?: boolean; ariaLabel?: string; keyboardSupport?: boolean; preventRootFocus?: boolean; } export interface ITreeStyles {"} {"_id":"q-en-vscode-38c0e94d2a3b0329c370de6e2694c18a71147016dd15f7ed4cad8da6a8a71b90","text":"import { ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { IPaneCompositePartService } from 'vs/workbench/services/panecomposite/browser/panecomposite'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; /** * An implementation of editor for file system resources."} {"_id":"q-en-vscode-38d194c45dc71946d6f01ed0e84846a8938cd3e52af36a25a191f2ddce5341ff","text":"'onSettingChanged:workbench.colorTheme', 'onCommand:workbench.action.selectTheme' ], when: '!accessibilityModeEnabled', media: { type: 'markdown', path: 'theme_picker', } }, {"} {"_id":"q-en-vscode-39b3f3384dfa8c12e0060eef9536d2e46b01d479a6d240038277eb213349760c","text":"id: MenuId.NotebookCellTitle, when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE), group: CellOverflowToolbarGroups.Copy, order: 3, }, keybinding: platform.isNative ? undefined : { when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)),"} {"_id":"q-en-vscode-39caeefa1db4c131f5f5cf7278455c221ed8fdf27721433ff719774047c285a6","text":"return this._overflowContainer; } override getControl(): NotebookEditorWidget | undefined { return undefined; override getControl(): INotebookTextDiffEditor | undefined { return this; } protected override setEditorVisible(visible: boolean, group: IEditorGroup | undefined): void {"} {"_id":"q-en-vscode-39e02169af7340d07c920d46ad16fd88af3c3fdb402eb2b871c7be1f56504eca","text":"constructor( private readonly _diff: IMergedEnvironmentVariableCollectionDiff, private readonly _terminalId: number, @ITerminalService private readonly _terminalService: ITerminalService @ITerminalService private readonly _terminalService: ITerminalService, @IExtensionService private readonly _extensionService: IExtensionService ) { }"} {"_id":"q-en-vscode-39fc4c4d9e1a7d8aa06714fa8b3307c778ff0483d3c87e5600e12a45fad91de2","text":"resetScrollbarVisibility(): void { this._wrapperElement.classList.remove('force-scrollbar'); } setParentContextKeyService(parentContextKeyService: IContextKeyService): void { this._scopedContextKeyService.updateParent(parentContextKeyService); } } class TerminalInstanceDragAndDropController extends Disposable implements dom.IDragAndDropObserverCallbacks {"} {"_id":"q-en-vscode-3a5f16f3899b0e56f83894ac457e1f196ff7adf2ed76034fb52bff9c6c0f8b76","text":"}, dataOverrides); if (issueReporterData.extensionId) { const extensionExists = extensionData.some(extension => extension.id === issueReporterData.extensionId); const extensionExists = extensionData.some(extension => extension.id.toLowerCase() === issueReporterData.extensionId?.toLowerCase()); if (!extensionExists) { console.error(`Extension with ID ${issueReporterData.extensionId} does not exist.`); }"} {"_id":"q-en-vscode-3a6297f9490cd9f26aba35d52503a5851ea3ba0c4f2b2becff3de3814955cd1a","text":"//#region Workspaces History async addRecentlyOpened(recentToAdd: IRecent[]): Promise { const workspaces: Array = []; const files: IRecentFile[] = []; let workspaces: Array = []; let files: IRecentFile[] = []; for (const recent of recentToAdd) { // Workspace if (isRecentWorkspace(recent)) { if (!this.workspacesManagementMainService.isUntitledWorkspace(recent.workspace) && this.indexOfWorkspace(workspaces, recent.workspace) === -1) { if (!this.workspacesManagementMainService.isUntitledWorkspace(recent.workspace) && !this.containsWorkspace(workspaces, recent.workspace)) { workspaces.push(recent); } } // Folder else if (isRecentFolder(recent)) { if (this.indexOfFolder(workspaces, recent.folderUri) === -1) { if (!this.containsFolder(workspaces, recent.folderUri)) { workspaces.push(recent); } } // File else { const alreadyExistsInHistory = this.indexOfFile(files, recent.fileUri) >= 0; const alreadyExistsInHistory = this.containsFile(files, recent.fileUri); const shouldBeFiltered = recent.fileUri.scheme === Schemas.file && WorkspacesHistoryMainService.COMMON_FILES_FILTER.indexOf(basename(recent.fileUri)) >= 0; if (!alreadyExistsInHistory && !shouldBeFiltered) {"} {"_id":"q-en-vscode-3a6a0f755cf47d9784a9cbbc9c49f90ca0f7eae5b51c8e78cd93e81f9e9689ae","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { ExtensionContext, NotebookDocument, NotebookDocumentChangeEvent, NotebookEdit, workspace, WorkspaceEdit } from 'vscode'; import { getCellMetadata } from './serializers'; import { CellMetadata } from './common'; import { getNotebookMetadata } from './notebookSerializer'; import type * as nbformat from '@jupyterlab/nbformat'; /** * Ensure all new cells in notebooks with nbformat >= 4.5 have an id. * Details of the spec can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html# */ export function ensureAllNewCellsHaveCellIds(context: ExtensionContext) { workspace.onDidChangeNotebookDocument(onDidChangeNotebookCells, undefined, context.subscriptions); } function onDidChangeNotebookCells(e: NotebookDocumentChangeEvent) { const nbMetadata = getNotebookMetadata(e.notebook); if (!isCellIdRequired(nbMetadata)) { return; } e.contentChanges.forEach(change => { change.addedCells.forEach(cell => { const cellMetadata = getCellMetadata(cell); if (cellMetadata?.id) { return; } const id = generateCellId(e.notebook); const edit = new WorkspaceEdit(); // Don't edit the metadata directly, always get a clone (prevents accidental singletons and directly editing the objects). const updatedMetadata: CellMetadata = { ...JSON.parse(JSON.stringify(cellMetadata || {})) }; updatedMetadata.id = id; edit.set(cell.notebook.uri, [NotebookEdit.updateCellMetadata(cell.index, { ...(cell.metadata), custom: updatedMetadata })]); workspace.applyEdit(edit); }); }); } /** * Cell ids are required in notebooks only in notebooks with nbformat >= 4.5 */ function isCellIdRequired(metadata: Pick, 'nbformat' | 'nbformat_minor'>) { if ((metadata.nbformat || 0) >= 5) { return true; } if ((metadata.nbformat || 0) === 4 && (metadata.nbformat_minor || 0) >= 5) { return true; } return false; } function generateCellId(notebook: NotebookDocument) { while (true) { // Details of the id can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#adding-an-id-field, // & here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#updating-older-formats const id = generateUuid().replace(/-/g, '').substring(0, 8); let duplicate = false; for (let index = 0; index < notebook.cellCount; index++) { const cell = notebook.cellAt(index); const existingId = getCellMetadata(cell)?.id; if (!existingId) { continue; } if (existingId === id) { duplicate = true; break; } } if (!duplicate) { return id; } } } /** * Copied from src/vs/base/common/uuid.ts */ function generateUuid() { // use `randomValues` if possible function getRandomValues(bucket: Uint8Array): Uint8Array { for (let i = 0; i < bucket.length; i++) { bucket[i] = Math.floor(Math.random() * 256); } return bucket; } // prep-work const _data = new Uint8Array(16); const _hex: string[] = []; for (let i = 0; i < 256; i++) { _hex.push(i.toString(16).padStart(2, '0')); } // get data getRandomValues(_data); // set version bits _data[6] = (_data[6] & 0x0f) | 0x40; _data[8] = (_data[8] & 0x3f) | 0x80; // print as string let i = 0; let result = ''; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; return result; } "} {"_id":"q-en-vscode-3a7a49b887b9364ccb952aed0571e524bae8edfb8d8a2f994ad9f8e41b3c81ef","text":"this._widget?.inlineChatWidget.updateInfo(!this._activeSession.lastExchange ? localize('thinking', \"Thinkingu2026\") : ''); this._ctxHasActiveRequest.set(true); const reply = await raceCancellationError(Promise.resolve(task), requestCts.token); const reply = await raceCancellationError(Promise.resolve(task), this._activeRequestCts.token); if (progressiveEditsQueue.size > 0) { // we must wait for all edits that came in via progress to complete await Event.toPromise(progressiveEditsQueue.onDrained);"} {"_id":"q-en-vscode-3a834cb8b906a6d248a00a5b86f13f5163e7ce4cceefb655e92ab36afa5661e9","text":"import { extractGitHubRemotesFromGitConfig } from 'vs/workbench/contrib/url/browser/trustedDomains'; function linkAllowedByRules(link: string, rules: string[]) { assert.ok(isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should be protected by rulesn${JSON.stringify(rules)}`); assert.ok(isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should be allowed by rulesn${JSON.stringify(rules)}`); } function linkNotAllowedByRules(link: string, rules: string[]) { assert.ok(!isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should NOT be protected by rulesn${JSON.stringify(rules)}`); assert.ok(!isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should NOT be allowed by rulesn${JSON.stringify(rules)}`); } suite('GitHub remote extraction', () => {"} {"_id":"q-en-vscode-3a96a1e99b7a0cbff549c6e6c1c512f4cd32adf8d415a5a673e8d06fa3f0f721","text":"return null; } } /** * Returns url from link as link may contain line and column information. * * @param link url link which may contain line and column number. */ extractLinkUrl(link: string): string | null { const matches: string[] | null = this._localLinkRegex.exec(link); if (!matches) { return null; } return matches[1]; } } export interface ILineColumnInfo {"} {"_id":"q-en-vscode-3aa27e49c1db03919a86506e812d3b042265847dc007481dc219a8b0731bcbf9","text":"type: 'boolean', default: false }, 'terminal.integrated.altClickMovesCursor': { description: localize('terminal.integrated.altClickMovesCursor', \"If enabled, alt/option + click will move the prompt cursor to position underneath the mouse. This may not work reliably depending on your shell.\"), type: 'boolean', default: true }, 'terminal.integrated.copyOnSelection': { description: localize('terminal.integrated.copyOnSelection', \"Controls whether text selected in the terminal will be copied to the clipboard.\"), type: 'boolean',"} {"_id":"q-en-vscode-3acbf3137306315ac6fc702886573ac4ad884e5623290f08bb55a01868027269","text":"resolved \"https://registry.yarnpkg.com/@vscode/vscode-languagedetection/-/vscode-languagedetection-1.0.21.tgz#89b48f293f6aa3341bb888c1118d16ff13b032d3\" integrity sha512-zSUH9HYCw5qsCtd7b31yqkpaCU6jhtkKLkvOOA8yTrIRfBSOFb8PPhgmMicD7B/m+t4PwOJXzU1XDtrM9Fd3/g== \"@xterm/addon-canvas@0.6.0-beta.19\": version \"0.6.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.19.tgz#5f8896b884d2a558a28eb197f7f4766ac37d33a0\" integrity sha512-i+26DqYgI/PZViCiEK4Vu8c4Fi5J0i+TwnFfBDLcumHH07Al1uRd5BRaVg/i93vk6bRyEIOiOiIToXSf37ov/w== \"@xterm/addon-image@0.7.0-beta.17\": version \"0.7.0-beta.17\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.17.tgz#bc3d6f09619ef1f3b68c7009d29ee14003a26b30\" integrity sha512-nnHVoYVoh+CpT4FQN/ALKesr96YvdVNUzQRQo4aAARUKst5DFaHQX9Yn/qLDN5s0WCqI3bgIEo8UAakfHITumA== \"@xterm/addon-search@0.14.0-beta.19\": version \"0.14.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.19.tgz#2bc13378765f0d5e72d9bcb7887e23eee31de7eb\" integrity sha512-Y1pPdtdZj0xRQ/Is4jdO0dyZe+uM6AhWi3v2U4sdJmhz2mxVe/HAKBHkx6tyfMtX9ge/9ZYajd/Sy8rkjIFdmQ== \"@xterm/addon-serialize@0.12.0-beta.19\": version \"0.12.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.19.tgz#465a9525a420b8f0d12eed419d6e051f9a887814\" integrity sha512-3v6a4/4gxAwoyJsBp6vJBofymgTH8paSHl8K2uQfFuLosOavNyCtrNPiNne7tpppK6t8zCDJ/mVrXNptz4Mlsg== \"@xterm/addon-unicode11@0.7.0-beta.19\": version \"0.7.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.19.tgz#0e81775f84346a97c657fb4cd7702de1cfe4b83f\" integrity sha512-U5O+JLklO4qtptWAWUw14QRWdalLl0bFAQxLKuTtDmusgfn33pNDRD6RH3R+IHhO2e6svAwrw27OcCEcdn0AJQ== \"@xterm/addon-webgl@0.17.0-beta.19\": version \"0.17.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.19.tgz#fefe44c20b4d4d070363e03ae33087505a88807e\" integrity sha512-L59l9Cd4KTMCwnw2HPi/cUgH4iL5dK7VERK/wSTWEGYMOi3WGTmXqsg8ftfR2jFC9P33eqYNVJDmbr+pF0XsDg== \"@xterm/xterm@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.19.tgz#5c9c5cacd0cf2a0719086ce03ab035480b1cfd96\" integrity sha512-Rx/Y/y3YGjpiW6IUq8UlE6qrTYuUlEfpVg/BS6kIPr8/cUOchE1fsKWCMxz/u2bIyQyEovRi892iYcQJ4scstw== \"@xterm/addon-canvas@0.6.0-beta.20\": version \"0.6.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.20.tgz#078dddef70caf880b2cb121fdda37d301fc13156\" integrity sha512-tHhsuqElE7LNiDJPbZzgVpmbcG2Dk6i2vh1EI+DzSByUWScDqLoeJbVPE5Xd2UW2garo24lxErpnIAlsytcA3A== \"@xterm/addon-image@0.7.0-beta.18\": version \"0.7.0-beta.18\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.18.tgz#588ea2d0841cff48c63bde1bfcdf56e9494dc6af\" integrity sha512-+HQ+IBmHPelzjRJ5zO3XkjbeQNr2Zrf5wAlbPhy4EGSD0mDCqHJSfzZ8wKrhx7t8qpfiA8eTpWu/M76WsEnlnA== \"@xterm/addon-search@0.14.0-beta.20\": version \"0.14.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.20.tgz#cac366b1be1eb02cf9fe9537933f26f227d030c8\" integrity sha512-1LOL/OzWSrCBpndiBeeE2S1rxtKKgU1ucYFSG3P68W0J4VQz/Ksci1BgDKsgspj9jzpsGhdql3zwa5WEM7n4Pg== \"@xterm/addon-serialize@0.12.0-beta.20\": version \"0.12.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.20.tgz#5fe126194ff4dc466b92a0946e081e039a14ad21\" integrity sha512-GdRCQDjLyVNBxCFnhfCWsMmuqv2PryUkOaNl4z5MqB5lBUkiEnRNY0u/s5f34+2zrijp3h0O/f9JDLW4gSUQgw== \"@xterm/addon-unicode11@0.7.0-beta.20\": version \"0.7.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.20.tgz#5d3c97320898dd6766f2dc127deb4f071c8698c2\" integrity sha512-4/uwJ6lV/xJplT7hJc7sO4Im4XNvEXHnUEFIs03FFp8ZUfu3U6wcBk6/GoKMwJKJtGVNxotiD6ZzJ5v8IBH6nA== \"@xterm/addon-webgl@0.17.0-beta.20\": version \"0.17.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.20.tgz#443845ac5ac755cf762b105ed237b30426b07137\" integrity sha512-iqvXNSTfKIcO9FBraNwdO/ixPrTHok8CBN/wjlnGLv0ZMc4zLAiKE8+PHyg9ZY38QJfS+4Ouo8KsuZwoOYfnNA== \"@xterm/xterm@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.20.tgz#28bbbbc73eceb6ef3e1e095de195cf849d0cbfb6\" integrity sha512-nkY91qBy5pe1HlW9LOoLcyG6v4teEsliEtUVshAO42NrJDaPniSn28O5m5832UjZOdjLCY58QlcBkZUquODGrQ== jschardet@3.0.0: version \"3.0.0\""} {"_id":"q-en-vscode-3afa0769457c0e12746a81d1e60a515da6c40d6f6d0faebdb9835d3665219848","text":"_serviceBrand: undefined; protected readonly url: string | undefined; protected url: string | undefined; private _state: State = State.Uninitialized;"} {"_id":"q-en-vscode-3b38e81b04f12e021584afb51151c6ec967bd35c9cbcc81fde2dd8d5efebd213","text":"ZDOTDIR=$VSCODE_ZDOTDIR fi if [[ -f $USER_ZDOTDIR/.zsh_history ]]; then if [[ -f $USER_ZDOTDIR/.zsh_history && -z HISTFILE ]]; then HISTFILE=$USER_ZDOTDIR/.zsh_history fi fi"} {"_id":"q-en-vscode-3b6d96f6d9f8d561580690f33047194d9209c204f4b52a9f451393a9a409198d","text":"export function activate(context: vscode.ExtensionContext) { const serializer = new NotebookSerializer(context); ensureAllNewCellsHaveCellIds(context); keepNotebookModelStoreInSync(context); context.subscriptions.push(vscode.workspace.registerNotebookSerializer('jupyter-notebook', serializer, { transientOutputs: false, transientCellMetadata: {"} {"_id":"q-en-vscode-3b7181134cb943576924f8efcee6ff677dfd3a281f8b275dae4b5c5141a5e303","text":"import { score } from 'vs/editor/common/languageSelector'; import { Emitter } from 'vs/base/common/event'; import { withNullAsUndefined } from 'vs/base/common/types'; import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity'; function createProviderComparer(uri: URI): (a: QuickDiffProvider, b: QuickDiffProvider) => number { return (a, b) => {"} {"_id":"q-en-vscode-3bcb739c6406c7a661713e5f5226e40716a120b16ab4f18b6eff3ca4a6133595","text":"constructor(label: string | CompletionItemLabel, values: ChatVariableValue[]); } export type ChatExtendedRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatExtendedResponseStream, token: CancellationToken) => ProviderResult; export type ChatExtendedRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatExtendedResponseStream, token: CancellationToken) => ProviderResult; export namespace chat { /**"} {"_id":"q-en-vscode-3bcee21cc99eeb609e4a1a29ce4afc5c10ec519ea501ec596adc2dd6fe49b763","text":"margin-left: 0.8em; } .search-view.wide .foldermatch .badge, .search-view.wide .filematch .badge { .search-view .foldermatch .badge, .search-view .filematch .badge { margin-left: 10px; }"} {"_id":"q-en-vscode-3bff03073f192e1d26813fc3e123b1b1978ef2c14845e62cca9ef996c0158a3e","text":"'disable-inspect': { type: 'boolean' }, 'force-user-env': { type: 'boolean' }, // chromium flags 'no-proxy-server': { type: 'boolean' }, 'proxy-server': { type: 'string' }, 'proxy-bypass-list': { type: 'string' }, 'proxy-pac-url': { type: 'string' }, 'js-flags': { type: 'string' }, // chrome js flags 'inspect': { type: 'string' }, 'inspect-brk': { type: 'string' }, 'nolazy': { type: 'boolean' }, // node inspect '_urls': { type: 'string[]' },"} {"_id":"q-en-vscode-3c37e5bc2a3cf0c3e224ea0e8666af1fc49dfdb98213ee7610b75059d381615e","text":"resolved \"https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f\" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xterm-addon-canvas@0.2.0-beta.15: version \"0.2.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.15.tgz#de863e46410b1de357b153abf1984227777760e4\" integrity sha512-E1pNCDSVTINchwWLysZ9ZD/BPv1WLGV52xRHB00US1PHHELbhtvms+6dZ44WZEDXhtfpptRZ1VBx+QpvfJIuvw== xterm-addon-search@0.10.0-beta.3: version \"0.10.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.3.tgz#5194434d86105637c71f6f20139a9d0b5c1a956a\" integrity sha512-UeGm/ymnp7HUYJJtsP0D+bljOWbdk3MctcLJ+0jv8AmU6YlAzJFtouvYSQrD5SAMyht5CRsvjzFgqic9X02JYg== xterm-addon-serialize@0.8.0-beta.3: version \"0.8.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.3.tgz#47ade3fedacbb75bd26e63cfe0120586623e0e4f\" integrity sha512-gvfempZCYuAhLqN4O6fA2TuoavPjOxFKlh8hLcOzPackiLUhwKr1jQpDXcnq8VgqUiGgb+XNZpPEbI0Q7EhTgA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.13.0-beta.32: version \"0.13.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.32.tgz#ae7335f788ae611733e03f6ca38280ab7b86d212\" integrity sha512-xOudNzYXaRh9QZ+IigXM5EB3bM8l3/F8F35EpJRYvvsylVxiB6Km8X8l7+nxlWt+uYdnHZs0ka2rvtL8kOP/uw== xterm-addon-canvas@0.2.0-beta.17: version \"0.2.0-beta.17\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.17.tgz#e84a86530b20bd3edcce16b4566f346cd186ab4d\" integrity sha512-2ukPdCA92VTFYQRE56ylzvI3cfaQYDWd/Mc4jlEItI6sV/EA5RnUbbP+2sFIx0JlmHK6nVYXXNY2p6QRB7MRew== xterm-addon-search@0.10.0-beta.5: version \"0.10.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.5.tgz#a2cb16bda4ddf8783b80433155ad94f5822271f8\" integrity sha512-kjog7cm1iEZ2XyQFVs3KAvoI2pKoX0cq2WWjL0FuXYXpKQ9vXmfrWSR7PiJ6zpTIRvr6UtaSGKhmZVHLNA79WA== xterm-addon-serialize@0.8.0-beta.5: version \"0.8.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.5.tgz#3d2f3be173f4f1c31ae7bf25179e8ecddf2b33b2\" integrity sha512-rkSUaO1XBcy3ipScZMA5PrOKu/DfXo8XC/V7hZlhMiBNbZKlbk2rFb3X0FB1f07hw7oEkHLjuIJEY5Qtxfe9/w== xterm-addon-unicode11@0.4.0-beta.5: version \"0.4.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.5.tgz#3900e66f10d2e506133b61d7421aab6878d32665\" integrity sha512-+g+fuxAd/tkCEJ/jhdnebXKtdPrhsu4VKWNnB/3qM35GbuGQOasmYFYnKL+HYZMpbQ6YqeZcXTVg/wnCTttz0g== xterm-addon-webgl@0.13.0-beta.35: version \"0.13.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.35.tgz#98b5dc102583120de25c7c6e0f35cd34ab6bef98\" integrity sha512-powgeb3ifEZK7zWwLJuE8YRz/Z0UzDrrVA9NTx9mH7+vWxrGt9ZgroychoeCqZBvKMofiUM5vlf1oWdSmsMfzw== xterm-headless@5.0.0-beta.5: version \"5.0.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.0.0-beta.5.tgz#e29b6c5081f31f887122b7263ba996b0c46b3c22\" integrity sha512-CMQ1+prBNF92oBMeZzc2rfTcmOaCGfwwSaoPYNTjyziZT6mZsEg7amajYkb0YAnqJ29MFm4kPGZbU78/dX4k2A== xterm@5.0.0-beta.32: version \"5.0.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.32.tgz#62bb9902429c0055fd2fd85c9eecfbf1756ed31c\" integrity sha512-OAM1GaBs/chK63Cr86XbVhfVCLLXLpNxxFrv3RK9xoyb9dwiY3gaMxK9jeGzTnrbGLWJb+k5nxaC0rx2YsHvUA== xterm@5.0.0-beta.35: version \"5.0.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.35.tgz#3bbf5780c98aaaa6476e7590dff1d8f5014fce9d\" integrity sha512-tzJTel1E/FmB0VQDb44xApVB+ln+BifIbHD4V9x9Z3D9m1cMmPHy8J8efdILkn1TxXGlCl7VC35nG122Qq5exw== yallist@^4.0.0: version \"4.0.0\""} {"_id":"q-en-vscode-3c3994a75e605a67853fe7a2520ff94bfe84096dc6341846e2f3132e619693e0","text":"\"configuration.markdown.links.openLocation.currentGroup\": \"Open links in the active editor group.\", \"configuration.markdown.links.openLocation.beside\": \"Open links beside the active editor.\", \"configuration.markdown.suggest.paths.enabled.description\": \"Enable/disable path suggestions for markdown links\", \"configuration.markdown.editor.drop.enabled\": \"Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbenck.experimental.editor.dropIntoEditor.enabled#`.\", \"configuration.markdown.editor.drop.enabled\": \"Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbench.experimental.editor.dropIntoEditor.enabled#`.\", \"configuration.markdown.editor.pasteLinks.enabled\": \"Enable/disable pasting files into a Markdown editor inserts Markdown links.\", \"configuration.markdown.experimental.validate.enabled.description\": \"Enable/disable all error reporting in Markdown files.\", \"configuration.markdown.experimental.validate.referenceLinks.enabled.description\": \"Validate reference links in Markdown files, e.g. `[link][ref]`. Requires enabling `#markdown.experimental.validate.enabled#`.\","} {"_id":"q-en-vscode-3c8b11a338f1825f57e5be1bbf512770d3dd386a3dcc8cb84409d5d8e53a9d63","text":"this.centerInputVertically(); } protected override _onWidth(widthInPixel: number): void { if (typeof this.heightInPx === 'number') { this._doLayout(this.heightInPx, widthInPixel); } } private createBreakpointInput(container: HTMLElement): void { const scopedContextKeyService = this.contextKeyService.createScoped(container); this.toDispose.push(scopedContextKeyService);"} {"_id":"q-en-vscode-3c957aa9592a3e7ef134d19c568e1efa3c65c6c3e8ffe050c92e7db996a063de","text":"unresponsiveProfile?: IExtensionHostProfile }): Promise { let baseUrl = extension.marketplaceInfo && extension.marketplaceInfo.type === ExtensionType.User && extension.description.repository ? extension.description.repository.url : undefined; if (!baseUrl && extension.description.isBuiltin) { baseUrl = builtinExtensionIssueUrl; } if (!!baseUrl) { baseUrl = `${baseUrl.indexOf('.git') !== -1 ? baseUrl.substr(0, baseUrl.length - 4) : baseUrl}/issues/new/`; } else {"} {"_id":"q-en-vscode-3cbf9721fbc2a6b43c480762b66b60d3ce544b119765d708361ed50fa8f7bb0b","text":"this._strategy?.cancel(); } if (this._activeSession) { this._inlineChatSessionService.releaseSession(this._activeSession); } this._activeSession = undefined; this._activeRequestCts?.cancel(); } discard() { this._strategy?.cancel(); this._activeRequestCts?.cancel(); this._widget?.discardChange(); this.dismiss(); }"} {"_id":"q-en-vscode-3cd3ae1d686775f1d9434756b4ee0f3e5b046841bfe03d49a65385602f7972a5","text":"} if (this.watchedIconThemeLocation && this.currentIconTheme && e.contains(this.watchedIconThemeLocation, FileChangeType.UPDATED)) { await this.currentIconTheme.reload(this.fileService); _applyIconTheme(this.currentIconTheme, () => Promise.resolve(this.currentIconTheme)); _applyIconTheme(this.currentIconTheme, () => { this.doSetFileIconTheme(this.currentIconTheme); return Promise.resolve(this.currentIconTheme); }); } }); }"} {"_id":"q-en-vscode-3cd656a3302075b269667580a2f8f67b99d8b4eeef6e0a2e4fb37c823351f268","text":"width: calc(100% - 4px); } .monaco-workbench .pane-composite-part > .title > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked, .monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked { background-color: var(--vscode-activityBarTop-activeBackground); } .monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before, .monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item:focus .active-item-indicator:before, .monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before,"} {"_id":"q-en-vscode-3cd67f4627c7336e1b7dca7288c7a8e7a9c4b307ea11be99371d99df858b226e","text":"menu: [{ id: MenuId.ViewTitle, group: 'navigation', order: 3, order: 2, when: ContextKeyExpr.and(ContextKeyExpr.equals('view', VIEW_ID), Constants.InTreeViewKey), }] });"} {"_id":"q-en-vscode-3d349d81b0d23c2ef92ebc4d5c0e5f24c28859afd543470c5e5ee74fc43b2bb4","text":"} } ] } No newline at end of file } "} {"_id":"q-en-vscode-3da5e4742abd84d67f5f92b1d6f32ab2c1fa3f9cf96d285b80ea7b8f48942696","text":"replace(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Replace, options: options ?? {}, scope }); } append(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Append, options: options ?? {}, scope }); } prepend(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Prepend, options: options ?? {}, scope }); }"} {"_id":"q-en-vscode-3dcc346251a3ad73368a4badaba60dc307e068383ddcfaf1bab5ac3a953cb574","text":"this.doCreateGridControl(options); // Centered layout widget this.centeredLayoutWidget = this._register(new CenteredViewLayout(this.container, this.gridWidgetView, this.profileMemento[EditorPart.EDITOR_PART_CENTERED_VIEW_STORAGE_KEY])); this.centeredLayoutWidget = this._register(new CenteredViewLayout(this.container, this.gridWidgetView, this.profileMemento[EditorPart.EDITOR_PART_CENTERED_VIEW_STORAGE_KEY], this._partOptions.centeredLayoutFixedWidth)); this._register(this.onDidChangeEditorPartOptions(e => this.centeredLayoutWidget.setFixedWidth(e.newPartOptions.centeredLayoutFixedWidth ?? false))); // Drag & Drop support"} {"_id":"q-en-vscode-3df50a1509a7ef09463514584e22828ebb9a9ee556680b41e875ac3d61e3a8c8","text":"}, \"dependencies\": { \"@enonic/fnv-plus\": \"^1.3.0\", \"detect-indent\": \"^6.0.0\", \"uuid\": \"^8.3.2\" \"detect-indent\": \"^6.0.0\" }, \"devDependencies\": { \"@jupyterlab/nbformat\": \"^3.2.9\", \"@types/markdown-it\": \"12.2.3\", \"@types/uuid\": \"^8.3.1\" \"@types/markdown-it\": \"12.2.3\" }, \"repository\": { \"type\": \"git\","} {"_id":"q-en-vscode-3e019ea6dc28cebeeab7e456bcbe8e3ef9712e95741159a4f198a89335630975","text":"baseEnv = await this._terminalProfileResolverService.getEnvironment(this.remoteAuthority); } const env = await terminalEnvironment.createTerminalEnvironment(shellLaunchConfig, envFromConfigValue, variableResolver, this._productService.version, this._configHelper.config.detectLocale, baseEnv); if (!this._isDisposed && !shellLaunchConfig.strictEnv && !shellLaunchConfig.hideFromUser) { if (!this._isDisposed && shouldUseEnvironmentVariableCollection(shellLaunchConfig)) { this._extEnvironmentVariableCollection = this._environmentVariableService.mergedCollection; this._register(this._environmentVariableService.onDidChangeCollections(newCollection => this._onEnvironmentVariableCollectionChange(newCollection)));"} {"_id":"q-en-vscode-3e0c1dd43b0f79ae9abd687c093ee396200308fe35111b3e612c86c372b5312f","text":"return cloneAndChange(data, value => { // If it's a trusted value it means it's okay to skip cleaning so we don't clean it if (value instanceof TelemetryTrustedValue || value.hasOwnProperty('isTrustedTelemetryValue')) { if (value instanceof TelemetryTrustedValue || Object.hasOwnProperty.call(value, 'isTrustedTelemetryValue')) { return value.value; }"} {"_id":"q-en-vscode-3e31f14e97411ded62c0bd660af5cb193b5370db2d937d95c66c51eb0091c565","text":"export const NAVIGATE_ALL_EDITORS_GROUP_PREFIX = 'edt '; export const NAVIGATE_IN_ACTIVE_GROUP_PREFIX = 'edt active '; export const OPEN_EDITOR_AT_INDEX_COMMAND_ID = 'workbench.action.openEditorAtIndex'; export interface ActiveEditorMoveArguments { to?: 'first' | 'last' | 'left' | 'right' | 'up' | 'down' | 'center' | 'position' | 'previous' | 'next'; by?: 'tab' | 'group';"} {"_id":"q-en-vscode-3e385bd074f50bc86bfdef50a789cda389d6a9c81eb9ce92cbebc4edfbe9c274","text":"if (info.password) { inputOptions.password = info.password; } return this.quickInputService.input(inputOptions).then(resolvedInput => { return resolvedInput; return this.userInputAccessQueue.queue(() => this.quickInputService.input(inputOptions)).then(resolvedInput => { return resolvedInput as string; }); }"} {"_id":"q-en-vscode-3e689cf54308dbbf8f8693c433fa6159e622e6a3bd07b61aaecc3f5d78d4d22e","text":"'editor.guides.highlightActiveBracketPair': { type: 'boolean', default: defaults.highlightActiveBracketPair, description: nls.localize('editor.guides.highlightActiveBracketPair', \"Controls whether bracket pair guides are enabled or not.\") description: nls.localize('editor.guides.highlightActiveBracketPair', \"Controls whether the editor should highlight the active bracket pair.\") }, 'editor.guides.indentation': { type: 'boolean',"} {"_id":"q-en-vscode-3e6d23c1b7e0a5111d2017b08f87fb57ad31374ba262827a9b30b9226415425d","text":"} // Find actions available for menu const menuActions = this._getMenuActions(this._editor.getModel(), MenuId.EditorContext); const menuActions = this._getMenuActions(this._editor.getModel(), this._editor.isSimpleWidget ? MenuId.SimpleEditorContext : MenuId.EditorContext); // Show menu if we have actions to show if (menuActions.length > 0) {"} {"_id":"q-en-vscode-3f371ccd77b5de3908556d58f0144f4ade5687a46e676a11dd0e3b7682461e67","text":"\"license\": \"MIT\", \"description\": \"Dependencies shared by all extensions\", \"dependencies\": { \"typescript\": \"5.1.3\" \"typescript\": \"5.1.6\" }, \"scripts\": { \"postinstall\": \"node ./postinstall.mjs\""} {"_id":"q-en-vscode-3f680d17f0ee16727ce20d017c2e65cad16ef79106d42489b6f4279684d9b617","text":"let lastTimeScrolled: number | undefined; function flagRecentlyScrolled(node: Element, deltaY?: number) { scrolledElement = node; if (!deltaY) { if (deltaY === undefined) { lastTimeScrolled = Date.now(); previousDelta = undefined; node.setAttribute('recentlyScrolled', 'true');"} {"_id":"q-en-vscode-3f98a056005edb3daed6dde2bcaf9d902e99dcc2866b4ee538f3dc93678589f1","text":"return data; } else { const result = new Uri(data); result._formatted = (data).external; result._fsPath = (data)._sep === _pathSepMarker ? (data).fsPath : null; result._formatted = (data).external ?? null; result._fsPath = (data)._sep === _pathSepMarker ? (data).fsPath ?? null : null; return result; } }"} {"_id":"q-en-vscode-3ff1d64b9ee3e7a1a02c33ff8f54b0e6f3e002f3628799237a230a0bf63da909","text":"getId: () => { return null; }, getControl: () => { return { getSelection: () => { return { positionLineNumber: this.mockLineNumber }; } getSelection: () => { return { positionLineNumber: this.mockLineNumber }; }, getModel: () => { return { getValueInRange: () => this.mockSelectedText }; } }; }, focus: () => { },"} {"_id":"q-en-vscode-3ff71dedb665fc3a4a230afa1e0aaf0b760dba815451748d1a297be7a56da6f6","text":"rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); }); test('/^/ find', () => { var ranges = [ [1, 1, 1, 1], [2, 1, 2, 1], [3, 1, 3, 1], [4, 1, 4, 1], [5, 1, 5, 1] ]; var matches = thisModel.findMatches('^', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); test('/$/ find', () => { var ranges = [ [1, 74, 1, 74], [2, 69, 2, 69], [3, 54, 3, 54], [4, 65, 4, 65], [5, 31, 5, 31] ]; var matches = thisModel.findMatches('$', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); test('/^$/ find', () => { var text = [ 'This is some foo - bar text which contains foo and bar - as in Barcelona.', '', 'And here's a dull line with nothing interesting in it', '', 'Again nothing interesting here' ]; thisModel = new Model.Model(text.join('n'), null); var ranges = [ [2, 1, 2, 1], [4, 1, 4, 1] ]; var matches = thisModel.findMatches('^$', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); }); "} {"_id":"q-en-vscode-4034c492516cc4c37570d75d239cf1878569618c054d699b05dedf5c2029f4bb","text":"import { TerminalCommandTracker } from 'vs/workbench/parts/terminal/node/terminalCommandTracker'; import { TerminalProcessManager } from './terminalProcessManager'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { execFile } from 'child_process'; // How long in milliseconds should an average frame take to render for a notification to appear // which suggests the fallback DOM-based renderer"} {"_id":"q-en-vscode-404519baeff8f9868e50265c9c3df6eb6081b885f403dc683960199770b563ed","text":"import { IStringDictionary } from 'vs/base/common/collections'; import { localize } from 'vs/nls'; import { IConfigurationPropertySchema } from 'vs/platform/configuration/common/configurationRegistry'; import product from 'vs/platform/product/common/product'; export const enum TerminalInitialHintSettingId { Enabled = 'terminal.integrated.initialHint'"} {"_id":"q-en-vscode-4072e4db487d70410d90ab724d4d36186adace5c80cc399e5f160db7bdf8c58f","text":"dependencies: find-up \"^3.0.0\" playwright-core@=0.15.0: version \"0.15.0\" resolved \"https://registry.yarnpkg.com/playwright-core/-/playwright-core-0.15.0.tgz#c605c98a13c81d5a2e2691f15d04758cf302c20a\" integrity sha512-uTm4PoF2U3iXkLMMG9vlTxlGfO8atQGAHDxqi8xV7hEjNSYeLTU7c6HN5zwadeHRVuBbNsZ4yqu9u4hoqC7uxQ== playwright-core@=1.0.1: version \"1.0.1\" resolved \"https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.0.1.tgz#823b6f1afa16917ffd418f3cec0c14688a985738\" integrity sha512-a71FjUDRFqWLG3VBAojVen2TaZiXkuog+ZmI0Nh0+/QndFUbbW3kameOfUTMXFvLUGWx2ipERZx6EQTJMEQDMA== dependencies: debug \"^4.1.1\" extract-zip \"^2.0.0\""} {"_id":"q-en-vscode-40c0b82f3ce8fde8650e7cc1753cfb81be71dc0b6ddbcb363b93fdb3eaa72964","text":".filter(r => this.repositoryPanels.every(p => p.repository !== r)) .map(r => this.instantiationService.createInstance(RepositoryPanel, r, this)); // Add new selected panels // Add new selected panels and focus repository panel this.repositoryPanels = [...repositoryPanels, ...newRepositoryPanels]; newRepositoryPanels.forEach(panel => { this.addPanel(panel, panel.minimumSize, this.length); panel.repository.focus(); panel.onDidFocus(() => this.lastFocusedRepository = panel.repository); if (newRepositoryPanels.length === 1 || this.lastFocusedRepository === panel.repository) { panel.focus(); } }); // Remove unselected panels"} {"_id":"q-en-vscode-41a85a8a5e664f38bc914308ac465ab400898df605d493c5e6e4a21dadea93c0","text":"if (!disableServiceWorker) { hostMessaging.onMessage('did-load-resource', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); }); }); hostMessaging.onMessage('did-load-localhost', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-localhost', data }); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-localhost', data }); }); }); navigator.serviceWorker.addEventListener('message', event => { switch (event.data.channel) {"} {"_id":"q-en-vscode-41d2fdf0ab65ac2172410c77845b51632ae1508e5db76fe0b342bef187ee296e","text":"// We're trying to open the welcome page from the Help menu if (!selectedCategory && !selectedStep) { editorService.openEditor({ resource: GettingStartedInput.RESOURCE }); editorService.openEditor({ resource: GettingStartedInput.RESOURCE, options: { preserveFocus: toSide ?? false } }, toSide ? SIDE_GROUP : undefined); return; }"} {"_id":"q-en-vscode-41d5d748d969564f681a23906210948555d07b36e975d9aa012085d8ebe546c3","text":"\"tas-client-umd\": \"0.1.6\", \"vscode-oniguruma\": \"1.7.0\", \"vscode-textmate\": \"9.0.0\", \"xterm\": \"5.2.0-beta.30\", \"xterm-addon-canvas\": \"0.4.0-beta.7\", \"xterm\": \"5.2.0-beta.33\", \"xterm-addon-canvas\": \"0.4.0-beta.9\", \"xterm-addon-search\": \"0.11.0\", \"xterm-addon-unicode11\": \"0.5.0\", \"xterm-addon-webgl\": \"0.15.0-beta.7\" \"xterm-addon-webgl\": \"0.15.0-beta.8\" } }"} {"_id":"q-en-vscode-41e7502aa24d0338b6d286a26ea726a23e4f43ab84bb1e1982e3c6b1051b2648","text":"set dataProvider(dataProvider: ITreeViewDataProvider | undefined) { if (dataProvider) { if (this.visible) { this.activate(); } const self = this; this._dataProvider = new class implements ITreeViewDataProvider { private _isEmpty: boolean = true;"} {"_id":"q-en-vscode-420c418d62e630c3b1201d7518b8add25299522546d1df904ae9d6e0c9158301","text":"this.storageService.store(walkthroughMetadataConfigurationKey, JSON.stringify([...this.metadata.entries()]), StorageScope.PROFILE, StorageTarget.USER); if (sectionToOpen && this.configurationService.getValue('workbench.welcomePage.walkthroughs.openOnInstall')) { const hadLastFoucs = await this.hostService.hadLastFocus(); if (hadLastFoucs && sectionToOpen && this.configurationService.getValue('workbench.welcomePage.walkthroughs.openOnInstall')) { type GettingStartedAutoOpenClassification = { owner: 'lramos15'; comment: 'When a walkthrthrough is opened upon extension installation';"} {"_id":"q-en-vscode-422a1b34bb02b8888af1cb441b18a86b5b84ce87e409abd6448541265ea837f5","text":"} } abstract class AbstractLaunch { abstract class AbstractLaunch implements ILaunch { abstract readonly uri: uri; abstract readonly name: string; abstract readonly workspace: IWorkspaceFolder | undefined; protected abstract getConfig(): IGlobalConfig | undefined; abstract openConfigFile(options: { preserveFocus: boolean; type?: string | undefined; suppressInitialConfigs?: boolean | undefined }, token?: CancellationToken | undefined): Promise<{ editor: IEditorPane | null; created: boolean }>; constructor( protected configurationManager: ConfigurationManager,"} {"_id":"q-en-vscode-425292063a5b33e2c11dec5e3eaf3696b850583cd886b3d9764901531bdf1478","text":"} const stashChanges = await repository.showStash(stash.index); const stashParentCommit = stash.parents.length > 0 ? stash.parents[0] : `${stash.hash}^`; if (!stashChanges || stashChanges.length === 0) { return;"} {"_id":"q-en-vscode-425912b8c16ee311cd9becded3ff639941f120820e5e1d673bd8c37178096207","text":"this._register(DOM.addDisposableListener(document.body, DOM.EventType.DRAG_START, this.onGlobalDragStart.bind(this), true)); this._register(DOM.addDisposableListener(document.body, DOM.EventType.DRAG_END, this.onGlobalDragEnd.bind(this), true)); const addCellDragListener = (eventType: string, handler: (e: CellDragEvent) => void) => { const addCellDragListener = (eventType: string, handler: (e: CellDragEvent) => void, useCapture = false) => { this._register(DOM.addDisposableListener( notebookEditor.getDomNode(), eventType,"} {"_id":"q-en-vscode-429f67fd8d825cbabf8822144843a9eada86774b6110abaed6bc0ba3f065c7a0","text":"}, { type: 'array', items: [ prefixItems: [ { type: 'string', enum: ['search'] }, { type: 'object',"} {"_id":"q-en-vscode-42bfb6fe9f01ac978d8072360ede1913035db13604acb65e1c13419cd7d03950","text":"? this.options.installPreReleaseVersion /* Respect the passed flag */ : metadata?.preRelease /* Respect the existing pre-release flag if it was set */); } metadata.pinned = this.options.installGivenVersion ? true : undefined; metadata.pinned = this.options.installGivenVersion ? true : metadata.pinned; this._profileLocation = metadata.isApplicationScoped ? this.userDataProfilesService.defaultProfile.extensionsResource : this.options.profileLocation; const scannedExtension = URI.isUri(this.extension) ? await this.webExtensionsScannerService.addExtension(this.extension, metadata, this.profileLocation)"} {"_id":"q-en-vscode-42d134d1cbedd927aea590bed9de3bc0ad7279530bea8fca711c62e14d67ff6f","text":"import * as dom from 'vs/base/browser/dom'; import { StandardMouseEvent } from 'vs/base/browser/mouseEvent'; import { createTrustedTypesPolicy } from 'vs/base/browser/trustedTypes'; import { equals } from 'vs/base/common/arrays'; import { Disposable, DisposableStore } from 'vs/base/common/lifecycle'; import 'vs/css!./stickyScroll'; import { ICodeEditor, IOverlayWidget, IOverlayWidgetPosition } from 'vs/editor/browser/editorBrowser';"} {"_id":"q-en-vscode-42e7880ac5bb7ffd18ee518c3ad589bc969e2c1a576edd287f1bad61371af2cd","text":"\".webmanifest\", \".js.map\", \".css.map\", \".ts.map\", \".har\", \".jslintrc\", \".jsonld\""} {"_id":"q-en-vscode-430a255a3e439362bba1ec207d9c5fd63932329e67e760d26895dbb512340020","text":"} async setToken(token: IUserDataSyncAuthToken | undefined): Promise { if (token && this._token ? token.token !== this._token.token && token.authenticationProviderId !== this._token.authenticationProviderId : token !== this._token) { if (token && this._token ? token.token !== this._token.token || token.authenticationProviderId !== this._token.authenticationProviderId : token !== this._token) { this._token = token; this._onDidChangeToken.fire(token); }"} {"_id":"q-en-vscode-432d80c978c957567301a85b0d73a35d099f62dd285b2c9fc820cbdb3d827c4f","text":"export const editorBracketPairGuideActiveBackground5 = registerColor('editorBracketPairGuide.activeBackground5', { dark: '#00000000', light: '#00000000', hcDark: '#00000000', hcLight: '#00000000' }, nls.localize('editorBracketPairGuide.activeBackground5', 'Background color of active bracket pair guides (5). Requires enabling bracket pair guides.')); export const editorBracketPairGuideActiveBackground6 = registerColor('editorBracketPairGuide.activeBackground6', { dark: '#00000000', light: '#00000000', hcDark: '#00000000', hcLight: '#00000000' }, nls.localize('editorBracketPairGuide.activeBackground6', 'Background color of active bracket pair guides (6). Requires enabling bracket pair guides.')); export const editorUnicodeHighlightBorder = registerColor('editorUnicodeHighlight.border', { dark: '#BD9B03', light: '#CEA33D', hcDark: '#ff0000', hcLight: '' }, nls.localize('editorUnicodeHighlight.border', 'Border color used to highlight unicode characters.')); export const editorUnicodeHighlightBackground = registerColor('editorUnicodeHighlight.background', { dark: '#bd9b0326', light: '#cea33d14', hcDark: '#00000000', hcLight: '' }, nls.localize('editorUnicodeHighlight.background', 'Background color used to highlight unicode characters.')); export const editorUnicodeHighlightBorder = registerColor('editorUnicodeHighlight.border', { dark: '#BD9B03', light: '#CEA33D', hcDark: '#ff0000', hcLight: '#CEA33D' }, nls.localize('editorUnicodeHighlight.border', 'Border color used to highlight unicode characters.')); export const editorUnicodeHighlightBackground = registerColor('editorUnicodeHighlight.background', { dark: '#bd9b0326', light: '#cea33d14', hcDark: '#00000000', hcLight: '#cea33d14' }, nls.localize('editorUnicodeHighlight.background', 'Background color used to highlight unicode characters.')); // contains all color rules that used to defined in editor/browser/widget/editor.css"} {"_id":"q-en-vscode-434c18f5674a5854d65332a4354e7ebe759b1689e5decf4f6f95304c6e47bdd5","text":"return this; } /** * A helper function to revive URIs. * * **Note** that this function should only be used when receiving URI#toJSON generated data * and that it doesn't do any validation. Use {@link URI.from} when received \"untrusted\" * uri components such as command arguments or data from storage. * * @param data The URI components or URI to revive. * @returns The revived URI or undefined or null. */ static revive(data: UriComponents | URI): URI; static revive(data: UriComponents | URI | undefined): URI | undefined; static revive(data: UriComponents | URI | null): URI | null;"} {"_id":"q-en-vscode-435f215b4e011edb920bcc10643095391caeb5dda17403cd8c2f9c23ef52c45a","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ .monaco-editor .rendered-markdown kbd { background-color: var(--vscode-keybindingLabel-background); color: var(--vscode-keybindingLabel-foreground); border-style: solid; border-width: 1px; border-radius: 3px; border-color: var(--vscode-keybindingLabel-border); border-bottom-color: var(--vscode-keybindingLabel-bottomBorder); box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow); vertical-align: middle; padding: 1px 3px; } "} {"_id":"q-en-vscode-439269ddac3cea3b10b9457ca7b4eb107c61eac4cb82a1352c3d8c5ef95c694a","text":"import { showWithPinnedItems } from 'vs/platform/quickinput/browser/quickPickPin'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { timeout } from 'vs/base/common/async'; export async function showRunRecentQuickPick( accessor: ServicesAccessor,"} {"_id":"q-en-vscode-440838d11d8f735e6dbaae516f51739e6d7bbabfdd8aa4c263505916a20de2ef","text":"this.secondaryEditorPane.setInput(secondaryInput, undefined, context, token), this.primaryEditorPane.setInput(primaryInput, options, context, token)] ); this.layout(this.dimension); } override updateStyles(): void {"} {"_id":"q-en-vscode-442c1369af3c824a52cd259ff783b2b8d466a6b67eac22d3ee47769ee079473a","text":"localize('voice.keywordActivation.inlineChat', \"Keyword activation is enabled and listening for 'Hey Code' to start a voice chat session in the active editor.\"), localize('voice.keywordActivation.chatInContext', \"Keyword activation is enabled and listening for 'Hey Code' to start a voice chat session in the active editor or view depending on keyboard focus.\") ], 'description': localize('voice.keywordActivation', \"Controls whether the phrase 'Hey Code' should be speech recognized to start a voice chat session.\"), 'description': localize('voice.keywordActivation', \"Controls whether the keyword phrase 'Hey Code' is recognized to start a voice chat session. Enabling this will start recording from the microphone but the audio is processed locally and never sent to a server.\"), 'default': 'off', 'tags': ['accessibility', 'FeatureInsight'] }"} {"_id":"q-en-vscode-44677ae764bcdaec5b8130d98999b6e6c5e056a73557da6b1e398933569f4ef6","text":"function cursorWordLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordLeftSelect : _cursorWordLeft); } function cursorWordAccessibilityLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordAccessibilityLeft : _cursorWordAccessibilityLeftSelect); } function cursorWordAccessibilityRight(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordAccessibilityRightSelect : _cursorWordAccessibilityRight); } function cursorWordStartLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordStartLeftSelect : _cursorWordStartLeft); }"} {"_id":"q-en-vscode-44a12b3c9c3dcfb07687b5323415fed320c89703783833b4b1c365902e7b973e","text":"const body = await this.renderBody(markdownDocument, resourceProvider); if (token.isCancellationRequested) { return { html: '', containingImages: [] }; return { html: '', containingImages: new Set() }; } const html = `"} {"_id":"q-en-vscode-44a44d48230845871b9da5ef2c46a3c6492abd622d9bd2014c4d96bd4f1ea8ea","text":"const editorService = accessor.get(IEditorService); const sessionId = viewModel.sessionId; const viewState = view.widget.getViewState(); view.clear(); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true, viewState: viewState } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); } }; }"} {"_id":"q-en-vscode-44d3cb57c2cc23bb83cce40515058e52e230c47fee05800ce9369bf0c8e00659","text":"return; } this._logService.trace('IPty#pid'); exec('lsof -OPln -p ' + this._ptyProcess.pid + ' | grep cwd', (error, stdout, stderr) => { exec('lsof -OPln -p ' + this._ptyProcess.pid + ' | grep cwd', { env: { ...process.env, LANG: 'en_US.UTF-8' } }, (error, stdout, stderr) => { if (!error && stdout !== '') { resolve(stdout.substring(stdout.indexOf('/'), stdout.length - 1)); } else {"} {"_id":"q-en-vscode-45f6fda41fac5fff107fcace917ac2e463c9d97d35fcef4eaa0cf6432c8b8ab5","text":"} /** * A result payload for a text search, pertaining to matches within a single file. * A result payload for a text search, pertaining to {@link TextSearchMatchNew matches} * and its associated {@link TextSearchContextNew context} within a single file. */ export type TextSearchResultNew = TextSearchMatchNew | TextSearchContextNew;"} {"_id":"q-en-vscode-4601faaa3f230f20584362eb91c268b9d927b2dc7f7bfb7cb7bb609eb7befe03","text":"private _containerReadyBarrier: AutoOpenBarrier; private _attachBarrier: AutoOpenBarrier; private _icon: TerminalIcon | undefined; private _messageTitleDisposable: IDisposable | undefined; private _widgetManager: TerminalWidgetManager = this._instantiationService.createInstance(TerminalWidgetManager);"} {"_id":"q-en-vscode-46115d219067f321c40f1b54279fd6f31f5eb027a66d8334cbd31d3d251c3fdd","text":"* @param path A file system path (see `Uri#fsPath`) */ static file(path: string): Uri; /** * Creates new Uri from uri components. * * Unless `strict` is `true` the scheme is defaults to be `file`. This function performs * validation and should be used for untrusted uri components retrieved from storage, * user input, command arguments etc */ static from(components: { scheme: string; authority?: string; path?: string; query?: string; fragment?: string; }): Uri; }, strict?: boolean): Uri; /** * Join a Uri path with path fragments and normalizes the resulting path. *"} {"_id":"q-en-vscode-461dc282683b561bd06e57aeccb5ded8c2289256206d4bda40e18ebd20a7dd6e","text":"import { IBufferLine, IBufferRange, Terminal } from 'xterm'; import { ITerminalBackend, ITerminalProcessManager } from 'vs/workbench/contrib/terminal/common/terminal'; import { detectLinks } from 'vs/workbench/contrib/terminalContrib/links/browser/terminalLinkParsing'; import { ILogService } from 'vs/platform/log/common/log'; const enum Constants { /**"} {"_id":"q-en-vscode-461ea03c41c2fb57e632fe0dd00d315f6ac53804010de0fbdbf36145a1da5f53","text":"return this._repository.add(paths.map(p => Uri.file(p))); } revert(paths: string[]) { return this._repository.revert(paths.map(p => Uri.file(p))); } clean(paths: string[]) { return this._repository.clean(paths.map(p => Uri.file(p))); }"} {"_id":"q-en-vscode-4644216db7e285ef1b862ad2a7bb71cd8055aec0d4c0764530e3329c1aaa0a19","text":"if (insertIntoNewFileKb) { hint += localize('insertIntoNewFile', \" - Insert the code block into a new file ({0}).n\", insertIntoNewFileKb); } else { hint += localize('insertIntoNewFileNoKb', \" - Insert the code block into a new file by configuring a keybinding for the Chat: Insert at Cursor command.n\"); hint += localize('insertIntoNewFileNoKb', \" - Insert the code block into a new file by configuring a keybinding for the Chat: Insert into New File command.n\"); } if (runInTerminalKb) { hint += localize('runInTerminal', \" - Run the code block in the terminal ({0}).n\", runInTerminalKb);"} {"_id":"q-en-vscode-46cb50efb4f330b1f1a05d37fb22629ed3caa68a205926e055285a7d75d665e0","text":"\"@iktakahiro/markdown-it-katex@mjbvz/markdown-it-katex\": version \"4.0.3\" resolved \"https://codeload.github.com/mjbvz/markdown-it-katex/tar.gz/58f6637b5883caa8a811f1736bc90b34cd26b395\" version \"4.0.4\" resolved \"https://codeload.github.com/mjbvz/markdown-it-katex/tar.gz/cfcbc640a2780f2349d4e137ad51638f39279aa7\" dependencies: katex \"^0.16.2\""} {"_id":"q-en-vscode-46e024754194bdb2ed6adbdb810806035021b3019b50da8bb10a6d61a24254d9","text":"const editorService = accessor.get(IEditorService); const editorGroupService = accessor.get(IEditorGroupsService); const openerService = accessor.get(IOpenerService); const pathService = accessor.get(IPathService); const resource = URI.revive(resourceArg); const [columnArg, optionsArg] = columnAndOptions ?? []; // use editor options or editor view column as a hint to use the editor service for opening if (optionsArg || typeof columnArg === 'number') { // use editor options or editor view column or resource scheme // as a hint to use the editor service for opening directly if (optionsArg || typeof columnArg === 'number' || resource.scheme === Schemas.untitled) { const [options, column] = mixinContext(context, optionsArg, columnArg); await editorService.openEditor({ resource, options, label }, columnToEditorGroup(editorGroupService, column)); let input: IResourceEditorInput | IUntitledTextResourceEditorInput; if (resource.scheme === Schemas.untitled && resource.path.length > 1) { // special case for untitled: we are getting a resource with meaningful // path from an extension to use for the untitled editor. as such, we // have to assume it as an associated resource to use when saving. we // do so by setting the `forceUntitled: true` and changing the scheme // to a file based one. the untitled editor service takes care to // associate the path properly then. input = { resource: resource.with({ scheme: pathService.defaultUriScheme }), forceUntitled: true, options, label }; } else { // use any other resource as is input = { resource, options, label }; } await editorService.openEditor(input, columnToEditorGroup(editorGroupService, column)); } // do not allow to execute commands from here"} {"_id":"q-en-vscode-46e7b5cb19eb8344709da5b2a2132622811976a46fc1f280959f311a3c2dd17a","text":"document.body.appendChild(img); }); vscode.postMessage({ type: 'ready' }); vscode.postMessage({ type: 'ready', userAgent: window.navigator.userAgent }); `); const ready = getMessage(webview); await ready; if ((await ready).userAgent.indexOf('Firefox') >= 0) { // Skip on firefox web for now. // Firefox service workers never seem to get any 'fetch' requests here. Other browsers work fine return; } { const imagePath = webview.webview.asWebviewUri(workspaceFile('image.png')); console.log(imagePath); const response = await sendRecieveMessage(webview, { src: imagePath.toString() }); assert.strictEqual(response.value, true); }"} {"_id":"q-en-vscode-4707c6f3e77e16683f48efe5c56e0471b43064f1354ca7009d3bb6223cb86250","text":"protected async createReferencedObject(key: string, viewType: string): Promise { const uri = URI.parse(key); const info = await this._notebookService.withNotebookDataProvider(uri); const info = await this._notebookService.withNotebookDataProvider(uri, viewType); let result: IResolvedNotebookEditorModel;"} {"_id":"q-en-vscode-4725c033a49f6c0b5bb1e8d966419dee081b8d495716d29f43a56e48122b164c","text":"async function copyVscodeDevLink(gitAPI: GitAPI, useSelection: boolean, context: LinkContext, includeRange = true) { try { const permalink = await getLink(gitAPI, useSelection, getVscodeDevHost(), 'headlink', context, includeRange); const permalink = await getLink(gitAPI, useSelection, true, getVscodeDevHost(), 'headlink', context, includeRange); if (permalink) { return vscode.env.clipboard.writeText(permalink); }"} {"_id":"q-en-vscode-475a270bb0bd4b2e011d9536ec03b1855e306cd89c1acbaf7fed48328305616c","text":"clear(): void; } export interface GlobalEnvironmentVariableCollection extends EnvironmentVariableCollection { /** * Gets scope-specific environment variable collection for the extension. This enables alterations to * terminal environment variables solely within the designated scope, and is applied in addition to (and * after) the global collection. * * Each object obtained through this method is isolated and does not impact objects for other scopes, * including the global collection. * * @param scope The scope to which the environment variable collection applies to. * * If a scope parameter is omitted, collection applicable to all relevant scopes for that parameter is * returned. For instance, if the 'workspaceFolder' parameter is not specified, the collection that applies * across all workspace folders will be returned. */ getScoped(scope: EnvironmentVariableScope): EnvironmentVariableCollection; } export type EnvironmentVariableScope = { /** * Any specific workspace folder to get collection for. */ workspaceFolder?: WorkspaceFolder; }; /** * A location in the editor at which progress information can be shown. It depends on the * location how progress is visually represented."} {"_id":"q-en-vscode-482dd53516bdfa9fd0993f4151374c74b94957143e9f76765fed7a6b25045a63","text":"private centeredEditorActive: boolean; private centeredEditorSashLeft: Sash; private centeredEditorSashRight: Sash; private centeredEditorPreferedSize: number; private centeredEditorPreferredSize: number; private centeredEditorLeftMarginRatio: number; private centeredEditorDragStartPosition: number; private centeredEditorDragStartSize: number;"} {"_id":"q-en-vscode-48a121497e42f0df394af4bc7993ef86dd7c27083e772e3a39e9decee40ff5a0","text":":root { --vscode-sash-size: 4px; --vscode-sash-hover-size: 4px; } .monaco-sash {"} {"_id":"q-en-vscode-48f52d26ac4c37403f103738047612330fbd3af48fee4e994ed299e5de25e7a2","text":"constructor() { this.tokenTypeById = {}; this.tokenModifierById = {}; this.typeHierarchy = {}; this.typeHierarchy = Object.create(null); } public registerTokenType(id: string, description: string, superType?: string, deprecationMessage?: string): void {"} {"_id":"q-en-vscode-4904d634833cce508fac9d3f9bc8ebfda37562dd2c51c8a3ea23c16d187e85e7","text":"const quickInputService = accessor.get(IQuickInputService); const inputBox = quickInputService.createInputBox(); inputBox.placeholder = nls.localize('findMatchAction.inputPlaceHolder', \"Type a number to go to a specific match (between 1 and {0})\", controller.getState().matchesCount); inputBox.onDidChangeValue(value => { const updatePickerAndEditor = (value: string) => { const index = parseInt(value); if (!isNaN(index) && index > 0 && index <= controller.getState().matchesCount) { // valid inputBox.validationMessage = undefined; controller.goToMatch(index - 1); const currentMatch = controller.getState().currentMatch; if (currentMatch) { this.addDecorations(editor, currentMatch); } } else { inputBox.validationMessage = nls.localize('findMatchAction.inputValidationMessage', \"Please type a number between 1 and {0}\", controller.getState().matchesCount); this.clearDecorations(editor); } }; inputBox.onDidChangeValue(value => { updatePickerAndEditor(value); }); inputBox.onDidAccept(() => {"} {"_id":"q-en-vscode-4919b05fb4d5618e8b5142d20909cf2172d3ba7dc187a2236c267f55bddd2cb5","text":"*--------------------------------------------------------------------------------------------*/ import { ExtensionContext, NotebookDocument, NotebookDocumentChangeEvent, NotebookEdit, workspace, WorkspaceEdit } from 'vscode'; import { v4 as uuid } from 'uuid'; import { getCellMetadata } from './serializers'; import { CellMetadata } from './common'; import { getNotebookMetadata } from './notebookSerializer';"} {"_id":"q-en-vscode-494e16f257308d346dce16cabce182011b83ffd1139ba207fb543fca6f692506","text":"readonly extensionPath: string; /** * Gets the extension's environment variable collection for this workspace, enabling changes * to be applied to terminal environment variables. * Gets the extension's global environment variable collection for this workspace, enabling changes to be * applied to terminal environment variables. */ readonly environmentVariableCollection: EnvironmentVariableCollection; readonly environmentVariableCollection: GlobalEnvironmentVariableCollection; /** * Get the absolute path of a resource contained in the extension."} {"_id":"q-en-vscode-499eb5fab94d30da7c96b7173d0a88740616eb7af259c3ff26c4b908424dcf0e","text":"display: none; } .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon { .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon, .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .monaco-icon-label.suggest-icon::before { display: none; }"} {"_id":"q-en-vscode-4a20c8a5dbef8fcdc83961a3bed26a1ca5d469ce49b4f06295a65ca9c4e06c0a","text":"const otherModelsToHighlight = this.getOtherModelsToHighlight(this.editor.getModel()); // 2 cases where we want to send the word // a) there is no stored query model, but there is a word. This signals the editor that drove the highlight is disposed (cell out of viewport, etc) // b) the queried model is not the current model. This signals that the editor that drove the highlight is still in the viewport, but we are highlighting a different cell // otherwise, we send null in place of the word, and the model and selection are used to compute the word // TODO: @Yoyokrazy -- investigate this logic for sendWord const sendWord = (!WordHighlighter.query.modelInfo && WordHighlighter.query.word) || (WordHighlighter.query.modelInfo?.model.uri !== this.model.uri) ? true : false; if (!WordHighlighter.query.modelInfo || (WordHighlighter.query.modelInfo.model.uri !== this.model.uri)) { // use this.model this.workerRequest = this.computeWithModel(this.model, this.editor.getSelection(), sendWord ? WordHighlighter.query.word : null, otherModelsToHighlight); } else { // use stored query model + selection this.workerRequest = this.computeWithModel(WordHighlighter.query.modelInfo.model, WordHighlighter.query.modelInfo.selection, WordHighlighter.query.word, otherModelsToHighlight); // when reaching here, there are two possible states. // \t\t1) we have text focus, and a valid query was updated. // \t\t2) we do not have text focus, and a valid query is cached. // the query will ALWAYS have the correct data for the current highlight request, so it can always be passed to the workerRequest safely if (!WordHighlighter.query.modelInfo || WordHighlighter.query.modelInfo.model.isDisposed()) { return; } this.workerRequest = this.computeWithModel(WordHighlighter.query.modelInfo.model, WordHighlighter.query.modelInfo.selection, WordHighlighter.query.word, otherModelsToHighlight); this.workerRequest?.result.then(data => { if (myRequestId === this.workerRequestTokenId) {"} {"_id":"q-en-vscode-4a2c043cb7365ff29533596b0d5dac77dffd2e3c4d501ed41af57d62d1989782","text":"return TriggerAction.CLOSE_PICKER; }, accept: async (keyMods, event) => this.openSymbol(provider, symbol, token, { keyMods, preserveFocus: event.inBackground }), accept: async (keyMods, event) => this.openSymbol(provider, symbol, token, { keyMods, preserveFocus: event.inBackground, forcePinned: event.inBackground }), }); } }"} {"_id":"q-en-vscode-4a624fa9f65df5ba4a09ec458029d4b25fcd45b65f0e78ed284c4667655f15ca","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', className: 'folded-background', minimap: foldedBackgroundMinimap, isWholeLine: true, firstLineDecorationClassName: ThemeIcon.asClassName(foldingManualCollapsedIcon) });"} {"_id":"q-en-vscode-4ab3e5b2e195d6438d2492f33269b254259755790adcc9cfacb2d9ef3d2f60dd","text":"]; return toDisposable(() => { blurDisposable.dispose(); done(false, false); if (isFinishableDisposeEvent) { done(false); } else { dispose(toDispose); } }); }"} {"_id":"q-en-vscode-4ace513ceb2b3d91fea275089403e7e0bbf3c2666575b47c2f9567f5d16435bf","text":"command: 'git.publish', title: l10n.t({ message: '{0} Publish Branch', args: [icon], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }), tooltip: this.state.isSyncInProgress ? l10n.t({ message: 'Publishing Branch...', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publish Branch', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }), (this.state.HEAD?.name ? l10n.t({ message: 'Publishing Branch '{0}'...', args: [this.state.HEAD.name], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publishing Branch...', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] })) : (this.repository.HEAD?.name ? l10n.t({ message: 'Publish Branch '{0}'', args: [this.state.HEAD?.name], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publish Branch', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] })), arguments: [this.repository.sourceControl], }, enabled: !this.state.isSyncInProgress"} {"_id":"q-en-vscode-4af8ca2e3c04638c166478022734e7ac55e1fea287c03914d5e180ac115de098","text":"} public asUrl(filepath: string): Uri { if (filepath.startsWith(TypeScriptServiceClient.WALK_THROUGH_SNIPPET_SCHEME_COLON)) { if (filepath.startsWith(TypeScriptServiceClient.WALK_THROUGH_SNIPPET_SCHEME_COLON) || (filepath.startsWith('untitled:') && this._apiVersion.has213Features()) ) { return Uri.parse(filepath); } return Uri.file(filepath);"} {"_id":"q-en-vscode-4af8d33b88e2dbbbaf868e1296821c05a55f4bff69ce49e00f7de7afc3ed2ed0","text":"// Actions const registry = Registry.as(ActionExtensions.WorkbenchActions); // Show Search and Find in Files are redundant, but we can't break keybindings by removing one. So it's the same action, same keybinding, registered to different IDs. // Show Search 'when' is redundant but if the two conflict with exactly the same keybinding and 'when' clause, then they can show up as \"unbound\" - #51780 registry.registerWorkbenchAction(SyncActionDescriptor.from(OpenSearchViewletAction), 'View: Show Search', CATEGORIES.View.value); // View: Show Search is used for the keybindings in the View menu and the sidebar #115556, but it should only be enabbled when search.mode == view, or else it will steal priority over opening a search editor #115511 const SEARCH_MODE_CONFIG = 'search.mode'; registry.registerWorkbenchAction( SyncActionDescriptor.from( OpenSearchViewletAction, { primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_F }, ContextKeyAndExpr.create([Constants.SearchViewVisibleKey.toNegated(), ContextKeyEqualsExpr.create(`config.${SEARCH_MODE_CONFIG}`, 'view')])), 'View: Show Search', CATEGORIES.View.value); // Find in Files by default is the same as View: Show Search, but can be configured to open a search editor instead with the `search.mode` binding KeybindingsRegistry.registerCommandAndKeybindingRule({ description: { description: nls.localize('findInFiles.description', \"Open the search viewlet\"),"} {"_id":"q-en-vscode-4b578dfd0aa2199293fa538c97e8c8a8d195c6fe146c4740d555d19b3840f686","text":"currentLineIsEmptyOrWhitespace = strings.lastNonWhitespaceIndex(currentLine) === -1; } const deletionRange = new Range(currentLineNumber + 1, 1, lineCount + 1, 1); const deletionRange = model.validateRange(new Range(currentLineNumber + 1, 1, lineCount + 1, 1)); if (!deletionRange.isEmpty()) { model.pushEditOperations(prevSelection, [EditOperation.delete(deletionRange)], edits => prevSelection); }"} {"_id":"q-en-vscode-4b59baeb71e5428153fed2c9d3b245978e72b989e4f42afe12d47405e0112a72","text":"shellLaunchConfig.args = windowsShellArgs ? combinedShellArgs.join(' ') : combinedShellArgs; if (task.command.presentation && task.command.presentation.echo) { if (needsFolderQualification && workspaceFolder) { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executingInFolder', comment: ['The workspace folder the task is running in', 'The task command line or label'] }, 'Executing task in folder {0}: {1}', workspaceFolder.name, commandLine), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task in folder {0}: {1}', workspaceFolder.name, commandLine), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executing', comment: ['The task command line or label'] }, 'Executing task: {0}', commandLine), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task: {0}', commandLine), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + taskShellIntegrationOutputSequence; shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + this.taskShellIntegrationOutputSequence; } } else { const commandExecutable = (task.command.runtime !== RuntimeType.CustomExecution) ? CommandString.value(command) : undefined;"} {"_id":"q-en-vscode-4b720ea1ad4ec3b2d3efd052b06deb17fda97a2b2b4d2d4822cb1b15d17ceb40","text":"return normalizeLink(vscode.Uri.parse(link).with({ scheme: vscode.env.uriScheme }).toString()); } // Support file:// links if (isOfScheme(Schemes.file, link)) { // Ensure link is relative by prepending `/` so that it uses the element URI // when resolving the absolute URL return normalizeLink('/' + link.replace(/^file:/, 'file')); } // If original link doesn't look like a url with a scheme, assume it must be a link to a file in workspace if (!/^[a-z-]+:/i.test(link)) { // Use a fake scheme for parsing"} {"_id":"q-en-vscode-4be6a27c49f43d79b19bb769b36f4e514ca0f932d6af509ebb51b83a71198008","text":"?? element.separator?.id ?? element.separator?.label ?? ''; } }, }, alwaysConsumeMouseWheel: true }"} {"_id":"q-en-vscode-4c2a89c6ce667437c3f40cb1386a436f53a12a3ee02c19f6f493a577ee152cfc","text":"}), true); }); test('isUriComponents', function () { assert.ok(isUriComponents(URI.file('a'))); assert.ok(isUriComponents(URI.file('a').toJSON())); assert.ok(isUriComponents(URI.file(''))); assert.ok(isUriComponents(URI.file('').toJSON())); assert.strictEqual(isUriComponents(1), false); assert.strictEqual(isUriComponents(true), false); assert.strictEqual(isUriComponents(\"true\"), false); assert.strictEqual(isUriComponents({}), false); assert.strictEqual(isUriComponents({ scheme: '' }), true); // valid components but INVALID uri assert.strictEqual(isUriComponents({ scheme: 'fo' }), true); assert.strictEqual(isUriComponents({ scheme: 'fo', path: '/p' }), true); assert.strictEqual(isUriComponents({ path: '/p' }), false); }); test('from, from(strict), revive', function () { assert.throws(() => URI.from({ scheme: '' }, true)); assert.strictEqual(URI.from({ scheme: '' }).scheme, 'file'); assert.strictEqual(URI.revive({ scheme: '' }).scheme, ''); }); test('Unable to open '%A0.txt': URI malformed #76506, part 2', function () { assert.strictEqual(URI.parse('file://some/%.txt').toString(), 'file://some/%25.txt'); assert.strictEqual(URI.parse('file://some/%A0.txt').toString(), 'file://some/%25A0.txt');"} {"_id":"q-en-vscode-4c3a3e735f9af684cb95b163555eb557d057c4f953074d61603697af1d260407","text":"} getFileBasedRecommendations(): IExtensionRecommendation[] { return Object.keys(this._fileBasedRecommendations) .sort((a, b) => { if (this._fileBasedRecommendations[a].recommendedTime === this._fileBasedRecommendations[b].recommendedTime) { if (!product.extensionImportantTips || caseInsensitiveGet(product.extensionImportantTips, a)) { return -1; } if (caseInsensitiveGet(product.extensionImportantTips, b)) { return 1; } return [...this.getRestoredRecommendationsByReason(ExtensionRecommendationReason.File), ...Object.keys(this._fileBasedRecommendations).sort((a, b) => { if (this._fileBasedRecommendations[a].recommendedTime === this._fileBasedRecommendations[b].recommendedTime) { if (!product.extensionImportantTips || caseInsensitiveGet(product.extensionImportantTips, a)) { return -1; } return this._fileBasedRecommendations[a].recommendedTime > this._fileBasedRecommendations[b].recommendedTime ? -1 : 1; }).map(extensionId => ({ extensionId, sources: this._fileBasedRecommendations[extensionId].sources })); if (caseInsensitiveGet(product.extensionImportantTips, b)) { return 1; } } return this._fileBasedRecommendations[a].recommendedTime > this._fileBasedRecommendations[b].recommendedTime ? -1 : 1; })] .map(extensionId => ({ extensionId, sources: this._fileBasedRecommendations[extensionId] ? this._fileBasedRecommendations[extensionId].sources : this._sessionRestoredRecommendations[extensionId.toLowerCase()] ? this._sessionRestoredRecommendations[extensionId.toLowerCase()].sources : [] })); } getOtherRecommendations(): TPromise {"} {"_id":"q-en-vscode-4d4239e220b48891959f317ee536440344eb16ad0f2502cc57d5402a0795e75a","text":"run: () => { sendTelemetry('accept'); this.telemetryService.getTelemetryInfo().then(info => { this.openerService.open(URI.parse(`${this.productService.cesSurveyUrl}?o=${encodeURIComponent(platform)}&v=${encodeURIComponent(this.productService.version)}&m=${encodeURIComponent(info.machineId)}`)); let surveyUrl = `${this.productService.cesSurveyUrl}?o=${encodeURIComponent(platform)}&v=${encodeURIComponent(this.productService.version)}&m=${encodeURIComponent(info.machineId)}`; const usedParams = this.productService.surveys ?.filter(surveyData => surveyData.surveyId && surveyData.languageId) // Counts provided by contrib/surveys/browser/languageSurveys .filter(surveyData => this.storageService.getNumber(`${surveyData.surveyId}.editedCount`, StorageScope.GLOBAL, 0) > 0) .map(surveyData => `${encodeURIComponent(surveyData.languageId)}Lang=1`) .join('&'); if (usedParams) { surveyUrl += `&${usedParams}`; } this.openerService.open(URI.parse(surveyUrl)); this.skipSurvey(); }); }"} {"_id":"q-en-vscode-4d4992e0f15065378b4534df246bcf2507d89d98e1ddaebc2cbcb385d0055ae7","text":"original: 'Terminal', mnemonicTitle: localize({ key: 'mTerminal', comment: ['&& denotes a mnemonic'] }, \"&&Terminal\") }, order: 7, when: ContextKeyExpr.has('terminalProcessSupported') order: 7 }); MenuRegistry.appendMenuItem(MenuId.MenubarMainMenu, {"} {"_id":"q-en-vscode-4d7d820c3a46513784ce493877db4a30345a4457e6d60e3817b7e1b6223b84d2","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 'use strict'; // import * as assert from 'assert'; import { fuzzyContiguousFilter, matchesFuzzy2, matchesFuzzy3, matchesFuzzy4, matchesFuzzy5, fuzzyMatchAndScore } from 'vs/base/common/filters'; const data = <{ label: string }[]>require.__$__nodeRequire(require.toUrl('./filters.perf.data.json')); const patterns = ['cci', 'ida', 'pos', 'CCI', 'enbled', 'callback', 'gGame']; const _enablePerf = true; function perfSuite(name: string, callback: (this: Mocha.ISuiteCallbackContext) => void) { if (_enablePerf) { suite(name, callback); } } perfSuite('Performance - fuzzyMatch', function () { console.log(`Matching ${data.length} items against ${patterns.length} patterns...`); function perfTest(name: string, match: (pattern: string, word: string) => any) { test(name, function () { const t1 = Date.now(); let count = 0; for (const pattern of patterns) { for (const item of data) { if (item.label) { count += 1; match(pattern, item.label); } } } console.log(name, Date.now() - t1, `${(count / (Date.now() - t1)).toPrecision(6)}/ms`); }); } perfTest('fuzzyContiguousFilter', fuzzyContiguousFilter); perfTest('matchesFuzzy2', matchesFuzzy2); perfTest('matchesFuzzy3', matchesFuzzy3); perfTest('matchesFuzzy4', matchesFuzzy4); perfTest('matchesFuzzy5', matchesFuzzy5); perfTest('fuzzyMatchAndScore', fuzzyMatchAndScore); }); "} {"_id":"q-en-vscode-4d883b4251991e87dc1feca91c66810214ea0639aa2859cce4035bcc86431d7f","text":"{ \"name\": \"code-oss-dev\", \"version\": \"1.84.0\", \"distro\": \"7df09ac7212a2c85067c0e2ef8c1ec89686483d2\", \"distro\": \"7c11ebfa20a4556137f851c95af40923aae11a3d\", \"author\": { \"name\": \"Microsoft Corporation\" },"} {"_id":"q-en-vscode-4db52cf06f0a12cc6a9399bc63ad742e12c8a8c259b3c5d90ed0e102a7d6ee41","text":"} updateCommentThread(commentThread: languages.CommentThread) { if (this._commentThread !== commentThread) { dispose(this._commentThreadDisposables); } this._commentThread = commentThread; dispose(this._commentThreadDisposables); this._commentThreadDisposables = []; this._bindCommentThreadListeners();"} {"_id":"q-en-vscode-4dd99f4ef35b6678a3da3ed2a39ac668180726136a503a6107232a60f2e5038e","text":"\"editorGutter.addedBackground\": \"#2ea043\", \"editorGutter.deletedBackground\": \"#f85149\", \"editorGutter.modifiedBackground\": \"#0078d4\", \"editorInlayHint.background\": \"#8b949e33\", \"editorInlayHint.foreground\": \"#8b949e\", \"editorInlayHint.typeBackground\": \"#8b949e33\", \"editorInlayHint.typeForeground\": \"#8b949e\", \"editorInlayHint.background\": \"#8b949e1b\", \"editorInlayHint.typeBackground\": \"#8b949e1b\", \"editorLineNumber.activeForeground\": \"#cccccc\", \"editorLineNumber.foreground\": \"#6e7681\", \"editorOverviewRuler.border\": \"#010409\","} {"_id":"q-en-vscode-4dfc68e92556453ba1c9b993c55d5aca7f5a7ade501dd48bb5f2e8a8b2f48a82","text":"*--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { Emitter } from 'vs/base/common/event'; import { Emitter, Event } from 'vs/base/common/event'; import { DisposableStore } from 'vs/base/common/lifecycle'; import { ResourceMap } from 'vs/base/common/map'; import { waitForState } from 'vs/base/common/observable';"} {"_id":"q-en-vscode-4e08d91f25efcb90f0e13714cc2b2048901de0df0bfaec7597a25dfe4db1f8ee","text":"commandsToSkipShell: string[]; cwd: string; confirmOnExit: boolean; env: { linux: { [key: string]: string }; osx: { [key: string]: string }; windows: { [key: string]: string }; }; } export interface ITerminalConfigHelper {"} {"_id":"q-en-vscode-4e1461199e95145a6568e9923be339bdf85d93fde5f5f35f527380a8550ecf1a","text":"__vsc_prompt_cmd_original() { __vsc_status=\"$?\" builtin local cmd __vsc_restore_exit_code \"${__vsc_status}\" # Evaluate the original PROMPT_COMMAND similarly to how bash would normally # See https://unix.stackexchange.com/a/672843 for technique builtin local cmd for cmd in \"${__vsc_original_prompt_command[@]}\"; do eval \"${cmd:-}\" done"} {"_id":"q-en-vscode-4e1c03164a760d434c1921ba281f926dfda288aecee94b3b2332ca9ceb3e2640","text":"}); }); suite('image-caching', () => { suite.only('image-caching', () => { const input = '![](img.png) [](no-img.png) ![](http://example.org/img.png) ![](img.png) ![](./img2.png)'; test('Extracts all images', async () => { const engine = createNewMarkdownEngine(); assert.deepStrictEqual((await engine.render(input)), { html: '

' + '\"\" ' + ' ' + '\"\" ' + '\"\" ' + '\"\"' + '

n' , containingImages: [{ src: 'img.png' }, { src: 'http://example.org/img.png' }, { src: 'img.png' }, { src: './img2.png' }], });
const result = await engine.render(input); assert.deepStrictEqual(result.html, '

' + '\"\" ' + ' ' + '\"\" ' + '\"\" ' + '\"\"' + '

n' ); assert.deepStrictEqual([...result.containingImages], ['img.png', 'http://example.org/img.png', './img2.png']);
}); }); });"} {"_id":"q-en-vscode-4e2c9756286e3e2cc9762112d21c7d8eb1c64215bbea50e077a568c7cb554434","text":"if (configuration.enableTsServerTracing && !isWeb()) { tsServerTraceDirectory = this._logDirectoryProvider.getNewLogDirectory(); if (tsServerTraceDirectory) { args.push('--traceDirectory', tsServerTraceDirectory.path); args.push('--traceDirectory', tsServerTraceDirectory.fsPath); } }"} {"_id":"q-en-vscode-4e831af304cec9e55f747ee6dd69d646745b2fbdb96e8640a064bff962dd9313","text":"if (platform === 'win32' && await exists(path.join(rootPath!, 'node_modules', '.bin', 'gulp.cmd'))) { const globalGulp = path.join(process.env.APPDATA ? process.env.APPDATA : '', 'npm', 'gulp.cmd'); if (await exists(globalGulp)) { gulpCommand = globalGulp; gulpCommand = '\"' + globalGulp + '\"'; } else { gulpCommand = path.join('.', 'node_modules', '.bin', 'gulp.cmd'); }"} {"_id":"q-en-vscode-4e867f2b5cbe0ab1d898e9d17a1b5893d759c404beb5b2a3a99060266a8ae975","text":"this.loadedScriptsItemType = CONTEXT_LOADED_SCRIPTS_ITEM_TYPE.bindTo(contextKeyService); } @memoize private get treeRefreshScheduler(): RunOnceScheduler { return new RunOnceScheduler(() => { if (this.tree) { this.tree.refresh(undefined, this.shouldRefreshRecursive); this.shouldRefreshRecursive = false; } }, 300); } protected renderBody(container: HTMLElement): void { dom.addClass(container, 'debug-loaded-scripts');"} {"_id":"q-en-vscode-4eab29f11eb89759d2c3b7e67b89ee9eaf1759d0c8fff70773b9860b148c25d7","text":"import { ViewContainerLocation } from 'vs/workbench/common/views'; import { OPEN_TO_SIDE_COMMAND_ID, COMPARE_WITH_SAVED_COMMAND_ID, SELECT_FOR_COMPARE_COMMAND_ID, ResourceSelectedForCompareContext, COMPARE_SELECTED_COMMAND_ID, COMPARE_RESOURCE_COMMAND_ID, COPY_PATH_COMMAND_ID, COPY_RELATIVE_PATH_COMMAND_ID, REVEAL_IN_EXPLORER_COMMAND_ID, OPEN_WITH_EXPLORER_COMMAND_ID, SAVE_FILE_COMMAND_ID, SAVE_FILE_WITHOUT_FORMATTING_COMMAND_ID, SAVE_FILE_AS_COMMAND_ID, SAVE_ALL_COMMAND_ID, SAVE_ALL_IN_GROUP_COMMAND_ID, SAVE_FILES_COMMAND_ID, REVERT_FILE_COMMAND_ID, REMOVE_ROOT_FOLDER_COMMAND_ID, PREVIOUS_COMPRESSED_FOLDER, NEXT_COMPRESSED_FOLDER, FIRST_COMPRESSED_FOLDER, LAST_COMPRESSED_FOLDER, NEW_UNTITLED_FILE_COMMAND_ID, NEW_UNTITLED_FILE_LABEL, NEW_FILE_COMMAND_ID } from './fileConstants'; import { IFileDialogService } from 'vs/platform/dialogs/common/dialogs'; import { RemoveRootFolderAction } from 'vs/workbench/browser/actions/workspaceActions'; export const openWindowCommand = (accessor: ServicesAccessor, toOpen: IWindowOpenable[], options?: IOpenWindowOptions) => { if (Array.isArray(toOpen)) {"} {"_id":"q-en-vscode-4eb3247b4cc88116f3a2aa6a7f7d1415b8ab46c75aeeed645aa6a213d1afa9ce","text":"const debugCategory = nls.localize('debugCategory', \"Debug\"); const startDebugDescriptor = new SyncActionDescriptor(StartAction, StartAction.ID, StartAction.LABEL, { primary: KeyCode.F5 }, CONTEXT_IN_DEBUG_MODE.toNegated()); function startDebugHandler(accessor, args): Promise { const notificationService = accessor.get(INotificationService); const instantiationService = accessor.get(IInstantiationService); const lifecycleService = accessor.get(ILifecycleService); return Promise.resolve(lifecycleService.when(LifecyclePhase.Ready).then(() => { const actionInstance = instantiationService.createInstance(startDebugDescriptor.syncDescriptor); try { // don't run the action when not enabled if (!actionInstance.enabled) { actionInstance.dispose(); return void 0; } const from = args && args.from || 'keybinding'; if (args) { delete args.from; } return Promise.resolve(actionInstance.run(args, { from })).then(() => { actionInstance.dispose(); }, err => { actionInstance.dispose(); return Promise.reject(err); }); } catch (err) { actionInstance.dispose(); return Promise.reject(err); } })).then(void 0, err => notificationService.error(err)); } KeybindingsRegistry.registerCommandAndKeybindingRule({ id: StartAction.ID, weight: KeybindingWeight.WorkbenchContrib, when: CONTEXT_IN_DEBUG_MODE.toNegated(), primary: KeyCode.F5, handler: startDebugHandler }); MenuRegistry.addCommand({ id: StartAction.ID, title: StartAction.LABEL, category: debugCategory }); registry.registerWorkbenchAction(new SyncActionDescriptor(StartAction, StartAction.ID, StartAction.LABEL, { primary: KeyCode.F5 }), 'Debug: Start Debugging', debugCategory); registry.registerWorkbenchAction(new SyncActionDescriptor(StepOverAction, StepOverAction.ID, StepOverAction.LABEL, { primary: KeyCode.F10 }, CONTEXT_IN_DEBUG_MODE), 'Debug: Step Over', debugCategory); registry.registerWorkbenchAction(new SyncActionDescriptor(StepIntoAction, StepIntoAction.ID, StepIntoAction.LABEL, { primary: KeyCode.F11 }, CONTEXT_IN_DEBUG_MODE, KeybindingWeight.WorkbenchContrib + 1), 'Debug: Step Into', debugCategory); registry.registerWorkbenchAction(new SyncActionDescriptor(StepOutAction, StepOutAction.ID, StepOutAction.LABEL, { primary: KeyMod.Shift | KeyCode.F11 }, CONTEXT_IN_DEBUG_MODE), 'Debug: Step Out', debugCategory);"} {"_id":"q-en-vscode-4f3404ec83c19099864d02d8cedddc9c5a6f942b3b9d27cd04eb83a59293dfe7","text":"} }); // Hide when the window loses focus this._register(dom.addDisposableListener(window, 'blur', () => this.dispose())); const rowElement = $('div.hover-row.markdown-hover'); const contentsElement = $('div.hover-contents'); if (typeof options.content === 'string') {"} {"_id":"q-en-vscode-4fb553cc5c40929ec9dba22b4368a0683bbcb9fe10208de1b91606ed324db2ec","text":"} } return cb(undefined); }); }, false); this._standardLinkProviders.push(validatedProvider); }"} {"_id":"q-en-vscode-4fdf3af9101e7c11a63725a3f1b6afba8b40a4de48d3c8494d7c1d69fc3bfba0","text":": this.tokenizeDocument(input, config, engine); const env: RenderEnv = { containingImages: [], containingImages: new Set(), currentDocument: typeof input === 'string' ? undefined : input.uri, resourceProvider, };"} {"_id":"q-en-vscode-5062a3dc8d22f761657450fbed3a6f5f9b5349b8c3c745e6156407cd1e4c3755","text":"} } // Accessibility navigation commands should only be enabled on windows since they are tuned to what NVDA expects export class CursorWordAccessibilityLeft extends WordLeftCommand { constructor() { super({ inSelectionMode: false, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityLeft', precondition: undefined }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordAccessibilityLeftSelect extends WordLeftCommand { constructor() { super({ inSelectionMode: true, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityLeftSelect', precondition: undefined }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordStartRight extends WordRightCommand { constructor() { super({"} {"_id":"q-en-vscode-50a3154245ed84b3a31370c3cb5f2063789ea2ece56b9312d898e60630c4c9d9","text":"stepElement.classList.add('expanded'); stepElement.setAttribute('aria-expanded', 'true'); this.buildMediaComponent(id); this.buildMediaComponent(id, true); this.gettingStartedService.progressByEvent('stepSelected:' + id); } else { this.editorInput.selectedStep = undefined;"} {"_id":"q-en-vscode-50d79d7206b9adcca12cc1e282c4498cbde7accef2c3df9f152653326ba0d2b0","text":"this.onActiveTabChanged(() => isRemote ? this._updateRemoteState() : this._updateLocalState()); this.onActiveInstanceChanged(() => isRemote ? this._updateRemoteState() : this._updateLocalState()); this.onInstancesChanged(() => isRemote ? this._updateRemoteState() : this._updateLocalState()); // The state must be updated when the terminal is relaunched, otherwise the persistent // terminal ID will be stale and the process will be leaked. this.onInstanceProcessIdReady(() => isRemote ? this._updateRemoteState() : this._updateLocalState()); } public setNativeWindowsDelegate(delegate: ITerminalNativeWindowsDelegate): void {"} {"_id":"q-en-vscode-511bcc6b68edc419b9414d64b1b51aa452c7841600d62787144264cbe1daac31","text":"* Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Queue } from 'vs/base/common/async'; import { IStringDictionary } from 'vs/base/common/collections'; import { Schemas } from 'vs/base/common/network'; import { IProcessEnvironment } from 'vs/base/common/platform'; import * as Types from 'vs/base/common/types'; import { URI as uri } from 'vs/base/common/uri'; import { ICodeEditor, isCodeEditor, isDiffEditor } from 'vs/editor/browser/editorBrowser'; import * as nls from 'vs/nls'; import * as Types from 'vs/base/common/types'; import { Schemas } from 'vs/base/common/network'; import { SideBySideEditor, EditorResourceAccessor } from 'vs/workbench/common/editor'; import { IStringDictionary } from 'vs/base/common/collections'; import { IConfigurationService, IConfigurationOverrides, ConfigurationTarget } from 'vs/platform/configuration/common/configuration'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { IWorkspaceFolder, IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; import { AbstractVariableResolverService } from 'vs/workbench/services/configurationResolver/common/variableResolver'; import { ICodeEditor, isCodeEditor, isDiffEditor } from 'vs/editor/browser/editorBrowser'; import { IQuickInputService, IInputOptions, IQuickPickItem, IPickOptions } from 'vs/platform/quickinput/common/quickInput'; import { ConfiguredInput } from 'vs/workbench/services/configurationResolver/common/configurationResolver'; import { IProcessEnvironment } from 'vs/base/common/platform'; import { ConfigurationTarget, IConfigurationOverrides, IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ILabelService } from 'vs/platform/label/common/label'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; import { IInputOptions, IPickOptions, IQuickInputService, IQuickPickItem } from 'vs/platform/quickinput/common/quickInput'; import { IWorkspaceContextService, IWorkspaceFolder, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { EditorResourceAccessor, SideBySideEditor } from 'vs/workbench/common/editor'; import { ConfiguredInput } from 'vs/workbench/services/configurationResolver/common/configurationResolver'; import { AbstractVariableResolverService } from 'vs/workbench/services/configurationResolver/common/variableResolver'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; export abstract class BaseConfigurationResolverService extends AbstractVariableResolverService { static readonly INPUT_OR_COMMAND_VARIABLES_PATTERN = /${((input|command):(.*?))}/g; private userInputAccessQueue = new Queue(); constructor( context: { getAppRoot: () => string | undefined;"} {"_id":"q-en-vscode-5120a6290080ab906eea5cec8f37036f09ef4f982ebf53a6e8ab2c8bfa95ad73","text":"// noop } override setVisible(visible: boolean): void { this.viewVisibleContextKey.set(visible); super.setVisible(visible); } @memoize private get fileCopiedContextKey(): IContextKey { return FileCopiedContext.bindTo(this.contextKeyService); }"} {"_id":"q-en-vscode-5164236bcef76bbde71a25203a161d84668753fbebf426ed75f52303fb1593ca","text":"#!/bin/sh VSCODE_GIT_ASKPASS_PIPE=`mktemp` ELECTRON_RUN_AS_NODE=\"1\" VSCODE_GIT_ASKPASS_PIPE=\"$VSCODE_GIT_ASKPASS_PIPE\" \"$VSCODE_GIT_ASKPASS_NODE\" \"$VSCODE_GIT_ASKPASS_EXTRA_ARGS\" \"$VSCODE_GIT_ASKPASS_MAIN\" $* ELECTRON_RUN_AS_NODE=\"1\" VSCODE_GIT_ASKPASS_PIPE=\"$VSCODE_GIT_ASKPASS_PIPE\" \"$VSCODE_GIT_ASKPASS_NODE\" \"$VSCODE_GIT_ASKPASS_MAIN\" $VSCODE_GIT_ASKPASS_EXTRA_ARGS $* cat $VSCODE_GIT_ASKPASS_PIPE rm $VSCODE_GIT_ASKPASS_PIPE"} {"_id":"q-en-vscode-51849aa7d99804ac82560ba0deeb00f8cb4e2d07ce149664070739f35fd342fa","text":"cksOverlay.push(['galleryExtensionIsPreReleaseVersion', !!extension.gallery?.properties.isPreReleaseVersion]); cksOverlay.push(['extensionHasPreReleaseVersion', extension.hasPreReleaseVersion]); cksOverlay.push(['extensionHasReleaseVersion', extension.hasReleaseVersion]); cksOverlay.push(['isExtensionPinned', extension.pinned]); const [colorThemes, fileIconThemes, productIconThemes] = await Promise.all([workbenchThemeService.getColorThemes(), workbenchThemeService.getFileIconThemes(), workbenchThemeService.getProductIconThemes()]); cksOverlay.push(['extensionHasColorThemes', colorThemes.some(theme => isThemeFromExtension(theme, extension))]);"} {"_id":"q-en-vscode-519c8c6027137b912c95daf5402e8d8609438852c42f2deb87a2c819342283a1","text":"message += 'n'; } } const exitThisDialogHint = localize('exit', 'nnExit this dialog (Escape).'); const verbose = this._configurationService.getValue(provider.verbositySettingKey); const exitThisDialogHint = verbose && !provider.options.positionBottom ? localize('exit', 'nnExit this dialog (Escape).') : ''; this._currentContent = message + provider.provideContent() + readMoreLink + disableHelpHint + exitThisDialogHint; this._updateContextKeys(provider, true);"} {"_id":"q-en-vscode-51b205197af0458e1c369302ab06c118dd0546dba1f0c2197b942aa9cdfef9fe","text":"} else if (path.backupPath) { emptyWindowsWithBackupsToRestore.push({ backupFolder: basename(path.backupPath), remoteAuthority: path.remoteAuthority }); } else { emptyToOpen++; openOneEmptyWindow = true; } }"} {"_id":"q-en-vscode-51b5943a295f717fc146647443d26125cf87363198b0ec9082ddaaf39422af25","text":" `); const firstResponse = getMessage(webview); const ready = getMessage(webview); if ((await ready).userAgent.indexOf('Firefox') >= 0) { // Skip on firefox web for now. // Firefox service workers never seem to get any 'fetch' requests here. Other browsers work fine return; } const firstResponse = await sendRecieveMessage(webview, { src: imagePath.toString() }); assert.strictEqual((await firstResponse).value, true); assert.strictEqual(firstResponse.value, true); }); test('webviews should have real view column after they are created, #56097', async () => {"} {"_id":"q-en-vscode-51be41cf6ff58afb83518daf667e7da487d12849addc2bcbbff8477f72881051","text":"public goToFocused(): void { const lineNumbers = this._stickyScrollWidget.lineNumbers; this._disposeFocusStickyScrollStore(); this._editor.revealPosition({ lineNumber: lineNumbers[this._focusedStickyElementIndex], column: 1 }); this._revealPosition({ lineNumber: lineNumbers[this._focusedStickyElementIndex], column: 1 }); } private _revealPosition(position: IPosition): void { this._positionRevealed = true; this._editor.revealPosition(position); this._editor.setSelection(Range.fromPositions(position)); this._editor.focus(); } private _createClickLinkGesture(): IDisposable {"} {"_id":"q-en-vscode-51c2b10718dd72437379f95889e06eaedf98d9dd0278505bce271e0387114259","text":"} public async createExtensionTerminal(location?: TerminalLocation | vscode.TerminalEditorLocationOptions | vscode.TerminalSplitLocationOptions, parentTerminal?: ExtHostTerminalIdentifier, iconPath?: TerminalIcon, color?: ThemeColor): Promise { public async createExtensionTerminal(location?: TerminalLocation | vscode.TerminalEditorLocationOptions | vscode.TerminalSplitLocationOptions, internalOptions?: ITerminalInternalOptions, parentTerminal?: ExtHostTerminalIdentifier, iconPath?: TerminalIcon, color?: ThemeColor): Promise { if (typeof this._id !== 'string') { throw new Error('Terminal has already been created'); }"} {"_id":"q-en-vscode-521b32210990218ed1225d3d5de862a1a99704c9c0c5d0ca1d78863d109bbdff","text":"this.logService.trace(`Extension signature verification details for ${extension.identifier.id} ${extension.version}:n${sigError.output}`); } if (verificationStatus === ExtensionSignaturetErrorCode.PackageIsInvalidZip || verificationStatus === ExtensionSignaturetErrorCode.SignatureArchiveIsInvalidZip) { try { // Delete the downloaded vsix before throwing the error await this.delete(location); } catch (error) { this.logService.error(error); } throw new ExtensionManagementError(CorruptZipMessage, ExtensionManagementErrorCode.CorruptZip); } } finally {"} {"_id":"q-en-vscode-522cd98cc59388784b967b494d8b35a386d586d86595b359fc964146ab947261","text":"'type': 'string', 'enum': ['default', 'short', 'medium', 'long'], 'enumDescriptions': [ nls.localize('workbench.editor.labelFormat.default', \"Show the name of the file. When tabs are enabled and two files have the same name in one group the distinguinshing sections of each file's path are added. When tabs are disabled, the path relative to the workspace folder is shown if the editor is active.\"), nls.localize('workbench.editor.labelFormat.short', \"Show the name of the file followed by it's directory name.\"), nls.localize('workbench.editor.labelFormat.medium', \"Show the name of the file followed by it's path relative to the workspace folder.\"), nls.localize('workbench.editor.labelFormat.long', \"Show the name of the file followed by it's absolute path.\") nls.localize('workbench.editor.labelFormat.default', \"Show the name of the file. When tabs are enabled and two files have the same name in one group the distinguishing sections of each file's path are added. When tabs are disabled, the path relative to the workspace folder is shown if the editor is active.\"), nls.localize('workbench.editor.labelFormat.short', \"Show the name of the file followed by its directory name.\"), nls.localize('workbench.editor.labelFormat.medium', \"Show the name of the file followed by its path relative to the workspace folder.\"), nls.localize('workbench.editor.labelFormat.long', \"Show the name of the file followed by its absolute path.\") ], 'default': 'default', 'description': nls.localize({"} {"_id":"q-en-vscode-52331b0adbbdb63cc74db8f6febe8aff38315785b065dd078c1b5743113223a3","text":"fetch(remote?: string, ref?: string): Promise; pull(): Promise; push(head: Branch): Promise; pushTo(remote?: string, name?: string, setUpstream?: boolean): Promise; } export interface API {"} {"_id":"q-en-vscode-524b794351fffd8eac8fa59f454636821d314e668b6a810c3d3e702946001e8e","text":"_serviceBrand = undefined; private serverConfiguration = this.productService['editSessions.store']; private storeClient: UserDataSyncStoreClient | undefined; private storeClient: EditSessionsStoreClient | undefined; private machineClient: IUserDataSyncMachinesService | undefined; #authenticationInfo: { sessionId: string; token: string; providerId: string } | undefined; private static CACHED_SESSION_STORAGE_KEY = 'editSessionAccountPreference';"} {"_id":"q-en-vscode-52ab3116b33b60be1ca571e385d5a877c49973f4e174de21308056ef19d0a5c7","text":"}; } private getCharCountText(charCount: number): string { let remaining = FeedbackDropdown.MAX_FEEDBACK_CHARS - charCount; let text = (remaining == 1) ? nls.localize(\"character left\", \"character left\") : nls.localize(\"characters left\", \"characters left\"); return '(' + remaining + ' ' + text + ')'; } protected setSentiment(smile: boolean): void { if (smile) { this.smileyInput.addClass('checked');"} {"_id":"q-en-vscode-52c46fab6048c87170a45e355045f9bdd3083ba72f7e89abe2c5c872a9aced28","text":"private readonly _localStore = this._register(new DisposableStore()); private _cellStateListeners: IDisposable[] = []; private _logging: boolean = false; private _enabled: boolean = false; private _cellStatusItems: string[] = []; constructor(private readonly _notebookEditor: INotebookEditor) { super(); this._register(this._notebookEditor.onDidChangeModel(() => { this._localStore.clear(); this._cellStateListeners.forEach(listener => listener.dispose()); if (!this._notebookEditor.hasModel()) { return; } this._updateListener(); this._update(); })); this._updateListener(); this._update(); } toggleLogging(): void { this._logging = !this._logging; toggle(): void { this._enabled = !this._enabled; this._update(); } private _update() { this._localStore.clear(); this._cellStateListeners.forEach(listener => listener.dispose()); if (!this._notebookEditor.hasModel()) { return; } this._updateListener(); } private _log(cell: ICellViewModel, e: any) { if (this._logging) { if (this._enabled) { const oldHeight = (this._notebookEditor as NotebookEditorWidget).getViewHeight(cell); console.log(`cell#${cell.handle}`, e, `${oldHeight} -> ${cell.layoutInfo.totalHeight}`); }"} {"_id":"q-en-vscode-52cf3bc3338aaedf4de030a78dc1b7f65dff01bf2626d79499f7e3137ab4fe72","text":"resolved \"https://registry.yarnpkg.com/@vscode/windows-registry/-/windows-registry-1.1.0.tgz#03dace7c29c46f658588b9885b9580e453ad21f9\" integrity sha512-5AZzuWJpGscyiMOed0IuyEwt6iKmV5Us7zuwCDCFYMIq7tsvooO9BUiciywsvuthGz6UG4LSpeDeCxvgMVhnIw== \"@xterm/addon-canvas@0.6.0-beta.19\": version \"0.6.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.19.tgz#5f8896b884d2a558a28eb197f7f4766ac37d33a0\" integrity sha512-i+26DqYgI/PZViCiEK4Vu8c4Fi5J0i+TwnFfBDLcumHH07Al1uRd5BRaVg/i93vk6bRyEIOiOiIToXSf37ov/w== \"@xterm/addon-image@0.7.0-beta.17\": version \"0.7.0-beta.17\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.17.tgz#bc3d6f09619ef1f3b68c7009d29ee14003a26b30\" integrity sha512-nnHVoYVoh+CpT4FQN/ALKesr96YvdVNUzQRQo4aAARUKst5DFaHQX9Yn/qLDN5s0WCqI3bgIEo8UAakfHITumA== \"@xterm/addon-search@0.14.0-beta.19\": version \"0.14.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.19.tgz#2bc13378765f0d5e72d9bcb7887e23eee31de7eb\" integrity sha512-Y1pPdtdZj0xRQ/Is4jdO0dyZe+uM6AhWi3v2U4sdJmhz2mxVe/HAKBHkx6tyfMtX9ge/9ZYajd/Sy8rkjIFdmQ== \"@xterm/addon-serialize@0.12.0-beta.19\": version \"0.12.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.19.tgz#465a9525a420b8f0d12eed419d6e051f9a887814\" integrity sha512-3v6a4/4gxAwoyJsBp6vJBofymgTH8paSHl8K2uQfFuLosOavNyCtrNPiNne7tpppK6t8zCDJ/mVrXNptz4Mlsg== \"@xterm/addon-unicode11@0.7.0-beta.19\": version \"0.7.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.19.tgz#0e81775f84346a97c657fb4cd7702de1cfe4b83f\" integrity sha512-U5O+JLklO4qtptWAWUw14QRWdalLl0bFAQxLKuTtDmusgfn33pNDRD6RH3R+IHhO2e6svAwrw27OcCEcdn0AJQ== \"@xterm/addon-webgl@0.17.0-beta.19\": version \"0.17.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.19.tgz#fefe44c20b4d4d070363e03ae33087505a88807e\" integrity sha512-L59l9Cd4KTMCwnw2HPi/cUgH4iL5dK7VERK/wSTWEGYMOi3WGTmXqsg8ftfR2jFC9P33eqYNVJDmbr+pF0XsDg== \"@xterm/headless@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/headless/-/headless-5.4.0-beta.19.tgz#e84a7cebda581273032f82fc8c53941204bc7f93\" integrity sha512-y7Ne2G/Tgn6bHr14eBHqcq5gGFFCHKGBzmXTExT1Z4Fb6ofPACPWAo60S5B6uh49W4Ts13gQYZ5C0XEvHud0Eg== \"@xterm/xterm@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.19.tgz#5c9c5cacd0cf2a0719086ce03ab035480b1cfd96\" integrity sha512-Rx/Y/y3YGjpiW6IUq8UlE6qrTYuUlEfpVg/BS6kIPr8/cUOchE1fsKWCMxz/u2bIyQyEovRi892iYcQJ4scstw== \"@xterm/addon-canvas@0.6.0-beta.20\": version \"0.6.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.20.tgz#078dddef70caf880b2cb121fdda37d301fc13156\" integrity sha512-tHhsuqElE7LNiDJPbZzgVpmbcG2Dk6i2vh1EI+DzSByUWScDqLoeJbVPE5Xd2UW2garo24lxErpnIAlsytcA3A== \"@xterm/addon-image@0.7.0-beta.18\": version \"0.7.0-beta.18\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.18.tgz#588ea2d0841cff48c63bde1bfcdf56e9494dc6af\" integrity sha512-+HQ+IBmHPelzjRJ5zO3XkjbeQNr2Zrf5wAlbPhy4EGSD0mDCqHJSfzZ8wKrhx7t8qpfiA8eTpWu/M76WsEnlnA== \"@xterm/addon-search@0.14.0-beta.20\": version \"0.14.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.20.tgz#cac366b1be1eb02cf9fe9537933f26f227d030c8\" integrity sha512-1LOL/OzWSrCBpndiBeeE2S1rxtKKgU1ucYFSG3P68W0J4VQz/Ksci1BgDKsgspj9jzpsGhdql3zwa5WEM7n4Pg== \"@xterm/addon-serialize@0.12.0-beta.20\": version \"0.12.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.20.tgz#5fe126194ff4dc466b92a0946e081e039a14ad21\" integrity sha512-GdRCQDjLyVNBxCFnhfCWsMmuqv2PryUkOaNl4z5MqB5lBUkiEnRNY0u/s5f34+2zrijp3h0O/f9JDLW4gSUQgw== \"@xterm/addon-unicode11@0.7.0-beta.20\": version \"0.7.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.20.tgz#5d3c97320898dd6766f2dc127deb4f071c8698c2\" integrity sha512-4/uwJ6lV/xJplT7hJc7sO4Im4XNvEXHnUEFIs03FFp8ZUfu3U6wcBk6/GoKMwJKJtGVNxotiD6ZzJ5v8IBH6nA== \"@xterm/addon-webgl@0.17.0-beta.20\": version \"0.17.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.20.tgz#443845ac5ac755cf762b105ed237b30426b07137\" integrity sha512-iqvXNSTfKIcO9FBraNwdO/ixPrTHok8CBN/wjlnGLv0ZMc4zLAiKE8+PHyg9ZY38QJfS+4Ouo8KsuZwoOYfnNA== \"@xterm/headless@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/headless/-/headless-5.4.0-beta.20.tgz#af26d3d0e2cdd615ccfac4a8660181fee19898fd\" integrity sha512-H/as1d67J43/CB8xt1Yg/eJMbq1yopwG1bDBKdsf2ro8A1PmJFXNzaDB+wSgoH42fCusSpLJvXtUvDLtqfvBTg== \"@xterm/xterm@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.20.tgz#28bbbbc73eceb6ef3e1e095de195cf849d0cbfb6\" integrity sha512-nkY91qBy5pe1HlW9LOoLcyG6v4teEsliEtUVshAO42NrJDaPniSn28O5m5832UjZOdjLCY58QlcBkZUquODGrQ== agent-base@^7.0.1, agent-base@^7.0.2, agent-base@^7.1.0: version \"7.1.0\""} {"_id":"q-en-vscode-530c9852128fb0ea2eea7f0e644687c245406719e40512e7a319e630ddea0908","text":"element.hidden = element.item ? !element.item.alwaysShow : true; } // Ensure separators are filtered out first before deciding if we need to bring them back if (element.item) { element.separator = undefined; } else if (element.separator) { element.hidden = true; } // we can show the separator unless the list gets sorted by match if (!this.sortByLabel) { const previous = element.index && this.inputElements[element.index - 1];"} {"_id":"q-en-vscode-533bc79d5992d0c24706bd028eff8972f698939eaa1a363b879bfffce121c840","text":" [Desktop Entry] Name=@@NAME_LONG@@ - URL Handler Comment=Code Editing. Redefined. GenericName=Text Editor Exec=/usr/share/@@NAME@@/@@NAME@@ --open-url %U Icon=@@ICON@@ Type=Application NoDisplay=true StartupNotify=true StartupWMClass=@@NAME_SHORT@@ Categories=Utility;TextEditor;Development;IDE; MimeType=x-scheme-handler/vscode Keywords=vscode; "} {"_id":"q-en-vscode-536c5bcd8f549fe7d03be51dcc1e829aa0f3cbfc5fa077dea8ca82d4f2b1e498","text":"import { IAccessibilityService } from 'vs/platform/accessibility/common/accessibility'; import { CellEditState, IInsetRenderOutput, INotebookEditor, INotebookEditorContribution, INotebookEditorDelegate, RenderOutputType } from 'vs/workbench/contrib/notebook/browser/notebookBrowser'; import { registerNotebookContribution } from 'vs/workbench/contrib/notebook/browser/notebookEditorExtensions'; import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { CodeCellViewModel, outputDisplayLimit } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { CellKind } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { cellRangesToIndexes } from 'vs/workbench/contrib/notebook/common/notebookRange'; import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService';"} {"_id":"q-en-vscode-53b81803044285398e652ca4f56920b359ad310dd3fe413e203e049edbb41294","text":"\"tas-client-umd\": \"0.1.6\", \"vscode-oniguruma\": \"1.6.1\", \"vscode-textmate\": \"7.0.1\", \"xterm\": \"4.19.0-beta.60\", \"xterm-addon-search\": \"0.9.0-beta.39\", \"xterm\": \"4.19.0-beta.67\", \"xterm-addon-search\": \"0.9.0-beta.41\", \"xterm-addon-unicode11\": \"0.4.0-beta.3\", \"xterm-addon-webgl\": \"0.12.0-beta.41\" \"xterm-addon-webgl\": \"0.12.0-beta.43\" } }"} {"_id":"q-en-vscode-540a3fc4d6c70035827c0a30d7f5928724c636b275755e514b5303e1d6b2a420","text":" content=\"default-src 'none'; script-src 'sha256-RaCvj6SRgHm+2C3LKzSAamDwa3Bp4u4iQ1Y2Sm+97tE=' 'self'; frame-src 'self'; style-src 'unsafe-inline';\"> content=\"default-src 'none'; script-src 'sha256-f/XuzcTyXb1X6po1otWlqfEUBjHOsprrTOZknXfbS9I=' 'self'; frame-src 'self'; style-src 'unsafe-inline';\"> protected get _localLinkRegex(): RegExp { if (!this._processManager) { throw new Error('Process manager is required'); } const baseLocalLinkClause = this._processManager.os === OperatingSystem.Windows ? winLocalLinkClause : unixLocalLinkClause; // Append line and column number regex return new RegExp(`${baseLocalLinkClause}(${lineAndColumnClause})`); } protected _isLinkActivationModifierDown(event: MouseEvent): boolean { const editorConf = this._configurationService.getValue<{ multiCursorModifier: 'ctrlCmd' | 'alt' }>('editor'); if (editorConf.multiCursorModifier === 'ctrlCmd') {"} {"_id":"q-en-vscode-548ecb5574b22553f635988685ea886bb041acba7e5097dcbfa2d9c558e30d19","text":"scheme: 'file', path: '/path/test.file', fsPath: '/path/test.file'.replace(///g, isWindows ? '' : '/'), _sep: isWindows ? 1 : undefined, external: 'file:///path/test.file' }); });"} {"_id":"q-en-vscode-54bb622ea71926b8a4ff5abf4995ec68907b257b464e8cc3807f04dd320e4a9c","text":"} } export class CamelCaseAction extends AbstractCaseAction { public static wordBoundary = new BackwardsCompatibleRegExp('[_s-]', 'gm'); constructor() { super({ id: 'editor.action.transformToCamelcase', label: nls.localize('editor.transformToCamelcase', \"Transform to Camel Case\"), alias: 'Transform to Camel Case', precondition: EditorContextKeys.writable }); } protected _modifyText(text: string, wordSeparators: string): string { const wordBoundary = CamelCaseAction.wordBoundary.get(); if (!wordBoundary) { // cannot support this return text; } const words = text.split(wordBoundary); const firstWord = words.shift(); return firstWord + words.map((word: string) => word.substring(0, 1).toLocaleUpperCase() + word.substring(1)) .join(''); } } export class KebabCaseAction extends AbstractCaseAction { public static isSupported(): boolean {"} {"_id":"q-en-vscode-54d220284ce870b6d527148e27e1da52ea94f15e0b4433bd66ce228ec59d5d30","text":"*--------------------------------------------------------------------------------------------*/ import * as fs from 'fs'; import { l10n } from 'vscode'; import { IPCClient } from './ipc/ipcClient'; function fatal(err: any): void { console.error(l10n.t('Missing or invalid credentials.')); console.error('Missing or invalid credentials.'); console.error(err); process.exit(1); }"} {"_id":"q-en-vscode-54f907dd0b4f3da8ed6bef00e63c7ebecf6850ec6786d953cc6da3584aad261d","text":"url = url.trim().replace(/^gits+clones+/, ''); const config = workspace.getConfiguration('git'); let defaultCloneDirectory = config.get('defaultCloneDirectory') || os.homedir(); defaultCloneDirectory = defaultCloneDirectory.replace(/^~/, os.homedir()); const uris = await window.showOpenDialog({ canSelectFiles: false, canSelectFolders: true, canSelectMany: false, defaultUri: Uri.file(defaultCloneDirectory), openLabel: localize('selectFolder', \"Select Repository Location\") }); if (!parentPath) { const config = workspace.getConfiguration('git'); let defaultCloneDirectory = config.get('defaultCloneDirectory') || os.homedir(); defaultCloneDirectory = defaultCloneDirectory.replace(/^~/, os.homedir()); if (!uris || uris.length === 0) { /* __GDPR__ \"clone\" : { \"outcome\" : { \"classification\": \"SystemMetaData\", \"purpose\": \"FeatureInsight\" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'no_directory' }); return; } const uris = await window.showOpenDialog({ canSelectFiles: false, canSelectFolders: true, canSelectMany: false, defaultUri: Uri.file(defaultCloneDirectory), openLabel: localize('selectFolder', \"Select Repository Location\") }); const uri = uris[0]; const parentPath = uri.fsPath; if (!uris || uris.length === 0) { /* __GDPR__ \"clone\" : { \"outcome\" : { \"classification\": \"SystemMetaData\", \"purpose\": \"FeatureInsight\" } } */ this.telemetryReporter.sendTelemetryEvent('clone', { outcome: 'no_directory' }); return; } const uri = uris[0]; parentPath = uri.fsPath; } try { const opts = {"} {"_id":"q-en-vscode-54ff77381bd225a70796706e0a5afccf2a17604b938d358a8c097c46ca413759","text":"this.debugStartLanguageContext.set(lastSetLanguage); const setContextKey = () => { const editorControl = this.editorService.activeTextEditorControl; let editorControl = this.editorService.activeTextEditorControl; if (isDiffEditor(editorControl)) { editorControl = editorControl.getModifiedEditor(); } if (isCodeEditor(editorControl)) { const model = editorControl.getModel(); const language = model ? model.getLanguageId() : undefined;"} {"_id":"q-en-vscode-5578e02fdcf4d060056c80476e113a5932a2f23252654091716cd5b70db15d21","text":"this.registerContinueInLocalFolderAction(); this.registerShowEditSessionViewAction(); this.registered = true; } private registerShowEditSessionViewAction() { const that = this; this._register(registerAction2(class ShowEditSessionView extends Action2 { constructor() { super({ id: 'workbench.editSessions.actions.showEditSessions', title: { value: localize('show edit session', \"Show Edit Sessions\"), original: 'Show Edit Sessions' }, category: EDIT_SESSION_SYNC_CATEGORY, f1: true, precondition: EDIT_SESSIONS_SIGNED_IN }); } async run(accessor: ServicesAccessor) { that.shouldShowViewsContext.set(true); const viewsService = accessor.get(IViewsService); await viewsService.openViewContainer(EDIT_SESSIONS_CONTAINER_ID); } })); } private registerContinueEditSessionAction() { const that = this; this._register(registerAction2(class ContinueEditSessionAction extends Action2 {"} {"_id":"q-en-vscode-557cc95f4664fb0213a324342ca8b0d365a838965d8e876169175a250f8b15af","text":"* { language: 'typescript', scheme: 'file' } * * @example A language filter that applies to all package.json paths * { language: 'json', scheme: 'untitled', pattern: '**​/package.json' } * { language: 'json', pattern: '**​/package.json' } */ export interface DocumentFilter {"} {"_id":"q-en-vscode-557e8ce157e6ff2a46a371767c3c6fb5e0e90fea6681356d684eeec11a04ce7e","text":"if (cellDragEvent) { handler(cellDragEvent); } })); }, useCapture)); }; addCellDragListener(DOM.EventType.DRAG_OVER, event => { if (!this.currentDraggedCell) { return; } event.browserEvent.preventDefault(); event.browserEvent.stopImmediatePropagation(); this.onCellDragover(event); }); }, true); addCellDragListener(DOM.EventType.DROP, event => { if (!this.currentDraggedCell) { return; } event.browserEvent.preventDefault(); this.onCellDrop(event); });"} {"_id":"q-en-vscode-5586ae111419b2d87855f2457d64e06f1ecc2eed0e621c8db4e8b88cc6920da2","text":"private _busy = false; private _ignoreFocusOut = false; private _buttons: IQuickInputButton[] = []; private buttonsUpdated = false; private _toggles: IQuickInputToggle[] = []; private togglesUpdated = false; protected noValidationMessage = QuickInput.noPromptMessage; private _validationMessage: string | undefined; private _lastValidationMessage: string | undefined; private _severity: Severity = Severity.Ignore; private _lastSeverity: Severity | undefined; private buttonsUpdated = false; private readonly onDidTriggerButtonEmitter = this._register(new Emitter()); private readonly onDidHideEmitter = this._register(new Emitter()); private readonly onDisposeEmitter = this._register(new Emitter());"} {"_id":"q-en-vscode-55a6758616f7a38ffa4e4655c3150d04423507fcdc56d0dbba2e255347b1a9a1","text":"label: localize('neverAgain', \"Don't Show Again\"), isSecondary: true, run: () => { languagePackSuggestionIgnoreList.push(language); languagePackSuggestionIgnoreList.push(locale); this.storageService.store( LANGUAGEPACK_SUGGESTION_IGNORE_STORAGE_KEY, JSON.stringify(languagePackSuggestionIgnoreList),"} {"_id":"q-en-vscode-55c8891ca0df1256dd9906b6923e5c6d09b3e2907a76d8d50f152099c7730b06","text":"export function restoreRecentlyOpened(data: RecentlyOpenedStorageData | undefined, logService: ILogService): IRecentlyOpened { const result: IRecentlyOpened = { workspaces: [], files: [] }; if (data) { const restoreGracefully = function (entries: T[], func: (entry: T, index: number) => void) { const restoreGracefully = function (entries: T[], onEntry: (entry: T, index: number) => void) { for (let i = 0; i < entries.length; i++) { try { func(entries[i], i); onEntry(entries[i], i); } catch (e) { logService.warn(`Error restoring recent entry ${JSON.stringify(entries[i])}: ${e.toString()}. Skip entry.`); }"} {"_id":"q-en-vscode-55ce61af64f4d9cc2236f629eadeba204feb58303b0962f237b4f490c2a44e08","text":"} getAriaLabel(element: ListElement): string | null { return element.saneAriaLabel; return element.separator?.label ? `${element.saneAriaLabel}, ${element.separator.label}` : element.saneAriaLabel; } getWidgetRole() {"} {"_id":"q-en-vscode-55ec4b396e1ddf7062b5178f40033c87850f12f26cad8a73b01283310c62460f","text":" begin /** /**(?!/) captures 0"} {"_id":"q-en-vscode-560468c6110b62ba6013c16ebbed7bbbe12ddd5792b9eec11174fe7189878ea4","text":"const others = distinct([ ...Object.keys(this._exeBasedRecommendations), ...this._dynamicWorkspaceRecommendations, ...Object.keys(this._experimentalRecommendations)]); ...Object.keys(this._experimentalRecommendations), ]); shuffle(others); return others.map(extensionId => { const sources: ExtensionRecommendationSource[] = []; if (this._exeBasedRecommendations[extensionId]) { sources.push('executable'); } if (this._dynamicWorkspaceRecommendations[extensionId]) { sources.push('dynamic'); } return ({ extensionId, sources }); }); return [ ...this.getRestoredRecommendationsByReason(ExtensionRecommendationReason.Executable), ...this.getRestoredRecommendationsByReason(ExtensionRecommendationReason.DynamicWorkspace), ...this.getRestoredRecommendationsByReason(ExtensionRecommendationReason.Experimental), ...others] .map(extensionId => { const sources: ExtensionRecommendationSource[] = []; if (this._exeBasedRecommendations[extensionId]) { sources.push('executable'); } if (this._dynamicWorkspaceRecommendations[extensionId]) { sources.push('dynamic'); } if (this._sessionRestoredRecommendations[extensionId.toLowerCase()]) { sources.push(...this._sessionRestoredRecommendations[extensionId.toLowerCase()].sources); } return ({ extensionId, sources }); }); }); } private getRestoredRecommendationsByReason(reason: ExtensionRecommendationReason): string[] { return Object.keys(this._sessionRestoredRecommendations).filter(key => this._sessionRestoredRecommendations[key].reasonId === reason); } getKeymapRecommendations(): IExtensionRecommendation[] { return (product.keymapExtensionTips || []).map(extensionId => ({ extensionId, sources: ['application'] })); }"} {"_id":"q-en-vscode-5637530cdc7c185d9bd6f2f8244d23bb821ddfd9b41760e98ef54923587d58f5","text":"id: MenuId.NotebookCellTitle, when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE), group: CellOverflowToolbarGroups.Copy, order: 1, }, keybinding: platform.isNative ? undefined : { when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)),"} {"_id":"q-en-vscode-5653ec818925b6edfe1fca0ed71c58da648f9df9f0425b1f47083e47d386ceac","text":"import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { URI } from 'vs/base/common/uri'; import { Event } from 'vs/base/common/event'; import { IChatAgentService } from 'vs/workbench/contrib/chat/common/chatAgents'; type CellDiagnostic = { cellUri: URI;"} {"_id":"q-en-vscode-56895aaeced2f2c6829f981fba3acefb878944cfade1a5ef2e571b3212a88c0a","text":"location: ProgressLocation.Notification, title: progressStartEvent.body.title, cancellable: progressStartEvent.body.cancellable, priority: NotificationPriority.SILENT, source, delay: 500 }, progressStep => {"} {"_id":"q-en-vscode-56ae9bdfe349f9092fcd78d72f1a342e087a8d33fe05b764a7e9ec9f3c5d7ce5","text":"import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; import { TextEditorOptions, EditorModel, EditorInput, EditorOptions } from 'vs/workbench/common/editor'; import { ResourceEditorInput } from 'vs/workbench/common/editor/resourceEditorInput'; import { BaseTextEditorModel } from 'vs/workbench/common/editor/textEditorModel'; import { UntitledEditorInput } from 'vs/workbench/common/editor/untitledEditorInput'; import { BaseTextEditor } from 'vs/workbench/browser/parts/editor/textEditor';"} {"_id":"q-en-vscode-56b341300fd9007eac53285be99faf7aa2f0892ac089a49aa78c7bb1487c3afa","text":"const editorOptions = this._configurationService.getValue('editor'); const xterm = new Terminal({ altClickMovesCursor: config.altClickMovesCursor, scrollback: config.scrollback, theme: this._getXtermTheme(), drawBoldTextInBrightColors: config.drawBoldTextInBrightColors,"} {"_id":"q-en-vscode-5739a9bdebc947ea3bb974f32ae425e2afa60667f64a24676d75732379067c0c","text":"args.push('--ignore-submodules'); } if (opts?.similarityThreshold) { // --find-renames option is only available starting with git 2.18.0 if (opts?.similarityThreshold && this._git.compareGitVersionTo('2.18.0') !== -1) { args.push(`--find-renames=${opts.similarityThreshold}%`); }"} {"_id":"q-en-vscode-573cfa2a6f3d6493bc53c36d63838567f79851c7bdf65cf7a2f779583c4d2da9","text":" 2019-08-30T20:24:23.714Z 2020-10-05T20:24:23.714Z "} {"_id":"q-en-vscode-574aa9aa321a05884c4d948d92a337d9d6651417897ed340d2c6de922e1e851f","text":"type: 'boolean', default: true, description: nls.localize('comments.visible', \"Controls the visibility of the comments bar and comment threads in editors that have commenting ranges and comments. Comments are still accessible via the Comments view and will cause commenting to be toggled on in the same way running the command \"Comments: Toggle Editor Commenting\" toggles comments.\") }, 'comments.maxHeight': { type: 'boolean', default: true, description: nls.localize('comments.maxHeight', \"Controls whether the comments widget scrolls or expands.\") } } });"} {"_id":"q-en-vscode-575b5674dbaf1cf78884100306c6b088258f962c3b35efa31e3a23399a389319","text":"import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences'; import { ILogService } from 'vs/platform/log/common/log'; import { IChatService } from 'vs/workbench/contrib/chat/common/chatService'; import { CONTEXT_IN_CHAT_INPUT } from 'vs/workbench/contrib/chat/common/chatContextKeys'; CommandsRegistry.registerCommandAlias('interactiveEditor.start', 'inlineChat.start'); CommandsRegistry.registerCommandAlias('interactive.acceptChanges', ACTION_ACCEPT_CHANGES);"} {"_id":"q-en-vscode-5784822718d67f8d3e15b39b7362daa2288fb905b43cb07fd8535d229b3c7445","text":"private _lastAcceptedCompletionTimestamp: number = 0; private _lastUserData?: string; isPasting: boolean = false; static requestCompletionsSequence = 'x1b[24~e'; // F12,e static requestGlobalCompletionsSequence = 'x1b[24~f'; // F12,f static requestEnableGitCompletionsSequence = 'x1b[24~g'; // F12,g"} {"_id":"q-en-vscode-57a1be4e899eb2e70091ae711b27281a381569df79f19c1a0b75a00aa763fed5","text":"\"keybindingLabel.foreground\": \"#000000e4\", \"list.activeSelectionBackground\": \"#e8e8e8\", \"list.activeSelectionForeground\": \"#000000\", \"list.activeSelectionIconForeground\": \"#000000\", \"list.hoverBackground\": \"#f2f2f2\", \"menu.border\": \"#D4D4D4\", \"notebook.cellBorderColor\": \"#E8E8E8\","} {"_id":"q-en-vscode-57b8c1627ef25b315a65fb5d42169c7888765319f0cc14e6fa09d668e93c186a","text":"if (selections) { const ranges: ILineRange[] = []; for (const selection of selections) { let endLineNumber = selection.endLineNumber; if (selection.endColumn === 1) { --endLineNumber; } const startLineNumber = selection.startLineNumber; ranges.push(endLineNumber >= selection.startLineNumber ? { startLineNumber, endLineNumber } : { endLineNumber, startLineNumber }); const { startLineNumber, endLineNumber } = selection; ranges.push(endLineNumber >= startLineNumber ? { startLineNumber, endLineNumber } : { endLineNumber, startLineNumber }); } foldingModel.removeManualRanges(ranges); foldingController.triggerFoldingModelChanged();"} {"_id":"q-en-vscode-57c5b06612415b1a88491dca54024abbe2dc706f0f2aced2951875443ae37783","text":"const historyItemGroupHoverLabelForegroundColor = colorTheme.getColor(historyItemGroupHoverLabelForeground); markdown.appendMarkdown(`nn---nn`); markdown.appendMarkdown(historyItem.labels.map(label => { markdown.appendMarkdown(historyItemLabels.map(label => { const historyItemGroupHoverLabelBackgroundColor = label.title === currentHistoryItemGroup?.name ? historyItemGroupLocalColor : label.title === currentHistoryItemGroup?.remote?.name ? historyItemGroupRemoteColor :"} {"_id":"q-en-vscode-57d98a821ed4019c8e52a74dba09d4730efd6ae3235a87a05b17c3a6fea6b0ba","text":"$openTunnel(tunnelOptions: TunnelOptions, source: string | undefined): Promise; $closeTunnel(remote: { host: string; port: number }): Promise; $getTunnels(): Promise; $setTunnelProvider(features?: TunnelProviderFeatures): Promise; $setTunnelProvider(features: TunnelProviderFeatures | undefined, enablePortsView: boolean): Promise; $setRemoteTunnelService(processId: number): Promise; $setCandidateFilter(): Promise; $onFoundNewCandidates(candidates: CandidatePort[]): Promise;"} {"_id":"q-en-vscode-5847fe4e8069475e72268043f8af18a96b126a55f4c2fa18fb7256ab81bb8a60","text":"return this._remoteAuthority.options.isTrusted; } if (this.environmentService.extensionTestsLocationURI) { return true; // trust running tests with vscode-test } if (this.workspaceService.getWorkbenchState() === WorkbenchState.EMPTY) { // Use memento if present, otherwise default to restricted mode // Workspace may transition to trusted based on the opened editors return this._trustState.isTrusted ?? false; } if (!this._initialized) { return false; } return this.getUrisTrust(this.getWorkspaceUris()); }"} {"_id":"q-en-vscode-5860cf257da17b924bb548f1e97ec8e32059c2c0ab1740061607ad45c200ee17","text":"isExtensionCustomPtyTerminal: true, icon: iconPath, color: ThemeColor.isThemeColor(color) ? color.id : undefined, location: this._serializeParentTerminal(location, parentTerminal), location: internalOptions?.location || this._serializeParentTerminal(location, parentTerminal), isTransient: true }); // At this point, the id has been set via `$acceptTerminalOpened`"} {"_id":"q-en-vscode-58db467d8299027416e3004fcb05cab928e1f135a98886d12093ddeaf97bc8ee","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { ExtensionContext, NotebookCellKind, NotebookDocument, NotebookDocumentChangeEvent, NotebookEdit, workspace, WorkspaceEdit, type NotebookCell, type NotebookDocumentWillSaveEvent } from 'vscode'; import { getCellMetadata, getVSCodeCellLanguageId, removeVSCodeCellLanguageId, setVSCodeCellLanguageId } from './serializers'; import { CellMetadata } from './common'; import { getNotebookMetadata } from './notebookSerializer'; import type * as nbformat from '@jupyterlab/nbformat'; const noop = () => { // }; /** * Code here is used to ensure the Notebook Model is in sync the the ipynb JSON file. * E.g. assume you add a new cell, this new cell will not have any metadata at all. * However when we save the ipynb, the metadata will be an empty object `{}`. * Now thats completely different from the metadata os being `empty/undefined` in the model. * As a result, when looking at things like diff view or accessing metadata, we'll see differences. * * This code ensures that the model is in sync with the ipynb file. */ export const pendingNotebookCellModelUpdates = new WeakMap>>(); export function activate(context: ExtensionContext) { workspace.onDidChangeNotebookDocument(onDidChangeNotebookCells, undefined, context.subscriptions); workspace.onWillSaveNotebookDocument(waitForPendingModelUpdates, undefined, context.subscriptions); } function isSupportedNotebook(notebook: NotebookDocument) { return notebook.notebookType === 'jupyter-notebook' || notebook.notebookType === 'interactive'; } function waitForPendingModelUpdates(e: NotebookDocumentWillSaveEvent) { if (!isSupportedNotebook(e.notebook)) { return; } const promises = pendingNotebookCellModelUpdates.get(e.notebook); if (!promises) { return; } e.waitUntil(Promise.all(promises)); } function cleanup(notebook: NotebookDocument, promise: PromiseLike) { const pendingUpdates = pendingNotebookCellModelUpdates.get(notebook); if (pendingUpdates) { pendingUpdates.delete(promise); if (!pendingUpdates.size) { pendingNotebookCellModelUpdates.delete(notebook); } } } function trackAndUpdateCellMetadata(notebook: NotebookDocument, cell: NotebookCell, metadata: CellMetadata & { vscode?: { languageId: string } }) { const pendingUpdates = pendingNotebookCellModelUpdates.get(notebook) ?? new Set>(); pendingNotebookCellModelUpdates.set(notebook, pendingUpdates); const edit = new WorkspaceEdit(); edit.set(cell.notebook.uri, [NotebookEdit.updateCellMetadata(cell.index, { ...(cell.metadata), custom: metadata })]); const promise = workspace.applyEdit(edit).then(noop, noop); pendingUpdates.add(promise); const clean = () => cleanup(notebook, promise); promise.then(clean, clean); } function onDidChangeNotebookCells(e: NotebookDocumentChangeEvent) { if (!isSupportedNotebook(e.notebook)) { return; } const notebook = e.notebook; const notebookMetadata = getNotebookMetadata(e.notebook); // use the preferred language from document metadata or the first cell language as the notebook preferred cell language const preferredCellLanguage = notebookMetadata.metadata?.language_info?.name; // When we change the language of a cell, // Ensure the metadata in the notebook cell has been updated as well, // Else model will be out of sync with ipynb https://github.com/microsoft/vscode/issues/207968#issuecomment-2002858596 e.cellChanges.forEach(e => { if (!preferredCellLanguage || e.cell.kind !== NotebookCellKind.Code) { return; } const languageIdInMetadata = getVSCodeCellLanguageId(getCellMetadata(e.cell)); if (e.cell.document.languageId !== preferredCellLanguage && e.cell.document.languageId !== languageIdInMetadata) { const metadata: CellMetadata = JSON.parse(JSON.stringify(getCellMetadata(e.cell))); metadata.metadata = metadata.metadata || {}; setVSCodeCellLanguageId(metadata, e.cell.document.languageId); trackAndUpdateCellMetadata(notebook, e.cell, metadata); } else if (e.cell.document.languageId === preferredCellLanguage && languageIdInMetadata) { const metadata: CellMetadata = JSON.parse(JSON.stringify(getCellMetadata(e.cell))); metadata.metadata = metadata.metadata || {}; removeVSCodeCellLanguageId(metadata); trackAndUpdateCellMetadata(notebook, e.cell, metadata); } else if (e.cell.document.languageId === preferredCellLanguage && e.cell.document.languageId === languageIdInMetadata) { const metadata: CellMetadata = JSON.parse(JSON.stringify(getCellMetadata(e.cell))); metadata.metadata = metadata.metadata || {}; removeVSCodeCellLanguageId(metadata); trackAndUpdateCellMetadata(notebook, e.cell, metadata); } }); // Ensure all new cells in notebooks with nbformat >= 4.5 have an id. // Details of the spec can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html# e.contentChanges.forEach(change => { change.addedCells.forEach(cell => { // When ever a cell is added, always update the metadata // as metadata is always an empty `{}` in ipynb JSON file const cellMetadata = getCellMetadata(cell); // Avoid updating the metadata if it's not required. if (cellMetadata.metadata) { if (!isCellIdRequired(notebookMetadata)) { return; } if (isCellIdRequired(notebookMetadata) && cellMetadata?.id) { return; } } // Don't edit the metadata directly, always get a clone (prevents accidental singletons and directly editing the objects). const metadata: CellMetadata = { ...JSON.parse(JSON.stringify(cellMetadata || {})) }; metadata.metadata = metadata.metadata || {}; if (isCellIdRequired(notebookMetadata) && !cellMetadata?.id) { metadata.id = generateCellId(e.notebook); } trackAndUpdateCellMetadata(notebook, cell, metadata); }); }); } /** * Cell ids are required in notebooks only in notebooks with nbformat >= 4.5 */ function isCellIdRequired(metadata: Pick, 'nbformat' | 'nbformat_minor'>) { if ((metadata.nbformat || 0) >= 5) { return true; } if ((metadata.nbformat || 0) === 4 && (metadata.nbformat_minor || 0) >= 5) { return true; } return false; } function generateCellId(notebook: NotebookDocument) { while (true) { // Details of the id can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#adding-an-id-field, // & here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#updating-older-formats const id = generateUuid().replace(/-/g, '').substring(0, 8); let duplicate = false; for (let index = 0; index < notebook.cellCount; index++) { const cell = notebook.cellAt(index); const existingId = getCellMetadata(cell)?.id; if (!existingId) { continue; } if (existingId === id) { duplicate = true; break; } } if (!duplicate) { return id; } } } /** * Copied from src/vs/base/common/uuid.ts */ function generateUuid() { // use `randomValues` if possible function getRandomValues(bucket: Uint8Array): Uint8Array { for (let i = 0; i < bucket.length; i++) { bucket[i] = Math.floor(Math.random() * 256); } return bucket; } // prep-work const _data = new Uint8Array(16); const _hex: string[] = []; for (let i = 0; i < 256; i++) { _hex.push(i.toString(16).padStart(2, '0')); } // get data getRandomValues(_data); // set version bits _data[6] = (_data[6] & 0x0f) | 0x40; _data[8] = (_data[8] & 0x3f) | 0x80; // print as string let i = 0; let result = ''; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; return result; } "} {"_id":"q-en-vscode-58e25d7c8f0ba2e81d733ed4b9136f3113af8ff418983233516503c129dfb38d","text":"import * as vscode from 'vscode'; import { NotebookSerializer } from './notebookSerializer'; import { ensureAllNewCellsHaveCellIds } from './cellIdService'; import { activate as keepNotebookModelStoreInSync } from './notebookModelStoreSync'; import { notebookImagePasteSetup } from './notebookImagePaste'; import { AttachmentCleaner } from './notebookAttachmentCleaner';"} {"_id":"q-en-vscode-5907dc96a060847687d60a5589e7d5a7eaa378db9997939b02377cad869463eb","text":"} // Refresh Parent (View) await this.view?.refresh(shouldDeepRefresh, parent); if (this.view?.getFocus().length === 0) { this.view?.focusLast(); } } })); }"} {"_id":"q-en-vscode-590803829e79b506e929bc96c02870ec646854d142e4831d14bdb5b764361f3c","text":"export interface RenderOutput { html: string; containingImages: { src: string }[]; containingImages: Set; } interface RenderEnv { containingImages: { src: string }[]; containingImages: Set; currentDocument: vscode.Uri | undefined; resourceProvider: WebviewResourceProvider | undefined; }"} {"_id":"q-en-vscode-593bb76d3136da51db9375d6403ab73895ebc9c7c599fdbb9abbed10b894baec","text":"@IWorkbenchThemeService protected themeService: IWorkbenchThemeService, @INotificationService private notificationService: INotificationService, @ICommandService private commandService: ICommandService, @IExtensionService private extensionService: IExtensionService, @IContextMenuService private contextMenuService: IContextMenuService, @IKeybindingService private keybindingService: IKeybindingService, @ITelemetryService private telemetryService: ITelemetryService, @IWorkspaceEditingService private workspaceEditingService: IWorkspaceEditingService, @IFileService private fileService: IFileService,"} {"_id":"q-en-vscode-593ceedc834936211274b1df2b1be6b569be24965190cb6e0cf33e3a29cf8fea","text":"editSessionIdentityProvider: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.editSessionIdentityProvider.d.ts', editorInsets: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.editorInsets.d.ts', envCollectionOptions: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.envCollectionOptions.d.ts', envCollectionWorkspace: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.envCollectionWorkspace.d.ts', envShellEvent: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.envShellEvent.d.ts', extensionRuntime: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.extensionRuntime.d.ts', extensionsAny: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.extensionsAny.d.ts',"} {"_id":"q-en-vscode-5942640f0b41180189c0972b05a48e243b9200d49ba7b8a5ff96f916bac303b6","text":"this.debugService.getModel().getSessions().forEach(registerLoadedSourceListener); this.disposables.push(this.debugService.onDidEndSession(session => { clearTimeout(timeout); root.remove(session.getId()); if (this.tree) { this.tree.refresh(root, false); } this.treeRefreshScheduler.schedule(); })); }"} {"_id":"q-en-vscode-599f5c0cf7f5e4ed5d49b183dffff5a5d8b2422e59dbf2fc2d8f8bfc5a42a090","text":"this.textArea.setAttribute('aria-haspopup', 'false'); this.textArea.setAttribute('aria-autocomplete', 'both'); if (options.get(EditorOption.domReadOnly)) { if (options.get(EditorOption.domReadOnly) && options.get(EditorOption.readOnly)) { this.textArea.setAttribute('readonly', 'true'); }"} {"_id":"q-en-vscode-5a0309501fc8e68135b70008e94e8b9244b741d84b1e1a3d35e9bfc8b676d591","text":"import { isIOS } from 'vs/base/common/platform'; import Severity from 'vs/base/common/severity'; import { ThemeIcon } from 'vs/base/common/themables'; import { isString, withNullAsUndefined } from 'vs/base/common/types'; import { isString, withNullAsUndefined, withUndefinedAsNull } from 'vs/base/common/types'; import 'vs/css!./media/quickInput'; import { localize } from 'vs/nls'; import { ILayoutService } from 'vs/platform/layout/browser/layoutService';"} {"_id":"q-en-vscode-5ae444601a69978909f7ed8251b222183d33a29fb1a4cbb2f184f266cc022cfb","text":"\"build-notebook\": \"node ./esbuild\" }, \"dependencies\": { \"@vscode/markdown-it-katex\": \"^1.0.3\" \"@vscode/markdown-it-katex\": \"^1.1.0\" }, \"devDependencies\": { \"@types/markdown-it\": \"^0.0.0\","} {"_id":"q-en-vscode-5ae9f46dc106ab1482b7f90a886a2953c7d34fc416f139ccec877ea3990556cf","text":"'properties': { 'workbench.startupEditor': { 'type': 'string', 'enum': ['none', 'welcomePage', 'newUntitledFile'], 'enum': ['none', 'welcomePage', 'newUntitledFile', 'welcomePageInEmptyWorkbench'], 'enumDescriptions': [ localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.startupEditor.none' }, \"Start without an editor.\"), localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.startupEditor.welcomePage' }, \"Open the Welcome page (default).\"), localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.startupEditor.newUntitledFile' }, \"Open a new untitled file (only applies when opening an empty workspace).\"), localize({ comment: ['This is the description for a setting. Values surrounded by single quotes are not to be translated.'], key: 'workbench.startupEditor.welcomePageInEmptyWorkbench' }, \"Open the Welcome page when opening an empty workbench.\"), ], 'default': 'welcomePage', 'description': localize('workbench.startupEditor', \"Controls which editor is shown at startup, if none are restored from the previous session.\")"} {"_id":"q-en-vscode-5b397388a321c43997216fa8c5b18cc8a86aee9d9ccfdafa1993d2f570590e95","text":"const original = md.renderer.rules.image; md.renderer.rules.image = (tokens: Token[], idx: number, options, env: RenderEnv, self) => { const token = tokens[idx]; token.attrJoin('class', 'loading'); const src = token.attrGet('src'); if (src) { env.containingImages?.push({ src }); const imgHash = stringHash(src); token.attrSet('id', `image-hash-${imgHash}`); env.containingImages?.add(src); if (!token.attrGet('data-src')) { token.attrSet('src', this.toResourceUri(src, env.currentDocument, env.resourceProvider));"} {"_id":"q-en-vscode-5b499b41a5674dab5c3f8cd56319bd36a37a9b902d2ff249f96fb22969d57b0c","text":"\"configuration.suggest.completeFunctionCalls\": \"Complete functions with their parameter signature.\", \"configuration.suggest.includeAutomaticOptionalChainCompletions\": \"Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires strict null checks to be enabled.\", \"configuration.suggest.includeCompletionsForImportStatements\": \"Enable/disable auto-import-style completions on partially-typed import statements.\", \"configuration.suggest.includeCompletionsWithSnippetText\": \"Enable/disable snippet completions from TS Server.\", \"typescript.tsdk.desc\": \"Specifies the folder path to the tsserver and `lib*.d.ts` files under a TypeScript install to use for IntelliSense, for example: `./node_modules/typescript/lib`.nn- When specified as a user setting, the TypeScript version from `typescript.tsdk` automatically replaces the built-in TypeScript version.n- When specified as a workspace setting, `typescript.tsdk` allows you to switch to use that workspace version of TypeScript for IntelliSense with the `TypeScript: Select TypeScript version` command.nnSee the [TypeScript documentation](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) for more detail about managing TypeScript versions.\", \"typescript.disableAutomaticTypeAcquisition\": \"Disables [automatic type acquisition](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_typings-and-automatic-type-acquisition). Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries.\", \"typescript.enablePromptUseWorkspaceTsdk\": \"Enables prompting of users to use the TypeScript version configured in the workspace for Intellisense.\","} {"_id":"q-en-vscode-5b653784bd28e150d12af181aff8e86b0729be5a12b564b2f1388957e1fb131f","text":"class TestParcelWatcher extends ParcelWatcher { testNormalizePaths(paths: string[]): string[] { testNormalizePaths(paths: string[], excludes: string[] = []): string[] { // Work with strings as paths to simplify testing const requests: IRecursiveWatchRequest[] = paths.map(path => { return { path, excludes: [], recursive: true }; return { path, excludes, recursive: true }; }); return this.normalizeRequests(requests).map(request => request.path);"} {"_id":"q-en-vscode-5bf5b711524d9e4d2befcc1e2ebb30e12aaed9012348dd546e279016abc7582d","text":"this._list.triggerScrollFromMouseWheelEvent(event); } previousChange(): void { let currFocus = this._list.getFocus()[0]; if (isNaN(currFocus) || currFocus < 0) { currFocus = 0; } // find the index of previous change let prevChangeIndex = currFocus - 1; while (prevChangeIndex >= 0) { const vm = this._diffElementViewModels[prevChangeIndex]; if (vm.type !== 'unchanged') { break; } prevChangeIndex--; } if (prevChangeIndex >= 0) { this._list.setFocus([prevChangeIndex]); this._list.reveal(prevChangeIndex); } else { // go to the last one const index = lastIndex(this._diffElementViewModels, vm => vm.type !== 'unchanged'); if (index >= 0) { this._list.setFocus([index]); this._list.reveal(index); } } } nextChange(): void { let currFocus = this._list.getFocus()[0]; if (isNaN(currFocus) || currFocus < 0) { currFocus = 0; } // find the index of next change let nextChangeIndex = currFocus + 1; while (nextChangeIndex < this._diffElementViewModels.length) { const vm = this._diffElementViewModels[nextChangeIndex]; if (vm.type !== 'unchanged') { break; } nextChangeIndex++; } if (nextChangeIndex < this._diffElementViewModels.length) { this._list.setFocus([nextChangeIndex]); this._list.reveal(nextChangeIndex); } else { // go to the first one const index = this._diffElementViewModels.findIndex(vm => vm.type !== 'unchanged'); if (index >= 0) { this._list.setFocus([index]); this._list.reveal(index); } } } createOutput(cellDiffViewModel: DiffElementViewModelBase, cellViewModel: DiffNestedCellViewModel, output: IInsetRenderOutput, getOffset: () => number, diffSide: DiffSide): void { this._insetModifyQueueByOutputId.queue(output.source.model.outputId + (diffSide === DiffSide.Modified ? '-right' : 'left'), async () => { const activeWebview = diffSide === DiffSide.Modified ? this._modifiedWebview : this._originalWebview;"} {"_id":"q-en-vscode-5c14cdd69b8c5ee33f6338424701941f1b92f5688f022c72fea282a7f724e44f","text":"return true; }); for (const placeholder of incompletePlaceholders) { const fillInIncompletePlaceholder = (placeholder: Placeholder, stack: Set) => { const defaultValues = placeholderDefaultValues.get(placeholder.index); if (defaultValues) { const clone = new Placeholder(placeholder.index); clone.transform = placeholder.transform; for (const child of defaultValues) { clone.appendChild(child.clone()); if (!defaultValues) { return; } const clone = new Placeholder(placeholder.index); clone.transform = placeholder.transform; for (const child of defaultValues) { const newChild = child.clone(); clone.appendChild(newChild); // \"recurse\" on children that are again placeholders if (newChild instanceof Placeholder && placeholderDefaultValues.has(newChild.index) && !stack.has(newChild.index)) { stack.add(newChild.index); fillInIncompletePlaceholder(newChild, stack); stack.delete(newChild.index); } snippet.replace(placeholder, [clone]); } snippet.replace(placeholder, [clone]); }; const stack = new Set(); for (const placeholder of incompletePlaceholders) { fillInIncompletePlaceholder(placeholder, stack); } return snippet.children.slice(offset);"} {"_id":"q-en-vscode-5c3fd04d6e075088bca46741ca2bd906d65d5487d351d420c4ee7d0fc546d467","text":"import { IRange, Range } from 'vs/editor/common/core/range'; import { getDefinitionsAtPosition } from 'vs/editor/contrib/gotoSymbol/browser/goToSymbol'; import { goToDefinitionWithLocation } from 'vs/editor/contrib/inlayHints/browser/inlayHintsLocations'; import { Position } from 'vs/editor/common/core/position'; import { IPosition, Position } from 'vs/editor/common/core/position'; import { CancellationTokenSource } from 'vs/base/common/cancellation'; import { ILanguageConfigurationService } from 'vs/editor/common/languages/languageConfigurationRegistry'; import { ILanguageFeatureDebounceService } from 'vs/editor/common/services/languageFeatureDebounce';"} {"_id":"q-en-vscode-5c4d80b891ac85fbec629191ad529df6d9cbff7a12ea729036bb95e1bc451be0","text":"} canSerialize(): boolean { return this.configurationService.getValue(InteractiveWindowSetting.interactiveWindowHotExit); return this.configurationService.getValue(InteractiveWindowSetting.interactiveWindowRestore); } serialize(input: EditorInput): string {"} {"_id":"q-en-vscode-5c72d1dcbf75945f3807755b95689a82f2979b4b73ba80228b9083a658e18138","text":"
${vscode.l10n.t(\"Focus Lock\")}
"} {"_id":"q-en-vscode-5cf75e8d3a31fc4bf3396bd7dadd043bd9768464114fcfc6aa1bf421244777b6","text":"this.contextKeyService = service; } private filterNonUniversalActions(groups: Map[], newActions: IAction[]) { const newActionsSet: Set = new Set(newActions.map(a => a.id)); for (const group of groups) { const actions = group.keys(); for (const action of actions) { if (!newActionsSet.has(action)) { group.delete(action); } } } } private buildMenu(groups: Map[]): IAction[] { const result: IAction[] = []; for (const group of groups) { if (group.size > 0) { if (result.length) { result.push(new Separator()); } result.push(...group.values()); } } return result; } private createGroups(actions: IAction[]): Map[] { const groups: Map[] = []; let group: Map = new Map(); for (const action of actions) { if (action instanceof Separator) { groups.push(group); group = new Map(); } else { group.set(action.id, action); } } groups.push(group); return groups; } private getActions(menuId: MenuId, elements: ITreeItem[], listen?: DisposableStore): { primary: IAction[]; secondary: IAction[] } { if (!this.contextKeyService) { return { primary: [], secondary: [] }; } const allowedPrimary = new Map(); const allowedSecondary = new Map(); let primaryGroups: Map[] = []; let secondaryGroups: Map[] = []; for (let i = 0; i < elements.length; i++) { const element = elements[i]; const contextKeyService = this.contextKeyService.createOverlay(["} {"_id":"q-en-vscode-5d98a1c2a2207502a38c7e0309fa9ccd5eb306f10863909383587e83998f917a","text":"// Extensions Management else if (shouldSpawnCliProcess(args)) { const cli = await import(['vs', 'code', 'node', 'cliProcessMain'].join('/') /* TODO@esm workaround to prevent esbuild from inlining this */); const cli = await import(['./cliProcessMain.js'].join('/') /* TODO@esm workaround to prevent esbuild from inlining this */); await cli.main(args); return;"} {"_id":"q-en-vscode-5dc2ee508788324e2687f3b6707b9bfe45c32f97d3c1bc8cd1e5b1d09315fe1f","text":"import { ISimpleSelectedSuggestion } from 'vs/workbench/services/suggest/browser/simpleSuggestWidget'; import type { IMarker, ITheme, Terminal as RawXtermTerminal } from '@xterm/xterm'; import { ScrollPosition } from 'vs/workbench/contrib/terminal/browser/xterm/markNavigationAddon'; import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; export const ITerminalService = createDecorator('terminalService'); export const ITerminalEditorService = createDecorator('terminalEditorService');"} {"_id":"q-en-vscode-5e2260530249e3c84a6313546776a6444fb5a55cfc151f3817c4081999925322","text":"// Layout centered Editor (only in vertical layout when one group is opened) const id = this.visibleEditors[Position.ONE] ? this.visibleEditors[Position.ONE].getId() : undefined; const doCentering = this.layoutVertically && this.partService.isEditorLayoutCentered() && this.stacks.groups.length === 1 && id !== PREFERENCES_EDITOR_ID && id !== TEXT_DIFF_EDITOR_ID; const doCentering = this.partService.isEditorLayoutCentered() && this.stacks.groups.length === 1 && id !== PREFERENCES_EDITOR_ID && id !== TEXT_DIFF_EDITOR_ID; if (doCentering && !this.centeredEditorActive) { this.centeredEditorSashLeft.show(); this.centeredEditorSashRight.show(); // no size set yet. Calculate a default value if (!this.centeredEditorPreferedSize) { if (!this.centeredEditorPreferredSize) { this.resetCenteredEditor(false); } } else if (!doCentering && this.centeredEditorActive) {"} {"_id":"q-en-vscode-5e39b1f184fbd9f9e014c5080fc3b545828a43693afd415922d16503c70fad1e","text":"return reject(new Error('Service Workers are not enabled. Webviews will not work. Try disabling private/incognito mode.')); } const swPath = `service-worker.js${self.location.search}`; const swPath = `service-worker.js?vscode-resource-base-authority=${(new URL(location.toString()).searchParams).get('vscode-resource-base-authority')}`; navigator.serviceWorker.register(swPath).then( async registration => {"} {"_id":"q-en-vscode-5e4eaec90cd67e200cc11e9d5495911245e41ebbf283024ece97c7a1e2749a5e","text":"return revive ? URI.revive(transformer.transformIncoming(obj)) : transformer.transformIncoming(obj); } if (obj instanceof VSBuffer) { return null; } // walk object (or array) for (const key in obj) { if (Object.hasOwnProperty.call(obj, key)) {"} {"_id":"q-en-vscode-5e51f5e7cb26860720656bb56e8647a6a240053b648bfaabd2cc4ae297bfe8bc","text":"whenLabel.element.title = keybindingItemEntry.keybindingItem.when; } else { this.whenColumn.textContent = '—'; this.whenColumn.title = ''; } }"} {"_id":"q-en-vscode-5f7d68e53317849ecb1a9a0b750845feb6d57c9cd7979da65c9131eb93cbfe33","text":"// In wait mode, listen to changes to the editors and wait until the files // are closed that the user wants to wait for. When this happens we delete // the wait marker file to signal to the outside that editing is done. const resourcesToWaitFor = request.filesToWait.paths.map(p => URI.revive(p.fileUri)); const waitMarkerFile = URI.revive(request.filesToWait.waitMarkerFileUri); const unbind = this.editorService.onDidCloseEditor(() => { if (resourcesToWaitFor.every(resource => !this.editorService.isOpen({ resource }))) { unbind.dispose(); this.fileService.del(waitMarkerFile); const resourcesToWaitFor = coalesce(request.filesToWait.paths.map(p => URI.revive(p.fileUri))); this.trackClosedWaitFiles(waitMarkerFile, resourcesToWaitFor); } } private trackClosedWaitFiles(waitMarkerFile: URI, resourcesToWaitFor: URI[]): IDisposable { const listener = this.editorService.onDidCloseEditor(async () => { // In wait mode, listen to changes to the editors and wait until the files // are closed that the user wants to wait for. When this happens we delete // the wait marker file to signal to the outside that editing is done. if (resourcesToWaitFor.every(resource => !this.editorService.isOpen({ resource }))) { // If auto save is configured with the default delay (1s) it is possible // to close the editor while the save still continues in the background. As such // we have to also check if the files to wait for are dirty and if so wait // for them to get saved before deleting the wait marker file. const dirtyFilesToWait = this.textFileService.getDirty(resourcesToWaitFor); if (dirtyFilesToWait.length > 0) { await Promise.all(dirtyFilesToWait.map(async dirtyFileToWait => await this.joinResourceSaved(dirtyFileToWait))); } listener.dispose(); await this.fileService.del(waitMarkerFile); } }); return listener; } private joinResourceSaved(resource: URI): Promise { return new Promise(resolve => { if (!this.textFileService.isDirty(resource)) { return resolve(); // return early if resource is not dirty } // Otherwise resolve promise when resource is saved const listener = this.textFileService.models.onModelSaved(e => { if (isEqual(resource, e.resource)) { listener.dispose(); resolve(); } }); } }); } private openResources(resources: Array, diffMode: boolean): void {"} {"_id":"q-en-vscode-5f81ee193c263d2bf3be64dd33be64e80ebfa4e522bda64aa5c9dd6b6285612b","text":"let lastPageIndex = this.view.indexAt(this.view.getScrollTop() + this.view.renderHeight); lastPageIndex = lastPageIndex === 0 ? 0 : lastPageIndex - 1; const lastPageElement = this.view.element(lastPageIndex); const currentlyFocusedElement = this.getFocusedElements()[0]; const currentlyFocusedElementIndex = this.getFocus()[0]; const currentlyFocusedElement = this.view.element(currentlyFocusedElementIndex); if (currentlyFocusedElement !== lastPageElement) { if (currentlyFocusedElement !== lastPageElement && lastPageIndex > currentlyFocusedElementIndex) { const lastGoodPageIndex = this.findPreviousIndex(lastPageIndex, false, filter); if (lastGoodPageIndex > -1 && currentlyFocusedElement !== this.view.element(lastGoodPageIndex)) {"} {"_id":"q-en-vscode-5f8b0f5986a42d33f6ebfcd7e155d805afa7ed5986e887ffb852c86e09275e03","text":"} }; type ConfigureTrustedDomainChoice = 'trustDomain' | 'trustSubdomain' | 'trustAll' | 'manage'; interface ConfigureTrustedDomainsQuickPickItem extends IQuickPickItem { id: ConfigureTrustedDomainChoice; } type ConfigureTrustedDomainsQuickPickItem = IQuickPickItem & ({ id: 'manage'; } | { id: 'trust'; toTrust: string }); type ConfigureTrustedDomainsChoiceClassification = { choice: { classification: 'SystemMetaData', purpose: 'FeatureInsight' }; };"} {"_id":"q-en-vscode-5fbcd444fb47f2033f4cd155f8247d44c1c812a3901742d7f6c87114151d2110","text":"super({ id: 'editor.createFoldingRangeFromSelection', label: nls.localize('createManualFoldRange.label', \"Create Manual Folding Range from Selection\"), alias: 'Create Folding Range from Selection', alias: 'Create Manual Folding Range from Selection', precondition: CONTEXT_FOLDING_ENABLED, kbOpts: { kbExpr: EditorContextKeys.editorTextFocus,"} {"_id":"q-en-vscode-5fc1780dbebff4246365789b28fe3cd433cc7ae6c72f096a9945a73768dd4308","text":"return TriggerAction.CLOSE_PICKER; }, accept: (keyMods, event) => this.openAnything(activeGlobalResource, { keyMods, range: editorSymbolPick.range?.selection, preserveFocus: event.inBackground }) accept: (keyMods, event) => this.openAnything(activeGlobalResource, { keyMods, range: editorSymbolPick.range?.selection, preserveFocus: event.inBackground, forcePinned: event.inBackground }) }; }); }"} {"_id":"q-en-vscode-5feb6dc70fc27d21f6b1c28450ac2f618c217e868e7791ed5c8e6dbc3ad0c5d9","text":"const providerExists = isAbsolutePath(file); // Special case userdata as we don't have a search provider for it, but it can be searched. if (providerExists) { const searchRoot = this.workspaceContextService.getWorkspaceFolder(file)?.uri ?? file.with({ path: path.dirname(file.fsPath) }); const searchRoot = this.workspaceContextService.getWorkspaceFolder(file)?.uri ?? this.uriIdentityService.extUri.dirname(file); let folderQuery = foldersToSearch.get(searchRoot); if (!folderQuery) {"} {"_id":"q-en-vscode-602ab49f5b7fdc20e77aa198f7f3163806af66cdf915ceb6e8196c4cd4dd5d97","text":"config.ariaLabel = ariaLabel || ''; config.cursorWidth = 1; config.snippetSuggestions = 'none'; config.suggest = { filterGraceful: false }; config.fontFamily = ' -apple-system, BlinkMacSystemFont, \"Segoe WPC\", \"Segoe UI\", \"HelveticaNeue-Light\", \"Ubuntu\", \"Droid Sans\", sans-serif'; return config; }"} {"_id":"q-en-vscode-602e09a9e1f540a336ee0bd773087404c55883c30e5b207ffae9d430c3c746ac","text":"import { Schemas } from 'vs/base/common/network'; import { IDialogService, IConfirmationResult, IConfirmation, getConfirmMessage } from 'vs/platform/dialogs/common/dialogs'; import { INotificationService, Severity } from 'vs/platform/notification/common/notification'; import { Constants } from 'vs/editor/common/core/uint'; export interface IEditableData { action: IAction;"} {"_id":"q-en-vscode-6066980fea1c27c1741543c9745dce8865db85dfb063f2fa2c67ac3a5128409b","text":"export const EDIT_SESSIONS_VIEW_ICON = registerIcon('edit-sessions-view-icon', Codicon.cloudDownload, localize('editSessionViewIcon', 'View icon of the edit sessions view.')); export const EDIT_SESSIONS_SHOW_VIEW = new RawContextKey('editSessionsShowView', false); export const EDIT_SESSIONS_SCHEME = 'vscode-edit-sessions';"} {"_id":"q-en-vscode-6083e5350d16690dcaf34d563fc70902c66a3d6a48b5196b9d1f35176f22aa2c","text":"return authenticationSession !== undefined; } private cachedMachines: Map | undefined; async getMachineById(machineId: string) { await this.initialize(false); if (!this.cachedMachines) { const machines = await this.machineClient!.getMachines(); this.cachedMachines = machines.reduce((map, machine) => map.set(machine.id, machine.name), new Map()); } return this.cachedMachines.get(machineId); } private async getOrCreateCurrentMachineId(): Promise { const currentMachineId = await this.machineClient!.getMachines().then((machines) => machines.find((m) => m.isCurrent)?.id); if (currentMachineId === undefined) { await this.machineClient!.addCurrentMachine(); return await this.machineClient!.getMachines().then((machines) => machines.find((m) => m.isCurrent)!.id); } return currentMachineId; } private async getAuthenticationSession(fromContinueOn: boolean) { // If the user signed in previously and the session is still available, reuse that without prompting the user again if (this.existingSessionId) {"} {"_id":"q-en-vscode-609e8935b77438fa2516fd172dbddc269178d859e36baf8b4b26905c303e72ad","text":"import { HoverPosition } from 'vs/base/browser/ui/hover/hoverWidget'; import { verifiedPublisherIcon as verifiedPublisherThemeIcon } from 'vs/workbench/contrib/extensions/browser/extensionsIcons'; export const EXTENSION_LIST_ELEMENT_HEIGHT = 62; export const EXTENSION_LIST_ELEMENT_HEIGHT = 72; export interface IExtensionsViewState { onFocus: Event;"} {"_id":"q-en-vscode-609fa334dec101620bc2023df90e25338dea73631248761c6edf7eb909bf5aa8","text":"*/ this.telemetryService.publicLog('extensionsRecommendations:ignoreRecommendation', { id: extensionId, recommendationReason: reason.reasonId }); } this._sessionIgnoredRecommendations[lowerId] = reason; this._sessionIgnoredRecommendations[lowerId] = { ...reason, sources: coalesce([ <'executable' | null>(caseInsensitiveGet(this._exeBasedRecommendations, lowerId) ? 'executable' : null), ...(() => { let a = caseInsensitiveGet(this._fileBasedRecommendations, lowerId); return a ? a.sources : null; })(), <'dynamic' | null>(this._dynamicWorkspaceRecommendations.filter(x => x.toLowerCase() === lowerId).length > 0 ? 'dynamic' : null), ]) }; delete this._sessionRestoredRecommendations[lowerId]; this._globallyIgnoredRecommendations = distinct([...this._globallyIgnoredRecommendations, lowerId].map(id => id.toLowerCase())); } else {"} {"_id":"q-en-vscode-61791436645cc7041e974a6e8d1d0b77eb0b93bb0e92aae6e43ad748216e1cc1","text":"} } export class CursorWordAccessibilityRight extends WordRightCommand { constructor() { super({ inSelectionMode: false, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityRight', precondition: undefined }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordAccessibilityRightSelect extends WordRightCommand { constructor() { super({ inSelectionMode: true, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityRightSelect', precondition: undefined }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export interface DeleteWordOptions extends ICommandOptions { whitespaceHeuristics: boolean; wordNavigationType: WordNavigationType;"} {"_id":"q-en-vscode-6191175b7b3555d6396f8536c1ebacc38264e22722d0a1ecd0b5478464efb1e4","text":"// Titlebar let titlebarPart: IAuxiliaryTitlebarPart | undefined = undefined; let titlebarPartVisible = false; const useCustomTitle = isNative && hasCustomTitlebar(this.configurationService); // custom title in aux windows only enabled in native const useCustomTitle = isNative && !hasNativeTitlebar(this.configurationService); // custom title in aux windows only enabled in native if (useCustomTitle) { titlebarPart = disposables.add(this.titleService.createAuxiliaryTitlebarPart(auxiliaryWindow.container, editorPart)); titlebarPartVisible = true;"} {"_id":"q-en-vscode-619ef41515e42b7d1aba95783d8954e78f2678aa38a52682780958adbb5a45c2","text":"parsedLink.prefix?.index ?? parsedLink.path.index, parsedLink.suffix ? parsedLink.suffix.suffix.index + parsedLink.suffix.suffix.text.length : parsedLink.path.index + parsedLink.path.text.length ); this._logService.trace('terminalLocaLinkDetector#detect verified link', simpleLink); links.push(simpleLink); }"} {"_id":"q-en-vscode-61c714079def43f64f37d5a3cbf584e6c7680739118a0aeddbad414d72db6aec","text":"private readonly _onDidChangeQuickDiffProviders = this._register(new Emitter()); readonly onDidChangeQuickDiffProviders = this._onDidChangeQuickDiffProviders.event; constructor(@IUriIdentityService private readonly uriIdentityService: IUriIdentityService) { super(); } addQuickDiffProvider(quickDiff: QuickDiffProvider): IDisposable { this.quickDiffProviders.add(quickDiff); this._onDidChangeQuickDiffProviders.fire();"} {"_id":"q-en-vscode-61de532d93d17b7d89111de58bf1aa69688067646082f0c304c0565b487fea90","text":"private treeContainer: HTMLElement; private loadedScriptsItemType: IContextKey; private settings: any; private shouldRefreshRecursive; constructor( options: IViewletViewOptions,"} {"_id":"q-en-vscode-61ea258ff32b4f28e54532c9431ae5eaab54bec9c306487cf6a3911bd86ce01d","text":"public sendText(text: string, addNewLine: boolean): void { this._processReady.then(() => { text = this._sanitizeInput(text); // Normalize line endings to 'enter' press. text = text.replace(TerminalInstance.EOL_REGEX, 'r'); if (addNewLine && text.substr(text.length - 1) !== 'r') { text += 'r'; }"} {"_id":"q-en-vscode-621b72ce507ef76ed658953e2d12babc21d862e8bfa0e3b9193802e4fc834295","text":"newRemoteExtensionsMap.set(key, merge(key, localExtension, remoteExtension, localExtension)); } // Locally removed extensions => exist in base and does not exit in local // Locally removed extensions => exist in base and does not exist in local for (const key of baseToLocal.removed.values()) { // If updated in remote (already handled) if (baseToRemote.updated.has(key)) {"} {"_id":"q-en-vscode-624bf09a6b56340ac3e2ae437deef4bf3a41f1e70ac9c96bc2b376557b8270eb","text":"}); }); if (validatedLink) { map.set(originalLink, validatedLink); result.push(validatedLink); } else { map.set(originalLink, InvalidLinkResult); } }"} {"_id":"q-en-vscode-625c2f22650758a7c98757473ced4f12f79b60790b017f29bfb06fcc150c0b10","text":"renderedWordCount: number; lastRenderTime: number; isFullyRendered: boolean; originalMarkdown: IMarkdownString; } export interface IChatProgressMessageRenderData {"} {"_id":"q-en-vscode-62624dc97f1e89e0e049804b7b1a642f8c42b8696a8220f3e6530cd100d2cfda","text":"return action; }), { icon: true, label: false }); } if (this.togglesUpdated) { this.togglesUpdated = false; // HACK: Filter out toggles here that are not concrete Toggle objects. This is to workaround // a layering issue as quick input's interface is in common but Toggle is in browser and // it requires a HTMLElement on its interface const concreteToggles = this.toggles?.filter(opts => opts instanceof Toggle) as Toggle[] ?? []; this.ui.inputBox.toggles = concreteToggles; } this.ui.ignoreFocusOut = this.ignoreFocusOut; this.ui.setEnabled(this.enabled); this.ui.setContextKey(this.contextKey);"} {"_id":"q-en-vscode-62973d8d174a506486751c4917e016cf12428c1ecf32a5b049ca309eb465bbd2","text":"this._heartbeatSecondTimeout = undefined; if (this._isResponsive) { this._isResponsive = false; this._onPtyHostUnresponsive.fire(); } this._onPtyHostUnresponsive.fire(); } private _handleUnresponsiveCreateProcess() { this._clearHeartbeatTimeouts(); this._logService.error(`No ptyHost response to createProcess after ${HeartbeatConstants.CreateProcessTimeout / 1000} seconds`); this._onPtyHostUnresponsive.fire(); if (this._isResponsive) { this._isResponsive = false; this._onPtyHostUnresponsive.fire(); } } private _clearHeartbeatTimeouts() {"} {"_id":"q-en-vscode-62a3eb62e5737a544bebdad32c7e39986fa472399d639625e606bcdeed456069","text":"* Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { window, Pseudoterminal, EventEmitter, TerminalDimensions, workspace, ConfigurationTarget, Disposable, UIKind, env, EnvironmentVariableMutatorType, EnvironmentVariableMutator, extensions, ExtensionContext, TerminalOptions, ExtensionTerminalOptions } from 'vscode'; import { doesNotThrow, equal, ok, deepEqual, throws } from 'assert'; import { window, Pseudoterminal, EventEmitter, TerminalDimensions, workspace, ConfigurationTarget, Disposable, UIKind, env, EnvironmentVariableMutatorType, EnvironmentVariableMutator, extensions, ExtensionContext, TerminalOptions, ExtensionTerminalOptions, Terminal } from 'vscode'; import { doesNotThrow, equal, deepEqual, throws } from 'assert'; import { assertNoRpc } from '../utils'; // Disable terminal tests:"} {"_id":"q-en-vscode-62ccf132a4b5625bb0700da789863669f9d5a8fa617355d3bdd0bceead97bb7a","text":"const envFromConfigValue = this._configurationService.getValue(`terminal.integrated.env.${platformKey}`); const baseEnv = await (shellLaunchConfig.useShellEnvironment ? this.getShellEnvironment() : this.getEnvironment()); const env = await terminalEnvironment.createTerminalEnvironment(shellLaunchConfig, envFromConfigValue, variableResolver, this._productService.version, this._configurationService.getValue(TerminalSettingId.DetectLocale), baseEnv); if (!shellLaunchConfig.strictEnv && !shellLaunchConfig.hideFromUser) { if (shouldUseEnvironmentVariableCollection(shellLaunchConfig)) { const workspaceFolder = terminalEnvironment.getWorkspaceForTerminal(shellLaunchConfig.cwd, this._workspaceContextService, this._historyService); await this._environmentVariableService.mergedCollection.applyToProcessEnvironment(env, { workspaceFolder }, variableResolver); }"} {"_id":"q-en-vscode-62eae905cd312f3a4771bd8a0eb24f6e5ff656925c121ff99b0457873b39435d","text":"} private init() { const { object: notebookOutlineReference } = this.notebookOutlineReference = this.instantiationService.invokeFunction((accessor) => accessor.get(INotebookCellOutlineProviderFactory).getOrCreate(this.notebookEditor, OutlineTarget.QuickPick)); const { object: notebookOutlineReference } = this.notebookOutlineReference = this.instantiationService.invokeFunction((accessor) => accessor.get(INotebookCellOutlineProviderFactory).getOrCreate(this.notebookEditor, OutlineTarget.OutlinePane)); this._register(this.notebookOutlineReference); this.updateContent(computeContent(this.notebookEditor, this.notebookCellList, notebookOutlineReference.entries, this.getCurrentStickyHeight()));"} {"_id":"q-en-vscode-62f3214e1f90f9e5de103a9d8ab9657b91b0f702d207f990007a828bde4d8e43","text":"const disposables = new DisposableStore(); const rendered = disposables.add(renderMarkdown(markdown, { ...this._getRenderOptions(markdown, disposables), ...options }, markedOptions)); rendered.element.classList.add('rendered-markdown'); return { element: rendered.element, dispose: () => disposables.dispose()"} {"_id":"q-en-vscode-62ff40c91334a9ae1b62b6aef7d08644d4dd5cd087d51b1b06f1645db94295ef","text":"if (offset + needleLength > haystackLength) { return false; } const haystackUpper = haystack.toUpperCase(); const needleUpper = needle.toUpperCase(); for (let i = 0; i < needleLength; i++) { if (haystack.charCodeAt(offset + i) !== needle.charCodeAt(i)) { if (haystackUpper.charCodeAt(offset + i) !== needleUpper.charCodeAt(i)) { return false; } }"} {"_id":"q-en-vscode-632aaf7aed9256b21279409e7f44ec83340e093132b9994f5c4779f880c2d5e5","text":"let updateId = 0; hostMessaging.onMessage('content', async (_event, /** @type {ContentUpdateData} */ data) => { const currentUpdateId = ++updateId; try { await workerReady; } catch (e) {"} {"_id":"q-en-vscode-63499f0c2e5ce41b417cf0a65b65b7acfdc21d792ae190c4b2d2dd46416da5c7","text":"thanks.removeClass('task-panel-hidden'); }); githubLink.item(0).on('click', e => { githubLink.on('click', e => { const node = event.target as HTMLAnchorElement; if (node.href) { this.openerService.open(URI.parse(node.href));"} {"_id":"q-en-vscode-63652886e976b7fed13090ebbb27c50c703750611abccd9278a86c9848fae676","text":"\"command\": \"imagePreview.zoomOut\", \"when\": \"activeCustomEditorId == 'imagePreview.previewEditor'\", \"group\": \"1_imagePreview\" }, { \"command\": \"imagePreview.copyImage\", \"when\": \"false\" } ], \"webview/context\": [ { \"command\": \"imagePreview.copyImage\", \"when\": \"webviewId == 'imagePreview.previewEditor'\" } ] }"} {"_id":"q-en-vscode-637409ff20c0c934c7640c7795901a3982bd5d4cc6ccab620268a75a78401803","text":"import 'vs/css!./media/explorerviewlet'; import { localize } from 'vs/nls'; import { mark } from 'vs/base/common/performance'; import { VIEWLET_ID, ExplorerViewletVisibleContext, OpenEditorsVisibleContext, VIEW_ID, IFilesConfiguration } from 'vs/workbench/contrib/files/common/files'; import { VIEWLET_ID, OpenEditorsVisibleContext, VIEW_ID, IFilesConfiguration } from 'vs/workbench/contrib/files/common/files'; import { IViewletViewOptions } from 'vs/workbench/browser/parts/views/viewsViewlet'; import { IConfigurationService, IConfigurationChangeEvent } from 'vs/platform/configuration/common/configuration'; import { ExplorerView } from 'vs/workbench/contrib/files/browser/views/explorerView';"} {"_id":"q-en-vscode-638ad7168cc8256a3d8ae8542a45a4e851305b3c47676dd78b0733398223c4ad","text":"); this.acitivityBarPart = this._register(instantiationService.createInstance(ActivitybarPart, this)); this.rememberActivityBarVisiblePosition(); this._register(configurationService.onDidChangeConfiguration(e => { if (e.affectsConfiguration(LayoutSettings.ACTIVITY_BAR_LOCATION)) { this.updateTitleArea(); const id = this.getActiveComposite()?.getId(); if (id) { this.onTitleAreaUpdate(id!); } this.updateActivityBarVisiblity(); this.onDidChangeActivityBarLocation(); } }));"} {"_id":"q-en-vscode-6390058d1208342ff60e0857c7e3bbf4d50c097ea8d4dabce04b2304dc7b757b","text":"\"type\": \"boolean\", \"default\": true, \"description\": \"%config.markdown.math.enabled%\" }, \"markdown.math.macros\": { \"type\": \"object\", \"additionalProperties\": { \"type\": \"string\" }, \"default\": {}, \"description\": \"%config.markdown.math.macros%\", \"scope\": \"resource\" } } }"} {"_id":"q-en-vscode-6391aad7ee248a5a7bc2a4a31b6c777c9d34ec7421fe285263b01277466eb376","text":".pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('usr/share/applications/' + product.applicationName + '.desktop')); const desktopUrlHandler = gulp.src('resources/linux/code-url-handler.desktop', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME_SHORT@@', product.nameShort)) .pipe(replace('@@NAME@@', product.applicationName)) .pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('usr/share/applications/' + product.applicationName + '-url-handler.desktop')); const appdata = gulp.src('resources/linux/code.appdata.xml', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME@@', product.applicationName))"} {"_id":"q-en-vscode-63ffb8bc00895bd84e6fc69ac4ff748caab2b8cb1af4930e7812f1c322235514","text":"useReplacePreview: boolean; showLineNumbers: boolean; usePCRE2: boolean; actionsPosition: 'auto' | 'right'; } export interface ISearchConfiguration extends IFilesConfiguration {"} {"_id":"q-en-vscode-6442ce7f991df711ac06c19865567cf8d500b29ae5341db0d57676e83b316cd5","text":"dependencies: safe-buffer \"^5.0.1\" universalify@^2.0.0: version \"2.0.1\" resolved \"https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d\" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== util-deprecate@^1.0.1: version \"1.0.2\" resolved \"https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf\" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= uuid@^9.0.1: version \"9.0.1\" resolved \"https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30\" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== vscode-oniguruma@1.7.0: version \"1.7.0\" resolved \"https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b\""} {"_id":"q-en-vscode-64551fe1fe45d0ecb67ac3d2e5684b2e3c9b14206c6e1f7309ab7cabf96edd3f","text":"import { ITerminalConfigurationService, LinuxDistro } from './terminal.js'; import type { IXtermCore } from './xterm-private.js'; import { DEFAULT_BOLD_FONT_WEIGHT, DEFAULT_FONT_WEIGHT, DEFAULT_LETTER_SPACING, DEFAULT_LINE_HEIGHT, FontWeight, ITerminalConfiguration, MAXIMUM_FONT_WEIGHT, MINIMUM_FONT_WEIGHT, MINIMUM_LETTER_SPACING, TERMINAL_CONFIG_SECTION, type ITerminalFont } from '../common/terminal.js'; import { isMacintosh } from '../../../../base/common/platform.js'; // #region TerminalConfigurationService"} {"_id":"q-en-vscode-64aa93007397a5db0f2395cfbe9dfcc5f11b7b9ab60bf17cc146883c3f2bf35b","text":"this.ui.checkAll.checked = this.ui.list.getAllVisibleChecked(); this.ui.visibleCount.setCount(this.ui.list.getVisibleCount()); this.ui.count.setCount(this.ui.list.getCheckedCount()); // Ensure no item is focused when using a screenreader when items update (#57501 & #166920) if (this.ui.isScreenReaderOptimized() && ariaLabel) { this._itemActivation = ItemActivation.NONE; } switch (this._itemActivation) { case ItemActivation.NONE: this._itemActivation = ItemActivation.FIRST; // only valid once, then unset"} {"_id":"q-en-vscode-650fc6021b881def300957eb06cd0572cdf41f8218f713c4ff0148e18f338949","text":"'Selection': this._register(this.menuService.createMenu(MenuId.MenubarSelectionMenu, this.contextKeyService)), 'View': this._register(this.menuService.createMenu(MenuId.MenubarViewMenu, this.contextKeyService)), 'Go': this._register(this.menuService.createMenu(MenuId.MenubarGoMenu, this.contextKeyService)), 'Terminal': this._register(this.menuService.createMenu(MenuId.MenubarTerminalMenu, this.contextKeyService)), 'Debug': this._register(this.menuService.createMenu(MenuId.MenubarDebugMenu, this.contextKeyService)), 'Tasks': this._register(this.menuService.createMenu(MenuId.MenubarTasksMenu, this.contextKeyService)), 'Help': this._register(this.menuService.createMenu(MenuId.MenubarHelpMenu, this.contextKeyService))"} {"_id":"q-en-vscode-65102e8d7d373d1e10a06ced1dffee14a1f30dc58c6d0d561bf0fd4c613d3acb","text":"this._fixedRows = _shellLaunchConfig.attachPersistentProcess?.fixedDimensions?.rows; this._fixedCols = _shellLaunchConfig.attachPersistentProcess?.fixedDimensions?.cols; this._icon = _shellLaunchConfig.attachPersistentProcess?.icon || _shellLaunchConfig.icon; // the resource is already set when it's been moved from another window this._resource = resource || getTerminalUri(this._workspaceContextService.getWorkspace().id, this.instanceId, this.title);"} {"_id":"q-en-vscode-6517c05180d96f10aaef78de99c380201637546947b9e3204e312d45096bc01a","text":"const merge = require('merge-options'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const { NLSBundlePlugin } = require('vscode-nls-dev/lib/webpack-bundler'); const { DefinePlugin } = require('webpack'); const { DefinePlugin, optimize } = require('webpack'); function withNodeDefaults(/**@type WebpackConfig*/extConfig) { /** @type WebpackConfig */"} {"_id":"q-en-vscode-65abdd1e5b83f11c16f91cb4e31468dee273199335c56b185c701475f46096b1","text":"import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { IMessageService } from 'vs/platform/message/common/message'; import { IWorkspaceConfigurationService } from 'vs/workbench/services/configuration/common/configuration'; import { IWindowsService, IWindowService } from 'vs/platform/windows/common/windows'; import { IWindowsService, IWindowService, IWindowSettings } from 'vs/platform/windows/common/windows'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { IWindowIPCService } from 'vs/workbench/services/window/electron-browser/windowService'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';"} {"_id":"q-en-vscode-65b97b2eb5f422c98db37a0e6022ac23c5254293b4b110f653cb0a204e51d5be","text":"// rerender them. this.buttonsUpdated = true; } if (this.toggles.length) { // if there are toggles, the ui.show() clears them out of the UI so we should // rerender them. this.togglesUpdated = true; } this.update(); }"} {"_id":"q-en-vscode-65b9a831a859a8c4ccae963581d80386e639a47d8cd5387132b11730a0d4011a","text":"} export function getSecondaryEdits(textModel: ITextModel, positions: readonly Position[], primaryEdit: SingleTextEdit): SingleTextEdit[] { if (positions.length === 1) { // No secondary cursor positions return []; } const primaryPosition = positions[0]; const secondaryPositions = positions.slice(1); const primaryEditStartPosition = primaryEdit.range.getStartPosition();"} {"_id":"q-en-vscode-65bbc39f89aa49cb017137fce4eeb21c793615080162d25a63d400d45198c2e2","text":"private _cursorBlinking: TextEditorCursorBlinkingStyle; private _cursorStyle: TextEditorCursorStyle; private _cursorSmoothCaretAnimation: 'off' | 'explicit' | 'on'; private _experimentalEditContextEnabled: boolean; private _selectionIsEmpty: boolean; private _isComposingInput: boolean;"} {"_id":"q-en-vscode-6615472f16e6185b29908d739a6f381576c7b3a5c8d3d7fea81a3d330ff5ff71","text":"resource: vscode.Uri, previewSettings: DynamicPreviewSettings ): DynamicMarkdownPreview { const activeTextEditorURI = vscode.window.activeTextEditor?.document.uri; const scrollLine = (activeTextEditorURI?.toString() === resource.toString()) ? vscode.window.activeTextEditor?.visibleRanges[0].start.line : undefined; const preview = DynamicMarkdownPreview.create( { resource, resourceColumn: previewSettings.resourceColumn, locked: previewSettings.locked, line: scrollLine, }, previewSettings.previewColumn, this._contentProvider,"} {"_id":"q-en-vscode-6626c53a2800f83f39fcef9a7c9e61eabb07871bbadbb3b7bc0d6111f95944fb","text":"}); } public acceptNextLine(editor: ICodeEditor): void { this._acceptNext(editor, (pos, text) => { public async acceptNextLine(editor: ICodeEditor): Promise { await this._acceptNext(editor, (pos, text) => { const m = text.match(/n/); if (m && m.index !== undefined) { return m.index + 1;"} {"_id":"q-en-vscode-66fb7e59b8e59c5407fc9f8867ca0808bbce385aaca277ea9240561a63fd1714","text":"} private toSymbolInformation(item: Proto.NavtoItem): vscode.SymbolInformation | undefined { if (!item.containerName || item.kind === 'alias') { if (item.kind === 'alias' && !item.containerName) { return; }"} {"_id":"q-en-vscode-6715a89a197effc7b952b309b5691478c56d567573e653a7e45ddf20f19589ef","text":"precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated), keybinding: [ { primary: KeyMod.Shift | KeyCode.Tab, secondary: [KeyMod.CtrlCmd | KeyCode.UpArrow, KeyMod.Alt | KeyCode.F2], primary: KeyMod.Alt | KeyCode.F2, secondary: [KeyMod.CtrlCmd | KeyCode.UpArrow], weight: KeybindingWeight.WorkbenchContrib, when: ContextKeyExpr.and(CONTEXT_ACCESSIBILITY_MODE_ENABLED, TerminalContextKeys.focus, ContextKeyExpr.or(terminalTabFocusModeContextKey, TerminalContextKeys.accessibleBufferFocus.negate())) }"} {"_id":"q-en-vscode-675b16496bc7bbbe694f716ca18c80f3eacb4263e380a2379cf52ed449caa381","text":"import { Event } from 'vs/base/common/event'; const WAIT_TIME_TO_SHOW_SURVEY = 1000 * 60 * 60; // 1 hour const MIN_WAIT_TIME_TO_SHOW_SURVEY = 1000 * 60 * 5; // 5 minutes const MIN_WAIT_TIME_TO_SHOW_SURVEY = 1000 * 60 * 2; // 2 minutes const MAX_INSTALL_AGE = 1000 * 60 * 60 * 24; // 24 hours const REMIND_LATER_DELAY = 1000 * 60 * 60 * 4; // 4 hours const SKIP_SURVEY_KEY = 'ces/skipSurvey';"} {"_id":"q-en-vscode-67fbf048c9ad98bc60be49cfdc62c26b4ecb27f4f3616b9ac7540a79cb96b7d0","text":"let bestDelta = 0; let bestScore = -1; // find best scored delta for (let delta = -deltaBefore; delta < deltaAfter; delta++) { for (let delta = -deltaBefore; delta <= deltaAfter; delta++) { const seq2OffsetStart = diff.seq2Range.start + delta; const seq2OffsetEndExclusive = diff.seq2Range.endExclusive + delta; const seq1Offset = diff.seq1Range.start + delta;"} {"_id":"q-en-vscode-68009729331d4c364d7855dd06fdc68e6f07e6ad032b5528ed139003e25957f3","text":"const emptyWindowsWithBackupsToRestore: IEmptyWindowBackupInfo[] = []; let filesToOpen: IFilesToOpen | undefined; let emptyToOpen = 0; let openOneEmptyWindow = false; // Identify things to open from open config const pathsToOpen = await this.getPathsToOpen(openConfig);"} {"_id":"q-en-vscode-6852935c0747c813dc3499a0c92291b54a684f0e397abfc0b13503554ed91d30","text":"} hide() { this._isExpanded = false; // Focus the container so that the comment editor will be blurred before it is hidden this.editor.focus(); if (this._isExpanded) { this._isExpanded = false; // Focus the container so that the comment editor will be blurred before it is hidden this.editor.focus(); } super.hide(); }"} {"_id":"q-en-vscode-685890dd1a5f899ceb2278c198a759c86a3d168098185b1a3aaaf175e84ccbb1","text":"this._register(Event.debounce(testProfiles.onDidChange, (_last, e) => e)(() => { const obj: Record = {}; for (const { controller, profiles } of this.testProfiles.all()) { obj[controller.id] = profiles.filter(p => p.isDefault).map(p => p.profileId); for (const group of [TestRunProfileBitset.Run, TestRunProfileBitset.Debug, TestRunProfileBitset.Coverage]) { for (const profile of this.testProfiles.getGroupDefaultProfiles(group)) { obj[profile.controllerId] ??= []; obj[profile.controllerId].push(profile.profileId); } } this.proxy.$setDefaultRunProfiles(obj);"} {"_id":"q-en-vscode-686530af8d8dfea0a6b04f0be375d52e62e217fdce2dcb2a235e51ba7f48c915","text":"import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { ActiveEditorContext } from 'vs/workbench/common/contextkeys'; import { DiffElementViewModelBase } from 'vs/workbench/contrib/notebook/browser/diff/diffElementViewModel'; import { NOTEBOOK_DIFF_CELL_INPUT, NOTEBOOK_DIFF_CELL_PROPERTY, NOTEBOOK_DIFF_CELL_PROPERTY_EXPANDED } from 'vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser'; import { INotebookTextDiffEditor, NOTEBOOK_DIFF_CELL_INPUT, NOTEBOOK_DIFF_CELL_PROPERTY, NOTEBOOK_DIFF_CELL_PROPERTY_EXPANDED } from 'vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser'; import { NotebookTextDiffEditor } from 'vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor'; import { NotebookDiffEditorInput } from 'vs/workbench/contrib/notebook/common/notebookDiffEditorInput'; import { openAsTextIcon, renderOutputIcon, revertIcon } from 'vs/workbench/contrib/notebook/browser/notebookIcons'; import { nextChangeIcon, openAsTextIcon, previousChangeIcon, renderOutputIcon, revertIcon } from 'vs/workbench/contrib/notebook/browser/notebookIcons'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; import { Registry } from 'vs/platform/registry/common/platform'; import { IConfigurationRegistry, Extensions as ConfigurationExtensions } from 'vs/platform/configuration/common/configurationRegistry'; import { ICommandActionTitle } from 'vs/platform/action/common/action'; import { DEFAULT_EDITOR_ASSOCIATION } from 'vs/workbench/common/editor'; import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; import { NOTEBOOK_DIFF_EDITOR_ID } from 'vs/workbench/contrib/notebook/common/notebookCommon'; // ActiveEditorContext.isEqualTo(SearchEditorConstants.SearchEditorID)"} {"_id":"q-en-vscode-686b4bdf470c4e6f1bbc984b651a0c12e126f8cd269ee012162fde49f018d45d","text":"export class ContentHoverWidget extends ResizableContentWidget { public static ID = 'editor.contrib.resizableContentHoverWidget'; private static _lastDimensions: dom.Dimension = new dom.Dimension(0, 0); private _visibleData: ContentHoverVisibleData | undefined; private _positionPreference: ContentWidgetPositionPreference | undefined;"} {"_id":"q-en-vscode-68aa00a1b24728a159958dd5875d84165be9334bac63911f6271f29cb8769a97","text":"import { InputFocusedContext } from 'vs/platform/workbench/common/contextkeys'; import { ServicesAccessor } from 'vs/editor/browser/editorExtensions'; import { PanelFocusContext } from 'vs/workbench/browser/parts/panel/panelPart'; import { CommandsRegistry } from 'vs/platform/commands/common/commands'; import { onUnexpectedError } from 'vs/base/common/errors'; export const ADD_CONFIGURATION_ID = 'debug.addConfiguration'; export const TOGGLE_INLINE_BREAKPOINT_ID = 'editor.debug.action.toggleInlineBreakpoint'; export function registerCommands(): void { CommandsRegistry.registerCommand({ id: 'debug.startFromConfig', handler: (accessor, config: IConfig) => { const debugService = accessor.get(IDebugService); debugService.startDebugging(undefined, config).then(undefined, onUnexpectedError); } }); KeybindingsRegistry.registerCommandAndKeybindingRule({ id: 'debug.toggleBreakpoint', weight: KeybindingWeight.WorkbenchContrib + 5,"} {"_id":"q-en-vscode-68cd7acfea336d935548e06f901c6d66ed5e4189de9e607c0a95bdaba7918b3a","text":"properties: { type: { type: 'string', description: nls.localize('runTask.type', \"The contributed task type\"), enum: Array.from(this._providerTypes.values()).map(provider => provider) description: nls.localize('runTask.type', \"The contributed task type\") }, taskName: { type: 'string', description: nls.localize('runTask.taskName', \"The task's label or a term to filter by\"), enum: await this.tasks().then((tasks) => tasks.map(t => t._label)) description: nls.localize('runTask.taskName', \"The task's label or a term to filter by\") } } }"} {"_id":"q-en-vscode-68e4932c06fcbedc31e3b1f052b3c23b9538825cc4873046e6e8a2622a32b735","text":"private currentMediaComponent: string | undefined = undefined; private currentMediaType: string | undefined = undefined; private async buildMediaComponent(stepId: string) { private async buildMediaComponent(stepId: string, forceRebuild: boolean = false) { if (!this.currentWalkthrough) { throw Error('no walkthrough selected'); } const stepToExpand = assertIsDefined(this.currentWalkthrough.steps.find(step => step.id === stepId)); if (this.currentMediaComponent === stepId) { return; } if (!forceRebuild && this.currentMediaComponent === stepId) { return; } this.currentMediaComponent = stepId; this.stepDisposables.clear();"} {"_id":"q-en-vscode-68ec832ffe57cc5479c78017702913f7e1cecff47d5304754caad1ca96f37657","text":"), })); this._register(Event.runAndSubscribe(this._editors.modified.onDidChangeCursorPosition, (e) => { if (e?.reason === CursorChangeReason.Explicit) { const diff = this._diffModel.get()?.diff.get()?.mappings.find(m => m.lineRangeMapping.modified.contains(e.position.lineNumber)); if (diff?.lineRangeMapping.modified.isEmpty) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineDeleted, { source: 'diffEditor.cursorPositionChanged' }); } else if (diff?.lineRangeMapping.original.isEmpty) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineInserted, { source: 'diffEditor.cursorPositionChanged' }); } else if (diff) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineModified, { source: 'diffEditor.cursorPositionChanged' }); } } })); this._register(Event.runAndSubscribe(this._editors.modified.onDidChangeCursorPosition, e => this._handleCursorPositionChange(e, true))); this._register(Event.runAndSubscribe(this._editors.original.onDidChangeCursorPosition, e => this._handleCursorPositionChange(e, false))); const isInitializingDiff = this._diffModel.map(this, (m, reader) => { /** @isInitializingDiff isDiffUpToDate */"} {"_id":"q-en-vscode-690662512ec0c542f8b43b47dbc82d254cf386a3d47dab84d5aeb7c95ecc60a2","text":"detachInstance() { if (!this._isShuttingDown) { this._terminalInstance?.detachFromElement(); this._terminalInstance?.setParentContextKeyService(this._contextKeyService); this._isDetached = true; } }"} {"_id":"q-en-vscode-693b432fe64742ec3b21d958a47ce20f6ee8ddda15885a2b41eab332a3371663","text":"import { memoize } from 'vs/base/common/decorators'; import { StopWatch } from 'vs/base/common/stopwatch'; import { IRemoteAgentService } from 'vs/workbench/services/remote/common/remoteAgentService'; import { shouldUseEnvironmentVariableCollection } from 'vs/platform/terminal/common/terminalEnvironment'; export class LocalTerminalBackendContribution implements IWorkbenchContribution {"} {"_id":"q-en-vscode-6954c1cf106d63dcdf0636cb455463c3ab6b540dba8849ad69b9ee749852a684","text":"return TriggerAction.NO_ACTION; }, accept: (keyMods, event) => this.openAnything(resourceOrEditor, { keyMods, range: this.pickState.lastRange, preserveFocus: event.inBackground }) accept: (keyMods, event) => this.openAnything(resourceOrEditor, { keyMods, range: this.pickState.lastRange, preserveFocus: event.inBackground, forcePinned: event.inBackground }) }; } private async openAnything(resourceOrEditor: URI | IEditorInput | IResourceEditorInput, options: { keyMods?: IKeyMods, preserveFocus?: boolean, range?: IRange, forceOpenSideBySide?: boolean }): Promise { private async openAnything(resourceOrEditor: URI | IEditorInput | IResourceEditorInput, options: { keyMods?: IKeyMods, preserveFocus?: boolean, range?: IRange, forceOpenSideBySide?: boolean, forcePinned?: boolean }): Promise { const editorOptions: ITextEditorOptions = { preserveFocus: options.preserveFocus, pinned: options.keyMods?.alt || this.configuration.openEditorPinned, pinned: options.keyMods?.alt || options.forcePinned || this.configuration.openEditorPinned, selection: options.range ? Range.collapseToStart(options.range) : undefined };"} {"_id":"q-en-vscode-696348248a2a734155b4896bae118a1e0b0e78c5f0abf1605ac337763af9276b","text":"} }); test('should ignore when everything excluded', () => { assert.deepStrictEqual(watcher.testNormalizePaths(['/foo/bar', '/bar'], ['**', 'something']), []); }); test('excludes are converted to absolute paths', () => { // undefined / empty"} {"_id":"q-en-vscode-69c0b0e1f33b8c161598d0c0d08bd002ccdd49b24663db247c9b8363c5c8374b","text":"import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { EditorOption } from 'vs/editor/common/config/editorOptions'; import { registerThemingParticipant, IColorTheme, ICssStyleCollector } from 'vs/platform/theme/common/themeService'; import { editorLightBulbForeground, editorLightBulbAutoFixForeground } from 'vs/platform/theme/common/colorRegistry'; import { editorLightBulbForeground, editorLightBulbAutoFixForeground, editorBackground } from 'vs/platform/theme/common/colorRegistry'; import { Gesture } from 'vs/base/browser/touch'; import type { CodeActionTrigger } from 'vs/editor/contrib/codeAction/types'; import { Codicon } from 'vs/base/common/codicons';"} {"_id":"q-en-vscode-69f7181ca6e23e9ca3ed5cdf52b633ff4e35d0ca73921707a13363f1408b3185","text":"} } public preparePathForTerminalAsync(path: string): Promise { return new Promise(c => { const hasSpace = path.indexOf(' ') !== -1; if (platform.isWindows) { const exe = this.shellLaunchConfig.executable; // 17063 is the build number where wsl path was introduced. // Update Windows uriPath to be executed in WSL. if (((exe.indexOf('wsl') !== -1) || ((exe.indexOf('bash.exe') !== -1) && (exe.indexOf('git') === -1))) && (TerminalInstance.getWindowsBuildNumber() >= 17063)) { execFile('bash.exe', ['-c', 'echo $(wslpath ' + this._escapeNonWindowsPath(path) + ')'], {}, (error, stdout, stderr) => { c(this._escapeNonWindowsPath(stdout.trim())); }); } else if (hasSpace) { c('\"' + path + '\"'); } } else if (!platform.isWindows) { c(this._escapeNonWindowsPath(path)); } }); } private _escapeNonWindowsPath(path: string): string { let newPath = path; if (newPath.indexOf('') !== 0) { newPath = newPath.replace(//g, ''); } if (!newPath && (newPath.indexOf('\"') !== -1)) { newPath = ''' + newPath + '''; } else if (newPath.indexOf(' ') !== -1) { newPath = newPath.replace(/ /g, ' '); } return newPath; } public static getWindowsBuildNumber(): number { const osVersion = (/(d+).(d+).(d+)/g).exec(os.release()); let buildNumber: number = 0; if (osVersion && osVersion.length === 4) { buildNumber = parseInt(osVersion[3]); } return buildNumber; } public setVisible(visible: boolean): void { this._isVisible = visible; if (this._wrapperElement) {"} {"_id":"q-en-vscode-6a037b03391387efb957c61369a9ddaab352b331a0fcd8ceda377f6f89489202","text":"this._configHelper.mergeDefaultShellPathAndArgs(shell); } this._initialCwd = this._getCwd(this._shellLaunchConfig, this._historyService.getLastActiveWorkspaceRoot()); const env = TerminalInstance.createTerminalEnv(process.env, shell, this._initialCwd, locale, this._cols, this._rows); const platformKey = platform.isWindows ? 'windows' : platform.isMacintosh ? 'osx' : 'linux'; const envFromConfig = { ...process.env, ...this._configHelper.config.env[platformKey] }; const env = TerminalInstance.createTerminalEnv(envFromConfig, shell, this._initialCwd, locale, this._cols, this._rows); this._title = shell.name || ''; this._process = cp.fork(Uri.parse(require.toUrl('bootstrap')).fsPath, ['--type=terminal'], { env,"} {"_id":"q-en-vscode-6a6f3c3a90bd74f0f8ec7fd078df8a3bea23833295afeb4a29670e8809e29222","text":"// }); suite('hideFromUser', () => { test('should be available to terminals API', done => { test('should be available to terminals API', async () => { const terminal = window.createTerminal({ name: 'bg', hideFromUser: true }); disposables.push(window.onDidOpenTerminal(t => { try { equal(t, terminal); equal(t.name, 'bg'); ok(window.terminals.indexOf(terminal) !== -1); } catch (e) { done(e); return; } disposables.push(window.onDidCloseTerminal(() => { // reg3.dispose(); done(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); equal(true, window.terminals.indexOf(terminal) !== -1); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); })); }); }); });"} {"_id":"q-en-vscode-6b2ee8db56920ee334bcd1cd0af61d57e23ef813bfd5b4197edf05e1a6030df3","text":"import { PICK_WORKSPACE_FOLDER_COMMAND_ID } from 'vs/workbench/browser/actions/workspaceCommands'; import { INotificationService } from 'vs/platform/notification/common/notification'; import { TERMINAL_COMMAND_ID } from 'vs/workbench/parts/terminal/common/terminalCommands'; import { isWindows } from 'vs/base/common/platform'; import { Command } from 'vs/editor/browser/editorExtensions'; import { timeout } from 'vs/base/common/async'; import { FindReplaceState } from 'vs/editor/contrib/find/findState';"} {"_id":"q-en-vscode-6b5355c574b21b812a3d4744808a6af08634765d1d96967e69420812fef419f1","text":"@IWorkbenchEditorService private editorService: IWorkbenchEditorService, @IEditorGroupService private editorGroupService: IEditorGroupService, @IPartService private partService: IPartService, @IStorageService private storageServise: IStorageService, @IStorageService private storageService: IStorageService, @IContextKeyService private contextKeyService: IContextKeyService, @IExtensionService private extensionService: IExtensionService, @IInstantiationService private instantiationService: IInstantiationService,"} {"_id":"q-en-vscode-6b8174125f78831085eba1fee162008b61f17a3a9884db92ea0c4e27175b10a2","text":"const range = match.range(); const matchText = match.text().substr(0, range.endColumn + 150); if (replace) { return nls.localize('replacePreviewResultAria', \"Replace '{0}' with '{1}' at column {2} in line {3}\", matchString, match.replaceString, range.startColumn + 1, matchText); return nls.localize('replacePreviewResultAria', \"Replace '{0}' with '{1}' in line '{2}' at column {3}\", matchString, match.replaceString, matchText, range.startColumn + 1); } return nls.localize('searchResultAria', \"Found '{0}' at column {1} in line '{2}'\", matchString, range.startColumn + 1, matchText); return nls.localize('searchResultAria', \"Found '{0}' in line '{1}' at column {2}\", matchString, matchText, range.startColumn + 1); } return null; }"} {"_id":"q-en-vscode-6bc925f7b081e4c24655544cf74fbae704622cd4cfc2579baad6f49a338aa025","text":"menu: { id: MenuId.MenubarAppearanceMenu, group: '4_editor', order: 4 order: 5 } }); }"} {"_id":"q-en-vscode-6bdc8cefc263e4d3acbecee7aa945c764e1dbc9e437bd742ea758e50af57c45b","text":"getAnchor: () => this._editorContainer, render: (container) => { return this._render(provider, container); }, onHide: () => { provider.onClose(); this._keyListener?.dispose(); } }; this._contextViewService.showContextView(delegate);"} {"_id":"q-en-vscode-6befe4d592da158818c54e8993f1e3a6d0944d16c41be92c70908dcbeffa4fe8","text":"const result = { primary, secondary, menu }; createAndFillInContextMenuActions(menu, { shouldForwardArgs: true }, result, 'inline'); if (i === 0) { for (const action of result.primary) { allowedPrimary.set(action.id, action); } for (const action of result.secondary) { allowedSecondary.set(action.id, action); } primaryGroups = this.createGroups(result.primary); secondaryGroups = this.createGroups(result.secondary); } else { const primaryKeys = allowedPrimary.keys(); for (const key of primaryKeys) { if (!result.primary.some(action => action.id === key)) { allowedPrimary.delete(key); } } const secondaryKeys = allowedSecondary.keys(); for (const key of secondaryKeys) { if (!result.secondary.some(action => action.id === key)) { allowedSecondary.delete(key); } } this.filterNonUniversalActions(primaryGroups, result.primary); this.filterNonUniversalActions(secondaryGroups, result.secondary); } if (listen && elements.length === 1) { listen.add(menu.onDidChange(() => this._onDidChange.fire(element)));"} {"_id":"q-en-vscode-6c439b135554c329cd2df5a7ea0cb267a8f9e3fc09dca24df2c6948daa5ed65e","text":"this._instance.focus(); this._instance.sendText(text, false); })); this.add(this._instance.onWillPaste(() => addon.isPasting = true)); this.add(this._instance.onDidPaste(() => { // Delay this slightly as synchronizing the prompt input is debounced setTimeout(() => addon.isPasting = false, 100); })); // If completions are requested, pause and queue input events until completions are // received. This fixing some problems in PowerShell, particularly enter not executing"} {"_id":"q-en-vscode-6c8b76dcea06861846d2bad175464b3ed42675d0484026ae458e7b4e8685cca4","text":"return symbolPicks; } private async openSymbol(provider: IWorkspaceSymbolProvider, symbol: IWorkspaceSymbol, token: CancellationToken, options: { keyMods: IKeyMods, forceOpenSideBySide?: boolean, preserveFocus?: boolean }): Promise { private async openSymbol(provider: IWorkspaceSymbolProvider, symbol: IWorkspaceSymbol, token: CancellationToken, options: { keyMods: IKeyMods, forceOpenSideBySide?: boolean, preserveFocus?: boolean, forcePinned?: boolean }): Promise { // Resolve actual symbol to open for providers that can resolve let symbolToOpen = symbol;"} {"_id":"q-en-vscode-6cc61667407336b5ab4add24e47ffad10829f896b0f5a08874e8fd90cca966f9","text":"templateData.value.appendChild(result); templateData.value.classList.add((element.severity === severity.Warning) ? 'warn' : (element.severity === severity.Error) ? 'error' : (element.severity === severity.Ignore) ? 'ignore' : 'info'); templateData.source.textContent = element.sourceData ? `${element.sourceData.source.name}:${element.sourceData.lineNumber}` : ''; templateData.source.textContent = element.sourceData ? `${basename(element.sourceData.source.name)}:${element.sourceData.lineNumber}` : ''; templateData.source.title = element.sourceData ? `${this.labelService.getUriLabel(element.sourceData.source.uri)}:${element.sourceData.lineNumber}` : ''; templateData.getReplElementSource = () => element.sourceData; }"} {"_id":"q-en-vscode-6cd3a3e99b3f0f3ac7289e50c15e57ce6744c5c91fc48517fc7ffc7d631bf144","text":"border-radius: 6px; } .monaco-dialog-box .dialog-message-row .dialog-message-container { padding-left: 0px; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-text { font-size: 25px; width: max-content; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-body .dialog-message { display: flex; padding: 20px; min-height: auto; color: var(--vscode-descriptionForeground); border-radius: 6px; overflow: hidden; margin-bottom: 12px; background: var(--vscode-welcomePage-tileHoverBackground); align-items: center; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-body>.dialog-message { grid-area: title; align-self: flex-end; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-body .dialog-message hr { border-color: var(--vscode-descriptionForeground); margin-bottom: 12px; border-width: thin; min-width: max-content; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-body .dialog-message .icon-widget { #monaco-dialog-message-body > div > p > .codicon[class*='codicon-']::before{ padding-right: 8px; max-width: 30px; max-height: 30px;"} {"_id":"q-en-vscode-6ceb9c859c0a46f86bc7ef72d0c9468dff7fa2611479fbfcaefa19fe2bdd1842","text":"} this._currentCommand.commandStartX = this._terminal.buffer.active.cursorX; this._currentCommand.commandStartMarker = options?.marker || this._terminal.registerMarker(0); // Clear executed as it must happen after command start this._currentCommand.commandExecutedMarker?.dispose(); this._currentCommand.commandExecutedMarker = undefined; this._currentCommand.commandExecutedX = undefined; for (const m of this._commandMarkers) { m.dispose(); } this._commandMarkers.length = 0; this._onCommandStarted.fire({ marker: options?.marker || this._currentCommand.commandStartMarker, markProperties: options?.markProperties } as ITerminalCommand); this._logService.debug('CommandDetectionCapability#handleCommandStart', this._currentCommand.commandStartX, this._currentCommand.commandStartMarker?.line); }"} {"_id":"q-en-vscode-6d0cd14315747d8b3a21e87ebe84b5143ca33f56c99a814f04cb6d46ca7860f5","text":"

${vscode.l10n.t(\"An error occurred while loading the audio file.\")}

"} {"_id":"q-en-vscode-6d290eee966dd2cad4e31effd3a4790fc96ff6fed8d43c2e2ef8114b693feb6c","text":"private _updateActionFromKernelInfo(info: INotebookKernelMatchResult): void { this._kernelDisposable.clear(); this._action.enabled = true; const selectedOrSuggested = info.selected ?? ((info.all.length === 1 && info.suggestions.length === 1 && info.suggestions[0].type === NotebookKernelType.Resolved) ? info.suggestions[0] : undefined); const selectedOrSuggested = info.selected ?? ((info.suggestions.length === 1 && info.suggestions[0].type === NotebookKernelType.Resolved) ? info.suggestions[0] : undefined); if (selectedOrSuggested) { // selected or suggested kernel this._action.label = selectedOrSuggested.label;"} {"_id":"q-en-vscode-6d71bb0b2ba015e8ed7017118071d6c6d3130a1ef5e7853265aa34606c9d8721","text":"} }; if (platform.isWindows) { properties['window.autoDetectHighContrast'] = { 'type': 'boolean', 'default': true, 'description': nls.localize('autoDetectHighContrast', \"If enabled, will automatically change to high contrast theme if Windows is using a high contrast theme, and to dark theme when switching away from a Windows high contrast theme.\"), }; } if (platform.isMacintosh) { properties['window.titleBarStyle'] = { 'type': 'string',"} {"_id":"q-en-vscode-6d8543d6acc6cc593e2a99ee142f68ed065b6deb9283af0515b6abc3b48bf844","text":"import { LifecyclePhase } from 'vs/workbench/services/lifecycle/common/lifecycle'; import { launchSchemaId } from 'vs/workbench/services/configuration/common/configuration'; import { LoadedScriptsView } from 'vs/workbench/contrib/debug/browser/loadedScriptsView'; import { RunToCursorAction } from 'vs/workbench/contrib/debug/browser/debugEditorActions'; import { RunToCursorAction, SelectionToReplAction, SelectionToWatchExpressionsAction } from 'vs/workbench/contrib/debug/browser/debugEditorActions'; import { WatchExpressionsView, ADD_WATCH_LABEL, REMOVE_WATCH_EXPRESSIONS_COMMAND_ID, REMOVE_WATCH_EXPRESSIONS_LABEL, ADD_WATCH_ID } from 'vs/workbench/contrib/debug/browser/watchExpressionsView'; import { VariablesView, SET_VARIABLE_ID, COPY_VALUE_ID, BREAK_WHEN_VALUE_CHANGES_ID, COPY_EVALUATE_PATH_ID, ADD_TO_WATCH_ID, BREAK_WHEN_VALUE_IS_ACCESSED_ID, BREAK_WHEN_VALUE_IS_READ_ID, VIEW_MEMORY_ID } from 'vs/workbench/contrib/debug/browser/variablesView'; import { Repl } from 'vs/workbench/contrib/debug/browser/repl';"} {"_id":"q-en-vscode-6d8f5480d16de574f350407a0b39fdccfdf13c3c442ecaec2aebd87f0a2617f9","text":"linkAllowedByRules('https://github.com', ['https://github.com/foo/bar', 'https://github.com']); }); test('ports', () => { linkNotAllowedByRules('https://x.org:8080/foo/bar', ['https://x.org:8081/foo']); linkAllowedByRules('https://x.org:8080/foo/bar', ['https://x.org:*/foo']); linkAllowedByRules('https://x.org/foo/bar', ['https://x.org:*/foo']); linkAllowedByRules('https://x.org:8080/foo/bar', ['https://x.org:8080/foo']); }); test('ip addresses', () => { linkAllowedByRules('http://192.168.1.7/', ['http://192.168.1.7/']); linkAllowedByRules('http://192.168.1.7/', ['http://192.168.1.7']); linkAllowedByRules('http://192.168.1.7/', ['http://192.168.1.*']); linkNotAllowedByRules('http://192.168.1.7:3000/', ['http://192.168.*.6:*']); linkAllowedByRules('http://192.168.1.7:3000/', ['http://192.168.1.7:3000/']); linkAllowedByRules('http://192.168.1.7:3000/', ['http://192.168.1.7:*']); linkAllowedByRules('http://192.168.1.7:3000/', ['http://192.168.1.*:*']); linkNotAllowedByRules('http://192.168.1.7:3000/', ['http://192.168.*.6:*']); }); test('case normalization', () => { // https://github.com/microsoft/vscode/issues/99294 linkAllowedByRules('https://github.com/microsoft/vscode/issues/new', ['https://github.com/microsoft']);"} {"_id":"q-en-vscode-6d99372803979fbd9a453721006df9a27f3953398fd7f9b3b0cb7f3d226dd5d7","text":"} const focused = this.getFocus(); if (!focused.length) { return this.view.updateElementHeight(index, size, null); } const focus = focused[0]; if (focus <= index) { return this.view.updateElementHeight(index, size, focus); } // the `element` is in the viewport, it's very often that the height update is triggerred by user interaction (collapse, run cell) // then we should make sure that the `element`'s visual view position doesn't change. const focus = focused.length ? focused[0] : null; if (this.view.elementTop(index) >= this.view.getScrollTop()) { return this.view.updateElementHeight(index, size, index); const anchorFocusedSetting = this.configurationService.getValue(NotebookSetting.anchorToFocusedCell); const allowScrolling = this.configurationService.getValue(NotebookSetting.scrollToRevealCell) !== 'none'; const anchorToFocusedCell = anchorFocusedSetting === 'true' || (allowScrolling && anchorFocusedSetting !== 'false'); if (focused && anchorToFocusedCell) { this.view.updateElementHeight(index, size, focus); } this.view.updateElementHeight(index, size, focus); this.view.updateElementHeight(index, size, null); } // override"} {"_id":"q-en-vscode-6dec704eb6bc15136ed99dc5a569475423458cabaaa93b2a6e3629995d59a585","text":"public _serviceBrand: any; private activePanelContextKey: IContextKey; private blockOpeningPanel: boolean; private compositeBar: CompositeBar; private compositeActions: { [compositeId: string]: { activityAction: PanelActivityAction, pinnedAction: ToggleCompositePinnedAction } }; private dimension: Dimension; private disposables: IDisposable[] = []; constructor( id: string,"} {"_id":"q-en-vscode-6dffceb125b5af51028dcc40623ea6b18162ce9e389346bdc3461d6564891b97","text":"private async getAllEditSessions(): Promise { const allEditSessions = await this.editSessionsStorageService.list(); this.editSessionsCount.set(allEditSessions.length); return allEditSessions.map((session) => { const editSessions = []; for (const session of allEditSessions) { const resource = URI.from({ scheme: EDIT_SESSIONS_SCHEME, authority: 'remote-session-content', path: `/${session.ref}` }); return { const sessionData = await this.editSessionsStorageService.read(session.ref); const label = sessionData?.editSession.folders.map((folder) => folder.name).join(', ') ?? session.ref; const machineId = sessionData?.editSession.machine; const description = machineId === undefined ? fromNow(session.created, true) : `${fromNow(session.created, true)}u00a0u00a0u2022u00a0u00a0${await this.editSessionsStorageService.getMachineById(machineId)}`; editSessions.push({ handle: resource.toString(), collapsibleState: TreeItemCollapsibleState.Collapsed, label: { label: fromNow(session.created, true) }, description: session.ref, label: { label }, description: description, themeIcon: Codicon.repo, contextValue: `edit-session` }; }); }); } return editSessions; } private async getEditSession(ref: string): Promise {"} {"_id":"q-en-vscode-6e706a8f7392229424467ef0f0d06d97e238be72ccdce517526574234cfcbe4f","text":"getCommit(ref: string): Promise; add(paths: string[]): Promise; revert(paths: string[]): Promise; clean(paths: string[]): Promise; apply(patch: string, reverse?: boolean): Promise;"} {"_id":"q-en-vscode-6ea32e2d7652a782b826e11e25f18986c5cf17aec43ff614dad93f9e6b95259e","text":"invokeProtocolHandler(); // We cannot know whether the protocol handler succeeded. // Display guidance in case it did not, e.g. the app is not installed locally. if (matchesScheme(href, this.productService.urlProtocol)) { const showProtocolUrlOpenedDialog = async () => { const showResult = await this.dialogService.show( Severity.Info, localize('openExternalDialogTitle', \"All done. You can close this tab now.\"),"} {"_id":"q-en-vscode-6eb7adf4c49b91a2a02ed61ee05fe9a3e3150d07a0d13381369805eb8ff9f351","text":"isFeatureTerminal: withNullAsUndefined(internalOptions?.isFeatureTerminal), isExtensionOwnedTerminal: true, useShellEnvironment: withNullAsUndefined(internalOptions?.useShellEnvironment), location: internalOptions?.location || this._serializeParentTerminal(options.location, internalOptions?.resolvedExtHostIdentifier) location: internalOptions?.location || this._serializeParentTerminal(options.location, internalOptions?.resolvedExtHostIdentifier), disablePersistence: withNullAsUndefined(options.disablePersistence) }); }"} {"_id":"q-en-vscode-6f0c542ca937db2d3ebb49a13a539930a3949fc4cafe5a2220d7aadcb181332c","text":"private readonly notebookEditor: INotebookEditor, @INotebookExecutionStateService private readonly notebookExecutionStateService: INotebookExecutionStateService, @IMarkerService private readonly markerService: IMarkerService, @IInlineChatService private readonly inlineChatService: IInlineChatService, @IChatAgentService private readonly chatAgentService: IChatAgentService, @IConfigurationService private readonly configurationService: IConfigurationService ) { super(); this.updateEnabled(); this._register(inlineChatService.onDidChangeProviders(() => this.updateEnabled())); this._register(chatAgentService.onDidChangeAgents(() => this.updateEnabled())); this._register(configurationService.onDidChangeConfiguration((e) => { if (e.affectsConfiguration(NotebookSetting.cellFailureDiagnostics)) { this.updateEnabled();"} {"_id":"q-en-vscode-6f6dd675ab66d616a4b76332beede39a83ef1edd18dfb41341f3ae0839334049","text":"} next(scrollType: ScrollType = ScrollType.Smooth): void { if (!this.canNavigateNext()) { return; } this._move(true, scrollType); } previous(scrollType: ScrollType = ScrollType.Smooth): void { if (!this.canNavigatePrevious()) { return; } this._move(false, scrollType); } canNavigateNext(): boolean { return this.canNavigateLoop() || this.nextIdx < this.ranges.length - 1; } canNavigatePrevious(): boolean { return this.canNavigateLoop() || this.nextIdx !== 0; } canNavigateLoop(): boolean { return Boolean(this._options.findResultLoop); } override dispose(): void { super.dispose(); this.ranges = [];"} {"_id":"q-en-vscode-6f8f66bc897a54d9f62849b58d26308fcc3d6ea29e64217a8a756c32a9f35e88","text":"} } } catch (error) { const fileUri = URI.file(candidate); this.historyMainService.removeFromRecentlyOpened([fileUri]); // since file does not seem to exist anymore, remove from recent this.historyMainService.removeFromRecentlyOpened([candidate]); // since file does not seem to exist anymore, remove from recent const fileUri = URI.file(candidate); if (options && options.ignoreFileNotFound) { return { fileUri, createFilePath: true, remoteAuthority }; // assume this is a file that does not yet exist }"} {"_id":"q-en-vscode-6f937b345d2b288172e6121ef175ea6e06e96097058b7e1f58fdd24f01acd057","text":"dispose(): void { // selectionListener.clear(); this._entriesDisposables.dispose(); this._dispoables.dispose(); }"} {"_id":"q-en-vscode-6fc31f7c2f8d2e74123a82268c1339c23736362ea46bda7417eab36e8ac0d290","text":"import { Position } from 'vs/editor/common/core/position'; import { withNullAsUndefined } from 'vs/base/common/types'; import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { EditorOption } from 'vs/editor/common/config/editorOptions'; export class GotoDefinitionAtPositionEditorContribution implements IEditorContribution {"} {"_id":"q-en-vscode-6fd262a3979a3c31a55e33ce916d18fca348e9cb5237a8c143f5e3a18eb0c3d9","text":"}, scope: ConfigurationScope.RESOURCE }, 'search.mode': { [SEARCH_MODE_CONFIG]: { type: 'string', enum: ['view', 'reuseEditor', 'newEditor'], default: 'view',"} {"_id":"q-en-vscode-7028ffeba9ac8029a8f233e1ac0293909728620f24209fd1dc796461f78c21f8","text":"if (this._activeSession) { this._zone.value.updateBackgroundColor(widgetPosition, this._activeSession.wholeRange.value); } if (this._strategy) { needsMargin = this._strategy.needsMargin(); } if (!this._zone.value.position) { this._zone.value.setWidgetMargins(widgetPosition, !needsMargin ? 0 : undefined); this._zone.value.setWidgetMargins(widgetPosition); this._zone.value.show(widgetPosition); } else { this._zone.value.updatePositionAndHeight(widgetPosition);"} {"_id":"q-en-vscode-703256bb47cdd16ab7127612056c217f4a520ba63db9957e9e0cb2b0e4e0ca2d","text":"return obj; } export function getCellMetadata(cell: NotebookCell | NotebookCellData) { return { export function getCellMetadata(cell: NotebookCell | NotebookCellData): CellMetadata { const metadata = { // it contains the cell id, and the cell metadata, along with other nb cell metadata ...(cell.metadata?.custom ?? {}), // promote the cell attachments to the top level attachments: cell.metadata?.custom?.attachments ?? cell.metadata?.attachments ...(cell.metadata?.custom ?? {}) }; // promote the cell attachments to the top level const attachments = cell.metadata?.custom?.attachments ?? cell.metadata?.attachments; if (attachments) { metadata.attachments = attachments; } return metadata; } export function getVSCodeCellLanguageId(metadata: CellMetadata): string | undefined { return metadata.metadata?.vscode?.languageId; } export function setVSCodeCellLanguageId(metadata: CellMetadata, languageId: string) { metadata.metadata = metadata.metadata || {}; metadata.metadata.vscode = { languageId }; } export function removeVSCodeCellLanguageId(metadata: CellMetadata) { if (metadata.metadata?.vscode) { delete metadata.metadata.vscode; } } function createCodeCellFromNotebookCell(cell: NotebookCellData, preferredLanguage: string | undefined): nbformat.ICodeCell { const cellMetadata = getCellMetadata(cell); let metadata = cellMetadata?.metadata || {}; // This cannot be empty. const cellMetadata: CellMetadata = JSON.parse(JSON.stringify(getCellMetadata(cell))); cellMetadata.metadata = cellMetadata.metadata || {}; // This cannot be empty. if (cell.languageId !== preferredLanguage) { metadata = { ...metadata, vscode: { languageId: cell.languageId } }; } else if (metadata.vscode) { setVSCodeCellLanguageId(cellMetadata, cell.languageId); } else { // cell current language is the same as the preferred cell language in the document, flush the vscode custom language id metadata delete metadata.vscode; removeVSCodeCellLanguageId(cellMetadata); } const codeCell: any = {"} {"_id":"q-en-vscode-70bf201cc6f9c50ce4e739afc1c5e0cfcf5cb88dfd8ec2471f57dc14d37f6eb0","text":"parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_MACOS: ${{ parameters.VSCODE_BUILD_MACOS }} - ${{ if eq(parameters.VSCODE_BUILD_MACOS_ARM64, true) }}: - job: MacOSARM64 pool: vmImage: macOS-11 steps: - template: ./darwin/cli-build-darwin.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_MACOS_ARM64: ${{ parameters.VSCODE_BUILD_MACOS_ARM64 }} - ${{ if eq(variables.VSCODE_BUILD_STAGE_WINDOWS, true) }}: - job: Windows - ${{ if eq(parameters.VSCODE_BUILD_WIN32, true) }}: - job: WindowsX64 pool: vscode-1es-windows steps: - template: ./win32/cli-build-win32.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_WIN32: ${{ parameters.VSCODE_BUILD_WIN32 }} - ${{ if eq(parameters.VSCODE_BUILD_WIN32_ARM64, true) }}: - job: WindowsARM64 pool: vscode-1es-windows steps: - template: ./win32/cli-build-win32.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_WIN32_ARM64: ${{ parameters.VSCODE_BUILD_WIN32_ARM64 }} - ${{ if eq(parameters.VSCODE_BUILD_WIN32_32BIT, true) }}: - job: WindowsX86 pool: vscode-1es-windows steps: - template: ./win32/cli-build-win32.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_WIN32_32BIT: ${{ parameters.VSCODE_BUILD_WIN32_32BIT }} - ${{ if and(eq(parameters.VSCODE_COMPILE_ONLY, false), eq(variables['VSCODE_BUILD_STAGE_WINDOWS'], true)) }}:"} {"_id":"q-en-vscode-70e96b602e31b981a8a6fcbaf42919dc46e8f36e10eb0cd3673222a4037e1775","text":"private readonly _onRecommendationChange: Emitter = new Emitter(); onRecommendationChange: Event = this._onRecommendationChange.event; private _sessionIgnoredRecommendations: { [id: string]: { reasonId: ExtensionRecommendationReason } } = {}; private _sessionRestoredRecommendations: { [id: string]: { reasonId: ExtensionRecommendationReason } } = {}; private _sessionIgnoredRecommendations: { [id: string]: { reasonId: ExtensionRecommendationReason, reasonText: string, sources: ExtensionRecommendationSource[] } } = {}; private _sessionRestoredRecommendations: { [id: string]: { reasonId: ExtensionRecommendationReason, reasonText: string, sources: ExtensionRecommendationSource[] } } = {}; constructor( @IExtensionGalleryService private readonly _galleryService: IExtensionGalleryService,"} {"_id":"q-en-vscode-71211ef06da8407d0d8f2ae15aedcc793d8a1acd27688497857b4254227daeef","text":"} })); this._recomputeActive(); const { changeEventTriggered } = this._recomputeActive(); if (!changeEventTriggered) { this._onDidChange.fire({}); } } private _recomputeActive(): { changeEventTriggered: boolean } {"} {"_id":"q-en-vscode-7142b26c126861b345331e07fa0b0926f014502610a11d19ed6ec62a09c9ba87","text":"import { IColorTheme, ICssStyleCollector, IThemeService, registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { IHoverService } from 'vs/workbench/services/hover/browser/hover'; import { IAction } from 'vs/base/common/actions'; import { IAction, Separator } from 'vs/base/common/actions'; import { Emitter } from 'vs/base/common/event'; import { MarkdownString } from 'vs/base/common/htmlContent'; import { localize } from 'vs/nls';"} {"_id":"q-en-vscode-71558465fdfd53fbf6a2c055ba214e46537c030340bb455ed76a5db23d44df6a","text":"} }); // Accessibility navigation commands should only be enabled on windows since they are tuned to what NVDA expects export class CursorWordAccessibilityLeft extends WordLeftCommand { constructor() { super({ inSelectionMode: false, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityLeft', precondition: undefined, kbOpts: { kbExpr: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyCode.LeftArrow, weight: KeybindingWeight.EditorContrib } }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordAccessibilityLeftSelect extends WordLeftCommand { constructor() { super({ inSelectionMode: true, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityLeftSelect', precondition: undefined, kbOpts: { kbExpr: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.LeftArrow, weight: KeybindingWeight.EditorContrib } }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordAccessibilityRight extends WordRightCommand { constructor() { super({ inSelectionMode: false, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityRight', precondition: undefined, kbOpts: { kbExpr: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyCode.RightArrow, weight: KeybindingWeight.EditorContrib } }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } export class CursorWordAccessibilityRightSelect extends WordRightCommand { constructor() { super({ inSelectionMode: true, wordNavigationType: WordNavigationType.WordAccessibility, id: 'cursorWordAccessibilityRightSelect', precondition: undefined, kbOpts: { kbExpr: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.RightArrow, weight: KeybindingWeight.EditorContrib } }); } protected override _move(wordCharacterClassifier: WordCharacterClassifier, model: ITextModel, position: Position, wordNavigationType: WordNavigationType, hasMulticursor: boolean): Position { return super._move(getMapForWordSeparators(EditorOptions.wordSeparators.defaultValue, wordCharacterClassifier.intlSegmenterLocales), model, position, wordNavigationType, hasMulticursor); } } registerEditorCommand(new CursorWordAccessibilityLeft()); registerEditorCommand(new CursorWordAccessibilityLeftSelect()); registerEditorCommand(new CursorWordAccessibilityRight()); registerEditorCommand(new CursorWordAccessibilityRightSelect()); KeybindingsRegistry.registerKeybindingRule({ id: 'cursorWordAccessibilityLeft', when: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyCode.LeftArrow, weight: KeybindingWeight.WorkbenchContrib }); KeybindingsRegistry.registerKeybindingRule({ id: 'cursorWordAccessibilityLeftSelect', when: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.LeftArrow, weight: KeybindingWeight.WorkbenchContrib }); KeybindingsRegistry.registerKeybindingRule({ id: 'cursorWordAccessibilityRight', when: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyCode.RightArrow, weight: KeybindingWeight.WorkbenchContrib }); KeybindingsRegistry.registerKeybindingRule({ id: 'cursorWordAccessibilityRightSelect', when: ContextKeyExpr.and(EditorContextKeys.textInputFocus, CONTEXT_ACCESSIBILITY_MODE_ENABLED, IsWindowsContext, ContextKeyExpr.equals(FocusedViewContext.key, OUTPUT_VIEW_ID)), primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.RightArrow, weight: KeybindingWeight.WorkbenchContrib }); "} {"_id":"q-en-vscode-716e83bc1cc7335cdb2e68973bf902a0f39f35219f470d991fc4c8e81ca6b927","text":"// ---- blinking logic private _getCursorBlinking(): TextEditorCursorBlinkingStyle { if (this._isComposingInput) { // TODO: Remove the following if statement when experimental edit context is made default sole implementation if (this._isComposingInput && !this._experimentalEditContextEnabled) { // avoid double cursors return TextEditorCursorBlinkingStyle.Hidden; }"} {"_id":"q-en-vscode-7175224600baa7872392655df1e687adc7156a1e8a56adf216cc2f5c186560d6","text":"out[0] = item.completion.detail; return true; } if (typeof item.completion.documentation === 'string') { const match = ColorExtractor._regexRelaxed.exec(item.completion.documentation); if (match && (match.index === 0 || match.index + match[0].length === item.completion.documentation.length)) { if (item.completion.documentation) { const value = typeof item.completion.documentation === 'string' ? item.completion.documentation : item.completion.documentation.value; const match = ColorExtractor._regexRelaxed.exec(value); if (match && (match.index === 0 || match.index + match[0].length === value.length)) { out[0] = match[0]; return true; }"} {"_id":"q-en-vscode-71c34abe02c5cdcce385e803d03f1908ce29efcbe9f05941c464012b8786a4ea","text":"throw new Error('ChatEditor lifecycle issue: no editor widget'); } this.updateModel(editorModel.model); this.updateModel(editorModel.model, options.viewState); } private updateModel(model: IChatModel): void { this._memento = new Memento('interactive-session-editor-' + model.sessionId, this.storageService); this._viewState = this._memento.getMemento(StorageScope.WORKSPACE, StorageTarget.MACHINE) as IChatViewState; private updateModel(model: IChatModel, viewState?: IChatViewState): void { this._memento = new Memento('interactive-session-editor-' + model.providerId, this.storageService); this._viewState = viewState ?? this._memento.getMemento(StorageScope.WORKSPACE, StorageTarget.MACHINE) as IChatViewState; this.widget.setModel(model, { ...this._viewState }); }"} {"_id":"q-en-vscode-71c4e73539f505bfa37c1845806f56e67c596fa798dec9a1e063879e691e88fa","text":"const extension = await this.toScannedExtension(webExtension, true); if (extension.isValid || !scanOptions?.skipInvalidExtensions) { result.push(extension); } else { this.logService.info(`Skipping invalid additional builtin gallery extension ${webExtension.identifier.id}`); } } catch (error) { this.logService.info(`Ignoring additional builtin extension ${webExtension.identifier.id} because there is an error while converting it into scanned extension`, getErrorMessage(error));"} {"_id":"q-en-vscode-71ca2fdecd8876ec280cfc48afc72759d20bfa16e5874424b89590623a646bda","text":"this._createCommentTheadWidget(info.owner, info.thread); const layoutInfo = (this.currentElement as CodeCellViewModel).layoutInfo; this.container.style.top = `${layoutInfo.outputContainerOffset + layoutInfo.outputTotalHeight}px`; this.currentElement.commentHeight = dom.getClientArea(this._commentThreadWidget!.container).height; this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget!.getDimensions().height); return; } if (this._commentThreadWidget) { if (info) { this._commentThreadWidget.updateCommentThread(info.thread); this.currentElement.commentHeight = dom.getClientArea(this._commentThreadWidget.container).height; } else { if (!info) { this._commentThreadWidget.dispose(); this.currentElement.commentHeight = 0; return; } if (this._commentThreadWidget.commentThread === info.thread) { this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget.getDimensions().height); return; } this._commentThreadWidget.updateCommentThread(info.thread); this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget.getDimensions().height); } } })); } private _calculateCommentThreadHeight(bodyHeight: number) { const layoutInfo = this.notebookEditor.getLayoutInfo(); const headHeight = Math.ceil(layoutInfo.fontInfo.lineHeight * 1.2); const lineHeight = layoutInfo.fontInfo.lineHeight; const arrowHeight = Math.round(lineHeight / 3); const frameThickness = Math.round(lineHeight / 9) * 2; const computedHeight = headHeight + bodyHeight + arrowHeight + frameThickness + 8 /** margin bottom to avoid margin collapse */; return computedHeight; } private async _getCommentThreadForCell(element: ICellViewModel): Promise<{ thread: languages.CommentThread; owner: string } | null> { if (this.notebookEditor.hasModel()) { const commentInfos = coalesce(await this.commentService.getNotebookComments(element.uri));"} {"_id":"q-en-vscode-7206f2f1f9c1ea697df1da7fdb4d48c2bf1f95b4055731da9319d0cc5c92d2c3","text":"registerNotebookController(viewType: string, extensionData: NotebookExtensionDescription, controller: IMainNotebookController): IDisposable; registerNotebookSerializer(viewType: string, extensionData: NotebookExtensionDescription, serializer: INotebookSerializer): IDisposable; withNotebookDataProvider(resource: URI): Promise; withNotebookDataProvider(resource: URI, viewType?: string): Promise; getMimeTypeInfo(textModel: NotebookTextModel, output: IOutputDto): readonly IOrderedMimeType[];"} {"_id":"q-en-vscode-720c2110341247e973200901134b985c971721f85f5ff4b87ae282504d476fb1","text":"} private async getCustomBuiltinExtensionsFromGallery(scanOptions?: ScanOptions): Promise { const { extensions } = await this.readCustomBuiltinExtensionsInfoFromEnv(); if (!extensions.length) { return []; } if (!this.galleryService.isEnabled()) { this.logService.info('Ignoring fetching additional builtin extensions from gallery as it is disabled.'); return []; } const result: IScannedExtension[] = []; const { extensions } = await this.readCustomBuiltinExtensionsInfoFromEnv(); try { const useCache = this.storageService.get('additionalBuiltinExtensions', StorageScope.APPLICATION, '[]') === JSON.stringify(extensions); const webExtensions = await (useCache ? this.getCustomBuiltinExtensionsFromCache() : this.updateCustomBuiltinExtensionsCache());"} {"_id":"q-en-vscode-722b13ef7c3ef7d3bdf1ecc2d1034891a9ea235786b4cc83063d585e72b78a5e","text":"this._overlayContainer.style.position = 'absolute'; this._overlayContainer.style.overflow = 'hidden'; this.layoutContainerOverShadowElement(dimension, position); this.layoutContainerOverShadowElement(dimension, /*position*/ undefined); if (this._webviewTransparentCover) { this._webviewTransparentCover.style.height = `${dimension.height}px`;"} {"_id":"q-en-vscode-7280b056346bc155f972c2d58b114e08c282013815b9162827cc467bbf1b8caf","text":"const RevealInSideBarForSearchResultsCommand: ICommandAction = { id: Constants.RevealInSideBarForSearchResults, title: nls.localize('revealInSideBar', \"Reveal in Explorer\") title: nls.localize('revealInSideBar', \"Reveal in Side Bar\") }; MenuRegistry.appendMenuItem(MenuId.SearchContext, {"} {"_id":"q-en-vscode-72ac5f4d169e32bf1b0557a3b75c8857bea5f7d76004fdb52d8858e8168f1381","text":"import * as nls from 'vs/nls'; import * as DOM from 'vs/base/browser/dom'; import { lastIndex } from 'vs/base/common/arrays'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { IThemeService, registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { EditorPaneSelectionChangeReason, EditorPaneSelectionCompareResult, IEditorOpenContext, IEditorPaneSelection, IEditorPaneSelectionChangeEvent, IEditorPaneWithSelection } from 'vs/workbench/common/editor'; import { getDefaultNotebookCreationOptions, NotebookEditorWidget } from 'vs/workbench/contrib/notebook/browser/notebookEditorWidget'; import { getDefaultNotebookCreationOptions } from 'vs/workbench/contrib/notebook/browser/notebookEditorWidget'; import { IEditorGroup } from 'vs/workbench/services/editor/common/editorGroupsService'; import { NotebookDiffEditorInput } from '../../common/notebookDiffEditorInput'; import { CancellationToken, CancellationTokenSource } from 'vs/base/common/cancellation';"} {"_id":"q-en-vscode-72b4d1f6cced42f6b0558b4b72baa08072c7aa5b6f7049805d5d14d8ba125913","text":"} else { // automagically convert some argument types let hasBuffers = false; const toArgs = cloneAndChange(args, function (value) { if (value instanceof extHostTypes.Position) { return extHostTypeConverter.Position.from(value);"} {"_id":"q-en-vscode-72d7ac65b388320c635d6d646f0d4e4cde02387b82e53a337dcaeb7a57c19572","text":"const text = outputInfo.text(); const outputScrolling = scrollingEnabled(outputInfo, ctx.settings); const content = createOutputContent(outputInfo.id, [text], ctx.settings.lineLimit, ctx.settings.outputScrolling, false); const content = createOutputContent(outputInfo.id, [text], ctx.settings.lineLimit, outputScrolling, false); content.classList.add('output-plaintext'); if (ctx.settings.outputWordWrap) { content.classList.add('word-wrap');"} {"_id":"q-en-vscode-732c1240d2bb0b0294ab924b4838d1694607f895c30c147e59cf3995e763bbe9","text":"} } /* Used to strip brackets from the markdown link will be transformed to http://example.com */ export function stripAngleBrackets(link: string) { const bracketMatcher = /^<(.*)>$/; return link.replace(bracketMatcher, '$1'); } export default class LinkProvider implements vscode.DocumentLinkProvider { private readonly linkPattern = /([((![[^]]*?](s*)([^s()]+?)s*)]|(?:]|[^]])*])(s*)(([^s()]|([^s()]*?))+)s*(\".*?\")?)/g; private readonly referenceLinkPattern = /([((?:]|[^]])+)][s*?)([^s]]*?)]/g;"} {"_id":"q-en-vscode-7336b9ca7ac8c5688aeecd614820af7b47c529282063ac8b698b80e5b6e7e955","text":"async function test77735(withOpenedEditor: boolean): Promise { const docUriOriginal = await createRandomFile(); const docUriMoved = docUriOriginal.with({ path: `${docUriOriginal.path}.moved` }); await deleteFile(docUriMoved); // ensure target does not exist await deleteFile(docUriMoved); if (withOpenedEditor) { const document = await vscode.workspace.openTextDocument(docUriOriginal);"} {"_id":"q-en-vscode-7347666d56e88cd86413c7d624a322ccb0aee3931cbc40ed7fedb2f0e91c2f86","text":"import { Schemas } from '../../../../base/common/network.js'; import { IEditorGroupsService } from '../../../services/editor/common/editorGroupsService.js'; import { IEditorService } from '../../../services/editor/common/editorService.js'; import { forcedExpandRecursively } from './searchActionsTopBar.js'; //#region Interfaces"} {"_id":"q-en-vscode-737f6e5c99dc528213056b0b4dc65310c4807f41e34f7ce29787ec43e79a032d","text":"} export interface IMarkTracker { scrollToPreviousMark(): void; scrollToPreviousMark(scrollPosition?: ScrollPosition, retainSelection?: boolean, skipEmptyCommands?: boolean): void; scrollToNextMark(): void; selectToPreviousMark(): void; selectToNextMark(): void;"} {"_id":"q-en-vscode-73938f3005137b1913c3f7dde490fe1f48df996e36b34c3a8c1cb150f4570992","text":"terminal.xterm.write(chunk.buffer, () => pendingWrites.value--); } } else { didWriteData = true; this.writeNotice(terminal, localize('runNoOutputForPast', 'Test output is only available for new test runs.')); }"} {"_id":"q-en-vscode-73a50114fb2c9dd9c7b0457bfd3d3500408cab5289472bc23d2fc277147dd3f0","text":"*--------------------------------------------------------------------------------------------*/ import { deepStrictEqual, doesNotThrow, equal, ok, strictEqual, throws } from 'assert'; import { commands, ConfigurationTarget, Disposable, env, EnvironmentVariableMutator, EnvironmentVariableMutatorOptions, EnvironmentVariableMutatorType, EventEmitter, ExtensionContext, extensions, ExtensionTerminalOptions, GlobalEnvironmentVariableCollection, Pseudoterminal, Terminal, TerminalDimensions, TerminalExitReason, TerminalOptions, TerminalState, UIKind, Uri, window, workspace } from 'vscode'; import { commands, ConfigurationTarget, Disposable, env, EnvironmentVariableMutator, EnvironmentVariableMutatorOptions, EnvironmentVariableMutatorType, EventEmitter, ExtensionContext, extensions, ExtensionTerminalOptions, Pseudoterminal, Terminal, TerminalDimensions, TerminalExitReason, TerminalOptions, TerminalState, UIKind, Uri, window, workspace } from 'vscode'; import { assertNoRpc, poll } from '../utils'; // Disable terminal tests:"} {"_id":"q-en-vscode-74147a55474c92b9be597c618b205936ddaf5a4f8bdcec8c7c64a9cd3c705bee","text":"} let ariaLabel = this.ariaLabel; if (!ariaLabel) { // Only set aria label to the input box placeholder if we actually have an input box. if (!ariaLabel && visibilities.inputBox) { ariaLabel = this.placeholder || QuickPick.DEFAULT_ARIA_LABEL; // If we have a title, include it in the aria label. if (this.title) {"} {"_id":"q-en-vscode-742850e3c770ed8f307ae829202c0acd58fcf1426f9c99aa080ad3ee0d28f4af","text":"extHost.dispose(); this._extHosts.delete(id); }); // See https://github.com/microsoft/vscode/issues/194477 // We have observed that sometimes the process sends an exit // event, but does not really exit and is stuck in an endless // loop. In these cases we kill the process forcefully after // a certain timeout. setTimeout(() => { try { process.kill(pid, 0); // will throw if the process doesn't exist anymore. this._logService.error(`Extension host with pid ${pid} still exists, forcefully killing it...`); process.kill(pid); } catch (er) { // ignore, as the process is already gone } }, 1000); }); return { id }; }"} {"_id":"q-en-vscode-743ed1495a7c002ef21ec70ff99b30df704faaff91db4338c5bf08e4c8ccf93a","text":"import { NotebookTextModel } from 'vs/workbench/contrib/notebook/common/model/notebookTextModel'; import { ICellDto2, INotebookEditorModel, INotebookLoadOptions, IResolvedNotebookEditorModel, NotebookCellsChangeType, NotebookData } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { INotebookSerializer, INotebookService, SimpleNotebookProviderInfo } from 'vs/workbench/contrib/notebook/common/notebookService'; import { ILifecycleService } from 'vs/workbench/services/lifecycle/common/lifecycle'; import { IFileWorkingCopyManager } from 'vs/workbench/services/workingCopy/common/fileWorkingCopyManager'; import { IStoredFileWorkingCopy, IStoredFileWorkingCopyModel, IStoredFileWorkingCopyModelContentChangedEvent, IStoredFileWorkingCopyModelFactory, IStoredFileWorkingCopySaveEvent, StoredFileWorkingCopyState } from 'vs/workbench/services/workingCopy/common/storedFileWorkingCopy'; import { IUntitledFileWorkingCopy, IUntitledFileWorkingCopyModel, IUntitledFileWorkingCopyModelContentChangedEvent, IUntitledFileWorkingCopyModelFactory } from 'vs/workbench/services/workingCopy/common/untitledFileWorkingCopy';"} {"_id":"q-en-vscode-7464e1578b0b6a0d328fb749304d3ca5f0dc9c6d1c61db7bd27322d718e283f0","text":"const model = this.model.read(reader); const suggestion = model?.selectedInlineCompletion.read(reader); const ghostText = model?.ghostText.read(reader); const selectedSuggestItem = model?.selectedSuggestItem.read(reader); this.inlineCompletionVisible.set(selectedSuggestItem === undefined && ghostText !== undefined && !ghostText.isEmpty()); this.inlineCompletionVisible.set(ghostText !== undefined && !ghostText.isEmpty()); if (ghostText && suggestion) { this.suppressSuggestions.set(suggestion.inlineCompletion.source.inlineCompletions.suppressSuggestions);"} {"_id":"q-en-vscode-74c532dc2ab8af06879dcdd902f5c1e62bbf260febc7f0ab893cb0c01a38fedf","text":"this.findInput.inputBox.select(range); } getSelection(): IRange | null { return this.findInput.inputBox.getSelection(); } isSelectionAtEnd(): boolean { return this.findInput.inputBox.isSelectionAtEnd(); }"} {"_id":"q-en-vscode-74c7cb60a9e5f0e483aefc1881f2f7781f6ae88e723f6234e83e971bb29206b9","text":"async getQuickDiffs(uri: URI, language: string = '', isSynchronized: boolean = false): Promise { const providers = Array.from(this.quickDiffProviders) .filter(provider => !provider.rootUri || isEqualOrParent(uri, provider.rootUri)) .filter(provider => !provider.rootUri || this.uriIdentityService.extUri.isEqualOrParent(uri, provider.rootUri)) .sort(createProviderComparer(uri)); const diffs = await Promise.all(providers.map(async provider => {"} {"_id":"q-en-vscode-750d23082cd65e6f932b4f49a4f7db3836b3a78137f8e6d4fb166451d020cf41","text":"title: { value: 'Preferences', original: 'Preferences', mnemonicTitle: localize('mPreferences', \"Preferences\") mnemonicTitle: localize({ key: 'mPreferences', comment: ['&& denotes a mnemonic'] }, \"Preferences\") }, when: IsMacNativeContext, order: 9"} {"_id":"q-en-vscode-752d910bfeb40e7a5a37953d75523a63771fc7a83c1e369aaa9ee0d06b511019","text":"const outputElement = (prev.firstChild as HTMLElement | null); if (outputElement && outputElement.getAttribute('output-mime-type') === outputInfo.mime) { // same stream const text = outputInfo.text(); const element = document.createElement('span'); // find child with same id const existing = outputElement.querySelector(`[output-item-id=\"${outputInfo.id}\"]`) as HTMLElement | null; if (existing) { clearContainer(existing); } const text = outputInfo.text(); const element = existing ?? document.createElement('span'); element.classList.add('output-stream'); element.setAttribute('output-item-id', outputInfo.id); insertOutput(outputInfo.id, [text], ctx.settings.lineLimit, ctx.settings.outputScrolling, element); outputElement.appendChild(element); return;"} {"_id":"q-en-vscode-7565c9a6c49c2c0ccf57f8254631e26681e490cd7142a359cc9f2a3b612ebe3a","text":"})); this._register(this.parentData.parent.onScroll(() => { this.parentData.parent.focus(false); this.cleanupExistingSubmenu(false); if (this.parentData.submenu === this.mysubmenu) { this.parentData.parent.focus(false); this.cleanupExistingSubmenu(true); } })); }"} {"_id":"q-en-vscode-75b4f1a6177e0318e48311d9022ccf739ac4964fb1dc9bb39e5d165b9e2250a0","text":"const specIcon = gulp.src('resources/linux/rpm/code.xpm', { base: '.' }) .pipe(rename('SOURCES/' + product.applicationName + '.xpm')); const all = es.merge(code, desktop, appdata, icon, spec, specIcon); const all = es.merge(code, desktop, desktopUrlHandler, appdata, icon, spec, specIcon); return all.pipe(vfs.dest(getRpmBuildPath(rpmArch))); };"} {"_id":"q-en-vscode-75c92c06cb43721696242fcafa8614ed1bfccb46eac5dc6a35d3c5aa9e39b14b","text":"export function incrementFileName(name: string, isFolder: boolean): string { const separators = '[.-_]'; const maxNumber = Constants.MAX_SAFE_SMALL_INTEGER; // file.1.txt=>file.2.txt let suffixFileRegex = RegExp('(.*' + separators + ')(d+)(..*)$'); if (!isFolder && name.match(suffixFileRegex)) { return name.replace(suffixFileRegex, (match, g1?, g2?, g3?) => { return g1 + strings.pad(parseInt(g2) + 1, g2.length) + g3; let number = parseInt(g2); return number < maxNumber ? g1 + strings.pad(number + 1, g2.length) + g3 : strings.format('{0}{1}.1{2}', g1, g2, g3); }); }"} {"_id":"q-en-vscode-76056805f5208f1f5dde81cea91c52fa9508f5bc1895c3b140db70105b9c52d5","text":"const root = new RootTreeItem(this.debugService.getModel(), this.environmentService, this.contextService); this.tree.setInput(root); let timeout: number; const registerLoadedSourceListener = (session: ISession) => { this.disposables.push(session.onDidLoadedSource(event => { const sessionRoot = root.add(session); sessionRoot.addPath(event.source); clearTimeout(timeout); timeout = setTimeout(() => { if (this.tree) { this.tree.refresh(root, true); } }, 300); this.shouldRefreshRecursive = true; this.treeRefreshScheduler.schedule(); })); };"} {"_id":"q-en-vscode-761fd764d8599e482c16cd15c9c6663d161d280244457a3f093a47de157fcf64","text":"original: 'Run', mnemonicTitle: nls.localize({ key: 'mRun', comment: ['&& denotes a mnemonic'] }, \"&&Run\") }, when: ContextKeyExpr.or(CONTEXT_DEBUGGERS_AVAILABLE), order: 6 });"} {"_id":"q-en-vscode-7633228992a01959bff52d45b061a45ad5b2d6335272efe4ffadb7fbc04a876b","text":"const workingCopyAdapter = new class implements IWorkingCopy { readonly resource = input._workingCopyResource; get name() { return input.name; } readonly capabilities = input.capabilities; readonly capabilities = input.isUntitled() ? WorkingCopyCapabilities.Untitled : input.capabilities; readonly onDidChangeDirty = input.onDidChangeDirty; readonly onDidChangeContent = input.onDidChangeContent; isDirty(): boolean { return input.isDirty(); }"} {"_id":"q-en-vscode-76a4ff6a76721a046aa898cb73660b19f1cd18f68c6b16bf0386aa5d281dface","text":"// Only Launch have a pin trigger button await (launch as Launch).writeConfiguration(config); await this.selectConfiguration(launch, config.name); this.removeRecentDynamicConfigurations(config.name, config.type); })); });"} {"_id":"q-en-vscode-76cf9220f83aa1c9e475322332e6a655e5289fe9bcf94fc519ce50d0d4f12bf8","text":"import * as path from 'path'; import * as fs from 'fs'; const reAbsolute = /^/+/; const reAbsolutePosix = /^/+/; const reAbsoluteWin32 = /^+/; const reAbsolute = path.sep === '/' ? reAbsolutePosix : reAbsoluteWin32; /** * Locates given `filePath` on user’s file system and returns absolute path to it."} {"_id":"q-en-vscode-778030833e0fd018e8f39d6940216e90526ae26f822a27f4ebf856a7e6353d0e","text":"import { CharCode } from 'vs/base/common/charCode'; import { Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import { SequenceFromIntArray, OffsetRange, SequenceDiff, ISequence } from 'vs/editor/common/diff/algorithms/diffAlgorithm'; import { OffsetRange, SequenceDiff, ISequence } from 'vs/editor/common/diff/algorithms/diffAlgorithm'; import { DynamicProgrammingDiffing } from 'vs/editor/common/diff/algorithms/dynamicProgrammingDiffing'; import { optimizeSequenceDiffs } from 'vs/editor/common/diff/algorithms/joinSequenceDiffs'; import { MyersDiffAlgorithm } from 'vs/editor/common/diff/algorithms/myersDiffAlgorithm';"} {"_id":"q-en-vscode-77c72083e9db1155f96a7eff85bdb25d78d2d9f6c3c374b28541255cc57c93c1","text":"newArgs[newArgs.length - 1] = format(newArgs[newArgs.length - 1], appRoot); // Move .zshrc into $ZDOTDIR as the way to activate the script const zdotdir = path.join(os.tmpdir(), `${os.userInfo().username}-${productService.applicationName}-zsh`); let username: string; try { username = os.userInfo().username; } catch { username = 'unknown'; } const zdotdir = path.join(os.tmpdir(), `${username}-${productService.applicationName}-zsh`); envMixin['ZDOTDIR'] = zdotdir; const userZdotdir = env?.ZDOTDIR ?? os.homedir() ?? `~`; envMixin['USER_ZDOTDIR'] = userZdotdir;"} {"_id":"q-en-vscode-77f3f356a65177e683bf7418c1614aa967d266c0f474f28fd1c94f510b7031f5","text":"resolved \"https://registry.yarnpkg.com/@tootallnate/once/-/once-3.0.0.tgz#d52238c9052d746c9689523e650160e70786bc9a\" integrity sha512-OAdBVB7rlwvLD+DiecSAyVKzKVmSfXbouCyM5I6wHGi4MGXIyFqErg1IvyJ7PI1e+GYZuZh7cCHV/c4LA8SKMw== \"@vscode/deviceid@^0.1.1\": version \"0.1.1\" resolved \"https://registry.yarnpkg.com/@vscode/deviceid/-/deviceid-0.1.1.tgz#750e2930a3a8fbf3fd610096a8b915dfdb493c89\" integrity sha512-ErpoMeKKNYAkR1IT3zxB5RtiTqEECdh8fxggupWvzuxpTAX77hwOI2NdJ7um+vupnXRBZVx4ugo0+dVHJWUkag== dependencies: fs-extra \"^11.2.0\" uuid \"^9.0.1\" \"@vscode/iconv-lite-umd@0.7.0\": version \"0.7.0\" resolved \"https://registry.yarnpkg.com/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.0.tgz#d2f1e0664ee6036408f9743fee264ea0699b0e48\""} {"_id":"q-en-vscode-782c986810a70ee72808b467c6dcdcc0426e7ec93d4eacb545ecea030e5c001d","text":"]; private readonly isEnabledCache = new CachedFunction>((cue) => observableFromEvent( this.audioCueService.onEnabledChanged(AudioCue.onDebugBreak), () => this.audioCueService.isEnabled(AudioCue.onDebugBreak) this.audioCueService.onEnabledChanged(cue), () => this.audioCueService.isEnabled(cue) )); constructor("} {"_id":"q-en-vscode-7842f3f97d5cd8bd5598c7a8d7fb07980fcbcbd5f1733c806bb8bc02cd437171","text":"} else { // command text = result.rawLabel; } instance.sendText(text, !quickPick.keyMods.alt, true); quickPick.hide(); runCommand(instance, text, !quickPick.keyMods.alt); if (quickPick.keyMods.alt) { instance.focus(); }"} {"_id":"q-en-vscode-784b4ea8a9f8b1cbe0735999cb2575c789019ff07859b7400064160e03895dfe","text":"\"command\": \"ipynb.cleanInvalidImageAttachment\", \"title\": \"%cleanInvalidImageAttachment.title%\" }, { \"command\": \"notebook.cellOutput.copy\", \"title\": \"%copyCellOutput.title%\" } { \"command\": \"notebook.cellOutput.copy\", \"title\": \"%copyCellOutput.title%\" } ], \"notebooks\": [ {"} {"_id":"q-en-vscode-785a3bb6a1f7575d25b8631270be5ec45fcb3d2bec862c627766d9e267a62ff6","text":"template.navbar.push(NavbarSection.ExtensionPack, localize('extensionPack', \"Extension Pack\"), localize('extensionsPack', \"Set of extensions that can be installed together\")); } if (manifest && manifest.contributes) { template.navbar.push(NavbarSection.Contributions, localize('contributions', \"Contributions\"), localize('contributionstooltip', \"Lists contributions to VS Code by this extension\")); template.navbar.push(NavbarSection.FeatureContributions, localize('contributions', \"Feature Contributions\"), localize('contributionstooltip', \"Lists contributions to VS Code by this extension\")); } if (extension.hasChangelog()) { template.navbar.push(NavbarSection.Changelog, localize('changelog', \"Changelog\"), localize('changelogtooltip', \"Extension update history, rendered from the extension's 'CHANGELOG.md' file\"));"} {"_id":"q-en-vscode-7897505e6233506354ae776b7bfe2ca337661e1ef3f5bbf2810fdcd2f081c882","text":"import { IClipboardService } from 'vs/platform/clipboard/common/clipboardService'; import { ansiColorIdentifiers, TERMINAL_BACKGROUND_COLOR, TERMINAL_FOREGROUND_COLOR, TERMINAL_CURSOR_FOREGROUND_COLOR, TERMINAL_CURSOR_BACKGROUND_COLOR, TERMINAL_SELECTION_BACKGROUND_COLOR } from 'vs/workbench/parts/terminal/common/terminalColorRegistry'; import { PANEL_BACKGROUND } from 'vs/workbench/common/theme'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IConfigurationService, ConfigurationTarget } from 'vs/platform/configuration/common/configuration'; import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; import { INotificationService } from 'vs/platform/notification/common/notification'; import { INotificationService, Severity, IPromptChoice } from 'vs/platform/notification/common/notification'; import { ILogService } from 'vs/platform/log/common/log'; import { TerminalCommandTracker } from 'vs/workbench/parts/terminal/node/terminalCommandTracker'; import { TerminalProcessManager } from './terminalProcessManager'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; // How long in milliseconds should an average frame take to render for a notification to appear // which suggests the fallback DOM-based renderer const SLOW_CANVAS_RENDER_THRESHOLD = 50; let Terminal: typeof XTermTerminal;"} {"_id":"q-en-vscode-78b5ae1b9f472134266954f08099b5a8383870fde8003ce1d1c7ac6a58ca57fb","text":"} }, { \"name\": \"Markup Inline\", \"scope\": \"markup.inline.raw\", \"name\": \"Markup: Strong\", \"scope\": \"markup.bold\", \"settings\": { \"fontStyle\": \"\", \"foreground\": \"#cd8d8dff\" \"fontStyle\": \"bold\" } }, { \"name\": \"Markup Headings\", \"scope\": \"markup.heading\", \"name\": \"Markup: Emphasis\", \"scope\": \"markup.italic\", \"settings\": { \"foreground\": \"#fec758ff\" \"fontStyle\": \"italic\" } }, { \"name\": \"Markup Setext Header\", \"scope\": \"markup.heading.setext\", \"name\": \"Markup Inline\", \"scope\": \"markup.inline.raw\", \"settings\": { \"fontStyle\": \"\", \"foreground\": \"#cd8d8dff\" } }, { \"name\": \"Headings\", \"scope\": [ \"markup.heading\", \"markup.heading.setext\", \"punctuation.definition.heading\", \"entity.name.section\" ], \"settings\": { \"fontStyle\": \"bold\", \"foreground\": \"#fec758ff\" } },"} {"_id":"q-en-vscode-791409792be7d4fb191048023667c093bdf3c1a66b9bc700766dfb6210a27e8f","text":"{ urlFormat: '{0} ({1}, {2})', line: '5', column: '3' }, { urlFormat: '{0}:{1}', line: '5' }, { urlFormat: '{0}:{1}:{2}', line: '5', column: '3' }, { urlFormat: '{0} {1}:{2}', line: '5', column: '3' }, { urlFormat: '{0}[{1}]', line: '5' }, { urlFormat: '{0} [{1}]', line: '5' }, { urlFormat: '{0}[{1},{2}]', line: '5', column: '3' },"} {"_id":"q-en-vscode-79abf7621d3d7510d86343eab046ff3f35ac81d88335478519dba0e2f233eeac","text":"} } class RemoveRootFolderAction extends Action2 { export class RemoveRootFolderAction extends Action2 { static readonly ID = 'workbench.action.removeRootFolder';"} {"_id":"q-en-vscode-79b340d8bddcaf0c40541189e35a7e3308a807b113615194a13502cc1bd25136","text":"this.centeredEditorLeftMarginRatio = 0.5; // Restore centered layout position and size const centeredLayoutDataString = this.storageServise.get(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); const centeredLayoutDataString = this.storageService.get(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); if (centeredLayoutDataString) { const centeredLayout = JSON.parse(centeredLayoutDataString); this.centeredEditorLeftMarginRatio = centeredLayout.leftMarginRatio; this.centeredEditorPreferedSize = centeredLayout.size; this.centeredEditorPreferredSize = centeredLayout.size; } } }"} {"_id":"q-en-vscode-79c5b06f3b7ea4d91517883ddd44cb575aaa6d53ea4af5213e3bcbadec76b7ed","text":"testExecutionService = new TestExecutionService(); instantiationService.stub(INotebookExecutionStateService, testExecutionService); const chatProviders = instantiationService.get(IInlineChatService); disposables.add(chatProviders.addProvider({} as IInlineChatSessionProvider)); const agentData = { extensionId: nullExtensionDescription.identifier, extensionDisplayName: '', extensionPublisherId: '', name: 'testEditorAgent', isDefault: true, locations: [ChatAgentLocation.Editor], metadata: {}, slashCommands: [] }; const chatAgentService = new class extends mock() { override getAgents(): IChatAgentData[] { return [{ id: 'testEditorAgent', ...agentData }]; } override onDidChangeAgents: Event = Event.None; }; instantiationService.stub(IChatAgentService, chatAgentService); markerService = new class extends mock() { override markers: ResourceMap = new ResourceMap();"} {"_id":"q-en-vscode-79efa635b56f6b311633cf1659d4cd969092640d18e2db1eb6e2997f2f32e409","text":"import { toDisposable, DisposableStore, dispose } from 'vs/base/common/lifecycle'; import { StableEditorScrollState } from 'vs/editor/browser/core/editorState'; import { ICodeEditor, MouseTargetType, IViewZoneChangeAccessor, IActiveCodeEditor } from 'vs/editor/browser/editorBrowser'; import { registerEditorContribution } from 'vs/editor/browser/editorExtensions'; import { registerEditorContribution, EditorCommand, ServicesAccessor } from 'vs/editor/browser/editorExtensions'; import { IEditorContribution } from 'vs/editor/common/editorCommon'; import { IModelDecorationsChangeAccessor } from 'vs/editor/common/model'; import { CodeLensProviderRegistry, CodeLens } from 'vs/editor/common/modes';"} {"_id":"q-en-vscode-79f5305d2f67a2b48393a7f9a26597c991fbe847944cc97119a046e3b21c888e","text":"return undefined; } for (const _key in obj) { if (obj.hasOwnProperty(_key) && _key.toLowerCase() === key.toLowerCase()) { if (Object.hasOwnProperty.call(obj, _key) && _key.toLowerCase() === key.toLowerCase()) { return obj[_key]; } }"} {"_id":"q-en-vscode-7a1a3a69296a96040396467643245758fbf1009c5ff30f572fefb1df50439f7f","text":"/** A regex that matches paths in the form ?c:foo c:foo, ~foo, .foo, ..foo, foobar */ export const winLocalLinkClause = '((' + winPathPrefix + '|(' + winExcludedPathCharactersClause + ')+)?(' + winPathSeparatorClause + '(' + winExcludedPathCharactersClause + ')+)+)'; // TODO: This should eventually move to the more structured terminalLinkParsing /** As xterm reads from DOM, space in that case is nonbreaking char ASCII code - 160, replacing space with nonBreakningSpace or space ASCII code - 32. */ export const lineAndColumnClause = ["} {"_id":"q-en-vscode-7a8ccf1d5e385e901519976ec3a46ecfc4132750260fef44890e93a7c1cb0d30","text":"} private replaceNotebookCellMetadata(uri: URI, index: number, cellMetadata: Record, metadata?: vscode.WorkspaceEditEntryMetadata): void { this._edits.push({ _type: FileEditType.Cell, metadata, uri, edit: { editType: CellEditType.PartialMetadata, index, metadata: cellMetadata } }); this._edits.push({ _type: FileEditType.Cell, metadata, uri, edit: { editType: CellEditType.Metadata, index, metadata: cellMetadata } }); } // --- text"} {"_id":"q-en-vscode-7abcc43ee984e4a0e2b54c2bde4522bb7f451d7e0cc1b90afdf0dc2149405229","text":"} const COMMIT_FORMAT = '%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B'; const STASH_FORMAT = '%H%n%P%n%gd%n%gs'; export interface ICloneOptions { readonly parentPath: string;"} {"_id":"q-en-vscode-7adda099e239a08aaafa253c857104337cfc6ba23f627e7302f73d8977a62f07","text":"- `npm.autoDetect` - Enable detecting scripts as tasks, the default is `on`. - `npm.runSilent` - Run npm script with the `--silent` option, the default is `false`. - `npm.packageManager` - The package manager used to run the scripts: `npm` or `yarn`, the default is `npm`. - `npm.packageManager` - The package manager used to run the scripts: `npm`, `yarn` or `pnpm`, the default is `npm`. - `npm.exclude` - Glob patterns for folders that should be excluded from automatic script detection. The pattern is matched against the **absolute path** of the package.json. For example, to exclude all test folders use '**/test/**'. - `npm.enableScriptExplorer` - Enable an explorer view for npm scripts. - `npm.scriptExplorerAction` - The default click action: `open` or `run`, the default is `open`."} {"_id":"q-en-vscode-7adf0388cba0a20bd9e3b2695af0408227b00f5219720132aec0460ab7dea69c","text":"dependencies: object-keys \"~0.4.0\" xterm-addon-canvas@0.2.0-beta.15: version \"0.2.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.15.tgz#de863e46410b1de357b153abf1984227777760e4\" integrity sha512-E1pNCDSVTINchwWLysZ9ZD/BPv1WLGV52xRHB00US1PHHELbhtvms+6dZ44WZEDXhtfpptRZ1VBx+QpvfJIuvw== xterm-addon-search@0.10.0-beta.3: version \"0.10.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.3.tgz#5194434d86105637c71f6f20139a9d0b5c1a956a\" integrity sha512-UeGm/ymnp7HUYJJtsP0D+bljOWbdk3MctcLJ+0jv8AmU6YlAzJFtouvYSQrD5SAMyht5CRsvjzFgqic9X02JYg== xterm-addon-serialize@0.8.0-beta.3: version \"0.8.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.3.tgz#47ade3fedacbb75bd26e63cfe0120586623e0e4f\" integrity sha512-gvfempZCYuAhLqN4O6fA2TuoavPjOxFKlh8hLcOzPackiLUhwKr1jQpDXcnq8VgqUiGgb+XNZpPEbI0Q7EhTgA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.13.0-beta.32: version \"0.13.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.32.tgz#ae7335f788ae611733e03f6ca38280ab7b86d212\" integrity sha512-xOudNzYXaRh9QZ+IigXM5EB3bM8l3/F8F35EpJRYvvsylVxiB6Km8X8l7+nxlWt+uYdnHZs0ka2rvtL8kOP/uw== xterm-addon-canvas@0.2.0-beta.17: version \"0.2.0-beta.17\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.17.tgz#e84a86530b20bd3edcce16b4566f346cd186ab4d\" integrity sha512-2ukPdCA92VTFYQRE56ylzvI3cfaQYDWd/Mc4jlEItI6sV/EA5RnUbbP+2sFIx0JlmHK6nVYXXNY2p6QRB7MRew== xterm-addon-search@0.10.0-beta.5: version \"0.10.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.5.tgz#a2cb16bda4ddf8783b80433155ad94f5822271f8\" integrity sha512-kjog7cm1iEZ2XyQFVs3KAvoI2pKoX0cq2WWjL0FuXYXpKQ9vXmfrWSR7PiJ6zpTIRvr6UtaSGKhmZVHLNA79WA== xterm-addon-serialize@0.8.0-beta.5: version \"0.8.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.5.tgz#3d2f3be173f4f1c31ae7bf25179e8ecddf2b33b2\" integrity sha512-rkSUaO1XBcy3ipScZMA5PrOKu/DfXo8XC/V7hZlhMiBNbZKlbk2rFb3X0FB1f07hw7oEkHLjuIJEY5Qtxfe9/w== xterm-addon-unicode11@0.4.0-beta.5: version \"0.4.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.5.tgz#3900e66f10d2e506133b61d7421aab6878d32665\" integrity sha512-+g+fuxAd/tkCEJ/jhdnebXKtdPrhsu4VKWNnB/3qM35GbuGQOasmYFYnKL+HYZMpbQ6YqeZcXTVg/wnCTttz0g== xterm-addon-webgl@0.13.0-beta.35: version \"0.13.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.35.tgz#98b5dc102583120de25c7c6e0f35cd34ab6bef98\" integrity sha512-powgeb3ifEZK7zWwLJuE8YRz/Z0UzDrrVA9NTx9mH7+vWxrGt9ZgroychoeCqZBvKMofiUM5vlf1oWdSmsMfzw== xterm-headless@5.0.0-beta.5: version \"5.0.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.0.0-beta.5.tgz#e29b6c5081f31f887122b7263ba996b0c46b3c22\" integrity sha512-CMQ1+prBNF92oBMeZzc2rfTcmOaCGfwwSaoPYNTjyziZT6mZsEg7amajYkb0YAnqJ29MFm4kPGZbU78/dX4k2A== xterm@5.0.0-beta.32: version \"5.0.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.32.tgz#62bb9902429c0055fd2fd85c9eecfbf1756ed31c\" integrity sha512-OAM1GaBs/chK63Cr86XbVhfVCLLXLpNxxFrv3RK9xoyb9dwiY3gaMxK9jeGzTnrbGLWJb+k5nxaC0rx2YsHvUA== xterm@5.0.0-beta.35: version \"5.0.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.35.tgz#3bbf5780c98aaaa6476e7590dff1d8f5014fce9d\" integrity sha512-tzJTel1E/FmB0VQDb44xApVB+ln+BifIbHD4V9x9Z3D9m1cMmPHy8J8efdILkn1TxXGlCl7VC35nG122Qq5exw== y18n@^3.2.1: version \"3.2.2\""} {"_id":"q-en-vscode-7b315a524fc4735ec304ef526bd868c5d98f4f34a3bb8f5912156d71709cea60","text":"public async run(accessor: ServicesAccessor | undefined, editor: ICodeEditor): Promise { const controller = InlineCompletionsController.get(editor); controller?.model.get()?.acceptNextWord(controller.editor); await controller?.model.get()?.acceptNextWord(controller.editor); } }"} {"_id":"q-en-vscode-7b39f60d92f8ff4b70f7bb7dd5227d75b95215f764f79e4508e80e6b2edc97d1","text":"keybinding: [ // On mac, require that the cursor is at the top of the input, to avoid stealing cmd+up to move the cursor to the top { when: CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, when: ContextKeyExpr.and(CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, CONTEXT_IN_QUICK_CHAT.negate()), primary: KeyMod.CtrlCmd | KeyCode.UpArrow, weight: KeybindingWeight.EditorContrib, }, // On win/linux, ctrl+up can always focus the chat list { when: ContextKeyExpr.or(IsWindowsContext, IsLinuxContext), when: ContextKeyExpr.and(ContextKeyExpr.or(IsWindowsContext, IsLinuxContext), CONTEXT_IN_QUICK_CHAT.negate()), primary: KeyMod.CtrlCmd | KeyCode.UpArrow, weight: KeybindingWeight.EditorContrib, }, { when: ContextKeyExpr.and(CONTEXT_IN_CHAT_SESSION, CONTEXT_IN_QUICK_CHAT), primary: KeyMod.CtrlCmd | KeyCode.DownArrow, weight: KeybindingWeight.WorkbenchContrib, } ] });"} {"_id":"q-en-vscode-7b971d7991388172042ea482f83a9b8246048fde027cb8b081892575d22a4625","text":"} private updateInputBox(): void { if (typeof this.repository.provider.commitTemplate === 'undefined') { if (typeof this.repository.provider.commitTemplate === 'undefined' || this.inputBox.value) { return; }"} {"_id":"q-en-vscode-7c5b01a2b09fab3ab020c2a204079049fa8ed5232201bdf10f5edbc3a8ed797c","text":"event.stopPropagation(); event.preventDefault(); const actions: IAction[] = []; actions.push({ id: `${viewDescriptor.id}.removeView`, label: localize('hideView', \"Hide\"), enabled: viewDescriptor.canToggleVisibility, run: () => this.toggleViewVisibility(viewDescriptor.id) }); const otherActions = this.getContextMenuActions(); if (otherActions.length) { actions.push(...[new Separator(), ...otherActions]); } const actions: IAction[] = this.getContextMenuActions(viewDescriptor); let anchor: { x: number, y: number } = { x: event.posx, y: event.posy }; this.contextMenuService.showContextMenu({"} {"_id":"q-en-vscode-7c9541274d75f6897302f3e648fd56ec43ab3a60ad2e8c721212b5d2b8545a52","text":"\"tab.inactiveBackground\": \"#414339\", \"tab.border\": \"#1e1f1c\", \"tab.inactiveForeground\": \"#ccccc7\", // needs to be bright so it's readable when another editor group is focused \"widget.shadow\": \"#1e1f1c\", \"widget.shadow\": \"#000000\", \"progressBar.background\": \"#75715E\", \"badge.background\": \"#75715E\", \"badge.foreground\": \"#f8f8f2\","} {"_id":"q-en-vscode-7ca84e7de6a5364cc7e76c4f3b9545ff25cca9b32dda7e3a7e8b89d27ccd6a91","text":"} }); registerAction2(class extends Action2 { constructor() { super( { id: 'notebook.diff.action.previous', title: localize('notebook.diff.action.previous.title', \"Show Previous Change\"), icon: previousChangeIcon, f1: false, keybinding: { primary: KeyMod.Shift | KeyMod.Alt | KeyCode.F3, weight: KeybindingWeight.WorkbenchContrib }, menu: { id: MenuId.EditorTitle, group: 'navigation', when: ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID) } } ); } run(accessor: ServicesAccessor) { const editorService: IEditorService = accessor.get(IEditorService); if (editorService.activeEditorPane?.getId() !== NOTEBOOK_DIFF_EDITOR_ID) { return; } const editor = editorService.activeEditorPane.getControl() as INotebookTextDiffEditor | undefined; editor?.previousChange(); } }); registerAction2(class extends Action2 { constructor() { super( { id: 'notebook.diff.action.next', title: localize('notebook.diff.action.next.title', \"Show Next Change\"), icon: nextChangeIcon, f1: false, keybinding: { primary: KeyMod.Alt | KeyCode.F3, weight: KeybindingWeight.WorkbenchContrib }, menu: { id: MenuId.EditorTitle, group: 'navigation', when: ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID) } } ); } run(accessor: ServicesAccessor) { const editorService: IEditorService = accessor.get(IEditorService); if (editorService.activeEditorPane?.getId() !== NOTEBOOK_DIFF_EDITOR_ID) { return; } const editor = editorService.activeEditorPane.getControl() as INotebookTextDiffEditor | undefined; editor?.nextChange(); } }); Registry.as(ConfigurationExtensions.Configuration).registerConfiguration({ id: 'notebook', order: 100,"} {"_id":"q-en-vscode-7ca8f588d603e60139a9d8cacae073a8b553332a55afda63dd9b619968098830","text":"@ITelemetryService private readonly telemetryService: ITelemetryService, @IProductService private readonly productService: IProductService, @ITerminalService private readonly terminalService: ITerminalService, @IStorageService private readonly _storageService: IStorageService @IStorageService private readonly _storageService: IStorageService, @IContextMenuService private readonly contextMenuService: IContextMenuService ) { super(); this.toDispose.add(_instance.onDidFocus(() => {"} {"_id":"q-en-vscode-7cd76b640450d5c32272271e516b616672f38a1ce5916c73bffdbf743b96aaa0","text":"overviewRulerLanes = 63, parameterHints = 64, peekWidgetDefaultFocus = 65, quickSuggestions = 66, quickSuggestionsDelay = 67, readOnly = 68, renderControlCharacters = 69, renderIndentGuides = 70, renderFinalNewline = 71, renderLineHighlight = 72, renderValidationDecorations = 73, renderWhitespace = 74, revealHorizontalRightPadding = 75, roundedSelection = 76, rulers = 77, scrollbar = 78, scrollBeyondLastColumn = 79, scrollBeyondLastLine = 80, selectionClipboard = 81, selectionHighlight = 82, selectOnLineNumbers = 83, semanticHighlighting = 84, showFoldingControls = 85, showUnused = 86, snippetSuggestions = 87, smoothScrolling = 88, stopRenderingLineAfter = 89, suggest = 90, suggestFontSize = 91, suggestLineHeight = 92, suggestOnTriggerCharacters = 93, suggestSelection = 94, tabCompletion = 95, useTabStops = 96, wordSeparators = 97, wordWrap = 98, wordWrapBreakAfterCharacters = 99, wordWrapBreakBeforeCharacters = 100, wordWrapColumn = 101, wordWrapMinified = 102, wrappingIndent = 103, wrappingStrategy = 104, editorClassName = 105, pixelRatio = 106, tabFocusMode = 107, layoutInfo = 108, wrappingInfo = 109 definitionLinkOpensInPeek = 66, quickSuggestions = 67, quickSuggestionsDelay = 68, readOnly = 69, renderControlCharacters = 70, renderIndentGuides = 71, renderFinalNewline = 72, renderLineHighlight = 73, renderValidationDecorations = 74, renderWhitespace = 75, revealHorizontalRightPadding = 76, roundedSelection = 77, rulers = 78, scrollbar = 79, scrollBeyondLastColumn = 80, scrollBeyondLastLine = 81, selectionClipboard = 82, selectionHighlight = 83, selectOnLineNumbers = 84, semanticHighlighting = 85, showFoldingControls = 86, showUnused = 87, snippetSuggestions = 88, smoothScrolling = 89, stopRenderingLineAfter = 90, suggest = 91, suggestFontSize = 92, suggestLineHeight = 93, suggestOnTriggerCharacters = 94, suggestSelection = 95, tabCompletion = 96, useTabStops = 97, wordSeparators = 98, wordWrap = 99, wordWrapBreakAfterCharacters = 100, wordWrapBreakBeforeCharacters = 101, wordWrapColumn = 102, wordWrapMinified = 103, wrappingIndent = 104, wrappingStrategy = 105, editorClassName = 106, pixelRatio = 107, tabFocusMode = 108, layoutInfo = 109, wrappingInfo = 110 } /**"} {"_id":"q-en-vscode-7cda849d108fdfc592fc01e14969a7a1a7ca1bf05674c36e735b715576ea6adc","text":".review-widget .body .review-comment .review-comment-contents .comment-body { padding-top: 4px; } .review-widget .body .review-comment .review-comment-contents .comment-body-max-height { max-height: 20em; }"} {"_id":"q-en-vscode-7ceda75028bea7b4d61241fb5791b6637f855ccbd51ae88b22cd7db52855f33e","text":"import { SyncActionDescriptor, MenuRegistry, MenuId } from 'vs/platform/actions/common/actions'; import { Registry } from 'vs/platform/registry/common/platform'; import { registerSingleton } from 'vs/platform/instantiation/common/extensions'; import { KeybindingWeight, IKeybindings, KeybindingsRegistry } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { KeybindingWeight, IKeybindings } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { IConfigurationRegistry, Extensions as ConfigurationExtensions } from 'vs/platform/configuration/common/configurationRegistry'; import { IWorkbenchActionRegistry, Extensions as WorkbenchActionRegistryExtensions } from 'vs/workbench/common/actions'; import { ShowViewletAction, Extensions as ViewletExtensions, ViewletRegistry, ViewletDescriptor } from 'vs/workbench/browser/viewlet';"} {"_id":"q-en-vscode-7d272f54cd3b5a61c123c2694af9585eac72957aaf06e2dc0372909d3df2bd29","text":"cursor: pointer; } .monaco-workbench .monaco-font-aliasing-antialiased { .monaco-workbench.monaco-font-aliasing-antialiased { -webkit-font-smoothing: antialiased; } .monaco-workbench .monaco-font-aliasing-none { .monaco-workbench.monaco-font-aliasing-none { -webkit-font-smoothing: none; } @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { .monaco-workbench .monaco-font-aliasing-auto { .monaco-workbench.monaco-font-aliasing-auto { -webkit-font-smoothing: antialiased; } }"} {"_id":"q-en-vscode-7d58d55faa5b7e5154f074070c1849c0af50ad9d6b5e29910df677365370a834","text":"} return cwd; } /** * Determines whether the given shell launch config should use the environment variable collection. * @param slc The shell launch config to check. */ export function shouldUseEnvironmentVariableCollection(slc: IShellLaunchConfig): boolean { return !slc.strictEnv && !slc.hideFromUser; } "} {"_id":"q-en-vscode-7d5fb35c28dea26a8118fbfbb219b5dde3277a168c9525bbb4c53dbc3063adda","text":"} } if (historyItem.labels) { const labels = this.getLabels(element.repository); const historyItemLabels = (historyItem.labels ?? []) .filter(l => labels.includes(l.title)); if (historyItemLabels) { const historyItemGroupLocalColor = colorTheme.getColor(historyItemGroupLocal); const historyItemGroupRemoteColor = colorTheme.getColor(historyItemGroupRemote); const historyItemGroupBaseColor = colorTheme.getColor(historyItemGroupBase);"} {"_id":"q-en-vscode-7da8df4de6e8c153bd25bf1ed6c696c3186fdc267773bb382469a24d73e5fb89","text":"// Avoid doing progressive rendering for multiple markdown parts simultaneously else if (!hasRenderedOneMarkdownBlock && wordCountResults[index]) { const { value } = wordCountResults[index]; result = this.renderMarkdown(new MarkdownString(value), element, templateData, true); const part = partsToRender[index]; const originalMarkdown = 'originalMarkdown' in part ? part.originalMarkdown : undefined; const markdownToRender = new MarkdownString(value, originalMarkdown); result = this.renderMarkdown(markdownToRender, element, templateData, true); hasRenderedOneMarkdownBlock = true; }"} {"_id":"q-en-vscode-7dab0d9f9721447159898e88602765b08fb05f65b8f5d39f39019198cfe036cd","text":"return { fileUri: URI.file(path) }; } private afterWindowOpen(): void { private afterWindowOpen(accessor: ServicesAccessor): void { // Signal phase: after window open this.lifecycleMainService.phase = LifecycleMainPhase.AfterWindowOpen; // Remote Authorities this.handleRemoteAuthorities(); // Initialize update service const updateService = accessor.get(IUpdateService); if (updateService instanceof Win32UpdateService || updateService instanceof LinuxUpdateService || updateService instanceof DarwinUpdateService) { updateService.initialize(); } } private handleRemoteAuthorities(): void {"} {"_id":"q-en-vscode-7e54cd668fafb6bbe6ed5abfde0e682f6ab7f8c0ea511b3283ec8fd69a76e850","text":"terminals: instances.map(t => { return { relativeSize: isHorizontal ? t.cols / totalSize : t.rows / totalSize, terminal: t.persistentTerminalId ? t.persistentTerminalId : t.id terminal: t.persistentTerminalId || 0 }; }) };"} {"_id":"q-en-vscode-7e7b80e0fb4bf018f7544ab9f094c8b8828218db2b7a8aab19bb6dceb48f4a11","text":"assert.strictEqual(result, '2_test.js'); }); test('Increment folder name with suffix version', function () { test('Increment file name with prefix version, too big number', function () { const name = '9007199254740992.test.js'; const result = incrementFileName(name, false); assert.strictEqual(result, '9007199254740992.test.1.js'); }); test('Increment folder name with prefix version', function () { const name = '1.test'; const result = incrementFileName(name, true); assert.strictEqual(result, '2.test'); }); test('Increment folder name with suffix version, trailing zeros', function () { test('Increment folder name with prefix version, too big number', function () { const name = '9007199254740992.test'; const result = incrementFileName(name, true); assert.strictEqual(result, '9007199254740992.test.1'); }); test('Increment folder name with prefix version, trailing zeros', function () { const name = '001.test'; const result = incrementFileName(name, true); assert.strictEqual(result, '002.test'); }); test('Increment folder name with suffix version with `-` as separator', function () { test('Increment folder name with prefix version with `-` as separator', function () { const name = '1-test'; const result = incrementFileName(name, true); assert.strictEqual(result, '2-test');"} {"_id":"q-en-vscode-7f91acdc3e44ee60872b68de91d763b3743793917b059785b5bb08c9d9af1a01","text":"return Promise.all([a, b, c, d]); }); test('api-command: vscode.open with untitled supports associated resource (#138925)', async function () { let uri = Uri.parse(workspace.workspaceFolders![0].uri.toString() + '/far-copy.js').with({ scheme: 'untitled' }); await commands.executeCommand('vscode.open', uri).then(() => assert.ok(true), () => assert.ok(false)); // untitled with associated resource are dirty from the beginning assert.ok(window.activeTextEditor?.document.isDirty); }); });"} {"_id":"q-en-vscode-7fc57fbbbcb3561b50b89e054a86652428436b9ee26b5cf555ad5fe7f6016179","text":"private _run(): void { let workerRequestIsValid; if (!this.editor.hasTextFocus()) { // no focus (new nb cell, etc) if (WordHighlighter.query === null) { // no previous query, nothing to highlight const hasTextFocus = this.editor.hasTextFocus(); if (!hasTextFocus) { // new nb cell scrolled in, didChangeModel fires if (!WordHighlighter.query) { // no previous query, nothing to highlight off of return; } } else { } else { // has text focus const editorSelection = this.editor.getSelection(); // ignore multiline selection if (!editorSelection || editorSelection.startLineNumber !== editorSelection.endLineNumber) { WordHighlighter.query = null; this._stopAll(); return; }"} {"_id":"q-en-vscode-7fe3ea40204204501b598a4d922d8a8a71f6f70e77499dbc38c624a49a4b2918","text":"fi fi if [ ! -L $0 ]; then if [ ! -L \"$0\" ]; then # if path is not a symlink, find relatively VSCODE_PATH=\"$(dirname $0)/..\" VSCODE_PATH=\"$(dirname \"$0\")/..\" else if command -v readlink >/dev/null; then # if readlink exists, follow the symlink and find relatively VSCODE_PATH=\"$(dirname $(readlink -f $0))/..\" VSCODE_PATH=\"$(dirname $(readlink -f \"$0\"))/..\" else # else use the standard install location VSCODE_PATH=\"/usr/share/@@NAME@@\""} {"_id":"q-en-vscode-8001cdac619c13cd865837eecb1cca0499ae3eb1af5da35042dc23c3d97da7de","text":"setup(() => { provideVariablesCalled = false; dataSource = new NotebookVariableDataSource(kernelService); results = [ { id: 1, name: 'a', value: '1', hasNamedChildren: false, indexedChildrenCount: 0 }, ]; }); test('Root element should return children', async () => {"} {"_id":"q-en-vscode-80126c824c66a0123d0fd258e700645bee6744234032ceadc9bd0acc59b92128","text":"private _sessionCtor: CancelablePromise | undefined; private _activeSession?: Session; private _warmupRequestCts?: CancellationTokenSource; private _activeRequestCts?: CancellationTokenSource; private readonly _ctxHasActiveRequest: IContextKey; private readonly _ctxCellWidgetFocused: IContextKey; private readonly _ctxUserDidEdit: IContextKey;"} {"_id":"q-en-vscode-8069859400770087ddcf5041c6bf7bc29eef0a61b878d6404c3ab4e9ab19bcef","text":"} readonly label = 'Update Notebook Metadata'; undo() { that._updateNotebookMetadata(oldMetadata, false); that._updateNotebookMetadata({ ...oldMetadata, runState: that.metadata.runState }, false); } redo() { that._updateNotebookMetadata(metadata, false); that._updateNotebookMetadata({ ...metadata, runState: that.metadata.runState }, false); } }(), undefined, undefined); }"} {"_id":"q-en-vscode-80ced73d1835263d115941d4aabf659525cc338d8958bd12c7450ab6c8c415e8","text":"export class SkipUpdateAction extends AbstractUpdateAction { static readonly ID = 'workbench.extensions.action.ignoreUpdates'; static readonly LABEL = localize('ignoreUpdates', \"Ignore Updates\"); constructor( @IExtensionsWorkbenchService extensionsWorkbenchService: IExtensionsWorkbenchService ) { super(`extensions.ignoreUpdates`, localize('ignoreUpdates', \"Ignore Updates\"), extensionsWorkbenchService); super(SkipUpdateAction.ID, SkipUpdateAction.LABEL, extensionsWorkbenchService); } override update() {"} {"_id":"q-en-vscode-80f4ac166af6e0ee6fdb486d1037432419544bc2ca2a9330f5ff9badc847baf1","text":"}); }); test('onDidCloseTerminal event fires when terminal is disposed', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(terminal, term); } catch (e) { done(e); return; } terminal.dispose(); disposables.push(window.onDidCloseTerminal(() => done())); })); test('onDidCloseTerminal event fires when terminal is disposed', async () => { const terminal = window.createTerminal(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); }); test('processId immediately after createTerminal should fetch the pid', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(terminal, term); } catch (e) { done(e); return; } terminal.processId.then(id => { try { ok(id && id > 0); } catch (e) { done(e); return; } terminal.dispose(); disposables.push(window.onDidCloseTerminal(() => done())); }); })); test('processId immediately after createTerminal should fetch the pid', async () => { const terminal = window.createTerminal(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); let pid = await result.processId; equal(true, pid && pid > 0); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); }); test('name in constructor should set terminal.name', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(terminal, term); } catch (e) { done(e); return; } terminal.dispose(); disposables.push(window.onDidCloseTerminal(() => done())); })); test('name in constructor should set terminal.name', async () => { const terminal = window.createTerminal('a'); try { equal(terminal.name, 'a'); } catch (e) { done(e); return; } const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); }); test('creationOptions should be set and readonly for TerminalOptions terminals', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(terminal, term); } catch (e) { done(e); return; } terminal.dispose(); disposables.push(window.onDidCloseTerminal(() => done())); })); test('creationOptions should be set and readonly for TerminalOptions terminals', async () => { const options = { name: 'foo', hideFromUser: true }; const terminal = window.createTerminal(options); try { equal(terminal.name, 'foo'); const terminalOptions = terminal.creationOptions as TerminalOptions; equal(terminalOptions.name, 'foo'); equal(terminalOptions.hideFromUser, true); throws(() => terminalOptions.name = 'bad', 'creationOptions should be readonly at runtime'); } catch (e) { done(e); return; } const terminalOptions = terminal.creationOptions as TerminalOptions; const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); throws(() => terminalOptions.name = 'bad', 'creationOptions should be readonly at runtime'); }); test('onDidOpenTerminal should fire when a terminal is created', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(term.name, 'b'); } catch (e) { done(e); return; } disposables.push(window.onDidCloseTerminal(() => done())); terminal.dispose(); })); test('onDidOpenTerminal should fire when a terminal is created', async () => { const terminal = window.createTerminal('b'); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); }); test('exitStatus.code should be set to undefined after a terminal is disposed', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(term, terminal); } catch (e) { done(e); return; } test('exitStatus.code should be set to undefined after a terminal is disposed', async () => { const terminal = window.createTerminal(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { try { if (t === terminal) { deepEqual(t.exitStatus, { code: undefined }); } catch (e) { done(e); return; r(); } done(); })); terminal.dispose(); })); const terminal = window.createTerminal(); }); }); // test('onDidChangeActiveTerminal should fire when new terminals are created', (done) => {"} {"_id":"q-en-vscode-80f53614bf500142d6aeb2116ab4d22f6d5c37331f8b4cb8d302edc5d32b9169","text":"\"@vscode/vscode-languagedetection\": \"1.0.21\", \"@vscode/windows-process-tree\": \"^0.5.0\", \"@vscode/windows-registry\": \"^1.1.0\", \"@xterm/addon-canvas\": \"0.6.0-beta.19\", \"@xterm/addon-image\": \"0.7.0-beta.17\", \"@xterm/addon-search\": \"0.14.0-beta.19\", \"@xterm/addon-serialize\": \"0.12.0-beta.19\", \"@xterm/addon-unicode11\": \"0.7.0-beta.19\", \"@xterm/addon-webgl\": \"0.17.0-beta.19\", \"@xterm/headless\": \"5.4.0-beta.19\", \"@xterm/xterm\": \"5.4.0-beta.19\", \"@xterm/addon-canvas\": \"0.6.0-beta.20\", \"@xterm/addon-image\": \"0.7.0-beta.18\", \"@xterm/addon-search\": \"0.14.0-beta.20\", \"@xterm/addon-serialize\": \"0.12.0-beta.20\", \"@xterm/addon-unicode11\": \"0.7.0-beta.20\", \"@xterm/addon-webgl\": \"0.17.0-beta.20\", \"@xterm/headless\": \"5.4.0-beta.20\", \"@xterm/xterm\": \"5.4.0-beta.20\", \"cookie\": \"^0.4.0\", \"graceful-fs\": \"4.2.11\", \"http-proxy-agent\": \"^7.0.0\","} {"_id":"q-en-vscode-80f8d1af2c753133989538fd1c141b428979f22f2b4d9dd22989cbde57785a52","text":"import product from 'vs/platform/node/product'; import { INotificationService } from 'vs/platform/notification/common/notification'; import { EditorServiceImpl } from 'vs/workbench/browser/parts/editor/editor'; import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; const TextInputActions: IAction[] = [ new Action('undo', nls.localize('undo', \"Undo\"), null, true, () => document.execCommand('undo') && TPromise.as(true)),"} {"_id":"q-en-vscode-80ff1f487d5ab33893ba0413ef6d828f8c75d580a6378c117301b644ba1de2a5","text":"} } return { primary: Array.from(allowedPrimary.values()), secondary: Array.from(allowedSecondary.values()) }; return { primary: this.buildMenu(primaryGroups), secondary: this.buildMenu(secondaryGroups) }; } dispose() {"} {"_id":"q-en-vscode-8115eddd5d25a018e72b577e7adf7965127b60d8ca0227cba716bda6983036b5","text":"} } for (let i = (renderActions.length - 1); i !== 0; i--) { for (let i = (renderActions.length - 1); i > 0; i--) { const temp = renderActions[i]; if (temp.size === 0) { continue;"} {"_id":"q-en-vscode-811ad6eae41655c915fbf3fd82bebba908db335f958a84f074b91024a6c33af9","text":"defaultProvider = provider; } else { try { validDocumentColorProviderFound ||= await collector.compute(provider, model, token, colorData); if (await collector.compute(provider, model, token, colorData)) { validDocumentColorProviderFound = true; } } catch (e) { onUnexpectedExternalError(e); }"} {"_id":"q-en-vscode-81b39412059dd747f641e7ff36176a140492da2bdeff974de1af8eff8bed23e3","text":"/* internal */ configFileDiagnosticsReceived(event: Proto.ConfigFileDiagnosticEvent): void { // See https://github.com/Microsoft/TypeScript/issues/10384 /* https://github.com/Microsoft/TypeScript/issues/10473 const body = event.body; if (body.diagnostics) { const language = body.triggerFile ? this.findLanguage(body.triggerFile) : this.findLanguage(body.configFile); if (language) { if (body.diagnostics.length === 0) { language.configFileDiagnosticsReceived(body.configFile, []); } else if (body.diagnostics.length >= 1) { workspace.openTextDocument(Uri.file(body.configFile)).then((document) => { let curly: [number, number, number] = undefined; let nonCurly: [number, number, number] = undefined; let diagnostic: Diagnostic; for (let index = 0; index < document.lineCount; index++) { let line = document.lineAt(index); let text = line.text; let firstNonWhitespaceCharacterIndex = line.firstNonWhitespaceCharacterIndex; if (firstNonWhitespaceCharacterIndex < text.length) { if (text.charAt(firstNonWhitespaceCharacterIndex) === '{') { curly = [index, firstNonWhitespaceCharacterIndex, firstNonWhitespaceCharacterIndex + 1]; break; } else { let matches = /s*([^s]*)(?:s*|$)/.exec(text.substr(firstNonWhitespaceCharacterIndex)); if (matches.length >= 1) { nonCurly = [index, firstNonWhitespaceCharacterIndex, firstNonWhitespaceCharacterIndex + matches[1].length]; } } } } let match = curly || nonCurly; if (match) { diagnostic = new Diagnostic(new Range(match[0], match[1], match[0], match[2]), body.diagnostics[0].text); if (!body || !body.diagnostics) { return; } const language = body.triggerFile ? this.findLanguage(body.triggerFile) : this.findLanguage(body.configFile); if (!language) { return; } if (body.diagnostics.length === 0) { language.configFileDiagnosticsReceived(body.configFile, []); } else if (body.diagnostics.length >= 1) { workspace.openTextDocument(Uri.file(body.configFile)).then((document) => { let curly: [number, number, number] | undefined = undefined; let nonCurly: [number, number, number] | undefined = undefined; let diagnostic: Diagnostic; for (let index = 0; index < document.lineCount; index++) { const line = document.lineAt(index); const text = line.text; const firstNonWhitespaceCharacterIndex = line.firstNonWhitespaceCharacterIndex; if (firstNonWhitespaceCharacterIndex < text.length) { if (text.charAt(firstNonWhitespaceCharacterIndex) === '{') { curly = [index, firstNonWhitespaceCharacterIndex, firstNonWhitespaceCharacterIndex + 1]; break; } else { diagnostic = new Diagnostic(new Range(0,0,0,0), body.diagnostics[0].text); } if (diagnostic) { diagnostic.source = language.diagnosticSource; language.configFileDiagnosticsReceived(body.configFile, [diagnostic]); const matches = /s*([^s]*)(?:s*|$)/.exec(text.substr(firstNonWhitespaceCharacterIndex)); if (matches && matches.length >= 1) { nonCurly = [index, firstNonWhitespaceCharacterIndex, firstNonWhitespaceCharacterIndex + matches[1].length]; } } }, (error) => { language.configFileDiagnosticsReceived(body.configFile, [new Diagnostic(new Range(0,0,0,0), body.diagnostics[0].text)]); }); } } } const match = curly || nonCurly; if (match) { diagnostic = new Diagnostic(new Range(match[0], match[1], match[0], match[2]), body.diagnostics[0].text); } else { diagnostic = new Diagnostic(new Range(0, 0, 0, 0), body.diagnostics[0].text); } if (diagnostic) { diagnostic.source = language.diagnosticSource; language.configFileDiagnosticsReceived(body.configFile, [diagnostic]); } }, (error) => { language.configFileDiagnosticsReceived(body.configFile, [new Diagnostic(new Range(0, 0, 0, 0), body.diagnostics[0].text)]); }); } */ } private createMarkerDatas(diagnostics: Proto.Diagnostic[], source: string): Diagnostic[] {"} {"_id":"q-en-vscode-81e82eb61170ed2823a5aa6b7815b3d2afdfb765b3460adcaeac792280cff802","text":"const scrollState = StableEditorScrollState.capture(this.editor); this.editor.executeEdits( 'suggestController.additionalTextEdits.sync', item.completion.additionalTextEdits.map(edit => EditOperation.replaceMove(Range.lift(edit.range), edit.text)) item.completion.additionalTextEdits.map(edit => { let range = Range.lift(edit.range); if (range.startLineNumber === item.position.lineNumber && range.startColumn > item.position.column) { // shift additional edit when it is \"after\" the completion insertion position const columnDelta = this.editor.getPosition()!.column - item.position.column; const startColumnDelta = columnDelta; const endColumnDelta = Range.spansMultipleLines(range) ? 0 : columnDelta; range = new Range(range.startLineNumber, range.startColumn + startColumnDelta, range.endLineNumber, range.endColumn + endColumnDelta); } return EditOperation.replaceMove(range, edit.text); }) ); scrollState.restoreRelativeVerticalPositionOfCursor(this.editor);"} {"_id":"q-en-vscode-8250a7d75956d870e3c0169f0294bb218baad2a22770586cd20bcb430c8d423e","text":"} } // Store the existing selection if there was one. const visibleSelection = visibleQuickAccess?.picker?.valueSelection; // Create a picker for the provider to use with the initial value // and adjust the filtering to exclude the prefix from filtering const disposables = new DisposableStore();"} {"_id":"q-en-vscode-8256fffc8521ed19cb501a73228632fdd08750ce6ad3a4b51065441078b72c0e","text":"DeleteWordLeftTerminalAction.ID, DeleteWordRightTerminalAction.ID ].sort() }, 'terminal.integrated.env.osx': { 'description': nls.localize('terminal.integrated.env.osx', \"Object with environment variables that will be added to the VS Code process to be used by the terminal on OS X\"), 'type': 'object', 'default': {} }, 'terminal.integrated.env.linux': { 'description': nls.localize('terminal.integrated.env.linux', \"Object with environment variables that will be added to the VS Code process to be used by the terminal on Linux\"), 'type': 'object', 'default': {} }, 'terminal.integrated.env.windows': { 'description': nls.localize('terminal.integrated.env.windows', \"Object with environment variables that will be added to the VS Code process to be used by the terminal on Windows\"), 'type': 'object', 'default': {} } } });"} {"_id":"q-en-vscode-826701d3b8b7272bb5aec4bd561d358e46307c34f60bed4cd2353ad887422ca2","text":"ui.ignoreFocusOut = false; this.setComboboxAccessibility(false); ui.inputBox.ariaLabel = ''; ui.inputBox.toggles = undefined; const backKeybindingLabel = this.options.backKeybindingLabel(); backButton.tooltip = backKeybindingLabel ? localize('quickInput.backWithKeybinding', \"Back ({0})\", backKeybindingLabel) : localize('quickInput.back', \"Back\");"} {"_id":"q-en-vscode-82720749e4d29134c0aac37e0254ef4564bf2e8cb4054f3857606bdd68218e78","text":"} } else { const previousScrollTop = this.view.getScrollTop(); this.view.setScrollTop(previousScrollTop + this.view.renderHeight - this.view.elementHeight(lastPageIndex)); let nextpageScrollTop = previousScrollTop + this.view.renderHeight; if (lastPageIndex > currentlyFocusedElementIndex) { // scroll last page element to the top only if the last page element is below the focused element nextpageScrollTop -= this.view.elementHeight(lastPageIndex); } this.view.setScrollTop(nextpageScrollTop); if (this.view.getScrollTop() !== previousScrollTop) { this.setFocus([]);"} {"_id":"q-en-vscode-82c66abaa3e0f1c8a8cc6d91d2607be9561a4ed33105a3b7ce1ceb5316aa6a32","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ declare module 'vscode' { export interface TerminalOptions { /** * Opt-out of the default terminal persistence on restart and reload */ disablePersistence?: boolean; } export interface ExtensionTerminalOptions { /** * Opt-out of the default terminal persistence on restart and reload */ disablePersistence?: boolean; } } "} {"_id":"q-en-vscode-8312c982bda6312cd6feaaf46f27c84e9aefb909d9e8b5d0dfd7fb20cdd7d83a","text":"stack.style.margin = '8px 0'; const element = document.createElement('span'); insertOutput(outputInfo.id, [err.stack ?? ''], ctx.settings.lineLimit, false, element, true); insertOutput(outputInfo.id, [err.stack ?? ''], ctx.settings.lineLimit, ctx.settings.outputScrolling, element, true); stack.appendChild(element); container.appendChild(stack); } else {"} {"_id":"q-en-vscode-833ea2452103af164dfca103611874b178e41a436b215b62ca9acaf470ba552f","text":"\"scripts\": { \"update-grammar\": \"node ../node_modules/vscode-grammar-updater/bin daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json\" }, \"extensionKind\": [ \"ui\", \"workspace\" ], \"contributes\": { \"languages\": [ {"} {"_id":"q-en-vscode-834e8335dc3ee85d07f8ede381720f50a27ecb86cf1b4cbcf7eb14d899d5269a","text":"}); } private _acceptNext(editor: ICodeEditor, getAcceptUntilIndex: (position: Position, text: string) => number): void { private async _acceptNext(editor: ICodeEditor, getAcceptUntilIndex: (position: Position, text: string) => number): Promise { if (editor.getModel() !== this.textModel) { throw new BugIndicatingError(); }"} {"_id":"q-en-vscode-838f4db84182e377b8b905135ca88c135140cb1b9fbc17048c50e26c004dd59c","text":"import { toErrorMessage } from 'vs/base/common/errorMessage'; import { Emitter } from 'vs/base/common/event'; import { isEqualOrParent, randomPath } from 'vs/base/common/extpath'; import { ParsedPattern, patternsEquals } from 'vs/base/common/glob'; import { GLOBSTAR, ParsedPattern, patternsEquals } from 'vs/base/common/glob'; import { Disposable } from 'vs/base/common/lifecycle'; import { TernarySearchTree } from 'vs/base/common/map'; import { normalizeNFC } from 'vs/base/common/normalization';"} {"_id":"q-en-vscode-8390046db192ad009e9b2a5cd893ed8950525648a729a98a59f1cb15c90ea81e","text":"DOM.append(this._notebookEditor.getDomNode(), this.getDomNode()); this._findWidgetFocused = KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED.bindTo(contextKeyService); this._register(this._findInput.onKeyDown((e) => this._onFindInputKeyDown(e))); this._register(this._replaceInput.onKeyDown((e) => this._onReplaceInputKeyDown(e))); this._register(this._state.onFindReplaceStateChange((e) => { this.onInputChanged();"} {"_id":"q-en-vscode-83cbe86e8f373e5b9301cf061a0cfd65e028ebf9166a3d10d1608c588fc2ce0f","text":"// service worker already loaded & ready to receive messages postVersionMessage(currentController); } else { console.log(`Found unexpected service worker controller. Found: ${currentController?.scriptURL}. Expected: ${swPath}`); if (currentController) { console.log(`Found unexpected service worker controller. Found: ${currentController.scriptURL}. Expected: ${swPath}. Waiting for controllerchange.`); } else { console.log(`No service worker controller found. Waiting for controllerchange.`); } // either there's no controlling service worker, or it's an old one: // wait for it to change before posting the message // Either there's no controlling service worker, or it's an old one. // Wait for it to change before posting the message const onControllerChange = () => { navigator.serviceWorker.removeEventListener('controllerchange', onControllerChange); if (navigator.serviceWorker.controller) { postVersionMessage(navigator.serviceWorker.controller); } else { return reject(new Error('No controller found.')); } }; navigator.serviceWorker.addEventListener('controllerchange', onControllerChange); }"} {"_id":"q-en-vscode-83e85f89780b61f24b2b2c973a071dbdfa01da4ff4166c33e3c750ff9bc102f1","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ declare module 'vscode' { // https://github.com/microsoft/vscode/issues/171173 // export interface ExtensionContext { // \t/** // \t * Gets the extension's global environment variable collection for this workspace, enabling changes to be // \t * applied to terminal environment variables. // \t */ // \treadonly environmentVariableCollection: GlobalEnvironmentVariableCollection; // } export interface GlobalEnvironmentVariableCollection extends EnvironmentVariableCollection { /** * Gets scope-specific environment variable collection for the extension. This enables alterations to * terminal environment variables solely within the designated scope, and is applied in addition to (and * after) the global collection. * * Each object obtained through this method is isolated and does not impact objects for other scopes, * including the global collection. * * @param scope The scope to which the environment variable collection applies to. * * If a scope parameter is omitted, collection applicable to all relevant scopes for that parameter is * returned. For instance, if the 'workspaceFolder' parameter is not specified, the collection that applies * across all workspace folders will be returned. */ getScoped(scope: EnvironmentVariableScope): EnvironmentVariableCollection; } export type EnvironmentVariableScope = { /** * Any specific workspace folder to get collection for. If unspecified, collection applicable to all workspace folders is returned. */ workspaceFolder?: WorkspaceFolder; }; } "} {"_id":"q-en-vscode-8482451c8bf06ee28eb2da8d2e8fc4fa181d0afdc27a72bf5933e24adb460488","text":"this._heartbeatFirstTimeout = setTimeout(() => this._handleHeartbeatFirstTimeout(), HeartbeatConstants.BeatInterval * HeartbeatConstants.FirstWaitMultiplier); if (!this._isResponsive) { this._isResponsive = true; this._onPtyHostResponsive.fire(); } this._onPtyHostResponsive.fire(); } private _handleHeartbeatFirstTimeout() {"} {"_id":"q-en-vscode-8492c43ae85a3c901eddccba6703515ce323d6030e2e8c018bcdbf06576834e3","text":"return; } await result.repository.popStash(result.stash.index); await commands.executeCommand('workbench.action.closeActiveEditor'); await result.repository.popStash(result.stash.index); } @command('git.stashApply', { repository: true })"} {"_id":"q-en-vscode-84a4369d519f3ce987f5d1ea2181946d96ad3cbf1ee88d99134962a0de4e888a","text":"const editorGroupService = accessor.get(IEditorGroupsService); const newOrientation = (editorGroupService.orientation === GroupOrientation.VERTICAL) ? GroupOrientation.HORIZONTAL : GroupOrientation.VERTICAL; editorGroupService.setGroupOrientation(newOrientation); editorGroupService.activeGroup.focus(); } });"} {"_id":"q-en-vscode-8535b9690afc2b2fb43d9ea5135b917b8b8caa14939f9313d719af8fdb282159","text":"group: '', title: nls.localize('actions.clipboard.pasteLabel', \"Paste\"), order: 1 }, { menuId: MenuId.SimpleEditorContext, group: CLIPBOARD_CONTEXT_MENU_GROUP, title: nls.localize('actions.clipboard.pasteLabel', \"Paste\"), when: EditorContextKeys.writable, order: 4, }] })) : undefined;"} {"_id":"q-en-vscode-8578721dc5108e7ca5993ebfb1289934c9dc265118df349c7ab80ad151a39bce","text":"this._zone.widget.updateStatus(message); } override needsMargin(): boolean { return true; } private async _updateDiffZones() { const diff = await this._editorWorkerService.computeDiff(this._session.textModel0.uri, this._session.textModelN.uri, { ignoreTrimWhitespace: false, maxComputationTimeMs: 5000, computeMoves: false }, 'advanced'); if (!diff || diff.changes.length === 0) {"} {"_id":"q-en-vscode-85e28bf74fa77653d07e2cc3c8dcca8b411216509648cf06500dc1ccaf8b4333","text":"} /** * The main match information for a {@link TextSearchResultNew}. * A query match instance in a file. * * For example, consider this excerpt: * * ```ts * const bar = 1; * console.log(bar); * const foo = bar; * ``` * * If the query is `log`, then the line `console.log(bar);` should be represented using a {@link TextSearchMatchNew}. */ export class TextSearchMatchNew { /**"} {"_id":"q-en-vscode-869cdc256153b9f2723f58a27f80a7d4a6b6cebc246735a7c700875510774a86","text":"const holdMode = keybindingService.enableKeybindingHoldMode(id); let session: IVoiceChatSession | undefined = undefined; let acceptVoice = false; const handle = disposableTimeout(() => { acceptVoice = true; session.setTimeoutDisabled(true); // disable accept on timeout when hold mode runs for VOICE_KEY_HOLD_THRESHOLD session?.setTimeoutDisabled(true); // disable accept on timeout when hold mode runs for VOICE_KEY_HOLD_THRESHOLD }, VOICE_KEY_HOLD_THRESHOLD); const controller = await VoiceChatSessionControllerFactory.create(accessor, target);"} {"_id":"q-en-vscode-86a9943576bc50231a213bc6bec5feee11aaa7ac03a01cc090ea1c9d4b0d350d","text":"assertReplace(['abc', 'Abc'], 'Def', 'def'); assertReplace(['Abc', 'abc'], 'Def', 'Def'); assertReplace(['ABC', 'abc'], 'Def', 'DEF'); assertReplace(['aBc', 'abc'], 'Def', 'def'); assertReplace(['AbC'], 'Def', 'Def'); assertReplace(['aBC'], 'Def', 'Def'); assertReplace(['aBC'], 'Def', 'def'); assertReplace(['aBc'], 'DeF', 'deF'); assertReplace(['Foo-Bar'], 'newfoo-newbar', 'Newfoo-Newbar'); assertReplace(['Foo-Bar-Abc'], 'newfoo-newbar-newabc', 'Newfoo-Newbar-Newabc'); assertReplace(['Foo-Bar-abc'], 'newfoo-newbar', 'Newfoo-newbar'); assertReplace(['foo-Bar'], 'newfoo-newbar', 'newfoo-Newbar'); assertReplace(['foo-BAR'], 'newfoo-newbar', 'newfoo-NEWBAR'); assertReplace(['foO-BAR'], 'NewFoo-NewBar', 'newFoo-NEWBAR'); assertReplace(['Foo_Bar'], 'newfoo_newbar', 'Newfoo_Newbar'); assertReplace(['Foo_Bar_Abc'], 'newfoo_newbar_newabc', 'Newfoo_Newbar_Newabc'); assertReplace(['Foo_Bar_abc'], 'newfoo_newbar', 'Newfoo_newbar');"} {"_id":"q-en-vscode-86e6611114d7d04ed64e90a59c84d3ab1485fb7b639e45d7fcf1b5a8fe4af1fe","text":"const choices = [open, openNewWindow]; if (!askToOpen) { await this.model.openRepository(repositoryPath); return; }"} {"_id":"q-en-vscode-870b3cc38825710bcdb253a8b0042ab10a9e40a1dd72eee9f7e521221f83261a","text":"} # Set IsWindows property [Console]::Write(\"$([char]0x1b)]633;P;IsWindows=$($IsWindows)`a\") if ($PSVersionTable.PSVersion -lt \"6.0\") { # Windows PowerShell is only available on Windows [Console]::Write(\"$([char]0x1b)]633;P;IsWindows=$true`a\") } else { [Console]::Write(\"$([char]0x1b)]633;P;IsWindows=$IsWindows`a\") } # Set always on key handlers which map to default VS Code keybindings function Set-MappedKeyHandler {"} {"_id":"q-en-vscode-871c27889f82136857dfc8fcb2160f271127c603a40835aae817abda5dc38e58","text":"openView: 'never' | 'file' | 'firstFile'; useRelativeTime: boolean; visible: boolean; maxHeight: boolean; } export const COMMENTS_SECTION = 'comments';"} {"_id":"q-en-vscode-875c6131c7e72deb97bca4e50d774b5220f136515fd5b17ddea6851a432c9f60","text":"'Selection': IMenu; 'View': IMenu; 'Go': IMenu; 'Terminal': IMenu; 'Debug': IMenu; 'Tasks': IMenu; 'Window'?: IMenu;"} {"_id":"q-en-vscode-877227c1611f635bdcdd9c9ba9efc952a61977a8abad2daa175ee4f8024b312b","text":"export function compareNotebookPos(match1: NotebookMatch, match2: NotebookMatch): number { if (match1.cellIndex === match2.cellIndex) { if (match1.matchStartIndex === match2.matchStartIndex) { if (match1.matchEndIndex === match2.matchEndIndex) { return 0; } else if (match1.matchEndIndex < match2.matchEndIndex) { if (match1.webviewIndex !== undefined && match2.webviewIndex !== undefined) { return match1.webviewIndex - match2.webviewIndex; } else if (match1.webviewIndex === undefined && match2.webviewIndex === undefined) { if (match1.matchStartIndex === match2.matchStartIndex) { return match1.matchEndIndex - match2.matchEndIndex; } else if (match1.matchStartIndex < match2.matchStartIndex) { return -1; } else { return 1; } } else if (match1.matchStartIndex < match2.matchStartIndex) { return -1; } else { return 1; // webview matches should always be after content matches if (match1.webviewIndex !== undefined) { return 1; } else { return -1; } } } else if (match1.cellIndex < match2.cellIndex) { return -1;"} {"_id":"q-en-vscode-87b0deae6378fa0bef82939aa3c673bd44a70700f2765fe3b2b11d6468c796c7","text":"parameters: - name: VSCODE_BUILD_WIN32 type: boolean default: false - name: VSCODE_BUILD_WIN32_32BIT type: boolean default: false - name: VSCODE_BUILD_WIN32_ARM64 type: boolean default: false - name: VSCODE_QUALITY type: string - name: channel"} {"_id":"q-en-vscode-87d4386eee071b32c676fcac531ae04bbde25c7293dfd507a0186e8737bbf025","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // eslint-disable-next-line local/code-import-patterns import assert from 'assert'; // eslint-disable-next-line local/code-import-patterns import { ensureNoDisposablesAreLeakedInTestSuite } from '../../../../../base/test/common/utils.js'; import { IssueReporterModel } from '../issueReporterModel.js'; import { IssueType } from '../../common/issue.js'; import { normalizeGitHubUrl } from '../../common/issueReporterUtil.js'; suite('IssueReporter', () => { ensureNoDisposablesAreLeakedInTestSuite(); test('sets defaults to include all data', () => { const issueReporterModel = new IssueReporterModel(); assert.deepStrictEqual(issueReporterModel.getData(), { allExtensions: [], includeSystemInfo: true, includeExtensionData: true, includeWorkspaceInfo: true, includeProcessInfo: true, includeExtensions: true, includeExperiments: true, issueType: 0 }); }); test('serializes model skeleton when no data is provided', () => { const issueReporterModel = new IssueReporterModel({}); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes: Extensions: none `); }); test('serializes GPU information when data is provided', () => { const issueReporterModel = new IssueReporterModel({ issueType: 0, systemInfo: { os: 'Darwin', cpus: 'Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)', memory: '16.00GB', vmHint: '0%', processArgs: '', screenReader: 'no', remoteData: [], gpuStatus: { '2d_canvas': 'enabled', 'checker_imaging': 'disabled_off' } } }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes:
System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)| |GPU Status|2d_canvas: enabled
checker_imaging: disabled_off| |Load (avg)|undefined| |Memory (System)|16.00GB| |Process Argv|| |Screen Reader|no| |VM|0%|
Extensions: none `); }); test('serializes experiment info when data is provided', () => { const issueReporterModel = new IssueReporterModel({ issueType: 0, systemInfo: { os: 'Darwin', cpus: 'Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)', memory: '16.00GB', vmHint: '0%', processArgs: '', screenReader: 'no', remoteData: [], gpuStatus: { '2d_canvas': 'enabled', 'checker_imaging': 'disabled_off' } }, experimentInfo: 'vsliv695:30137379nvsins829:30139715' }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes:
System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)| |GPU Status|2d_canvas: enabled
checker_imaging: disabled_off| |Load (avg)|undefined| |Memory (System)|16.00GB| |Process Argv|| |Screen Reader|no| |VM|0%|
Extensions: none
A/B Experiments ``` vsliv695:30137379 vsins829:30139715 ```
`); }); test('serializes Linux environment information when data is provided', () => { const issueReporterModel = new IssueReporterModel({ issueType: 0, systemInfo: { os: 'Darwin', cpus: 'Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)', memory: '16.00GB', vmHint: '0%', processArgs: '', screenReader: 'no', remoteData: [], gpuStatus: {}, linuxEnv: { desktopSession: 'ubuntu', xdgCurrentDesktop: 'ubuntu', xdgSessionDesktop: 'ubuntu:GNOME', xdgSessionType: 'x11' } } }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes:
System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)| |GPU Status|| |Load (avg)|undefined| |Memory (System)|16.00GB| |Process Argv|| |Screen Reader|no| |VM|0%| |DESKTOP_SESSION|ubuntu| |XDG_CURRENT_DESKTOP|ubuntu| |XDG_SESSION_DESKTOP|ubuntu:GNOME| |XDG_SESSION_TYPE|x11|
Extensions: none `); }); test('serializes remote information when data is provided', () => { const issueReporterModel = new IssueReporterModel({ issueType: 0, systemInfo: { os: 'Darwin', cpus: 'Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)', memory: '16.00GB', vmHint: '0%', processArgs: '', screenReader: 'no', gpuStatus: { '2d_canvas': 'enabled', 'checker_imaging': 'disabled_off' }, remoteData: [ { hostName: 'SSH: Pineapple', machineInfo: { os: 'Linux x64 4.18.0', cpus: 'Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz (2 x 2294)', memory: '8GB', vmHint: '100%' } } ] } }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes: Remote OS version: Linux x64 4.18.0
System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)| |GPU Status|2d_canvas: enabled
checker_imaging: disabled_off| |Load (avg)|undefined| |Memory (System)|16.00GB| |Process Argv|| |Screen Reader|no| |VM|0%| |Item|Value| |---|---| |Remote|SSH: Pineapple| |OS|Linux x64 4.18.0| |CPUs|Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz (2 x 2294)| |Memory (System)|8GB| |VM|100%|
Extensions: none `); }); test('escapes backslashes in processArgs', () => { const issueReporterModel = new IssueReporterModel({ issueType: 0, systemInfo: { os: 'Darwin', cpus: 'Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)', memory: '16.00GB', vmHint: '0%', processArgs: 'HOSTpath', screenReader: 'no', remoteData: [], gpuStatus: {} } }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes:
System Info |Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 x 2800)| |GPU Status|| |Load (avg)|undefined| |Memory (System)|16.00GB| |Process Argv|HOSTpath| |Screen Reader|no| |VM|0%|
Extensions: none `); }); test('should supply mode if applicable', () => { const issueReporterModel = new IssueReporterModel({ isUnsupported: true, restrictedMode: true }); assert.strictEqual(issueReporterModel.serialize(), ` Type: Bug undefined VS Code version: undefined OS version: undefined Modes: Restricted, Unsupported Extensions: none `); }); test('should normalize GitHub urls', () => { [ 'https://github.com/repo', 'https://github.com/repo/', 'https://github.com/repo.git', 'https://github.com/repo/issues', 'https://github.com/repo/issues/', 'https://github.com/repo/issues/new', 'https://github.com/repo/issues/new/' ].forEach(url => { assert.strictEqual('https://github.com/repo', normalizeGitHubUrl(url)); }); }); test('should have support for filing on extensions for bugs, performance issues, and feature requests', () => { [ IssueType.Bug, IssueType.FeatureRequest, IssueType.PerformanceIssue ].forEach(type => { const issueReporterModel = new IssueReporterModel({ issueType: type, fileOnExtension: true }); assert.strictEqual(issueReporterModel.fileOnExtension(), true); }); }); });
"} {"_id":"q-en-vscode-8844c63fe08d247735482d69e22dbccc0f1f2f3d995dcf8f3d7341513338a14e","text":"this._register(AccessibleViewAction.addImplementation(95, 'inline-completions', accessor => { const accessibleViewService = accessor.get(IAccessibleViewService); const codeEditorService = accessor.get(ICodeEditorService); const contextViewService = accessor.get(IContextViewService); const show = () => { const editor = codeEditorService.getActiveCodeEditor() || codeEditorService.getFocusedCodeEditor(); if (!editor) {"} {"_id":"q-en-vscode-886c8430aa20214d968caed4c53c30b3f2f1bb1c5a850080d639edd8bc2161ac","text":"export interface FileSearchQuery { /** * The search pattern to match against file paths. * To be correctly interpreted by Quick Open, this is interpreted in a relaxed way. The picker will apply its own highlighting and scoring on the results. * * Tips for matching in Quick Open: * With the pattern, the picker will use the file name and file paths to score each entry. The score will determine the ordering and filtering. * The scoring prioritizes prefix and substring matching. Then, it checks and it checks whether the pattern's letters appear in the same order as in the target (file name and path). * If a file does not match at all using our criteria, it will be omitted from Quick Open. */ pattern: string; }"} {"_id":"q-en-vscode-888182725c437c0829ae4462794b1e791c9a10f83abc213811f62a671fb87f0f","text":" end (?<=S)(1)((?!1)|(?=11)) (?<=S)(1)((?!1)|(?=11))b name markup.italic.markdown patterns"} {"_id":"q-en-vscode-8896d75346a465356b442cc20498f066e9cfce2a9ff09db9a2ebe10d6fa5d5c9","text":"} }, { \"name\": \"Markup Setext Header\", \"scope\": \"markup.heading.setext\", \"name\": \"Markup Headings\", \"scope\": [ \"markup.heading\", \"markup.heading.setext\" ], \"settings\": { \"fontStyle\": \"\", \"foreground\": \"#ddbb88\" \"fontStyle\": \"bold\", \"foreground\": \"#6688cc\" } } ],"} {"_id":"q-en-vscode-88ba39e38cb756af774f2341b59b777d824e7e2271bb51fd93b7f54fc17fb2a8","text":"const participant = chat.createChatParticipant('api-test.participant', (request, context, _progress, _token) => { emitter.fire({ request, context }); return null; }); participant.isDefault = true; disposables.push(participant);"} {"_id":"q-en-vscode-88c55a951857445f05b05cf42eec1ae3b562ddbe00dd32a3774d44a4d2d4aa37","text":"return new Uri('file', authority, path, _empty, _empty); } static from(components: { scheme: string; authority?: string; path?: string; query?: string; fragment?: string }): URI { /** * Creates new URI from uri components. * * Unless `strict` is `true` the scheme is defaults to be `file`. This function performs * validation and should be used for untrusted uri components retrieved from storage, * user input, command arguments etc */ static from(components: { scheme: string; authority?: string; path?: string; query?: string; fragment?: string }, strict?: boolean): URI { const result = new Uri( components.scheme, components.authority, components.path, components.query, components.fragment, strict ); _validateUri(result, true); return result; }"} {"_id":"q-en-vscode-88ed881fd9e074081da95ef9dc2e5584cb39917b25def4e6563e761eb019cd82","text":"let foldersToRestore: URI[] = []; let workspacesToRestore: IWorkspacePathToOpen[] = []; if (openConfig.initialStartup && !openConfig.cli.extensionDevelopmentPath && !openConfig.cli['disable-restore-windows']) { let foldersToRestore = this.backupMainService.getFolderBackupPaths(); foldersToOpen.push(...foldersToRestore.map(f => ({ folderUri: f, remoteAuhority: getRemoteAuthority(f) }))); // don't restore backuped folders, for #92318. // let foldersToRestore = this.backupMainService.getFolderBackupPaths(); // foldersToOpen.push(...foldersToRestore.map(f => ({ folderUri: f, remoteAuhority: getRemoteAuthority(f) }))); // collect from workspaces with hot-exit backups and from previous window session workspacesToRestore = [...this.backupMainService.getWorkspaceBackups(), ...this.workspacesMainService.getUntitledWorkspacesSync()];"} {"_id":"q-en-vscode-88fd896fabc05c0b779f3d1158102a8a5f75a479e8fdeb6888a8376412442d8d","text":"import * as perf from 'vs/base/common/performance'; import { WorkbenchActionExecutedEvent, WorkbenchActionExecutedClassification } from 'vs/base/common/actions'; import { memoize } from 'vs/base/common/decorators'; import { IFilesConfiguration, ExplorerFolderContext, FilesExplorerFocusedContext, ExplorerFocusedContext, ExplorerRootContext, ExplorerResourceReadonlyContext, ExplorerResourceCut, ExplorerResourceMoveableToTrash, ExplorerCompressedFocusContext, ExplorerCompressedFirstFocusContext, ExplorerCompressedLastFocusContext, ExplorerResourceAvailableEditorIdsContext, VIEW_ID, VIEWLET_ID, ExplorerResourceNotReadonlyContext, ViewHasSomeCollapsibleRootItemContext } from 'vs/workbench/contrib/files/common/files'; import { IFilesConfiguration, ExplorerFolderContext, FilesExplorerFocusedContext, ExplorerFocusedContext, ExplorerRootContext, ExplorerResourceReadonlyContext, ExplorerResourceCut, ExplorerResourceMoveableToTrash, ExplorerCompressedFocusContext, ExplorerCompressedFirstFocusContext, ExplorerCompressedLastFocusContext, ExplorerResourceAvailableEditorIdsContext, VIEW_ID, VIEWLET_ID, ExplorerResourceNotReadonlyContext, ViewHasSomeCollapsibleRootItemContext, ExplorerViewletVisibleContext } from 'vs/workbench/contrib/files/common/files'; import { FileCopiedContext, NEW_FILE_COMMAND_ID, NEW_FOLDER_COMMAND_ID } from 'vs/workbench/contrib/files/browser/fileActions'; import * as DOM from 'vs/base/browser/dom'; import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService';"} {"_id":"q-en-vscode-88fee12c1b9ee848908aa371bac180606d23204fad7c6843d37eb269bd477a38","text":"private readonly recommendationsByPattern = new Map>(); private readonly fileBasedRecommendations = new Map(); private readonly fileBasedImportantRecommendations = new Set(); private readonly processedFileExtensions: string[] = []; get recommendations(): ReadonlyArray { const recommendations: ExtensionRecommendation[] = [];"} {"_id":"q-en-vscode-89126266e5727bbc642d2d18e1f7ea9edef9bce2c913f3c42740e4878ad1cbb2","text":"import { NotebookTextModel } from 'vs/workbench/contrib/notebook/common/model/notebookTextModel'; import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService'; import { URI } from 'vs/base/common/uri'; import { IWorkingCopyService, IWorkingCopy, IWorkingCopyBackup } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IWorkingCopyService, IWorkingCopy, IWorkingCopyBackup, WorkingCopyCapabilities } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { basename } from 'vs/base/common/resources'; import { CancellationTokenSource } from 'vs/base/common/cancellation'; import { IBackupFileService } from 'vs/workbench/services/backup/common/backup';"} {"_id":"q-en-vscode-891f4eee2d75a00be5b94a91b665c1496cb392e41207adb5ac6b302dd545e562","text":"}, { type: 'array', items: { type: 'string' }, prefixItems: [ { type: 'string', enum: ['absolute', 'relative', 'autoDetect', 'search'] }, ], minItems: 1, maxItems: 1, additionalItems: false }, { type: 'array', prefixItems: [ { type: 'string', enum: ['relative', 'autoDetect'] }, { type: 'string' }, ], minItems: 2, maxItems: 2, additionalItems: false, examples: [ ['relative', '${workspaceFolder}'], ['autoDetect', '${workspaceFolder}'],"} {"_id":"q-en-vscode-8922441305d04b74c236a5e63b175645c462d58250db07c6e0ff1a3f70bf148c","text":"} } try { // Variable substitution can require user interaction, so only one of these should be running at a time. return this.variableSubstitutionQueue.queue(() => dbg.substituteVariables(folder, config)); return await dbg.substituteVariables(folder, config); } catch (err) { this.showError(err.message, undefined, !!launch?.getConfiguration(config.name)); return undefined;\t// bail out"} {"_id":"q-en-vscode-89cfa6250c0d75b1bb7ec09c6140acd91d8dc7e53140c325b4c40ee09298f327","text":"// cached state if (this._fsPath) { res.fsPath = this._fsPath; res._sep = _pathSepMarker; } if (this._formatted) { res.external = this._formatted;"} {"_id":"q-en-vscode-89d1ad73a9b700d7d5a3fe98496c4cd652662370612116b8724d90f23615c5ab","text":"{ \"command\": \"git.undoCommit\", \"title\": \"%command.undoCommit%\", \"category\": \"Git\" \"category\": \"Git\", \"enablement\": \"!commitInProgress\" }, { \"command\": \"git.checkout\","} {"_id":"q-en-vscode-89f6a0b9baf5b54d8013e8fd0bf73d421bf65a4898f82042dfe65d7290c6036b","text":"this.createHeader(this._commentDetailsContainer); this._body = document.createElement(`div`); this._body.classList.add('comment-body', MOUSE_CURSOR_TEXT_CSS_CLASS_NAME); if (configurationService.getValue(COMMENTS_SECTION)?.maxHeight !== false) { this._body.classList.add('comment-body-max-height'); } this.createScroll(this._commentDetailsContainer, this._body); this.updateCommentBody(this.comment.body);"} {"_id":"q-en-vscode-8a22b96ed10587c74315c179d84a0c20e5e168fb742af09f3c01708ab890c740","text":"import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { TerminalCapability } from 'vs/platform/terminal/common/capabilities/capabilities'; import { TerminalCapabilityStore } from 'vs/platform/terminal/common/capabilities/terminalCapabilityStore'; import { formatMessageForTerminal } from 'vs/platform/terminal/common/terminalStrings'; import { IColorTheme, IThemeService } from 'vs/platform/theme/common/themeService'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { IViewPaneOptions, ViewPane } from 'vs/workbench/browser/parts/views/viewPane';"} {"_id":"q-en-vscode-8a71e911c943ae59d45352a8fcc209e487b369c9fb5409a70698ca00475a319c","text":"@IUriIdentityService private readonly _uriIdentityService: IUriIdentityService ) { super(); if (!this._testing) { setInterval(function () { map.clear(); }, 10000); } } protected async _provideLinks(y: number): Promise {"} {"_id":"q-en-vscode-8aab40f41cb9d362f7d2c78b5420650adcb6a52ab871e364ef9443488c4d9b19","text":"menu: [ { id: MenuId.EditorTitle, when: ctxIsMergeEditor, when: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorLayout.isEqualTo('columns')), group: '2_merge', order: 9, }, ], precondition: ctxIsMergeEditor, ] }); }"} {"_id":"q-en-vscode-8aad763584f11acd312c4c1c121ff58e4196c4c11ac8504b15c5b014f7d8e13f","text":"import { Emitter } from 'vs/base/common/event'; import { IMarkdownString, MarkdownStringTrustedOptions } from 'vs/base/common/htmlContent'; import { DisposableStore, IDisposable } from 'vs/base/common/lifecycle'; import 'vs/css!./renderedMarkdown'; import { applyFontInfo } from 'vs/editor/browser/config/domFontInfo'; import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { EditorOption } from 'vs/editor/common/config/editorOptions';"} {"_id":"q-en-vscode-8b61f9adc0dae3d8340d060ba2abb94736b6d5a6dfece47596a5a6f08f29510e","text":"dependencies: is-number \"^7.0.0\" typescript@5.1.3: version \"5.1.3\" resolved \"https://registry.yarnpkg.com/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826\" integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== typescript@5.1.6: version \"5.1.6\" resolved \"https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274\" integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA== vscode-grammar-updater@^1.1.0: version \"1.1.0\""} {"_id":"q-en-vscode-8b97e60dbdb7b07aa0fa84201debc563d13ab0f2207916ab94d2556761602125","text":"} function registerOpenEditorAtIndexCommands(): void { const openEditorAtIndex: ICommandHandler = (accessor: ServicesAccessor, editorIndex: number): void => { const editorService = accessor.get(IEditorService); const activeControl = editorService.activeControl; if (activeControl) { const editor = activeControl.group.getEditor(editorIndex); if (editor) { editorService.openEditor(editor); } } }; // This command takes in the editor index number to open as an argument CommandsRegistry.registerCommand({ id: OPEN_EDITOR_AT_INDEX_COMMAND_ID, handler: openEditorAtIndex }); // Keybindings to focus a specific index in the tab folder if tabs are enabled for (let i = 0; i < 9; i++) {"} {"_id":"q-en-vscode-8b9bd385ac848eeb9f083029b952ab54b79f846dd60b8556f2db561fc74af7d9","text":"height: 100%; } .monaco-workbench .activitybar > .content :not(.monaco-menu) > .monaco-action-bar .active-item-indicator { pointer-events: none; } .monaco-workbench.border .activitybar.right > .content :not(.monaco-menu) > .monaco-action-bar .active-item-indicator { left: -2px; }"} {"_id":"q-en-vscode-8ba8421b7d3f0f681ad7231853b540aa02137950ea5958a541daa2086862c259","text":"let text = link.text.replace(/^file:///?/, ''); text = osPathModule(this._os).normalize(text).replace(/^(.+[/])+/, ''); // Remove `:in` from the end which is how Ruby outputs stack traces text = text.replace(/:in$/, ''); // Remove `:` from the end of the link. // Examples: // - Ruby stack traces: :in ... // - Grep output: : text = text.replace(/:[^d]+$/, ''); // If any of the names of the folders in the workspace matches // a prefix of the link, remove that prefix and continue this._workspaceContextService.getWorkspace().folders.forEach((folder) => {"} {"_id":"q-en-vscode-8ba9e76512695e2b359f57c3cdd2c2b4399b25e809726f8713db9827f1345e5d","text":"if (response === 2) { shell.openExternal('https://aka.ms/vscode-windows-unc'); return this.onUNCHostNotAllowed(path, options); // keep showing the dialog until decision (https://github.com/microsoft/vscode/issues/181956) } return undefined;"} {"_id":"q-en-vscode-8bb5787ca3d6e62daf7f32ff39ccba0e04d8e3a6ed7512e7b436137939043de4","text":"} satisfies vscode.ChatParticipant; } invoke(request: vscode.ChatRequest, context: vscode.ChatContext, response: vscode.ChatExtendedResponseStream, token: CancellationToken): vscode.ProviderResult { invoke(request: vscode.ChatRequest, context: vscode.ChatContext, response: vscode.ChatExtendedResponseStream, token: CancellationToken): vscode.ProviderResult { return this._requestHandler(request, context, response, token); } }"} {"_id":"q-en-vscode-8c9e4f6cc714b158a65d2fe1d49f656c7615134a90e8a3c99486a5feed7a59de","text":"matchOnDescription: true }); if (result && result.description) { this.shellLaunchConfig.icon = iconRegistry.get(result.description); this._icon = iconRegistry.get(result.description); this._onIconChanged.fire(this); } }"} {"_id":"q-en-vscode-8cd0517373a951f7969e266aab2f5f51fd35958182ed1af367c29559af08b9e7","text":"import { CellOutputContainer } from 'vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput'; import { CollapsedCodeCellExecutionIcon } from 'vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon'; import { CodeCellRenderTemplate } from 'vs/workbench/contrib/notebook/browser/view/notebookRenderingCommon'; import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { CodeCellViewModel, outputDisplayLimit } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { INotebookExecutionStateService } from 'vs/workbench/contrib/notebook/common/notebookExecutionStateService'; import { WordHighlighterContribution } from 'vs/editor/contrib/wordHighlighter/browser/wordHighlighter';"} {"_id":"q-en-vscode-8d50c3eb3b407ef47ab175f79cc9bf1bf6db5f7b704fb0d50681d5222108cb10","text":"import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { IListService } from 'vs/platform/list/browser/listService'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IDebugService, IEnablement, CONTEXT_BREAKPOINTS_FOCUSED, CONTEXT_WATCH_EXPRESSIONS_FOCUSED, CONTEXT_VARIABLES_FOCUSED, EDITOR_CONTRIBUTION_ID, IDebugEditorContribution, CONTEXT_IN_DEBUG_MODE, CONTEXT_EXPRESSION_SELECTED, CONTEXT_BREAKPOINT_SELECTED } from 'vs/workbench/parts/debug/common/debug'; import { IDebugService, IEnablement, CONTEXT_BREAKPOINTS_FOCUSED, CONTEXT_WATCH_EXPRESSIONS_FOCUSED, CONTEXT_VARIABLES_FOCUSED, EDITOR_CONTRIBUTION_ID, IDebugEditorContribution, CONTEXT_IN_DEBUG_MODE, CONTEXT_EXPRESSION_SELECTED, CONTEXT_BREAKPOINT_SELECTED, IConfig } from 'vs/workbench/parts/debug/common/debug'; import { Expression, Variable, Breakpoint, FunctionBreakpoint } from 'vs/workbench/parts/debug/common/debugModel'; import { IExtensionsViewlet, VIEWLET_ID as EXTENSIONS_VIEWLET_ID } from 'vs/workbench/parts/extensions/common/extensions'; import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet';"} {"_id":"q-en-vscode-8d6e74bb3f0a8542b9676ad56820ffbef51d28449f87d12442f2313e51dea018","text":"import { firstOrDefault } from 'vs/base/common/arrays'; import { ILanguageIdCodec, TokenizationRegistry } from 'vs/editor/common/languages'; import { PLAINTEXT_LANGUAGE_ID } from 'vs/editor/common/languages/modesRegistry'; import { IObservable, observableFromEvent } from 'vs/base/common/observable'; export class LanguageService extends Disposable implements ILanguageService { public _serviceBrand: undefined;"} {"_id":"q-en-vscode-8d7affa283b3b1afec696ebcf4638bdb607a8a4c2bf503447ce5f2b5c385d2d3","text":"'{Locked=\"vscode.l10n API\"}' ] }, 'The relative path to a folder containing localization (bundle.l10n.*.json) files. Must be specified if you are using the vscode.l10n API.') }, pricing: { type: 'string', markdownDescription: nls.localize('vscode.extension.pricing', 'The pricing information for the extension. Can be Free (default) or Trial. For more details visit: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label'), enum: ['Free', 'Trial'], default: 'Free' } } };"} {"_id":"q-en-vscode-8d99ab577ce21b27bb2855f7dc9f1960e06d8f11a6a78033ea847975105dc4ac","text":"} }, { \"name\": \"Markup: Strong\", \"scope\": \"markup.bold\", \"settings\": { \"fontStyle\": \"bold\" } }, { \"name\": \"Markup: Emphasis\", \"scope\": \"markup.italic\", \"settings\": { \"fontStyle\": \"italic\" } }, { \"name\": \"Markup Inline\", \"scope\": \"markup.inline.raw\", \"settings\": {"} {"_id":"q-en-vscode-8de234ae835147e10f341206d8526c4fc6aa3bea06f5abf2d0ff57f71226141a","text":"canMoveView: false, treeView, collapsed: false, when: ContextKeyExpr.and(EDIT_SESSIONS_SIGNED_IN, EDIT_SESSIONS_SHOW_VIEW), order: 100, hideByDefault: true, }], container);"} {"_id":"q-en-vscode-8df892d07bca5186a65bde03306de6b68de275abc8ec3fbcdec4156875b1757c","text":"this.storageService.store(promptedRecommendationsStorageKey, JSON.stringify(promptedRecommendations), StorageScope.PROFILE, StorageTarget.USER); } private getPromptedFileExtensions(): string[] { return JSON.parse(this.storageService.get(promptedFileExtensionsStorageKey, StorageScope.PROFILE, '[]')); } private addToPromptedFileExtensions(fileExtension: string) { const promptedFileExtensions = this.getPromptedFileExtensions(); promptedFileExtensions.push(fileExtension); this.storageService.store(promptedFileExtensionsStorageKey, JSON.stringify(distinct(promptedFileExtensions)), StorageScope.PROFILE, StorageTarget.USER); } private async promptRecommendedExtensionForFileExtension(uri: URI, fileExtension: string): Promise { if (this.extensionRecommendationNotificationService.hasToIgnoreRecommendationNotifications()) { return; } // Do not prompt when there is no local and remote extension management servers if (!this.extensionManagementServerService.localExtensionManagementServer && !this.extensionManagementServerService.remoteExtensionManagementServer) { return; } fileExtension = fileExtension.substring(1); // Strip the dot if (!fileExtension) { return; } const mimeTypes = getMimeTypes(uri); if (mimeTypes.length !== 1 || mimeTypes[0] !== Mimes.unknown) { return; } const fileExtensionSuggestionIgnoreList = JSON.parse(this.storageService.get('extensionsAssistant/fileExtensionsSuggestionIgnore', StorageScope.PROFILE, '[]')); if (fileExtensionSuggestionIgnoreList.indexOf(fileExtension) > -1) { return; } const promptedFileExtensions = this.getPromptedFileExtensions(); if (promptedFileExtensions.includes(fileExtension)) { return; } const text = `ext:${fileExtension}`; const pager = await this.extensionsWorkbenchService.queryGallery({ text, pageSize: 100 }, CancellationToken.None).then(r => r, () => null); if (!pager?.firstPage.length) { return; } const installedExtensionsIds = this.extensionsWorkbenchService.local.reduce((result, i) => { result.add(i.identifier.id.toLowerCase()); return result; }, new Set()); if (pager.firstPage.some(e => installedExtensionsIds.has(e.identifier.id.toLowerCase()))) { return; } this.notificationService.prompt( Severity.Info, localize('showLanguageExtensions', \"The Marketplace has extensions that can help with '.{0}' files\", fileExtension), [{ label: searchMarketplace, run: () => { this.addToPromptedFileExtensions(fileExtension); this.telemetryService.publicLog2<{ userReaction: string; fileExtension: string }, FileExtensionSuggestionClassification>('fileExtensionSuggestion:popup', { userReaction: 'ok', fileExtension }); this.paneCompositeService.openPaneComposite(EXTENSIONS_VIEWLET_ID, ViewContainerLocation.Sidebar, true) .then(viewlet => viewlet?.getViewPaneContainer() as IExtensionsViewPaneContainer) .then(viewlet => { viewlet.search(`ext:${fileExtension}`); viewlet.focus(); }); } }, { label: localize('dontShowAgainExtension', \"Don't Show Again for '.{0}' files\", fileExtension), run: () => { fileExtensionSuggestionIgnoreList.push(fileExtension); this.storageService.store( 'extensionsAssistant/fileExtensionsSuggestionIgnore', JSON.stringify(fileExtensionSuggestionIgnoreList), StorageScope.PROFILE, StorageTarget.USER); this.telemetryService.publicLog2<{ userReaction: string; fileExtension: string }, FileExtensionSuggestionClassification>('fileExtensionSuggestion:popup', { userReaction: 'neverShowAgain', fileExtension }); } }], { sticky: true, onCancel: () => { this.telemetryService.publicLog2<{ userReaction: string; fileExtension: string }, FileExtensionSuggestionClassification>('fileExtensionSuggestion:popup', { userReaction: 'cancelled', fileExtension }); } } ); } private filterIgnoredOrNotAllowed(recommendationsToSuggest: string[]): string[] { const ignoredRecommendations = [...this.extensionIgnoredRecommendationsService.ignoredRecommendations, ...this.extensionRecommendationNotificationService.ignoredRecommendations]; return recommendationsToSuggest.filter(id => !ignoredRecommendations.includes(id));"} {"_id":"q-en-vscode-8e080d8e3bf43e6b768cab3c2055eff39cf92469c9ae9563f1ea1b2a636ddf68","text":"export interface MarkdownContentProviderOutput { html: string; containingImages: { src: string }[]; containingImages: Set; }"} {"_id":"q-en-vscode-8e28609cda437efd125c02055d078dab29a051574b7e42c704e084a2f0001b5f","text":"} } await this.addEntriesFromStorage(workspaces, files); const mergedEntries = await this.mergeEntriesFromStorage({ workspaces, files }); workspaces = mergedEntries.workspaces; files = mergedEntries.files; if (workspaces.length > WorkspacesHistoryMainService.MAX_TOTAL_RECENT_ENTRIES) { workspaces.length = WorkspacesHistoryMainService.MAX_TOTAL_RECENT_ENTRIES;"} {"_id":"q-en-vscode-8e3b232c32557c449e82372fed24a1261eaf11fcf6fca66de54693c6724c4b06","text":"if (!link.uri) { throw new Error('Tried to open a url without a resolved URI'); } this._openerService.open(link.uri || URI.parse(link.text), { // It's important to use the raw string value here to avoid converting pre-encoded values // from the URL like `%2B` -> `+`. this._openerService.open(link.text, { allowTunneling: this._isRemote, allowContributedOpeners: true, });"} {"_id":"q-en-vscode-8e3f4112333bb5f85fa746342ebba7ce8d64b05cea1b3133fe59a894ae849b01","text":".keybindings-editor > .keybindings-header .open-keybindings-container { margin-top: 10px; opacity: 0.7; display: flex; } .keybindings-editor > .keybindings-header .open-keybindings-container > div { opacity: 0.7; } .keybindings-editor > .keybindings-header .open-keybindings-container > .file-name { text-decoration: underline; cursor: pointer; margin-left: 4px; } .keybindings-editor > .keybindings-header .open-keybindings-container > .file-name:focus { opacity: 1; } /** List based styling **/ .keybindings-editor > .keybindings-body .keybindings-list-container {"} {"_id":"q-en-vscode-8e7225ee204558ca1ef1667bc2ddee9ff50b17a575670e03f2bd08c59b991f1b","text":"export const revertIcon = registerIcon('notebook-revert', Codicon.discard, localize('revertIcon', 'Icon to revert in notebook editors.')); export const renderOutputIcon = registerIcon('notebook-render-output', Codicon.preview, localize('renderOutputIcon', 'Icon to render output in diff editor.')); export const mimetypeIcon = registerIcon('notebook-mimetype', Codicon.code, localize('mimetypeIcon', 'Icon for a mime type in notebook editors.')); export const previousChangeIcon = registerIcon('notebook-diff-editor-previous-change', Codicon.arrowUp, localize('previousChangeIcon', 'Icon for the previous change action in the diff editor.')); export const nextChangeIcon = registerIcon('notebook-diff-editor-next-change', Codicon.arrowDown, localize('nextChangeIcon', 'Icon for the next change action in the diff editor.')); "} {"_id":"q-en-vscode-8e7ed4576fe78d0f993cc7c7a086e476f49511d4e64512daa0df613b906a05fd","text":"restricted: true, markdownDescription: localize('terminal.integrated.initialHint', \"Controls if the first terminal without input will show a hint about available actions when it is focused.\"), type: 'boolean', default: product.quality !== 'stable' default: true } };"} {"_id":"q-en-vscode-8e99118d74fe304fc50f8dd8e973e4c064f845ca582f1309b4e9d48370ab0b28","text":"const windows = appInstantiationService.invokeFunction(accessor => this.openFirstWindow(accessor, electronIpcServer, sharedProcessClient)); // Post Open Windows Tasks this.afterWindowOpen(); appInstantiationService.invokeFunction(this.afterWindowOpen.bind(this)); // Tracing: Stop tracing after windows are ready if enabled if (this.environmentService.args.trace) {"} {"_id":"q-en-vscode-8eb12f044e90d56412667851593a4e6da914dbd625893b76f1f3edb38745dfb4","text":".map(([, mode, object, stage, file]) => ({ mode, object, stage, file })); } const stashRegex = /([0-9a-f]{40})n(.*)nstash@{(d+)}n(WIPs)*on([^:]+):(.*)(?:x00)/gmi; function parseGitStashes(raw: string): Stash[] { const result: Stash[] = []; const regex = /^stash@{(d+)}:(.+)$/; const descriptionRegex = /(WIPs)*on([^:]+):(.*)$/i; for (const stash of raw.split('n').filter(s => !!s)) { // Extract index and description const match = regex.exec(stash); if (!match) { continue; } const [, index, description] = match; let match, hash, parents, index, wip, branchName, description; // Extract branch name from description const descriptionMatch = descriptionRegex.exec(description); if (!descriptionMatch) { result.push({ index: parseInt(index), description: description.trim() }); continue; do { match = stashRegex.exec(raw); if (match === null) { break; } const [, wip, branchName, message] = descriptionMatch; [, hash, parents, index, wip, branchName, description] = match; result.push({ hash, parents: parents.split(' '), index: parseInt(index), description: wip ? `WIP (${message.trim()})` : message.trim(), branchName: branchName.trim() branchName: branchName.trim(), description: wip ? `WIP (${description.trim()})` : description.trim() }); } } while (true); return result; }"} {"_id":"q-en-vscode-8efa1e4a9509159dc938732f9845086b3ed2431922ccf388c19f64f832bd388c","text":"for i in \"$@\" do case \"$i\" in --user-data-dir | --user-data-dir=* | --file-write ) --user-data-dir | --user-data-dir=* | --file-write | tunnel | serve-web ) CAN_LAUNCH_AS_ROOT=1 ;; esac"} {"_id":"q-en-vscode-8f687a7ab97f6f67a558624d0064546672f7c2bbfc952f0b75a0b1625b991867","text":"registerDocumentSemanticTokensProvider: registerDocumentSemanticTokensProvider, registerDocumentRangeSemanticTokensProvider: registerDocumentRangeSemanticTokensProvider, registerInlineCompletionsProvider: registerInlineCompletionsProvider, registerInlayHintsProvider: registerInlayHintsProvider, // enums DocumentHighlightKind: standaloneEnums.DocumentHighlightKind,"} {"_id":"q-en-vscode-8f8f871eaec4316ad1adc1dba82dc39f8487b5c7d42efc9a08bf1d0812c71000","text":"const NavbarSection = { Readme: 'readme', Contributions: 'contributions', FeatureContributions: 'contributions', Changelog: 'changelog', Dependencies: 'dependencies', ExtensionPack: 'extensionPack'"} {"_id":"q-en-vscode-8fbb32134862e44cc0dbcc201ec7c119ddbcd255eb6d5b48ba6c60059ca55062","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { Dimension } from 'vs/base/browser/dom'; import { localize } from 'vs/nls'; import { IDisposable } from 'vs/base/common/lifecycle'; import { dispose, IDisposable } from 'vs/base/common/lifecycle'; import { RawContextKey, IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; const ActivePanleContextId = 'activePanel'; export const ActivePanelContext = new RawContextKey(ActivePanleContextId, ''); export class PanelPart extends CompositePart implements IPanelService {"} {"_id":"q-en-vscode-8fcf9c8c91bee0a400f4c40d5ba0f1774a01634e6cf5c311ad1171cff7f76a66","text":"if (this.editor.hasTextFocus()) { if (this.editor.getModel()?.uri.scheme !== Schemas.vscodeNotebookCell && WordHighlighter.query?.modelInfo?.model.uri.scheme !== Schemas.vscodeNotebookCell) { // clear query if focused non-nb editor WordHighlighter.query = null; this._run(); this._run(); // TODO: @Yoyokrazy -- investigate why we need a full rerun here. likely addressed a case/patch in the first iteration of this feature } else { // remove modelInfo to account for nb cell being disposed if (WordHighlighter.query?.modelInfo) { WordHighlighter.query.modelInfo = null;"} {"_id":"q-en-vscode-8fd7a02307e377dee72ff3f1b96b8578d0836bfa759be7e71afed755c9f5fb57","text":"@IModelService _modelService: IModelService, @IConfigurationService _configurationService: IConfigurationService, @IContextKeyService _contextKeyService: IContextKeyService, @ITerminalService _terminalService: ITerminalService, @IConfigurationService configurationService: IConfigurationService @ITerminalService _terminalService: ITerminalService ) { super(); }"} {"_id":"q-en-vscode-8ff496bf48d535086a6059b12eae0e6a9a3d412152179af54bc32597a9eb2918","text":"error.message = data.message; error.stack = data.stack; this._internalExtensionService._onExtensionRuntimeError(extensionId, error); console.error(`[${extensionId}]${error.message}`); console.error(`[${extensionId.value}]${error.message}`); console.error(error.stack); } async $onExtensionActivationError(extensionId: ExtensionIdentifier, data: SerializedError, missingExtensionDependency: MissingExtensionDependency | null): Promise {"} {"_id":"q-en-vscode-9012b2d61c86caed38b7a87acd45c2fc73f97a0d6fd07b5176b9af0535751a9d","text":"import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { IFileDialogService } from 'vs/platform/dialogs/common/dialogs'; import { joinPath } from 'vs/base/common/resources'; import { Codicon } from 'vs/base/common/codicons'; export class UserDataProfilesWorkbenchContribution extends Disposable implements IWorkbenchContribution {"} {"_id":"q-en-vscode-908866c08c176787640a9f65cad6907ef8efdb5851f296c788c611236b2da697","text":"readonly lineNumbers: number[], readonly lastLineRelativePosition: number ) { } public equals(other: StickyScrollWidgetState | undefined): boolean { return !!other && this.lastLineRelativePosition === other.lastLineRelativePosition && equals(this.lineNumbers, other.lineNumbers); } } const _ttPolicy = createTrustedTypesPolicy('stickyScrollViewLayer', { createHTML: value => value });"} {"_id":"q-en-vscode-90ac1af2252c3f010ae834adfceb0dfd781153a394ee8e0e2ad06ef1cb48225e","text":"}); } } const before = this._tree.getFocus().length; this._tree.setChildren(null, elements); // Temporary fix until we figure out why the tree doesn't fire an event when focus & selection // get changed to empty arrays. if (before > 0 && elements.length === 0) { this._onTriggerEmptySelectionOrFocus.fire({ elements: [] }); } this._tree.layout(); this._onChangedAllVisibleChecked.fire(this.getAllVisibleChecked());"} {"_id":"q-en-vscode-91242efcbf6f2ee5808f89e546c690743da365fbf9f19611bda2750657361cf1","text":"import 'vs/workbench/browser/parts/sidebar/sidebarActions'; import { ActivityBarPosition, IWorkbenchLayoutService, LayoutSettings, Parts, Position as SideBarPosition } from 'vs/workbench/services/layout/browser/layoutService'; import { SidebarFocusContext, ActiveViewletContext } from 'vs/workbench/common/contextkeys'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';"} {"_id":"q-en-vscode-917ac200d788b4a53c949363e24a4d3a6ecc8f62d0124efaa28d7fd3b2bd6e86","text":"const verbose = this._configurationService.getValue(provider.verbositySettingKey); const hasActions = this._accessibleViewSupportsNavigation.get() || this._accessibleViewVerbosityEnabled.get() || this._accessibleViewGoToSymbolSupported.get() || this._currentProvider?.actions; if (verbose && !showAccessibleViewHelp && hasActions) { actionsHint = localize('ariaAccessibleViewActions', 'Explore actions such as disabling this hint (Shift+Tab).'); actionsHint = provider.options.positionBottom ? localize('ariaAccessibleViewActionsBottom', 'Explore actions such as disabling this hint (Shift+Tab), use Escape to exit this dialog.') : localize('ariaAccessibleViewActions', 'Explore actions such as disabling this hint (Shift+Tab).'); } let ariaLabel = provider.options.type === AccessibleViewType.Help ? localize('accessibility-help', \"Accessibility Help\") : localize('accessible-view', \"Accessible View\"); this._title.textContent = ariaLabel;"} {"_id":"q-en-vscode-91daf19feff2543a949670b2bd003e0b2774f96d20a605d57a3ccf925bc695b2","text":"} terminalToReuse.terminal.scrollToBottom(); launchConfigs.reconnectionProperties = { ownerId: ReconnectionType, data: { lastTask: task.getCommonTaskId(), group, label: task._label, id: task._id } }; if (task.configurationProperties.isBackground) { launchConfigs.reconnectionProperties = { ownerId: ReconnectionType, data: { lastTask: task.getCommonTaskId(), group, label: task._label, id: task._id } }; } await terminalToReuse.terminal.reuseTerminal(launchConfigs); if (task.command.presentation && task.command.presentation.clear) {"} {"_id":"q-en-vscode-91e4a87dab5636878484cb824e0b1480835989dc08971e2d58a72e4186485a3d","text":"import { isObject, isString, isUndefined, isNumber, withNullAsUndefined } from 'vs/base/common/types'; import { IInstantiationService, ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { TextCompareEditorVisibleContext, IEditorIdentifier, IEditorCommandsContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, CloseDirection, IVisibleEditorPane, ActiveEditorStickyContext, EditorsOrder, EditorInputCapabilities, isEditorIdentifier, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, GroupIdentifier, TextCompareEditorActiveContext, SideBySideEditorActiveContext, isEditorInputWithOptionsAndGroup } from 'vs/workbench/common/editor'; import { TextCompareEditorVisibleContext, IEditorIdentifier, IEditorCommandsContext, ActiveEditorGroupEmptyContext, MultipleEditorGroupsContext, CloseDirection, IVisibleEditorPane, ActiveEditorStickyContext, EditorsOrder, EditorInputCapabilities, isEditorIdentifier, ActiveEditorGroupLockedContext, ActiveEditorCanSplitInGroupContext, GroupIdentifier, TextCompareEditorActiveContext, SideBySideEditorActiveContext, isEditorInputWithOptionsAndGroup, IUntitledTextResourceEditorInput } from 'vs/workbench/common/editor'; import { EditorInput } from 'vs/workbench/common/editor/editorInput'; import { EditorGroupColumn, columnToEditorGroup } from 'vs/workbench/services/editor/common/editorGroupColumn'; import { ACTIVE_GROUP_TYPE, IEditorService, SIDE_GROUP, SIDE_GROUP_TYPE } from 'vs/workbench/services/editor/common/editorService';"} {"_id":"q-en-vscode-91f07a3ef1402f58d4330ca0b328ee7dae71da8b16511bb8df39e9f125204fd6","text":"assert.strictEqual((variable.transform!.children[0]).ifValue, ''); assert.strictEqual((variable.transform!.children[0]).elseValue, undefined); }); test('Snippet placeholder empty right after expansion #152553', function () { const snippet = new SnippetParser().parse('${1:prog}: ${2:$1.cc} - $2'); const actual = snippet.toString(); assert.strictEqual(actual, 'prog: prog.cc - prog.cc'); const snippet2 = new SnippetParser().parse('${1:prog}: ${3:${2:$1.cc}.33} - $2 $3'); const actual2 = snippet2.toString(); assert.strictEqual(actual2, 'prog: prog.cc.33 - prog.cc prog.cc.33'); // cyclic references of placeholders const snippet3 = new SnippetParser().parse('${1:$2.one} <> ${2:$1.two}'); const actual3 = snippet3.toString(); assert.strictEqual(actual3, '.two.one.two.one <> .one.two.one.two'); }); });"} {"_id":"q-en-vscode-920d7229e545403d1bc25e12afbce5e41ffda602d35f8933f5c324cf13f966e0","text":"import { IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions, IWorkbenchContribution } from 'vs/workbench/common/contributions'; import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors'; import { VIEWLET_ID, IExtensionsWorkbenchService, IExtensionsViewPaneContainer, TOGGLE_IGNORE_EXTENSION_ACTION_ID, INSTALL_EXTENSION_FROM_VSIX_COMMAND_ID, WORKSPACE_RECOMMENDATIONS_VIEW_ID, IWorkspaceRecommendedExtensionsView, AutoUpdateConfigurationKey, HasOutdatedExtensionsContext, SELECT_INSTALL_VSIX_EXTENSION_COMMAND_ID, LIST_WORKSPACE_UNSUPPORTED_EXTENSIONS_COMMAND_ID, ExtensionEditorTab, THEME_ACTIONS_GROUP, INSTALL_ACTIONS_GROUP, OUTDATED_EXTENSIONS_VIEW_ID, CONTEXT_HAS_GALLERY, IExtension, extensionsSearchActionsMenu } from 'vs/workbench/contrib/extensions/common/extensions'; import { ReinstallAction, InstallSpecificVersionOfExtensionAction, ConfigureWorkspaceRecommendedExtensionsAction, ConfigureWorkspaceFolderRecommendedExtensionsAction, PromptExtensionInstallFailureAction, SearchExtensionsAction, SwitchToPreReleaseVersionAction, SwitchToReleasedVersionAction, SetColorThemeAction, SetFileIconThemeAction, SetProductIconThemeAction, ClearLanguageAction } from 'vs/workbench/contrib/extensions/browser/extensionsActions'; import { ReinstallAction, InstallSpecificVersionOfExtensionAction, ConfigureWorkspaceRecommendedExtensionsAction, ConfigureWorkspaceFolderRecommendedExtensionsAction, PromptExtensionInstallFailureAction, SearchExtensionsAction, SwitchToPreReleaseVersionAction, SwitchToReleasedVersionAction, SetColorThemeAction, SetFileIconThemeAction, SetProductIconThemeAction, ClearLanguageAction, SkipUpdateAction } from 'vs/workbench/contrib/extensions/browser/extensionsActions'; import { ExtensionsInput } from 'vs/workbench/contrib/extensions/common/extensionsInput'; import { ExtensionEditor } from 'vs/workbench/contrib/extensions/browser/extensionEditor'; import { StatusUpdater, MaliciousExtensionChecker, ExtensionsViewletViewsContribution, ExtensionsViewPaneContainer, BuiltInExtensionsContext, SearchMarketplaceExtensionsContext, RecommendedExtensionsContext, DefaultViewsContext, ExtensionsSortByContext, SearchHasTextContext } from 'vs/workbench/contrib/extensions/browser/extensionsViewlet';"} {"_id":"q-en-vscode-9244a8cf8ac3018aa0861af8a40f858e4ecf0de35ce7360d743d09f3c93edce3","text":"import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { ITextResourceConfigurationService } from 'vs/editor/common/services/resourceConfiguration'; import { IHistoryService } from 'vs/workbench/services/history/common/history'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { CancelAction } from 'vs/platform/message/common/message'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService';"} {"_id":"q-en-vscode-928bca54a109045ecb1f4cf41b3cbb612fdec2ae0c90b3b022d4a71cc6a1c657","text":"test('updateState', () => { changed.clear(); r.updateState(new TestId(['ctrlId', 'id-a', 'id-aa']).toString(), 't', TestResultState.Running); const testId = new TestId(['ctrlId', 'id-a', 'id-aa']).toString(); r.updateState(testId, 't', TestResultState.Running); assert.deepStrictEqual(r.counts, { ...makeEmptyCounts(), [TestResultState.Unset]: 2, [TestResultState.Running]: 1, [TestResultState.Queued]: 1, }); assert.deepStrictEqual(r.getStateById(new TestId(['ctrlId', 'id-a', 'id-aa']).toString())?.ownComputedState, TestResultState.Running); assert.deepStrictEqual(r.getStateById(testId)?.ownComputedState, TestResultState.Running); // update computed state: assert.deepStrictEqual(r.getStateById(tests.root.id)?.computedState, TestResultState.Running); assert.deepStrictEqual(getChangeSummary(), ["} {"_id":"q-en-vscode-92cd06f640ae9dc2e16aaa77571e1db7bf860378da012fc8ed80d4bb39e1b95e","text":"fullScreenZenMode: boolean; zoomLevel: number; titleBarStyle: 'native' | 'custom'; autoDetectHighContrast: boolean; }"} {"_id":"q-en-vscode-9309fb6f22057d0d6319a357a9c2e8bbc2db51469cd1f1c5558f338334efcc67","text":"} } // FolderMatch on a leaf node does not always run the for-loop of folderMatch because it does not have a FolderMatch as a child. // Therefore, FileMatch is also searched to check for the existence of AIResults const fileIterator = this.fileMatchesIterator(); for (const elem of fileIterator) { if (elem.hasDownstreamNonAIResults()) { return true; } } return false; }"} {"_id":"q-en-vscode-9330e66301542aad64cb69644126fb9747d1fb407e9249d5cce6f9ad34474b03","text":"extensionWorkbenchService.open(extension, { showPreReleaseVersion: true }); } }); this.registerExtensionAction({ id: 'workbench.extensions.action.showReleasedVersion', title: { value: localize('show released version', \"Show Release Version\"), original: 'Show Release Version' },"} {"_id":"q-en-vscode-9344b769f8366582be200ed2b9a70c8ac469475388d39e3bf9ad33f202c61521","text":"* Defaults to false. */ peekWidgetDefaultFocus?: 'tree' | 'editor'; /** * Controls whether the definition link opens element in the peek widget. * Defaults to false. */ definitionLinkOpensInPeek?: boolean; } export interface IEditorConstructionOptions extends IEditorOptions {"} {"_id":"q-en-vscode-93458f5173096877569bfbd8fe5c4347e954969d58bed607119b0a994a0be4ad","text":"} const model = controller.getOrCreateModel(); const atEdge = model.move(this._isNext, false); if (!atEdge) { const atEdge = model.move(this._isNext, !this._multiFile); if (!atEdge || !this._multiFile) { return undefined; }"} {"_id":"q-en-vscode-936f2e01002cc02e8afbec31774f2364cd465ba2f25a3f448068ac584692df4a","text":"id: 'workbench.action.chat.focusInput', title: localize2('interactiveSession.focusInput.label', \"Focus Chat Input\"), f1: false, keybinding: { primary: KeyMod.CtrlCmd | KeyCode.DownArrow, weight: KeybindingWeight.WorkbenchContrib, when: ContextKeyExpr.and(CONTEXT_IN_CHAT_SESSION, CONTEXT_IN_CHAT_INPUT.negate()) } keybinding: [ { primary: KeyMod.CtrlCmd | KeyCode.DownArrow, weight: KeybindingWeight.WorkbenchContrib, when: ContextKeyExpr.and(CONTEXT_IN_CHAT_SESSION, CONTEXT_IN_CHAT_INPUT.negate(), CONTEXT_IN_QUICK_CHAT.negate()), }, { when: ContextKeyExpr.and(CONTEXT_IN_CHAT_SESSION, CONTEXT_IN_CHAT_INPUT.negate(), CONTEXT_IN_QUICK_CHAT), primary: KeyMod.CtrlCmd | KeyCode.UpArrow, weight: KeybindingWeight.WorkbenchContrib, } ] }); } run(accessor: ServicesAccessor, ...args: any[]) {"} {"_id":"q-en-vscode-93bcff459065db5c31e92bc7de64c7dcc9d786c8fc8b596599b2e1518c1f668b","text":"dispose(): void; } function clearContainer(container: HTMLElement) { while (container.firstChild) { container.removeChild(container.firstChild); } } function renderImage(outputInfo: OutputItem, element: HTMLElement): IDisposable {"} {"_id":"q-en-vscode-93f5ed80388e6670b7bac21b70e55e5c4e24d300e017a72d1304abb59ddcc824","text":"config.port = parseInt(matches[2]); } ipcRenderer.send('vscode:workbenchCommand', { id: 'workbench.action.debug.start', from: 'processExplorer', args: [config] }); ipcRenderer.send('vscode:workbenchCommand', { id: 'debug.startFromConfig', from: 'processExplorer', args: [config] }); } function getProcessIdWithHighestProperty(processList, propertyName: string) {"} {"_id":"q-en-vscode-940244f1a7b9ebaaf61c904fa3e054cec9bbf448ea287b4acee56ad370385a53","text":"const newDecorations: IModelDeltaDecoration[] = []; for (const command of commands) { const withSlash = `/${command.command}`; const withSlash = `/${command.command} `; const firstLine = this._inputModel.getLineContent(1); if (firstLine.startsWith(withSlash)) { newDecorations.push({"} {"_id":"q-en-vscode-945b3f195997b256cd6c2f2ea6b2b96d8c10279efc62c741e5f11669d5774452","text":"return md.use(katex, { globalGroup: true, enableBareBlocks: true, macros enableFencedBlocks: true, macros, }); }); }"} {"_id":"q-en-vscode-949c2f3dc66fcc9fd9eb62d6e47a86380e355c74ff9b6ea14607c3c1bf8f2099","text":"export function makeKeyOptionalMessage(markerData: IMarkerData, useMessage: boolean): string { let result: string[] = [emptyString]; if (markerData.source) { result.push(markerData.source.replace('¦', '¦')); result.push(markerData.source.replace('¦', '¦')); } else { result.push(emptyString); } if (markerData.code) { if (typeof markerData.code === 'string') { result.push(markerData.code.replace('¦', '¦')); result.push(markerData.code.replace('¦', '¦')); } else { result.push(markerData.code.value.replace('¦', '¦')); result.push(markerData.code.value.replace('¦', '¦')); } } else { result.push(emptyString);"} {"_id":"q-en-vscode-94c29a600e1b0fa8ebf102340eb0a4bbaa874ac16f2f596b170069fc4323f875","text":"instantiationService.stub(IKeybindingService, new MockKeybindingService()); instantiationService.stub(INotebookCellStatusBarService, disposables.add(new NotebookCellStatusBarService())); instantiationService.stub(ICodeEditorService, disposables.add(new TestCodeEditorService(testThemeService))); instantiationService.stub(IInlineChatService, instantiationService.createInstance(InlineChatServiceImpl)); instantiationService.stub(INotebookCellOutlineProviderFactory, instantiationService.createInstance(NotebookCellOutlineProviderFactory)); instantiationService.stub(ILanguageDetectionService, new class MockLanguageDetectionService implements ILanguageDetectionService {"} {"_id":"q-en-vscode-94ec006224f25ad5c64cb418c238f4bc0389e61a5989823b5636082a2939c569","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { deepStrictEqual } from 'assert'; import { getLinkSuffix, removeLinkSuffix } from 'vs/workbench/contrib/terminal/browser/links/terminalLinkParsing'; interface ITestLink { link: string; suffix: string | undefined; hasRow: boolean; hasCol: boolean; } const testRow = 339; const testCol = 12; const testLinks: ITestLink[] = [ { link: 'foo', suffix: undefined, hasRow: false, hasCol: false }, { link: 'foo:339', suffix: ':339', hasRow: true, hasCol: false }, { link: 'foo:339:12', suffix: ':339:12', hasRow: true, hasCol: true }, { link: 'foo 339', suffix: ' 339', hasRow: true, hasCol: false }, { link: 'foo 339:12', suffix: ' 339:12', hasRow: true, hasCol: true }, { link: '\"foo\",339', suffix: '\",339', hasRow: true, hasCol: false }, { link: '\"foo\",339:12', suffix: '\",339:12', hasRow: true, hasCol: true }, { link: '\"foo\", line 339', suffix: '\", line 339', hasRow: true, hasCol: false }, { link: '\"foo\", line 339, col 12', suffix: '\", line 339, col 12', hasRow: true, hasCol: true }, { link: '\"foo\", line 339, column 12', suffix: '\", line 339, column 12', hasRow: true, hasCol: true }, { link: '\"foo\":line 339', suffix: '\":line 339', hasRow: true, hasCol: false }, { link: '\"foo\":line 339, col 12', suffix: '\":line 339, col 12', hasRow: true, hasCol: true }, { link: '\"foo\":line 339, column 12', suffix: '\":line 339, column 12', hasRow: true, hasCol: true }, { link: '\"foo\": line 339', suffix: '\": line 339', hasRow: true, hasCol: false }, { link: '\"foo\": line 339, col 12', suffix: '\": line 339, col 12', hasRow: true, hasCol: true }, { link: '\"foo\": line 339, column 12', suffix: '\": line 339, column 12', hasRow: true, hasCol: true }, { link: '\"foo\" on line 339', suffix: '\" on line 339', hasRow: true, hasCol: false }, { link: '\"foo\" on line 339, col 12', suffix: '\" on line 339, col 12', hasRow: true, hasCol: true }, { link: '\"foo\" on line 339, column 12', suffix: '\" on line 339, column 12', hasRow: true, hasCol: true }, { link: 'foo(339)', suffix: '(339)', hasRow: true, hasCol: false }, { link: 'foo(339,12)', suffix: '(339,12)', hasRow: true, hasCol: true }, { link: 'foo(339, 12)', suffix: '(339, 12)', hasRow: true, hasCol: true }, { link: 'foo (339)', suffix: ' (339)', hasRow: true, hasCol: false }, { link: 'foo (339,12)', suffix: ' (339,12)', hasRow: true, hasCol: true }, { link: 'foo (339, 12)', suffix: ' (339, 12)', hasRow: true, hasCol: true }, ]; suite('TerminalLinkParsing', () => { suite('removeLinkSuffix', () => { for (const testLink of testLinks) { test('`' + testLink.link + '`', () => { deepStrictEqual( removeLinkSuffix(testLink.link), testLink.suffix === undefined ? testLink.link : testLink.link.replace(testLink.suffix, '') ); }); } }); suite('getLinkSuffix', () => { for (const testLink of testLinks) { test('`' + testLink.link + '`', () => { deepStrictEqual( getLinkSuffix(testLink.link), testLink.suffix === undefined ? null : { row: testLink.hasRow ? testRow : undefined, col: testLink.hasCol ? testCol : undefined, suffix: { index: testLink.link.length - testLink.suffix.length, text: testLink.suffix } } as ReturnType ); }); } }); }); "} {"_id":"q-en-vscode-9525d24a48ad173eab6b0c313d630c228be39bc2282a8f9f97f1f5aa05aadd9e","text":"\"vscode-proxy-agent\": \"^0.12.0\", \"vscode-regexpp\": \"^3.1.0\", \"vscode-textmate\": \"9.0.0\", \"xterm\": \"5.2.0-beta.30\", \"xterm-addon-canvas\": \"0.4.0-beta.7\", \"xterm\": \"5.2.0-beta.33\", \"xterm-addon-canvas\": \"0.4.0-beta.9\", \"xterm-addon-search\": \"0.11.0\", \"xterm-addon-serialize\": \"0.9.0\", \"xterm-addon-unicode11\": \"0.5.0\", \"xterm-addon-webgl\": \"0.15.0-beta.7\", \"xterm-headless\": \"5.2.0-beta.30\", \"xterm-addon-webgl\": \"0.15.0-beta.8\", \"xterm-headless\": \"5.2.0-beta.33\", \"yauzl\": \"^2.9.2\", \"yazl\": \"^2.4.3\" },"} {"_id":"q-en-vscode-955a8d1781712bca5c704dec8e6dd6cc51d7b6656a5535c3e97316533f2bba2e","text":"const focusTracker = this._register(dom.trackFocus(this._stickyScrollWidget.getDomNode())); this._register(focusTracker.onDidBlur(_ => { const height = this._stickyScrollWidget.getDomNode().clientHeight; if (height !== 0) { this._disposeFocusStickyScrollStore(); } else { // If the height is 0, then the blur has been caused by scrolling. In that case keep the focus on the sticky scroll. // Suppose that the blurring is caused by scrolling, then keep the focus on the sticky scroll // This is determined by the fact that the height of the widget has become zero and there has been no position revealing if (this._positionRevealed === false && height === 0) { this._focusedStickyElementIndex = -1; this.focus(); } // In all other casees, dispose the focus on the sticky scroll else { this._disposeFocusStickyScrollStore(); } })); this._register(focusTracker.onDidFocus(_ => { this.focus(); })); this._register(this._createClickLinkGesture()); // Suppose that mouse down on the sticky scroll, then do not focus on the sticky scroll because this will be followed by the revealing of a position this._register(dom.addDisposableListener(this._stickyScrollWidget.getDomNode(), dom.EventType.MOUSE_DOWN, (e) => { this._onMouseDown = true; })); } get stickyScrollCandidateProvider(): IStickyLineCandidateProvider {"} {"_id":"q-en-vscode-9581f591e68f2d1564acc04e55da66542aee3ba81f3070d119fdca98310fd8a9","text":"} private _layout(): void { const height = Math.max(this._editor.getLayoutInfo().height / 4, 250); const height = Math.max(this._editor.getLayoutInfo().height / 4, 250, ContentHoverWidget._lastDimensions.height); const width = Math.max(this._editor.getLayoutInfo().width * 0.66, 500, ContentHoverWidget._lastDimensions.width); const { fontSize, lineHeight } = this._editor.getOption(EditorOption.fontInfo); const contentsDomNode = this._hover.contentsDomNode; contentsDomNode.style.fontSize = `${fontSize}px`; contentsDomNode.style.lineHeight = `${lineHeight / fontSize}`; this._setContentsDomNodeMaxDimensions(Math.max(this._editor.getLayoutInfo().width * 0.66, 500), height); this._setContentsDomNodeMaxDimensions(width, height); } private _updateFont(): void {"} {"_id":"q-en-vscode-95cc0e48669b466bfd95923d6f46269abcf5d07f974bbc2d11fea8277bb68f4d","text":"\"type\": \"string\", \"enum\": [ \"npm\", \"yarn\" \"yarn\", \"pnpm\" ], \"default\": \"npm\", \"description\": \"%config.npm.packageManager%\""} {"_id":"q-en-vscode-95daefc238bf90d087d5d3cd61f080006e350d6c7e98b7a45ffdb96505e8fb32","text":"* Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { ExtensionRecommendations, ExtensionRecommendation } from 'vs/workbench/contrib/extensions/browser/extensionRecommendations'; import { INotificationService, Severity } from 'vs/platform/notification/common/notification'; import { EnablementState, IExtensionManagementServerService } from 'vs/workbench/services/extensionManagement/common/extensionManagement'; import { EnablementState } from 'vs/workbench/services/extensionManagement/common/extensionManagement'; import { ExtensionRecommendationReason, IExtensionIgnoredRecommendationsService } from 'vs/workbench/services/extensionRecommendations/common/extensionRecommendations'; import { IExtensionsViewPaneContainer, IExtensionsWorkbenchService, IExtension, VIEWLET_ID as EXTENSIONS_VIEWLET_ID } from 'vs/workbench/contrib/extensions/common/extensions'; import { CancellationToken } from 'vs/base/common/cancellation'; import { IExtensionsWorkbenchService, IExtension } from 'vs/workbench/contrib/extensions/common/extensions'; import { localize } from 'vs/nls'; import { StorageScope, IStorageService, StorageTarget } from 'vs/platform/storage/common/storage'; import { IProductService } from 'vs/platform/product/common/productService';"} {"_id":"q-en-vscode-95e0c354d9d722d5ae6271fa9933bb418b93422731d92773ba501106b60403cf","text":"import { Repl, ClearReplAction } from 'vs/workbench/parts/debug/electron-browser/repl'; import { DebugQuickOpenHandler } from 'vs/workbench/parts/debug/browser/debugQuickOpen'; import { DebugStatus } from 'vs/workbench/parts/debug/browser/debugStatus'; import { LifecyclePhase, ILifecycleService } from 'vs/platform/lifecycle/common/lifecycle'; import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle'; import { launchSchemaId } from 'vs/workbench/services/configuration/common/configuration'; import { IEditorGroupsService } from 'vs/workbench/services/group/common/editorGroupsService'; import { LoadedScriptsView } from 'vs/workbench/parts/debug/browser/loadedScriptsView'; import { TOGGLE_LOG_POINT_ID, TOGGLE_CONDITIONAL_BREAKPOINT_ID, TOGGLE_BREAKPOINT_ID } from 'vs/workbench/parts/debug/browser/debugEditorActions'; import { INotificationService } from 'vs/platform/notification/common/notification'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; class OpenDebugViewletAction extends ShowViewletAction { public static readonly ID = VIEWLET_ID;"} {"_id":"q-en-vscode-962f05454e090e080860273f59c4ba457244b7355b97dd18ac72bd94e8a4258c","text":".monaco-editor .inline-folded:after { color: grey; margin: 0.1em 0.2em 0 0.2em; content: \"⋯\"; content: \"22EF\"; /* ellipses unicode character */ display: inline; line-height: 1em; cursor: pointer;"} {"_id":"q-en-vscode-964ede88c1a453e01702460de097ca25b00c72c5b4236e441131464192801d45","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ .monaco-editor .resizable-widget { z-index: 40; display: block; } "} {"_id":"q-en-vscode-965361cf843e9b2750586dab9ec197123b122bb6a01d61b43d17d2442ace27ba","text":"export const errorForeground = registerColor('errorForeground', { dark: '#F48771', light: '#A1260D', hc: '#F48771' }, nls.localize('errorForeground', \"Overall foreground color for error messages. This color is only used if not overridden by a component.\")); export const descriptionForeground = registerColor('descriptionForeground', { light: '#717171', dark: transparent(foreground, 0.7), hc: transparent(foreground, 0.7) }, nls.localize('descriptionForeground', \"Foreground color for description text providing additional information, for example for a label.\")); export const focusBorder = registerColor('focusBorder', { dark: Color.fromHex('#0E639C').transparent(0.6), light: Color.fromHex('#007ACC').transparent(0.4), hc: '#F38518' }, nls.localize('focusBorder', \"Overall border color for focused elements. This color is only used if not overridden by a component.\")); export const focusBorder = registerColor('focusBorder', { dark: Color.fromHex('#0E639C').transparent(0.8), light: Color.fromHex('#007ACC').transparent(0.4), hc: '#F38518' }, nls.localize('focusBorder', \"Overall border color for focused elements. This color is only used if not overridden by a component.\")); export const contrastBorder = registerColor('contrastBorder', { light: null, dark: null, hc: '#6FC3DF' }, nls.localize('contrastBorder', \"An extra border around elements to separate them from others for greater contrast.\")); export const activeContrastBorder = registerColor('contrastActiveBorder', { light: null, dark: null, hc: focusBorder }, nls.localize('activeContrastBorder', \"An extra border around active elements to separate them from others for greater contrast.\"));"} {"_id":"q-en-vscode-967ae2ee203003e9992b014b831c8a5cff039fda0abe0a92a7ef6c523608b0b1","text":"import type { ILink, ILinkProvider, IViewportRange, Terminal } from 'xterm'; import { convertBufferRangeToViewport } from 'vs/workbench/contrib/terminal/browser/links/terminalLinkHelpers'; import { RunOnceScheduler } from 'vs/base/common/async'; import { removeLinkSuffix } from 'vs/workbench/contrib/terminal/browser/links/terminalLinkParsing'; export type XtermLinkMatcherHandler = (event: MouseEvent | undefined, link: string) => Promise;"} {"_id":"q-en-vscode-9694cccd797fa225377e3d64e2d93c57bb3c59a2f2d0cc3d8c6a46fece431c2b","text":"* If successful, places commandToRun on the command line */ freePortKillProcess(port: string, commandToRun: string): Promise; /** * Update the parent context key service to use for this terminal instance. */ setParentContextKeyService(parentContextKeyService: IContextKeyService): void; } export const enum XtermTerminalConstants {"} {"_id":"q-en-vscode-96ac970b2e861a2eb4466e071cc8f230b13abf6a4f70daca1b67228cec6bdfef","text":"return config.get('math.enabled', true); } function getMacros(): { [key: string]: string } { const config = vscode.workspace.getConfiguration('markdown'); return config.get<{ [key: string]: string }>('math.macros', {}); } vscode.workspace.onDidChangeConfiguration(e => { if (e.affectsConfiguration(enabledSetting)) { if (e.affectsConfiguration(markdownMathSetting)) { vscode.commands.executeCommand('markdown.api.reloadPlugins'); } }, undefined, context.subscriptions);"} {"_id":"q-en-vscode-96dc443b91b7533d4e4c5bdeb22613adea20d0c67eaf3f7bffed3d488e0ecd5e","text":"\"telemetry\", \"windowActivity\", \"interactiveUserActions\", \"envCollectionWorkspace\", \"envCollectionOptions\" ], \"private\": true,"} {"_id":"q-en-vscode-96eb9fcd30c1f3d7a5c77d170912ebae74f976f9300c3d350435f684066ae734","text":"return; } if (e.browserEvent.defaultPrevented) { return; } const node = e.element; if (!node) {"} {"_id":"q-en-vscode-96f3162e73e36169b992f7d56955a4b4e367cbf297456b31386056a334948c7b","text":"export const editorBracketHighlightingForeground5 = registerColor('editorBracketHighlight.foreground5', '#00000000', nls.localize('editorBracketHighlightForeground5', 'Foreground color of brackets (5). Requires enabling bracket pair colorization.')); export const editorBracketHighlightingForeground6 = registerColor('editorBracketHighlight.foreground6', '#00000000', nls.localize('editorBracketHighlightForeground6', 'Foreground color of brackets (6). Requires enabling bracket pair colorization.')); export const editorBracketHighlightingUnexpectedBracketForeground = registerColor('editorBracketHighlight.unexpectedBracket.foreground', { dark: new Color(new RGBA(255, 18, 18, 0.8)), light: new Color(new RGBA(255, 18, 18, 0.8)), hcDark: new Color(new RGBA(255, 50, 50, 1)), hcLight: '' }, nls.localize('editorBracketHighlightUnexpectedBracketForeground', 'Foreground color of unexpected brackets.')); export const editorBracketHighlightingUnexpectedBracketForeground = registerColor('editorBracketHighlight.unexpectedBracket.foreground', { dark: new Color(new RGBA(255, 18, 18, 0.8)), light: new Color(new RGBA(255, 18, 18, 0.8)), hcDark: 'new Color(new RGBA(255, 50, 50, 1))', hcLight: '#B5200D' }, nls.localize('editorBracketHighlightUnexpectedBracketForeground', 'Foreground color of unexpected brackets.')); export const editorBracketPairGuideBackground1 = registerColor('editorBracketPairGuide.background1', '#00000000', nls.localize('editorBracketPairGuide.background1', 'Background color of inactive bracket pair guides (1). Requires enabling bracket pair guides.')); export const editorBracketPairGuideBackground2 = registerColor('editorBracketPairGuide.background2', '#00000000', nls.localize('editorBracketPairGuide.background2', 'Background color of inactive bracket pair guides (2). Requires enabling bracket pair guides.'));"} {"_id":"q-en-vscode-96f9446ebb52cd782f6c86c3990e88d4aecc9988cdbf6eab14ff06953e0ffab6","text":"await this.takeAction(action.extensionDescription, action.description); } } } else { await this.takeAction(this.values[0].extensionDescription, await this.values[0].url); } await this.takeAction(this.values[0].extensionDescription, await this.values[0].url); }"} {"_id":"q-en-vscode-970635cbd29caf8b434e6a45396c54f03119a1eca04e0354a81cfceec32f48f0","text":"/** * Inline hints */ export const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: badgeForeground, light: badgeForeground, hcDark: Color.black, hcLight: badgeForeground }, nls.localize('editorInlayHintForeground', 'Foreground color of inline hints')); export const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: transparent(badgeBackground, .8), light: transparent(badgeBackground, .6), hcDark: '#f38518', hcLight: badgeBackground }, nls.localize('editorInlayHintBackground', 'Background color of inline hints')); export const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: foreground, light: foreground, hcDark: Color.black, hcLight: badgeForeground }, nls.localize('editorInlayHintForeground', 'Foreground color of inline hints')); export const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: transparent(badgeBackground, .25), light: transparent(badgeBackground, .3), hcDark: '#f38518', hcLight: badgeBackground }, nls.localize('editorInlayHintBackground', 'Background color of inline hints')); export const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundTypes', 'Foreground color of inline hints for types')); export const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', { dark: editorInlayHintBackground, light: editorInlayHintBackground, hcDark: editorInlayHintBackground, hcLight: editorInlayHintBackground }, nls.localize('editorInlayHintBackgroundTypes', 'Background color of inline hints for types')); export const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundParameter', 'Foreground color of inline hints for parameters'));"} {"_id":"q-en-vscode-9709c3632e0fb80cadfeabe1bd37e95fdb12ffca0713fef5923284bf5c05d982","text":"append(keyboardMarker, $('span.title', {}, `${commandAndGroupLabel} `)); } if ((options.showKeys ?? true) || (commandDetails && (options.showKeybindings ?? true))) { if ((options.showKeys ?? true) || ((options.showKeybindings ?? true) && this._isKbFound(shortcut))) { // Fix label for arrow keys keyLabel = keyLabel?.replace('UpArrow', '↑') ?.replace('DownArrow', '↓')"} {"_id":"q-en-vscode-9725661aa5916b718530533909a3cdc8106610b0767f6be359eaf79e910f29d8","text":"this.list.setSelection([focus], e.browserEvent); } e.browserEvent.preventDefault(); this._onPointer.fire(e); }"} {"_id":"q-en-vscode-97a62c907901ccdbf64f50797e0e7f7b898b3eefcfdecd5854a90f2e07fdcf39","text":"} } } /** * Copied from src/vs/base/common/uuid.ts */ function generateUuid() { // use `randomValues` if possible function getRandomValues(bucket: Uint8Array): Uint8Array { for (let i = 0; i < bucket.length; i++) { bucket[i] = Math.floor(Math.random() * 256); } return bucket; } // prep-work const _data = new Uint8Array(16); const _hex: string[] = []; for (let i = 0; i < 256; i++) { _hex.push(i.toString(16).padStart(2, '0')); } // get data getRandomValues(_data); // set version bits _data[6] = (_data[6] & 0x0f) | 0x40; _data[8] = (_data[8] & 0x3f) | 0x80; // print as string let i = 0; let result = ''; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; return result; } "} {"_id":"q-en-vscode-98020370fcf74362223af90579990c04a753d3c312ce87d0bccd3526ca3fd581","text":"import { defaultInputBoxStyles, defaultToggleStyles } from 'vs/platform/theme/browser/defaultStyles'; import { diffInserted, diffInsertedOutline, diffRemoved, diffRemovedOutline, editorFindMatchHighlight, editorFindMatchHighlightBorder, foreground, listActiveSelectionForeground, textLinkActiveForeground, textLinkForeground, toolbarActiveBackground, toolbarHoverBackground } from 'vs/platform/theme/common/colorRegistry'; import { isHighContrast } from 'vs/platform/theme/common/theme'; import { IColorTheme, ICssStyleCollector, IThemeService, registerThemingParticipant, ThemeIcon } from 'vs/platform/theme/common/themeService'; import { IColorTheme, ICssStyleCollector, IFileIconTheme, IThemeService, registerThemingParticipant, ThemeIcon } from 'vs/platform/theme/common/themeService'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { OpenFileFolderAction, OpenFolderAction } from 'vs/workbench/browser/actions/workspaceActions'; import { ResourceListDnDHandler } from 'vs/workbench/browser/dnd';"} {"_id":"q-en-vscode-9855408a1a779244ad29c817eeeb6a2ba2a9502b08f9f31143abf9fa4cdb822f","text":"} } if (this.ui.list.ariaLabel !== ariaLabel) { this.ui.list.ariaLabel = ariaLabel; this.ui.list.ariaLabel = withUndefinedAsNull(ariaLabel); } this.ui.list.matchOnDescription = this.matchOnDescription; this.ui.list.matchOnDetail = this.matchOnDetail;"} {"_id":"q-en-vscode-98867c9c684a43ca39c0ace021dcfc4dfd813865cdb2e6cfe32618f7a338e345","text":"font-size: 25px; } .monaco-dialog-box .dialog-message-row .dialog-message-container .dialog-message-body .dialog-message .description-container { #monaco-dialog-message-body > .message-body > p { display: flex; font-size: 16px; background: var(--vscode-welcomePage-tileHoverBackground); border-radius: 6px; padding: 20px; min-height: auto; word-wrap: break-word; overflow-wrap:break-word; } #monaco-dialog-message-body > .link > p { font-size: 16px; } .monaco-dialog-box > .dialog-buttons-row > .dialog-buttons > .monaco-button{ font-size: 16px; }"} {"_id":"q-en-vscode-98abb07dd0ae03d9a32b86bf90ee39e34b51a11d92f25584ff02f85ec0a881ff","text":"return recent.workspace.configPath; } private indexOfWorkspace(recents: IRecent[], candidate: IWorkspaceIdentifier): number { return recents.findIndex(recent => isRecentWorkspace(recent) && recent.workspace.id === candidate.id); private containsWorkspace(recents: IRecent[], candidate: IWorkspaceIdentifier): boolean { return !!recents.find(recent => isRecentWorkspace(recent) && recent.workspace.id === candidate.id); } private indexOfFolder(recents: IRecent[], candidate: URI): number { return recents.findIndex(recent => isRecentFolder(recent) && extUriBiasedIgnorePathCase.isEqual(recent.folderUri, candidate)); private containsFolder(recents: IRecent[], candidate: URI): boolean { return !!recents.find(recent => isRecentFolder(recent) && extUriBiasedIgnorePathCase.isEqual(recent.folderUri, candidate)); } private indexOfFile(recents: IRecentFile[], candidate: URI): number { return recents.findIndex(recent => extUriBiasedIgnorePathCase.isEqual(recent.fileUri, candidate)); private containsFile(recents: IRecentFile[], candidate: URI): boolean { return !!recents.find(recent => extUriBiasedIgnorePathCase.isEqual(recent.fileUri, candidate)); } //#endregion"} {"_id":"q-en-vscode-98b2fe8e006e8946252cde6b7963d7bba170e4db24d890029638641733bb05b2","text":"const visibleIndex = i + 1; KeybindingsRegistry.registerCommandAndKeybindingRule({ id: 'workbench.action.openEditorAtIndex' + visibleIndex, id: OPEN_EDITOR_AT_INDEX_COMMAND_ID + visibleIndex, weight: KeybindingWeight.WorkbenchContrib, when: void 0, primary: KeyMod.Alt | toKeyCode(visibleIndex), mac: { primary: KeyMod.WinCtrl | toKeyCode(visibleIndex) }, handler: accessor => { const editorService = accessor.get(IEditorService); const activeControl = editorService.activeControl; if (activeControl) { const editor = activeControl.group.getEditor(editorIndex); if (editor) { return editorService.openEditor(editor).then(() => void 0); } } return void 0; } handler: accessor => openEditorAtIndex(accessor, editorIndex) }); }"} {"_id":"q-en-vscode-994a632f56d6125db1f1d02343b9652ced1e650649e2964f180298c23397dbf4","text":"if (SnakeCaseAction.caseBoundary.isSupported() && SnakeCaseAction.singleLetters.isSupported()) { registerEditorAction(SnakeCaseAction); } if (CamelCaseAction.wordBoundary.isSupported()) { registerEditorAction(CamelCaseAction); } if (TitleCaseAction.titleBoundary.isSupported()) { registerEditorAction(TitleCaseAction); }"} {"_id":"q-en-vscode-9976e2c5e52fab2fec46f8f7623b2566439e86a4fb1ba1f767336ab52d390a45","text":"onDidChangeShellType: Event; onDidChangeVisibility: Event; onWillPaste: Event; onDidPaste: Event; /** * An event that fires when a terminal is dropped on this instance via drag and drop. */"} {"_id":"q-en-vscode-998a703fdfabdaca4c864726efa0db1a5368e04fcb2bca8ca8b3783a0edc15a5","text":"this.textArea.setAttribute('aria-label', this._getAriaLabel(options)); this.textArea.setAttribute('tabindex', String(options.get(EditorOption.tabIndex))); if (e.hasChanged(EditorOption.domReadOnly)) { if (options.get(EditorOption.domReadOnly)) { if (e.hasChanged(EditorOption.domReadOnly) || e.hasChanged(EditorOption.readOnly)) { if (options.get(EditorOption.domReadOnly) && options.get(EditorOption.readOnly)) { this.textArea.setAttribute('readonly', 'true'); } else { this.textArea.removeAttribute('readonly');"} {"_id":"q-en-vscode-99d8007b34f55bc89d775626840c5182f995f4de4115dedb1fef860d5df62d54","text":"*--------------------------------------------------------------------------------------------*/ import { mapFindFirst } from 'vs/base/common/arraysFind'; import { BugIndicatingError, onUnexpectedExternalError } from 'vs/base/common/errors'; import { BugIndicatingError, onUnexpectedError, onUnexpectedExternalError } from 'vs/base/common/errors'; import { Disposable } from 'vs/base/common/lifecycle'; import { IObservable, IReader, ITransaction, autorun, derived, derivedHandleChanges, derivedOpts, recomputeInitiallyAndOnChange, observableSignal, observableValue, subtransaction, transaction } from 'vs/base/common/observable'; import { commonPrefixLength, splitLinesIncludeSeparators } from 'vs/base/common/strings';"} {"_id":"q-en-vscode-99dadeefd7a1d48699b2ac7bda8e61d6b547b2a22f54e0e131413e89b825c852","text":"private readonly _capabilities: ITerminalCapabilityStore, private readonly _processManager: Pick & { backend?: Pick }, private readonly _linkResolver: ITerminalLinkResolver, @ILogService private readonly _logService: ILogService, @IUriIdentityService private readonly _uriIdentityService: IUriIdentityService, @IWorkspaceContextService private readonly _workspaceContextService: IWorkspaceContextService ) {"} {"_id":"q-en-vscode-99ec4e594c4a7f0974e1f17b5f723a351e88949a53a3bf586295728b31177bfc","text":"return undefined; } let targetPlatform = this.extension.gallery.properties.targetPlatform; if (this.extensionManagementServerService.remoteExtensionManagementServer) { if (targetPlatform !== TargetPlatform.UNIVERSAL && targetPlatform !== TargetPlatform.UNDEFINED && this.extensionManagementServerService.remoteExtensionManagementServer) { try { const manifest = await this.galleryService.getManifest(this.extension.gallery, CancellationToken.None); if (manifest && this.extensionManifestPropertiesService.prefersExecuteOnWorkspace(manifest)) {"} {"_id":"q-en-vscode-9a099915b6aba5e2334367f3bf3310a9817dafa4a2a764a42c4276a79d886faf","text":"// Diff navigator this.diffNavigator = new DiffNavigator(control, { alwaysRevealFirst: !optionsGotApplied && !hasPreviousViewState // only reveal first change if we had no options or viewstate alwaysRevealFirst: !optionsGotApplied && !hasPreviousViewState, // only reveal first change if we had no options or viewstate findResultLoop: this.getMainControl()?.getOption(EditorOption.find).loop }); this.diffNavigatorDisposables.add(this.diffNavigator);"} {"_id":"q-en-vscode-9a4cc1cf70c9a30b1bb88311089b52399f3e793e37da2f5faf4ba08d1f847f80","text":"export interface IFileCellEdit { readonly _type: FileEditType.Cell; readonly uri: URI; readonly edit?: ICellPartialMetadataEdit | IDocumentMetadataEdit; readonly edit?: ICellMetadataEdit | IDocumentMetadataEdit; readonly notebookMetadata?: Record; readonly metadata?: vscode.WorkspaceEditEntryMetadata; }"} {"_id":"q-en-vscode-9a4ec8e9b7f5624a9637394faafbe649aa3961da15e2ece8e0474619bd869fec","text":"workspacesToOpen: IWorkspacePathToOpen[], foldersToOpen: ISingleFolderWorkspacePathToOpen[], emptyToRestore: IEmptyWindowBackupInfo[], emptyToOpen: number, openOneEmptyWindow: boolean, filesToOpen: IFilesToOpen | undefined, foldersToAdd: ISingleFolderWorkspacePathToOpen[] ): Promise<{ windows: ICodeWindow[]; filesOpenedInWindow: ICodeWindow | undefined }> {"} {"_id":"q-en-vscode-9a77bd80b3249ad376323ecb875ecd0ba0c5f6567522b7e5b20966c600292cd9","text":"@INativeHostService private readonly nativeHostService: INativeHostService ) { super(ReportExtensionIssueAction._id, ReportExtensionIssueAction._label, 'extension-action report-issue'); this.enabled = !!extension.description.repository && !!extension.description.repository.url; this.enabled = extension.description.isBuiltin || (!!extension.description.repository && !!extension.description.repository.url); } async run(): Promise {"} {"_id":"q-en-vscode-9a7c70cc1ae8287040f6c6235cd559872665e11e0b10b7f5ffaf71b829661946","text":"description: nls.localize('peekWidgetDefaultFocus', \"Controls whether to focus the inline editor or the tree in the peek widget.\") } )), definitionLinkOpensInPeek: register(new EditorBooleanOption( EditorOption.definitionLinkOpensInPeek, 'definitionLinkOpensInPeek', false, { description: nls.localize('definitionLinkOpensInPeek', \"Controls whether the definition link opens element in the peek widget.\") } )), quickSuggestions: register(new EditorQuickSuggestions()), quickSuggestionsDelay: register(new EditorIntOption( EditorOption.quickSuggestionsDelay, 'quickSuggestionsDelay',"} {"_id":"q-en-vscode-9ad1a618a077e49ce9c28ffff929ec4316e094d878f32ccd6b026c4b785e2637","text":"staleBackupWorkspaces.forEach(staleBackupWorkspace => { const {backupPath, workspaceIdentifier, isEmptyWorkspace} = staleBackupWorkspace; extfs.delSync(backupPath); try { extfs.delSync(backupPath); } catch (ex) { console.error(`Backup: Could not delete stale backup: ${ex.toString()}`); } this.removeBackupPathSync(workspaceIdentifier, isEmptyWorkspace); }); }"} {"_id":"q-en-vscode-9af6ea909fa3dc951d65fe76a82f3f5c9356d5205f021294e8c60430dc9ef016","text":"export const IS_WORKSPACE_SHELL_ALLOWED_STORAGE_KEY = 'terminal.integrated.isWorkspaceShellAllowed'; export const NEVER_SUGGEST_SELECT_WINDOWS_SHELL_STORAGE_KEY = 'terminal.integrated.neverSuggestSelectWindowsShell'; export const NEVER_MEASURE_RENDER_TIME_STORAGE_KEY = 'terminal.integrated.neverMeasureRenderTime'; export const ITerminalService = createDecorator(TERMINAL_SERVICE_ID);"} {"_id":"q-en-vscode-9b4822a1c85ae85d74f03f1520c4695e6301f125cd4f8523a8db74f25f00c73b","text":"return data; } else { const result = new _URI(data); result._fsPath = (data).fsPath; result._formatted = (data).external; result._fsPath = (data)._sep === _pathSepMarker ? (data).fsPath : null; return result; } }"} {"_id":"q-en-vscode-9b6f91f5a8b379616466fac7a33b1a132ce21375eee400f0648588100e5bb98f","text":"$('div').append($('a').attr('target', '_blank').attr('href', this.requestFeatureLink).text(nls.localize(\"request a missing feature\", \"Request a missing feature\")).attr('tabindex', '0')) .appendTo($contactUsContainer); let $charCounter = $('span.char-counter').text('(' + FeedbackDropdown.MAX_FEEDBACK_CHARS + ' ' + nls.localize(\"characters left\", \"characters left\") + ')'); let $charCounter = $('span.char-counter').text(this.getCharCountText(0)); $('h3').text(nls.localize(\"tell us why?\", \"Tell us why?\")) .append($charCounter)"} {"_id":"q-en-vscode-9b6fc941f385225c40c057a75fcf160fa49507ae53f6e6fadccac89841d3ff1b","text":"import { MutableDisposable } from 'vs/base/common/lifecycle'; import { IPaneCompositePartService } from 'vs/workbench/services/panecomposite/browser/panecomposite'; import { ViewContainerLocation } from 'vs/workbench/common/views'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; /** * An implementation of editor for file system resources."} {"_id":"q-en-vscode-9b98b448292a174d408620398519f827bab3c53c2444944fb13e703f68d3e212","text":"this._cursorBlinking = options.get(EditorOption.cursorBlinking); this._cursorStyle = options.get(EditorOption.cursorStyle); this._cursorSmoothCaretAnimation = options.get(EditorOption.cursorSmoothCaretAnimation); this._experimentalEditContextEnabled = options.get(EditorOption.experimentalEditContextEnabled); this._updateBlinking(); this._updateDomClassName();"} {"_id":"q-en-vscode-9b9b400f2ae362cdb6228388fb2c7d8e6324a1585b5a7669337f61dda498142d","text":"if (completion.snippetInfo || completion.filterText !== completion.insertText) { // not in WYSIWYG mode, partial commit might change completion, thus it is not supported this.accept(editor); await this.accept(editor); return; }"} {"_id":"q-en-vscode-9bb40f5de6b3fcee1a841820ea748c9ff80a4199bfcd9b41430cd321586e9534","text":"import * as nls from 'vs/nls'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ILogService } from 'vs/platform/log/common/log'; import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity'; import { IWorkspaceContextService, IWorkspaceFolderData, toWorkspaceFolder, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService'; import { IPathService } from 'vs/workbench/services/path/common/pathService';"} {"_id":"q-en-vscode-9bdd5c52c07485bae0301307a86e692a0a2d27ae3020cf3f38f388c03a260d76","text":" "} {"_id":"q-en-vscode-9c05b3a2fd48ac627c6086ce441a876be529729fdcd0d0c980d0dc247f7e9f92","text":"contextKeyService: IContextKeyService, options: IWorkbenchListOptions, @IListService listService: IListService, @IConfigurationService configurationService: IConfigurationService, @IConfigurationService private readonly configurationService: IConfigurationService, @IInstantiationService instantiationService: IInstantiationService ) { super(listUser, container, delegate, renderers, options, contextKeyService, listService, configurationService, instantiationService);"} {"_id":"q-en-vscode-9c2c61932347de92e53fea2cfdadb819622c2a6435e9a3ec58856fb86844890b","text":"return []; } if (data.editSession.folders.length === 1) { const folder = data.editSession.folders[0]; return this.getEditSessionFolderContents(ref, folder.name); } return data.editSession.folders.map((folder) => { const resource = URI.from({ scheme: EDIT_SESSIONS_SCHEME, authority: 'remote-session-content', path: `/${data.ref}/${folder.name}` }); return {"} {"_id":"q-en-vscode-9c6693ac943a597f9ec7be2384235406977629a2cc02de3507fe8c9509eb3423","text":"import { Codicon } from 'vs/base/common/codicons'; import { VSCodeOscProperty, VSCodeOscPt, VSCodeSequence } from 'vs/workbench/contrib/terminal/browser/terminalEscapeSequences'; const taskShellIntegrationStartSequence = VSCodeSequence(VSCodeOscPt.PromptStart) + VSCodeSequence(VSCodeOscPt.Property, `${VSCodeOscProperty.Task}=True`) + VSCodeSequence(VSCodeOscPt.CommandStart); const taskShellIntegrationOutputSequence = VSCodeSequence(VSCodeOscPt.CommandExecuted); interface ITerminalData { terminal: ITerminalInstance; lastTask: string;"} {"_id":"q-en-vscode-9c8594b67baf9f2eb25147e4945bc10f762c17ec96c3be210a71a6ce960379b3","text":"const arg: contextMenuArg = { source: element.notebook.uri.toString(), name: element.name, value: element.value, type: element.type, expression: element.expression,"} {"_id":"q-en-vscode-9c96633f18c00c798e2dc6cad0f2fabbe71a98c572ef9508206a01f7d691489f","text":"import { TerminalLink } from 'vs/workbench/contrib/terminal/browser/links/terminalLink'; import { TerminalLinkDetectorAdapter } from 'vs/workbench/contrib/terminal/browser/links/terminalLinkDetectorAdapter'; import { TerminalLocalFileLinkOpener, TerminalLocalFolderInWorkspaceLinkOpener, TerminalLocalFolderOutsideWorkspaceLinkOpener, TerminalSearchLinkOpener, TerminalUrlLinkOpener } from 'vs/workbench/contrib/terminal/browser/links/terminalLinkOpeners'; import { lineAndColumnClause, TerminalLocalLinkDetector, unixLocalLinkClause, winDrivePrefix, winLocalLinkClause } from 'vs/workbench/contrib/terminal/browser/links/terminalLocalLinkDetector'; import { TerminalLocalLinkDetector, winDrivePrefix } from 'vs/workbench/contrib/terminal/browser/links/terminalLocalLinkDetector'; import { TerminalUriLinkDetector } from 'vs/workbench/contrib/terminal/browser/links/terminalUriLinkDetector'; import { TerminalWordLinkDetector } from 'vs/workbench/contrib/terminal/browser/links/terminalWordLinkDetector'; import { ITerminalExternalLinkProvider, TerminalLinkQuickPickEvent } from 'vs/workbench/contrib/terminal/browser/terminal';"} {"_id":"q-en-vscode-9ca7f6f7a47297872fbb97d9daa9861121732de84fbc20c36a94c22ea4dd9d27","text":"import { IDimension } from 'vs/editor/common/core/dimension'; import { Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import { CursorChangeReason } from 'vs/editor/common/cursorEvents'; import { CursorChangeReason, ICursorPositionChangedEvent } from 'vs/editor/common/cursorEvents'; import { IDiffComputationResult, ILineChange } from 'vs/editor/common/diff/legacyLinesDiffComputer'; import { LineRangeMapping, RangeMapping } from 'vs/editor/common/diff/rangeMapping'; import { EditorType, IDiffEditorModel, IDiffEditorViewModel, IDiffEditorViewState } from 'vs/editor/common/editorCommon';"} {"_id":"q-en-vscode-9cde4c8cb5b713bde9f2fbd4fea58f08be7056e37f153fa2763cea6124f8c121","text":"import { EventType, addDisposableListener, addStandardDisposableListener, h } from 'vs/base/browser/dom'; import { createFastDomNode } from 'vs/base/browser/fastDomNode'; import { IMouseWheelEvent } from 'vs/base/browser/mouseEvent'; import { ScrollbarState } from 'vs/base/browser/ui/scrollbar/scrollbarState'; import { Color } from 'vs/base/common/color'; import { Disposable } from 'vs/base/common/lifecycle'; import { IObservable, autorun, derived, observableFromEvent, observableSignalFromEvent } from 'vs/base/common/observable';"} {"_id":"q-en-vscode-9d2967fd902d6607227770c6dac6b0a0399a7205adbe380a628a28abd4114292","text":"private provider: IURLCallbackProvider | undefined; constructor( @IWorkbenchEnvironmentService environmentService: IWorkbenchEnvironmentService @IWorkbenchEnvironmentService environmentService: IWorkbenchEnvironmentService, @IOpenerService openerService: IOpenerService, @IProductService productService: IProductService ) { super(); this.provider = environmentService.options?.urlCallbackProvider; this.registerListeners(); const that = this; this._register(openerService.registerOpener({ async open(resource: URI | string) { if (!matchesScheme(resource, productService.urlProtocol)) { return false; } if (typeof resource === 'string') { resource = URI.parse(resource); } return that.open(resource); } })); } private registerListeners(): void {"} {"_id":"q-en-vscode-9d57d93ab53022e9557e9dba7d57f1f248e3e156d8d14b308e9e5899c8af54a6","text":"const sessionId = viewModel.sessionId; const view = await viewService.openView(widget.viewContext.viewId) as ChatViewPane; const viewState = view.widget.getViewState(); view.clear(); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true, viewState: viewState } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); } async function moveToSidebar(accessor: ServicesAccessor): Promise {"} {"_id":"q-en-vscode-9d63276c964b6e1024f669486ffb515e3e545a5fc573facb9e34ed0b56c3a639","text":"// Always fallback to monospace, otherwise a proportional font may become the default fontFamily += ', monospace'; // Always fallback to AppleBraille on macOS, otherwise braille will render with filled and // empty circles in all 8 positions, instead of just filled circles // See https://github.com/microsoft/vscode/issues/174521 if (isMacintosh) { fontFamily += ', AppleBraille'; } const letterSpacing = this._terminalConfigurationService.config.letterSpacing ? Math.max(Math.floor(this._terminalConfigurationService.config.letterSpacing), MINIMUM_LETTER_SPACING) : DEFAULT_LETTER_SPACING; const lineHeight = this._terminalConfigurationService.config.lineHeight ? Math.max(this._terminalConfigurationService.config.lineHeight, 1) : DEFAULT_LINE_HEIGHT;"} {"_id":"q-en-vscode-9d87c0a731322e69acfdc34e122e4506e1ebd70a42bac4aecf473c298fcc0f7a","text":"// on the onDidHide event. picker.show(); // If the previous picker had a selection, we should set that in the new picker. if (visibleSelection) { picker.valueSelection = visibleSelection; } // Pick mode: return with promise if (pick) { return pickPromise?.p;"} {"_id":"q-en-vscode-9d9113b66896392e42effc56d5903bd08618eaafd597e1f47d629943df5d64b5","text":"import { Action2, IAction2Options, registerAction2 } from 'vs/platform/actions/common/actions'; import { ServicesAccessor } from 'vs/editor/browser/editorExtensions'; import { localize } from 'vs/nls'; import { IEditSessionsWorkbenchService, Change, ChangeType, Folder, EditSession, FileType, EDIT_SESSION_SYNC_CATEGORY, EDIT_SESSIONS_CONTAINER_ID, EditSessionSchemaVersion, IEditSessionsLogService, EDIT_SESSIONS_VIEW_ICON, EDIT_SESSIONS_TITLE, EDIT_SESSIONS_SCHEME } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { IEditSessionsWorkbenchService, Change, ChangeType, Folder, EditSession, FileType, EDIT_SESSION_SYNC_CATEGORY, EDIT_SESSIONS_CONTAINER_ID, EditSessionSchemaVersion, IEditSessionsLogService, EDIT_SESSIONS_VIEW_ICON, EDIT_SESSIONS_TITLE, EDIT_SESSIONS_SCHEME, EDIT_SESSIONS_SHOW_VIEW, EDIT_SESSIONS_SIGNED_IN } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { ISCMRepository, ISCMService } from 'vs/workbench/contrib/scm/common/scm'; import { IFileService } from 'vs/platform/files/common/files'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';"} {"_id":"q-en-vscode-9dcebcc9f26f3dbcbd1ecffa6d21d9a621f620b7aab543c67fe12b18c5dd4cfa","text":"DOM.addStandardDisposableListener(inputBox.inputElement, DOM.EventType.KEY_DOWN, (e: IKeyboardEvent) => { if (e.equals(KeyCode.Enter)) { if (inputBox.validate()) { done(true, true); done(true); } } else if (e.equals(KeyCode.Escape)) { done(false, true); done(false); } }), blurDisposable,"} {"_id":"q-en-vscode-9dd30ba50fc066c956c6daf21c481efd792401ec292bb2a3b1b1e02a8acb592c","text":"constructor(private _trait: string) { } splice(start: number, deleteCount: number, elements: boolean[]): void { deleteCount = Math.max(0, Math.min(deleteCount, this.length - start)); const diff = elements.length - deleteCount; const end = start + deleteCount; const sortedIndexes: number[] = [];"} {"_id":"q-en-vscode-9de6e6d507fa0512ea7ae1949b0222b666591248ff152d5cd21e96de58ffc62d","text":"public removeManualRanges(ranges: ILineRange[]) { const newFoldingRanges: FoldRange[] = new Array(); const containedBy = (foldRange: FoldRange) => { const intersects = (foldRange: FoldRange) => { for (const range of ranges) { if (range.startLineNumber <= foldRange.startLineNumber && range.endLineNumber >= foldRange.endLineNumber) { if (!(range.startLineNumber > foldRange.endLineNumber || foldRange.startLineNumber > range.endLineNumber)) { return true; } }"} {"_id":"q-en-vscode-9de8abba5814460d08639f0f48e8e21aa1f033d8bb559574728f1f90b464b8f7","text":"return pattern.toUpperCase(); } else if (matches[0].toLowerCase() === matches[0]) { return pattern.toLowerCase(); } else if (strings.containsUppercaseCharacter(matches[0][0])) { } else if (strings.containsUppercaseCharacter(matches[0][0]) && pattern.length > 0) { return pattern[0].toUpperCase() + pattern.substr(1); } else { // we don't understand its pattern yet."} {"_id":"q-en-vscode-9e27e55f96f3fe72780888aee527e897c2ad0ac8c15cd1ea2a60d4f784eccc98","text":"} /** * The potential context information for a {@link TextSearchResultNew}. * The context lines of text that are not a part of a match, * but that surround a match line of type {@link TextSearchMatchNew}. * * For example, consider this excerpt: * * ```ts * const bar = 1; * console.log(bar); * const foo = bar; * ``` * * If the query is `log`, then the lines `const bar = 1;` and `const foo = bar;` * should be represented using two separate {@link TextSearchContextNew} for the search instance. * This example assumes that the finder requests one line of surrounding context. */ export class TextSearchContextNew { /**"} {"_id":"q-en-vscode-9e40620c70868c76488a8583ddcaf9f243f5ff28ac41d863fb4c7a9fcc8b9545","text":"} protected override _resize(size: dom.Dimension): void { ContentHoverWidget._lastDimensions = new dom.Dimension(size.width, size.height); this._setAdjustedHoverWidgetDimensions(size); this._resizableNode.layout(size.height, size.width); this._setResizableNodeMaxDimensions();"} {"_id":"q-en-vscode-9ea4e6620b736fa018543f1f633390a2dfd7fdba7a985a43219d012c2fecc6dd","text":"} } public copyImage() { if (this.previewState === PreviewState.Active) { this.webviewEditor.reveal(); this.webviewEditor.webview.postMessage({ type: 'copyImage' }); } } protected override updateState() { super.updateState();"} {"_id":"q-en-vscode-9eb953fc7aed3d1f1ee17c6f71a82a8830d42bd221c872975322d10123b4e29a","text":"}; if (this._configurationService.getValue(OutlineConfigKeys.problemsEnabled)) { markerServiceListener.value = this._markerService.onMarkerChanged(e => { if (notebookEditorWidget.isDisposed) { console.error('notebook editor is disposed'); return; } if (e.some(uri => notebookEditorWidget.getCellsInRange().some(cell => isEqual(cell.uri, uri)))) { doUpdateMarker(false); this._onDidChange.fire({});"} {"_id":"q-en-vscode-9ed51a2ed362e064ad4b7c5a200699accc8fd792bf3d5f932ac77fcc37a76191","text":"rimraf \"^3.0.2\" ws \"^6.1.0\" playwright@0.15.0: version \"0.15.0\" resolved \"https://registry.yarnpkg.com/playwright/-/playwright-0.15.0.tgz#bf5c3bb8404975aba78459310742388c08438431\" integrity sha512-UGHkQz8DT43uJ0KgMh2rmj8BI4FE5ReQJ9nm5mG68tt1Cj2sXPdM2b05qptfYYBPtQRetQqtJTauZ6rlCDemaQ== playwright@1.0.1: version \"1.0.1\" resolved \"https://registry.yarnpkg.com/playwright/-/playwright-1.0.1.tgz#326d479829a3505799ddc9988cc8decf5a7f8376\" integrity sha512-kVTE7uvZ7OcDVOBx7MVArUm2nbzzzpauKV9tuVIAH6vWGsOWbGGALUoTWMzNDzsPPTBJXXmxzC4KgI2zN+kVhw== dependencies: playwright-core \"=0.15.0\" playwright-core \"=1.0.1\" plist@^3.0.1: version \"3.0.1\""} {"_id":"q-en-vscode-9ed865a4a18c4912b8a2e5cb88653d43a2d714637debe13136fa892cf227a06e","text":"if (showResult.choice === 0) { invokeProtocolHandler(); } else if (showResult.choice === 1) { await this.openerService.open(URI.parse(`http://aka.ms/vscode-install`)); // Route the user to the appropriate install link await this.openerService.open(URI.parse( this.productService.quality === 'stable' ? `http://aka.ms/vscode-install` : `http://aka.ms/vscode-install-insiders` )); // Re-show the dialog so that the user can come back after installing and try again showProtocolUrlOpenedDialog(); } }; // We cannot know whether the protocol handler succeeded. // Display guidance in case it did not, e.g. the app is not installed locally. if (matchesScheme(href, this.productService.urlProtocol)) { await showProtocolUrlOpenedDialog(); } }"} {"_id":"q-en-vscode-9ee686e3ffd69e05edb9a730408978d8d67ba5bade965df6c74e0e7540ab895e","text":"this._register(editorService.onDidActiveEditorChange(() => { disposables.clear(); const editorControl = this.editorService.activeTextEditorControl; let editorControl = this.editorService.activeTextEditorControl; if (isDiffEditor(editorControl)) { editorControl = editorControl.getModifiedEditor(); } if (isCodeEditor(editorControl)) { disposables.add(editorControl.onDidChangeModelLanguage(setContextKey)); }"} {"_id":"q-en-vscode-9efdd7e1898dc74322db0b8d772a359bb0dd71e9f61274292ed500146cb2df90","text":"workspace.folders.some(folder => uriIdentityService.extUri.isEqual(folder.uri, resource)) // Need to verify resources are workspaces since multi selection can trigger this command on some non workspace resources ); if (resources.length === 0) { const commandService = accessor.get(ICommandService); // Show a picker for the user to choose which folder to remove return commandService.executeCommand(RemoveRootFolderAction.ID); } return workspaceEditingService.removeFolders(resources); } });"} {"_id":"q-en-vscode-9f0555dfeac4a89c5990df7c86fc8a0ae8070ade606addc86e6f7a1ccf991fa2","text":"} setState(state: StickyScrollWidgetState): void { if (state.equals(this._state)) { return; } this._state = state; dom.clearNode(this._rootDomNode); this._disposableStore.clear(); this._lineNumbers.length = 0;"} {"_id":"q-en-vscode-9f359492fb38ecff614c240a68fe632001abc13ef7da81652703cb08d55e864e","text":"dependencies: is-number \"^7.0.0\" typescript@5.4.3: version \"5.4.3\" resolved \"https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff\" integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg== typescript@5.4.4: version \"5.4.4\" resolved \"https://registry.yarnpkg.com/typescript/-/typescript-5.4.4.tgz#eb2471e7b0a5f1377523700a21669dce30c2d952\" integrity sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw== vscode-grammar-updater@^1.1.0: version \"1.1.0\""} {"_id":"q-en-vscode-9f7ffbe47b04970ff17de499253907b51b3aee2b40da8b60cb602f80f6c9ae82","text":"} } // Mimic option first character navigation of native select private onCharacter(e: StandardKeyboardEvent): void { const ch = KeyCodeUtils.toString(e.keyCode); let optionIndex = -1; for (let i = 0; i < this.options.length - 1; i++) { optionIndex = (i + this.selected + 1) % this.options.length; if (this.options[optionIndex].charAt(0).toUpperCase() === ch) { this.select(optionIndex); this.selectList.setFocus([optionIndex]); this.selectList.reveal(this.selectList.getFocus()[0]); dom.EventHelper.stop(e); break; } } } public dispose(): void { this.toDispose = dispose(this.toDispose); }"} {"_id":"q-en-vscode-a0a467dafe68fdb62232ef41123d36b7088418da71b45abc0c7594acc3861b40","text":"{ label: 'aa', reason: TestResultItemChangeReason.OwnStateChange }, { label: 'root', reason: TestResultItemChangeReason.ComputedStateChange }, ]); r.updateState(testId, 't', TestResultState.Passed); assert.deepStrictEqual(r.getStateById(testId)?.ownComputedState, TestResultState.Passed); r.updateState(testId, 't', TestResultState.Errored); assert.deepStrictEqual(r.getStateById(testId)?.ownComputedState, TestResultState.Errored); r.updateState(testId, 't', TestResultState.Passed); assert.deepStrictEqual(r.getStateById(testId)?.ownComputedState, TestResultState.Errored); }); test('retire', () => {"} {"_id":"q-en-vscode-a0ca82829112e954327a530c73c88441f778271ec2608959f8130068e7b50f9b","text":"if (this._formatted) { res.external = this._formatted; } // uri components //--- uri components if (this.path) { res.path = this.path; } // TODO // this isn't correct and can violate the UriComponents contract but // this is part of the vscode.Uri API and we shouldn't change how that // works anymore if (this.scheme) { res.scheme = this.scheme; }"} {"_id":"q-en-vscode-a115e68b66c5e297a32dee2f3baffbece641c17322e8c5328169b18f8c938249","text":"async function openVscodeDevLink(gitAPI: GitAPI): Promise { try { const headlink = await getLink(gitAPI, true, getVscodeDevHost(), 'headlink'); const headlink = await getLink(gitAPI, true, false, getVscodeDevHost(), 'headlink'); return headlink ? vscode.Uri.parse(headlink) : undefined; } catch (err) { if (!(err instanceof vscode.CancellationError)) {"} {"_id":"q-en-vscode-a118e4bb0bbb3d7809055fdf70676eb67562252049d7979b87787045b95cbfb9","text":"order: 1 }); } function terminalMenuRegistration() { // Manage MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '1_manage', command: { id: 'workbench.action.terminal.new', title: nls.localize({ key: 'miNewTerminal', comment: ['&& denotes a mnemonic'] }, \"&&New Terminal\") }, order: 1 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '1_manage', command: { id: 'workbench.action.terminal.split', title: nls.localize({ key: 'miSplitTerminal', comment: ['&& denotes a mnemonic'] }, \"&&Split Terminal\") }, order: 2 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '1_manage', command: { id: 'workbench.action.terminal.kill', title: nls.localize({ key: 'miKillTerminal', comment: ['&& denotes a mnemonic'] }, \"&&Kill Terminal\") }, order: 3 }); // Run MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '2_run', command: { id: 'workbench.action.terminal.clear', title: nls.localize({ key: 'miClear', comment: ['&& denotes a mnemonic'] }, \"&&Clear\") }, order: 1 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '2_run', command: { id: 'workbench.action.terminal.runActiveFile', title: nls.localize({ key: 'miRunActiveFile', comment: ['&& denotes a mnemonic'] }, \"Run &&Active File\") }, order: 2 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '2_run', command: { id: 'workbench.action.terminal.runSelectedFile', title: nls.localize({ key: 'miRunSelectedText', comment: ['&& denotes a mnemonic'] }, \"Run &&Selected Text\") }, order: 3 }); // Selection MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '3_selection', command: { id: 'workbench.action.terminal.scrollToPreviousCommand', title: nls.localize({ key: 'miScrollToPreviousCommand', comment: ['&& denotes a mnemonic'] }, \"Scroll To Previous Command\") }, order: 1 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '3_selection', command: { id: 'workbench.action.terminal.scrollToNextCommand', title: nls.localize({ key: 'miScrollToNextCommand', comment: ['&& denotes a mnemonic'] }, \"Scroll To Next Command\") }, order: 2 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '3_selection', command: { id: 'workbench.action.terminal.selectToPreviousCommand', title: nls.localize({ key: 'miSelectToPreviousCommand', comment: ['&& denotes a mnemonic'] }, \"Select To Previous Command\") }, order: 3 }); MenuRegistry.appendMenuItem(MenuId.MenubarTerminalMenu, { group: '3_selection', command: { id: 'workbench.action.terminal.selectToNextCommand', title: nls.localize({ key: 'miSelectToNextCommand', comment: ['&& denotes a mnemonic'] }, \"Select To Next Command\") }, order: 4 }); } No newline at end of file"} {"_id":"q-en-vscode-a12ddfb5edc4747637214b677e45682131adaa03a6a00db2a86689bc4e432271","text":"const root = historyService.getLastActiveWorkspaceRoot(Schemas.file); if (root) { terminalService.openTerminal(root.fsPath); } else { // Opens current file's folder, if no folder is open in editor const activeFile = historyService.getLastActiveFile(); if (activeFile) { terminalService.openTerminal(paths.dirname(activeFile.fsPath)); } } } });"} {"_id":"q-en-vscode-a14366d275dfe5e6f1f933bc8a4bd182020cce1c5fc55352e432eef3a3cd6ce2","text":"this._onPositionChanged(e); })); this.toUnhook.add(editor.onDidFocusEditorText((e) => { if (!this.workerRequest) { this._run(); } })); this.toUnhook.add(editor.onDidChangeModelContent((e) => { this._stopAll(); }));"} {"_id":"q-en-vscode-a179ac75704d8cc5279f2dbd45da3d7fa36c4e2ae30d7d2aa54f48368974bcd5","text":"private _layoutNow() { const layoutInfo = this.notebookEditor.getLayoutInfo(); const height = layoutInfo.height; const scrollHeight = layoutInfo.scrollHeight; const contentHeight = this._diffElementViewModels.map(view => view.layoutInfo.totalHeight).reduce((a, b) => a + b, 0); const ratio = browser.PixelRatio.value; this._domNode.setWidth(this.width); this._domNode.setHeight(height);"} {"_id":"q-en-vscode-a18c7b58e22ccb543a1d7b912f1a118fdf481ca63fe8f5bd4028d834d7a7ea51","text":"return createFileStat(resource); } }); instantiationService.stub(ILogService, new NullLogService()); resolver = instantiationService.createInstance(TerminalLinkResolver); validResources = [];"} {"_id":"q-en-vscode-a198d7cbc246293286e314cac1c6047810f472bb34f0836428766a38081c31dc","text":"}); test('service validates backup workspaces on startup and cleans up', done => { // 1) backup workspace path does not exist service.registerWindowForBackups(1, false, null, fooFile.fsPath); service.registerWindowForBackups(2, false, null, barFile.fsPath);"} {"_id":"q-en-vscode-a1dfda1563d88b950c80834e8acc2f679b14b4e3819bc7a743a4e6f8e0823176","text":"const languageService = accessor.get(ILanguageService); const config = accessor.get(IConfigurationService); const scrollBehavior = config.getValue(NotebookSetting.cellExecutionScroll); const scrollBehavior = config.getValue(NotebookSetting.scrollToRevealCell); let focusOptions: IFocusNotebookCellOptions; if (scrollBehavior === 'none') { focusOptions = { skipReveal: true };"} {"_id":"q-en-vscode-a21ee65b998495cb79bbb39f02fd267743af99164b89e40c1f7130cec6119956","text":"restricted: true, markdownDescription: localize('terminal.integrated.enableImages', \"Enables image support in the terminal, this will only work when {0} is enabled. Both sixel and iTerm's inline image protocol are supported on Linux and macOS, Windows support will light up automatically when ConPTY passes through the sequences. Images will currently not be restored between window reloads/reconnects.\", ``#${TerminalSettingId.GpuAcceleration}#``), type: 'boolean', default: true default: false }, } };"} {"_id":"q-en-vscode-a22480a942aa071c8aaec1189aa89e152627323483fd0af20f65379baef98e32","text":"} ], run: async (c) => { const instance = await c.service.getActiveOrCreateInstance(); await c.service.revealActiveTerminal(); const instance = await c.service.activeInstance; if (!instance) { return; }"} {"_id":"q-en-vscode-a233a901922f27eddfc1ea2dc5a6b8dde88c5656203ff65e2efa66c002b3eff7","text":"return this._dirty; } isUntitled() { return this.resource.scheme === Schemas.untitled; } async save(): Promise { const tokenSource = new CancellationTokenSource(); await this.notebookService.save(this.notebook.viewType, this.notebook.uri, tokenSource.token);"} {"_id":"q-en-vscode-a239d45f73cf9465a2341ae7bab93c0be5a255b3f13ee83f65979958da910a9f","text":"import { IAsyncDataSource, ITreeNode, ITreeRenderer } from 'vs/base/browser/ui/tree/tree'; import { createMatches, FuzzyScore } from 'vs/base/common/filters'; import { dispose, IDisposable } from 'vs/base/common/lifecycle'; import { basename } from 'vs/base/common/path'; import severity from 'vs/base/common/severity'; import { localize } from 'vs/nls'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration';"} {"_id":"q-en-vscode-a27ac45909cdda84e4354affe20cb16b51490862b928ed82fa0463c8738a96df","text":"assert.strictEqual(group2Events.unsticky[0].editorIndex, 1); }); function assertSelection(group: EditorGroupModel, activeEditor: EditorInput, selectedEditors: EditorInput[]): void { assert.strictEqual(group.activeEditor, activeEditor); assert.strictEqual(group.selectedEditors.length, selectedEditors.length); for (let i = 0; i < selectedEditors.length; i++) { assert.strictEqual(group.selectedEditors[i], selectedEditors[i]); } } test('editor selection: selectedEditors', () => { const group = createEditorGroupModel(); const activeEditor = group.activeEditor; const selectedEditors = group.selectedEditors; assert.strictEqual(activeEditor, null); assert.strictEqual(selectedEditors.length, 0); // active editor: input1, selection: [input1] const input1 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); assertSelection(group, input1, [input1]); // active editor: input3, selection: [input3] const input2 = input(); const input3 = input(); group.openEditor(input2, { pinned: true, active: true, index: 1 }); group.openEditor(input3, { pinned: true, active: true, index: 2 }); assertSelection(group, input3, [input3]); // active editor: input2, selection: [input1, input2] (in sequential order) group.setSelection(input2, [input1]); assertSelection(group, input2, [input1, input2]); }); test('editor selection: openEditor with inactive selection', () => { const group = createEditorGroupModel(); // active editor: input3, selection: [input3] const input1 = input(); const input2 = input(); const input3 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); group.openEditor(input2, { pinned: true, active: true, index: 1 }); group.openEditor(input3, { pinned: true, active: true, index: 2 }); // active editor: input2, selection: [input1, input2, input3] (in sequential order) group.openEditor(input2, { active: true, inactiveSelection: [input3, input1] }); assertSelection(group, input2, [input1, input2, input3]); // active editor: input1, selection: [input1, input3] (in sequential order) // test duplicate entries group.openEditor(input1, { active: true, inactiveSelection: [input3, input1, input3] }); assertSelection(group, input1, [input1, input3]); // active editor: input1, selection: [input1, input2] (in sequential order) // open new Editor as inactive with selection const input4 = input(); group.openEditor(input4, { pinned: true, active: false, inactiveSelection: [input2], index: 3 }); assertSelection(group, input1, [input1, input2]); // active editor: input5, selection: [input4, input5] (in sequential order) // open new Editor as active with selection const input5 = input(); group.openEditor(input5, { pinned: true, active: true, inactiveSelection: [input4], index: 4 }); assertSelection(group, input5, [input4, input5]); }); test('editor selection: closeEditor keeps selection', () => { const group = createEditorGroupModel(); // active editor: input3, selection: [input3] const input1 = input(); const input2 = input(); const input3 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); group.openEditor(input2, { pinned: true, active: true, index: 1 }); group.openEditor(input3, { pinned: true, active: true, index: 2 }); group.setSelection(input2, [input3, input1]); group.closeEditor(input3); assertSelection(group, input2, [input1, input2]); }); test('editor selection: setSeletion', () => { const group = createEditorGroupModel(); // active editor: input3, selection: [input3] const input1 = input(); const input2 = input(); const input3 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); group.openEditor(input2, { pinned: true, active: true, index: 1 }); group.openEditor(input3, { pinned: true, active: true, index: 2 }); // active editor: input2, selection: [input1, input2, input3] (in sequential order) group.setSelection(input2, [input3, input1]); assertSelection(group, input2, [input1, input2, input3]); // active editor: input3, selection: [input3] group.setSelection(input3, []); assertSelection(group, input3, [input3]); // active editor: input2, selection: [input1, input2] // test duplicate entries group.setSelection(input2, [input1, input2, input1]); assertSelection(group, input2, [input1, input2]); }); test('editor selection: isSelected', () => { const group = createEditorGroupModel(); // active editor: input3, selection: [input3] const input1 = input(); const input2 = input(); const input3 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); group.openEditor(input2, { pinned: true, active: true, index: 1 }); group.openEditor(input3, { pinned: true, active: true, index: 2 }); // active editor: input2, selection: [input1, input2, input3] (in sequential order) group.setSelection(input2, [input3, input1]); assert.strictEqual(group.isSelected(input1), true); assert.strictEqual(group.isSelected(input2), true); assert.strictEqual(group.isSelected(input3), true); // active editor: input3, selection: [input3] group.setSelection(input3, []); assert.strictEqual(group.isSelected(input1), false); assert.strictEqual(group.isSelected(input2), false); assert.strictEqual(group.isSelected(input3), true); // use index assert.strictEqual(group.isSelected(0), false); assert.strictEqual(group.isSelected(1), false); assert.strictEqual(group.isSelected(2), true); }); test('editor selection: select invalid editor', () => { const group = createEditorGroupModel(); const input1 = input(); const input2 = input(); group.openEditor(input1, { pinned: true, active: true, index: 0 }); group.setSelection(input2, [input1]); assert.strictEqual(group.activeEditor, input1); assert.strictEqual(group.selectedEditors.length, 1); assert.strictEqual(group.isSelected(input1), true); assert.strictEqual(group.isSelected(input1), true); assert.strictEqual(group.isSelected(input2), false); group.setSelection(input1, [input2]); assert.strictEqual(group.activeEditor, input1); assert.strictEqual(group.selectedEditors.length, 1); assert.strictEqual(group.isSelected(input1), true); assert.strictEqual(group.isSelected(input1), true); assert.strictEqual(group.isSelected(input2), false); }); ensureNoDisposablesAreLeakedInTestSuite(); });"} {"_id":"q-en-vscode-a2a4a3cec687232d158c60e60d6634e9cf977b49264f9ba8eac40fcf5ac11779","text":"return this._getMarkers(true).indexOf(marker) === -1; } scrollToPreviousMark(scrollPosition: ScrollPosition = ScrollPosition.Middle, retainSelection: boolean = false, skipEmptyCommands?: boolean): void { scrollToPreviousMark(scrollPosition: ScrollPosition = ScrollPosition.Middle, retainSelection: boolean = false, skipEmptyCommands: boolean = false): void { if (!this._terminal) { return; }"} {"_id":"q-en-vscode-a311267e353424aadf7bf8a1ad3bf2d9822705433e532c479f86f2e9c6ddc392","text":"} public setAdditionalToggles(toggles: Toggle[] | undefined): void { // Short circuit if there are no toggles to update if (!this.additionalToggles.length && !toggles?.length) { return; } for (const currentToggle of this.additionalToggles) { currentToggle.domNode.remove(); }"} {"_id":"q-en-vscode-a33dfc39b99485df81456599fc7ef49c8360c2324d3bc6c313d46e87df07f8fc","text":"return; } // When the command finishes and executed never fires the placeholder selector should be used. if (this._exitCode === undefined && command === undefined) { command = ''; } if ((command !== undefined && !command.startsWith('')) || this._handleCommandStartOptions?.ignoreCommandLine) { const buffer = this._terminal.buffer.active; const timestamp = Date.now();"} {"_id":"q-en-vscode-a357f3ed265bd9be203b7216916ac8a8893ba0f8597a7363b8b6340baa0fd58f","text":".test-output-peek-tree { color: var(--vscode-editor-foreground); border-left: 1px solid var(--vscode-panelSection-border); } .test-output-peek-tree .monaco-list-row .monaco-action-bar,"} {"_id":"q-en-vscode-a35979a97e752ed3912762df4bce4003cbc9ec908c771c073bb2991b8af70817","text":"const srcDocLines = originalLines.map((l) => getOrCreateHash(l.trim())); const tgtDocLines = modifiedLines.map((l) => getOrCreateHash(l.trim())); const sequence1 = new SequenceFromIntArray(srcDocLines); const sequence2 = new SequenceFromIntArray(tgtDocLines); const sequence1 = new LineSequence(srcDocLines, originalLines); const sequence2 = new LineSequence(tgtDocLines, modifiedLines); const lineAlignments = (() => { let lineAlignments = (() => { if (sequence1.length + sequence2.length < 1500) { // Use the improved algorithm for small files return this.dynamicProgrammingDiffing.compute("} {"_id":"q-en-vscode-a37b939cb61210264510b6cbd9eda01198ba51904feee71dddaa7f1e69013dbe","text":"public registerWindowForBackups(windowId: number, isEmptyWorkspace: boolean, backupFolder?: string, workspacePath?: string): void { // Generate a new folder if this is a new empty workspace if (isEmptyWorkspace && !backupFolder) { backupFolder = Date.now().toString(); backupFolder = this.getRandomEmptyWorkspaceId(); } this.mapWindowToBackupFolder[windowId] = isEmptyWorkspace ? backupFolder : this.getWorkspaceHash(workspacePath); this.pushBackupPathsSync(isEmptyWorkspace ? backupFolder : workspacePath, isEmptyWorkspace); } protected pushBackupPathsSync(workspaceIdentifier: string, isEmptyWorkspace: boolean): void { private getRandomEmptyWorkspaceId(): string { return (Date.now() + Math.round(Math.random() * 1000)).toString(); } protected pushBackupPathsSync(workspaceIdentifier: string, isEmptyWorkspace: boolean): string { if (!isEmptyWorkspace) { workspaceIdentifier = this.sanitizePath(workspaceIdentifier); }"} {"_id":"q-en-vscode-a3a8fe811d39a2f680c99a9519f71bd27248fd3226c9634a5598d0d9b17ed68f","text":"], \"extensions\": [ \".gitignore_global\", \".gitignore\" \".gitignore\", \".git-blame-ignore-revs\" ], \"configuration\": \"./languages/ignore.language-configuration.json\" }"} {"_id":"q-en-vscode-a3b9ec5ee248372a51898fb5930b37723fce0e98e5e4454ffd1bfb4385e73d33","text":"if (searchView) { const viewer = searchView.getControl(); const selected = viewer.getFocus()[0]; await viewer.expand(selected, true); await forcedExpandRecursively(viewer, selected); } }"} {"_id":"q-en-vscode-a3cf239eaed110651a1292d3741ae872ee7e01ccde167d3350f4e35e88ec2596","text":"return this._scrollBeyondLastLine && !this.isEmbedded; } layout(dimension: DOM.Dimension, shadowElement?: HTMLElement, position?: DOM.IDomPosition): void { layout(dimension: DOM.Dimension, shadowElement?: HTMLElement, _position?: DOM.IDomPosition): void { if (!shadowElement && this._shadowElementViewInfo === null) { this._dimension = dimension; return;"} {"_id":"q-en-vscode-a4424915ad6deff50efd0bca6b7b67e3f6d3cf7a38616a7f0db944999fb836a6","text":"/** * A chat request handler is a callback that will be invoked when a request is made to a chat participant. */ export type ChatRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatResponseStream, token: CancellationToken) => ProviderResult; export type ChatRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatResponseStream, token: CancellationToken) => ProviderResult; /** * A chat participant can be invoked by the user in a chat session, using the `@` prefix. When it is invoked, it handles the chat request and is solely"} {"_id":"q-en-vscode-a45512d25ba76d593517ebafc427947bbcceca8c1d0eea95def22844a3306d95","text":"override prepareLayout(): void { if (this.currentElement?.cellKind === CellKind.Code && this._commentThreadWidget) { this.currentElement.commentHeight = dom.getClientArea(this._commentThreadWidget.container).height; this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget.getDimensions().height); } }"} {"_id":"q-en-vscode-a48be8ebb4aac3bd133fb5d4e80162866b92981b503b6635aecadffd94ee410c","text":"this._onDidChange.dispose(); this._dispoables.dispose(); this._entriesDisposables.dispose(); this._outlineProvider?.dispose(); } }"} {"_id":"q-en-vscode-a4e51d2fea3aefbaf09a24b0c6323d6f070d67ca1905ee86d6cdea203e6fd3df","text":"\"vscode-proxy-agent\": \"^0.12.0\", \"vscode-regexpp\": \"^3.1.0\", \"vscode-textmate\": \"7.0.1\", \"xterm\": \"4.19.0-beta.60\", \"xterm-addon-search\": \"0.9.0-beta.39\", \"xterm-addon-serialize\": \"0.7.0-beta.13\", \"xterm\": \"4.19.0-beta.67\", \"xterm-addon-search\": \"0.9.0-beta.41\", \"xterm-addon-serialize\": \"0.7.0-beta.15\", \"xterm-addon-unicode11\": \"0.4.0-beta.3\", \"xterm-addon-webgl\": \"0.12.0-beta.41\", \"xterm-headless\": \"4.19.0-beta.60\", \"xterm-addon-webgl\": \"0.12.0-beta.43\", \"xterm-headless\": \"4.19.0-beta.67\", \"yauzl\": \"^2.9.2\", \"yazl\": \"^2.4.3\" },"} {"_id":"q-en-vscode-a53f29b803418bf6ec0a54d89649f708ad9bab575e1a1f865daf025bf7b5252b","text":"} this.focus(); this._onWillPaste.fire(currentText); this.xterm.raw.paste(currentText); this._onDidPaste.fire(currentText); } async sendText(text: string, shouldExecute: boolean, bracketedPasteMode?: boolean): Promise {"} {"_id":"q-en-vscode-a5400b37a3c5c1aee4453ee4e6ea7b6eac3bd4dbb90b5cdddf393dc96bb2a714","text":"this._editorWidget.updateOptions({ ariaLabel: provider.options.ariaLabel }); this._editorWidget.focus(); }); return toDisposable(() => provider.onClose()); return toDisposable(() => { }); } private _layout(): void {"} {"_id":"q-en-vscode-a569b9a03b736b9093e1062576be1157d1eb76bfc16d4456a6c5e710a8d43db6","text":"private readonly disposables: Disposable[] = []; constructor(private readonly repository: Repository) { this.disposables.push(window.registerFileDecorationProvider(this)); repository.historyProvider.onDidChangeCurrentHistoryItemGroup(this.onDidChangeCurrentHistoryItemGroup, this, this.disposables); this.disposables.push( window.registerFileDecorationProvider(this), runAndSubscribeEvent(repository.historyProvider.onDidChangeCurrentHistoryItemGroup, () => this.onDidChangeCurrentHistoryItemGroup()) ); } private async onDidChangeCurrentHistoryItemGroup(): Promise {"} {"_id":"q-en-vscode-a5834273ef8bdb7428c0152cd706a65e6082739f93ee2c8fb52d4bbd03dad33e","text":"@IExplorerService explorerService: IExplorerService, @IUriIdentityService uriIdentityService: IUriIdentityService, @IProductService private readonly productService: IProductService, @IPathService pathService: IPathService @IPathService pathService: IPathService, @IConfigurationService configurationService: IConfigurationService, ) { super(telemetryService, fileService, paneCompositeService, instantiationService, contextService, storageService, textResourceConfigurationService, editorService, themeService, editorGroupService, textFileService, explorerService, uriIdentityService, pathService); super(telemetryService, fileService, paneCompositeService, instantiationService, contextService, storageService, textResourceConfigurationService, editorService, themeService, editorGroupService, textFileService, explorerService, uriIdentityService, pathService, configurationService); } protected override handleSetInputError(error: Error, input: FileEditorInput, options: ITextEditorOptions | undefined): Promise {"} {"_id":"q-en-vscode-a5bbbed013b4b2c19abb213419efea295ec7b3d35fb50527fd9d6fca38eff8f2","text":"setGroup(group: IEditorGroup | undefined) { this._group = group; if (group?.scopedContextKeyService) { this._terminalInstance?.setParentContextKeyService(group.scopedContextKeyService); } } get group(): IEditorGroup | undefined {"} {"_id":"q-en-vscode-a657149fb6b9a7187fc015e1e18a953e8ef64b9d5824011f44a1837dc5327dbd","text":"this._register(dom.addStandardDisposableListener(this._contentDomNode.domNode, 'keydown', (e) => { if (e.keyCode === KeyCode.Escape) { this.hide(); instance.focus(); } })); this._register(instance.onDidFocus(() => this.hide()));"} {"_id":"q-en-vscode-a65a4f6da0e350f23926aa83d4746fdd1e269dd3eec5caac8366237e0c99adac","text":"confirmDeleteRunningCell: 'notebook.confirmDeleteRunningCell', remoteSaving: 'notebook.experimental.remoteSave', gotoSymbolsAllSymbols: 'notebook.gotoSymbols.showAllSymbols', cellExecutionScroll: 'notebook.revealNextOnExecuteBehavior' scrollToRevealCell: 'notebook.scrolling.revealCellBehavior', anchorToFocusedCell: 'notebook.scrolling.anchorToFocusedCell' } as const; export const enum CellStatusbarAlignment {"} {"_id":"q-en-vscode-a6835b3401a9b52930fa7339dede81292f265cc0175b6081227f1bbef3f99697","text":"} private writeNotice(terminal: IDetachedTerminalInstance, str: string) { terminal.xterm.write(`x1b[2m${str}x1b[0m`); terminal.xterm.write(formatMessageForTerminal(str)); } private attachTerminalToDom(terminal: IDetachedTerminalInstance) {"} {"_id":"q-en-vscode-a69e9b2edc9d8ac9bd1ba2effb575d237ffd8d019e41998376d94ba452058f54","text":"margin-top: -1px; } .codicon-debug-breakpoint.codicon-debug-stackframe-focused::after, .codicon-debug-breakpoint.codicon-debug-stackframe::after { content: 'eb8a'; position: absolute; } .monaco-editor .debug-top-stack-frame-column { font: normal normal normal 16px/1 codicon; text-rendering: auto;"} {"_id":"q-en-vscode-a6eea16c54ddcfa7c2c88110cae5f3c985da9f0fd3106a32f432d7b6ca34c2e7","text":"* Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { VSBuffer } from 'vs/base/common/buffer'; import { MarshalledObject } from 'vs/base/common/marshalling'; import { MarshalledId } from 'vs/base/common/marshallingIds'; import { URI, UriComponents } from 'vs/base/common/uri';"} {"_id":"q-en-vscode-a6f6b64271487b3d13ea814d2b0bca4f9043d95b73699b030abe3fd7b9d18ee9","text":"Object.keys(this._sessionRestoredRecommendations).forEach(x => output[x.toLowerCase()] = { reasonId: this._sessionRestoredRecommendations[x].reasonId, reasonText: localize('restoredRecommendation', \"You will receive recommendations for this extension in your future VS Code sessions.\") reasonText: this._sessionRestoredRecommendations[x].reasonText }); return output;"} {"_id":"q-en-vscode-a705aac91927f32dda316e6632c32d93d403839efe3eb287a757b888ce6f55ee","text":"import { NotebookLayoutInfo } from 'vs/workbench/contrib/notebook/browser/notebookViewEvents'; import { ICellExecutionStateChangedEvent } from 'vs/workbench/contrib/notebook/common/notebookExecutionStateService'; export const outputDisplayLimit = 500; export class CodeCellViewModel extends BaseCellViewModel implements ICellViewModel { readonly cellKind = CellKind.Code;"} {"_id":"q-en-vscode-a7257970826e1bb76f706202689eeb325b9048aca33994716bf769f59f859176","text":"import { Webview } from 'vs/workbench/contrib/webview/browser/webview'; import { ICompositeCodeEditor, IEditor } from 'vs/editor/common/editorCommon'; import { NotImplementedError } from 'vs/base/common/errors'; import { Schemas } from 'vs/base/common/network'; export class TestCell extends NotebookCellTextModel { constructor("} {"_id":"q-en-vscode-a761d9dab5647a4ce4397edab2f0bc451b7951bbd096ef801571d8551bdac489","text":"} } } getItems(): CodeLensItem[] { return this._data; } } registerThemingParticipant((theme, collector) => {"} {"_id":"q-en-vscode-a773bc1ff6efb25b8f4002b6939f5cfc95cd40323b0708ef9055e0a593682281","text":"import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; import { Orientation, Sizing, SplitView } from 'vs/base/browser/ui/splitview/splitview'; import { Color } from 'vs/base/common/color'; import { ILanguageService } from 'vs/editor/common/languages/language'; export const enum SettingsFocusContext { Search,"} {"_id":"q-en-vscode-a77f1c8bd857b97085af1b0b96ff872fddb15f55a69660d25570ef23b4c79ac8","text":"private async addOrUpdateAccount(providerId: string, account: AuthenticationSessionAccount): Promise { let accounts = this.groupedAccounts.get(providerId); if (accounts) { const existingAccount = accounts.find(a => a.id === account.id); if (existingAccount) { // Update the label if it has changed if (existingAccount.label !== account.label) { existingAccount.label = account.label; } return; } } else { if (!accounts) { accounts = []; this.groupedAccounts.set(providerId, accounts); } const sessionFromEmbedder = await this.sessionFromEmbedder.value; // If the session stored from the embedder allows sign out, then we can treat it and all others as sign out-able let canSignOut = !!sessionFromEmbedder?.canSignOut; if (!canSignOut) { if (sessionFromEmbedder?.id) { const sessions = (await this.authenticationService.getSessions(providerId)).filter(s => s.account.id === account.id); canSignOut = !sessions.some(s => s.id === sessionFromEmbedder.id); } else { // The default if we don't have a session from the embedder is to allow sign out canSignOut = true; } let canSignOut = true; if ( sessionFromEmbedder\t\t\t\t\t\t\t\t\t\t\t\t// if we have a session from the embedder && !sessionFromEmbedder.canSignOut\t\t\t\t\t\t\t\t// and that session says we can't sign out && (await this.authenticationService.getSessions(providerId))\t// and that session is associated with the account we are adding/updating .some(s => s.id === sessionFromEmbedder.id && s.account.id === account.id ) ) { canSignOut = false; } accounts.push({ ...account, canSignOut }); const existingAccount = accounts.find(a => a.label === account.label); if (existingAccount) { // if we have an existing account and we discover that we // can't sign out of it, update the account to mark it as \"can't sign out\" if (!canSignOut) { existingAccount.canSignOut = canSignOut; } } else { accounts.push({ ...account, canSignOut }); } } private removeAccount(providerId: string, account: AuthenticationSessionAccount): void {"} {"_id":"q-en-vscode-a793d83ff600eb937de34aeb892d7f3b61a34d650ec989e731d4136c7eb885ef","text":"let message = localize('extensionEnvironmentContributionInfoActive', \"The following extensions have contributed to this terminal's environment:\"); message += 'n'; for (const ext of extSet) { message += `n- `${ext}``; message += `n- `${getExtensionName(ext, this._extensionService)}``; } return message; }"} {"_id":"q-en-vscode-a7e4790d0aa245ca2c2f8e1f4b78cbb4c0041c4609d0b925568be82b3caa161e","text":"justify-content: center; align-items: center; font-size: 14px; line-height: 16px; border-radius: 8px; }"} {"_id":"q-en-vscode-a7ff9b5995e9c5c16f203ba50aec615c2145ee1dbf2b670bec227d2d2693967c","text":"this.render(previousRenderRange, e.scrollTop, e.height, e.scrollLeft, e.scrollWidth); if (this.supportDynamicHeights) { this._rerender(e.scrollTop, e.height); // Don't update scrollTop from within an scroll event // so we don't break smooth scrolling. #104144 this._rerender(e.scrollTop, e.height, false); } } catch (err) { console.error('Got bad scroll event:', e);"} {"_id":"q-en-vscode-a80e0310fa4d624d0a3d627299e318940ac6d1555138a714a66718a8c614f2f1","text":"mkdir -p %{buildroot}/usr/share/pixmaps cp -r usr/share/@@NAME@@/* %{buildroot}/usr/share/@@NAME@@ cp -r usr/share/applications/@@NAME@@.desktop %{buildroot}/usr/share/applications cp -r usr/share/applications/@@NAME@@-url-handler.desktop %{buildroot}/usr/share/applications cp -r usr/share/pixmaps/@@NAME@@.png %{buildroot}/usr/share/pixmaps %post"} {"_id":"q-en-vscode-a8160067ba717ca82c24be2e5f2d81d570ecff8648056802222806ad7d2b6d06","text":"toggled: { condition: PanelVisibleContext, title: localize('toggle panel', \"Panel\"), mnemonicTitle: localize('toggle panel mnemonic', \"&&Panel\"), mnemonicTitle: localize({ key: 'toggle panel mnemonic', comment: ['&& denotes a mnemonic'] }, \"&&Panel\"), }, f1: true, category: Categories.View,"} {"_id":"q-en-vscode-a8267389d53f80ef7b3cf3ece5f233938168d5b9093846aeb6154bf9fe05c664","text":"} extensionsToInstall.push({ extension: gallery, options: { ...installOptions, installGivenVersion: !!version, isApplicationScoped: installedExtension?.isApplicationScoped }, options: { ...installOptions, installGivenVersion: !!version, isApplicationScoped: installOptions.isApplicationScoped || installedExtension?.isApplicationScoped }, }); }));"} {"_id":"q-en-vscode-a837bc7f3bb28a87205ef248e1d6cc1b4a0c2d01b7070e062f49346d973e46eb","text":"return this.getView(OpenEditorsView.ID); } override setVisible(visible: boolean): void { this.viewletVisibleContextKey.set(visible); super.setVisible(visible); } override focus(): void { const explorerView = this.getView(VIEW_ID); if (explorerView && this.panes.every(p => !p.isExpanded())) {"} {"_id":"q-en-vscode-a88ea670d7d0e5c97a0094f5c209e6b98cf8ed99fe52854af7fa2b3b0ac15f83","text":"/** As xterm reads from DOM, space in that case is nonbreaking char ASCII code - 160, replacing space with nonBreakningSpace or space ASCII code - 32. */ export const lineAndColumnClause = [ '(([^:s()<>'\"[]]*) ((d+))(:(d+)))', // (file path) 336:9 [see #140780] '((S*)['\"], line ((d+)( column (d+))?))', // \"(file path)\", line 45 [see #40468] '((S*)['\"],((d+)(:(d+))?))', // \"(file path)\",45 [see #78205] '((S*) on line ((d+)(, column (d+))?))', // (file path) on line 8, column 13"} {"_id":"q-en-vscode-a8b4fc6fd3e31bf0257ebb7f1416f01b29895d200b1affe4aaa4f1b876bb677f","text":"}); test('get and forEach should work (scope)', () => { // TODO: Remove cast once `envCollectionWorkspace` API is finalized. const collection = extensionContext.environmentVariableCollection as GlobalEnvironmentVariableCollection; const collection = extensionContext.environmentVariableCollection; disposables.push({ dispose: () => collection.clear() }); const scope = { workspaceFolder: { uri: Uri.file('workspace1'), name: 'workspace1', index: 0 } }; const scopedCollection = collection.getScoped(scope);"} {"_id":"q-en-vscode-a8b7dc999eabfd57e0e3b92accf7d6718861a9bc164f5820912cf3e973c768dc","text":"this.feedbackForm = $form.getHTMLElement(); $('h2.title').text(nls.localize(\"label.sendASmile\", \"Tweet us your feedback\")).appendTo($form); $('h2.title').text(nls.localize(\"label.sendASmile\", \"Tweet us your feedback.\")).appendTo($form); this.invoke($('div.cancel').attr('tabindex', '0'), () => { this.hide();"} {"_id":"q-en-vscode-a8c7b690128a9339c10ca2528cdc20c06b3fe9071ffc30d9bde84ef886711758","text":"private _focusedStickyElementIndex: number = -1; private _enabled = false; private _focused = false; private _positionRevealed = false; private _onMouseDown = false; constructor( private readonly _editor: ICodeEditor,"} {"_id":"q-en-vscode-a8dff434457b55b62430ae774cc7357aa9585150fb6de3b138581fc052b7a649","text":"} } for (const [profileName, value] of Object.entries(configProfiles || {})) { applyConfigProfilesToMap(configProfiles, detectedProfiles); return await transformToTerminalProfiles(detectedProfiles.entries(), statProvider, logService, variableResolver, workspaceFolder); } function applyConfigProfilesToMap(configProfiles: { [key: string]: ITerminalProfileObject } | undefined, profilesMap: Map) { if (!configProfiles) { return; } for (const [profileName, value] of Object.entries(configProfiles)) { if (value === null) { detectedProfiles.delete(profileName); profilesMap.delete(profileName); } else { detectedProfiles.set(profileName, value); profilesMap.set(profileName, value); } } return await transformToTerminalProfiles(detectedProfiles.entries(), statProvider, logService, variableResolver, workspaceFolder); } async function validateProfilePaths(label: string, potentialPaths: string[], statProvider: IStatProvider, args?: string[] | string, logService?: ILogService): Promise {"} {"_id":"q-en-vscode-a9239ba4d59e1fece5e7614cdc3fd2b844ac3bd525886c9d3252c600cf0b3c97","text":"width: 0, height: 0 }, enableDropIntoEditor: true, }, { contributions: this.notebookEditor.creationOptions.cellEditorContributions });"} {"_id":"q-en-vscode-a9353744232434048b808a26f5f6616dc9a129df30bbc8cf9e28d15c8c7aa723","text":"this.settings[LoadedScriptsView.MEMENTO] = !this.isExpanded(); super.shutdown(); } dispose(): void { super.dispose(); this.tree = undefined; } } // A good example of data source, renderers, action providers and accessibilty providers can be found in the callStackView.ts"} {"_id":"q-en-vscode-a93fcc8a1cccfd17a5d74787b7615e1f387a688ac9a31261ea99842577160e55","text":"run: () => this.toggleViewVisibility(viewDescriptor.id) })); if (result.length && viewToggleActions.length) { result.push(new Separator()); } result.push(...viewToggleActions); const parentActions = this.getViewletContextMenuActions(); if (viewToggleActions.length && parentActions.length) { if (result.length && parentActions.length) { result.push(new Separator()); } result.push(...parentActions); return result; }"} {"_id":"q-en-vscode-a940c4061b9965f2682d2e85e58c6fcb45389e973e58178bbf2b2dc096ddbece","text":"if (extensions.length) { extensions = await this.checkAdditionalBuiltinExtensions(extensions); } if (extensions.length) { this.logService.info('Found additional builtin gallery extensions in env', extensions); } if (extensionLocations.length) { this.logService.info('Found additional builtin location extensions in env', extensionLocations.map(e => e.toString())); } return { extensions, extensionsToMigrate, extensionLocations }; })(); }"} {"_id":"q-en-vscode-a97c1f8b4b9249ccccec47e0689a5e4f02071b26fd50633de17451382fdc45e7","text":"this._allMenuItems = items; this._list.splice(0, this._list.length, this._allMenuItems); this.focusNext(); if (this._list.length) { this.focusNext(); } } private focusCondition(element: IListMenuItem): boolean {"} {"_id":"q-en-vscode-a9898716be587a518135dc56cfac964b12325d7fa8eb710a02ef4a4f0b4f2dbf","text":"margin-left: 6px; } .extension-list-item .monaco-action-bar > .actions-container > .action-item.action-dropdown-item > .extension-action.label { .extension-list-item .monaco-action-bar > .actions-container > .action-item.action-dropdown-item:not(.empty) > .extension-action.label { border-right-width: 0; }"} {"_id":"q-en-vscode-a9a94ee827eeef3b75d3bbfbadebe409761622aedfb551eda04225d699c1b640","text":"return Promise.all(sessions.map(s => disconnect ? s.disconnect(undefined, suspend) : s.terminate())); } private variableSubstitutionQueue = new Queue(); private async substituteVariables(launch: ILaunch | undefined, config: IConfig): Promise { const dbg = this.adapterManager.getDebugger(config.type); if (dbg) {"} {"_id":"q-en-vscode-aa4f74b29222114376e1f82466aff12c9cd6f81eb79c9d98333a0c9fb182a98d","text":"return this.ui.keyMods; } get valueSelection() { const selection = this.ui.inputBox.getSelection(); if (!selection) { return undefined; } return [selection.start, selection.end]; } set valueSelection(valueSelection: Readonly<[number, number]> | undefined) { set valueSelection(valueSelection: Readonly<[number, number]>) { this._valueSelection = valueSelection; this.valueSelectionUpdated = true; this.update();"} {"_id":"q-en-vscode-aa59b859e221f9fc9f432e4c798ae29d3ae60c0533c4ff428871a8c8ab50742b","text":"while (true) { // Details of the id can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#adding-an-id-field, // & here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#updating-older-formats const id = uuid().replace(/-/g, '').substring(0, 8); const id = generateUuid().replace(/-/g, '').substring(0, 8); let duplicate = false; for (let index = 0; index < notebook.cellCount; index++) { const cell = notebook.cellAt(index);"} {"_id":"q-en-vscode-aa96992e59e512b9cf359371afe8ec76c3371fb31e5356dc9148f01f2b5b38c7","text":"// https://github.com/microsoft/vscode/issues/59921 /** * The parameters of a query for text search. * The parameters of a query for text search. All optional booleans default to `false`. */ export interface TextSearchQueryNew { /** * The text pattern to search for. * * If explicitly contains a newline character (`n`), the default search behavior * will automatically enable {@link isMultiline}. */ pattern: string; /** * Whether or not `pattern` should match multiple lines of text. * * If using the default search provider, this will be interpreted as `true` if * `pattern` contains a newline character (`n`). */ isMultiline?: boolean; /** * Whether or not `pattern` should be interpreted as a regular expression. * * If using the default search provider, this will be interpreted case-insensitively * if {@link isCaseSensitive} is `false` or not set. */ isRegExp?: boolean; /** * Whether or not the search should be case-sensitive. * * If using the default search provider, this can be affected by the `search.smartCase` setting. * See the setting description for more information. */ isCaseSensitive?: boolean; /** * Whether or not to search for whole word matches only. * * If enabled, the default search provider will check for boundary characters * (regex pattern `b`) surrounding the {@link pattern} to see whether something * is a word match. */ isWordMatch?: boolean; }"} {"_id":"q-en-vscode-aabc9d643b68cb419f3e4e068c4de310952e6a21da63a1db8fdc4721e7d3dfb9","text":"const extension = await this.toScannedExtension(webExtension, true); if (extension.isValid || !scanOptions?.skipInvalidExtensions) { result.push(extension); } else { this.logService.info(`Skipping invalid additional builtin extension ${webExtension.identifier.id}`); } } catch (error) { this.logService.info(`Error while fetching the additional builtin extension ${location.toString()}.`, getErrorMessage(error));"} {"_id":"q-en-vscode-aac2c9f8f989511485247d84d4eb6097a561fab42c7b66321297ad006c7d9091","text":"integrity sha512-ynEGytvgTb6HVSUwPJIAZgiHQmPCx8bZ8w5um5Lz+q5DjP0Zj8wTFhQpyg8xaMvefDytw2+HH5yzqS+FhsR28A== vscode-languageserver-types@^3.15.1: version \"3.16.0\" resolved \"https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz#ecf393fc121ec6974b2da3efb3155644c514e247\" integrity sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA== vscode-nls@^5.0.0: version \"5.0.0\" resolved \"https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-5.0.0.tgz#99f0da0bd9ea7cda44e565a74c54b1f2bc257840\" integrity sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA== version \"3.17.2\" resolved \"https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.2.tgz#b2c2e7de405ad3d73a883e91989b850170ffc4f2\" integrity sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA== vscode-uri@^2.1.2: version \"2.1.2\""} {"_id":"q-en-vscode-aadffce27520f8915fc905c0e615770dfd83635e08ba0c6c3c3ea031085f1900","text":"let match = url.match(SshProtocolMatcher); if (match) { return stripLowLevelDomains(match[2]); } else { return null; } } try {"} {"_id":"q-en-vscode-aae22642d51d3c7e7ddb9ab93a59ade2e0143c4781e9afdf7b791d2bea313bef","text":".extension-list-item > .details > .description { padding-right: 11px; line-height: normal; color: var(--vscode-descriptionForeground); }"} {"_id":"q-en-vscode-aafd0455ac87f0965670b393260185b676e739f157139468ccaaa376b30f4fca","text":"return; } if (e.browserEvent.defaultPrevented) { return; } const focus = this.list.getFocus(); this.list.setSelection(focus, e.browserEvent); e.browserEvent.preventDefault(); } private changeSelection(e: IListMouseEvent | IListTouchEvent): void {"} {"_id":"q-en-vscode-aaffe381f6ca5a33b375f580427ccc61d3afa6a671c8ed01914a7cb42e1fa22f","text":"import { IChatEditorOptions } from 'vs/workbench/contrib/chat/browser/chatEditor'; import { ChatEditorInput } from 'vs/workbench/contrib/chat/browser/chatEditorInput'; import { ChatViewPane } from 'vs/workbench/contrib/chat/browser/chatViewPane'; import { ChatAgentLocation } from 'vs/workbench/contrib/chat/common/chatAgents'; import { CONTEXT_CHAT_ENABLED, CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, CONTEXT_CHAT_LOCATION, CONTEXT_IN_CHAT_INPUT, CONTEXT_IN_CHAT_SESSION } from 'vs/workbench/contrib/chat/common/chatContextKeys'; import { CONTEXT_CHAT_ENABLED, CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, CONTEXT_IN_CHAT_INPUT, CONTEXT_IN_CHAT_SESSION } from 'vs/workbench/contrib/chat/common/chatContextKeys'; import { IChatDetail, IChatService } from 'vs/workbench/contrib/chat/common/chatService'; import { IChatRequestViewModel, IChatResponseViewModel, isRequestVM } from 'vs/workbench/contrib/chat/common/chatViewModel'; import { IChatWidgetHistoryService } from 'vs/workbench/contrib/chat/common/chatWidgetHistoryService';"} {"_id":"q-en-vscode-ab0d8ca0f69fa5bc61320f54c3d39889a42f46904916ecc55518eee60c77c508","text":"private _startBarrier: Barrier; private _persistentTerminalId: number; public get id(): number { return this._persistentTerminalId; } private _inReplay = false; constructor( readonly id: number, private readonly _instanceId: number, readonly shouldPersist: boolean, private readonly _shellLaunchConfig: IShellLaunchConfig, private readonly _activeWorkspaceRootUri: URI | undefined,"} {"_id":"q-en-vscode-ab5c64484004ad13b825e6684d8acb0f83b5d5f9a9eff518c2951ab9c106895f","text":"if (OpenPrivacyStatementUrlAction.AVAILABE) { registerAction2(OpenPrivacyStatementUrlAction); } registerAction2(GetStartedWithAccessibilityFeatures); "} {"_id":"q-en-vscode-ab97bcf9f1c9a7ab4d651660c971c916281beed6efcd6cd6189b28d3504489e3","text":"export const statesInOrder = Object.keys(statePriority).map(s => Number(s) as TestResultState).sort(cmpPriority); export const isRunningState = (s: TestResultState) => s === TestResultState.Queued || s === TestResultState.Running; /** * Some states are considered terminal; once these are set for a given test run, they * are not reset back to a non-terminal state, or to a terminal state with lower * priority. */ export const terminalStatePriorities: { [key in TestResultState]?: number } = { [TestResultState.Passed]: 0, [TestResultState.Skipped]: 1, [TestResultState.Failed]: 2, [TestResultState.Errored]: 3, }; "} {"_id":"q-en-vscode-abbabee601a03dcf56922220eb2652d850be5fffd652aff896dd8f7a68baebdc","text":"renderedWordCount: wordCountResult.actualWordCount, lastRenderTime: Date.now(), isFullyRendered: wordCountResult.isFullString, originalMarkdown: part.content, }; wordCountResults[index] = wordCountResult; } else if (!renderedPart.isFullyRendered && !wordCountResult) {"} {"_id":"q-en-vscode-abdaf708dfd7e56711cd2525a20ac508162cfb3d9857d364429c83e75fbf8966","text":"constructor(private repository: Repository) { this.disposables.push( window.registerFileDecorationProvider(this), repository.onDidRunGitStatus(this.onDidRunGitStatus, this) runAndSubscribeEvent(repository.onDidRunGitStatus, () => this.onDidRunGitStatus()) ); }"} {"_id":"q-en-vscode-abe0a3fd3bf45302cfefd2d07fe330826766f27ddc93a631385f866b648ed390","text":"const message = localize('confirm force delete branch', \"The branch '{0}' is not fully merged. Delete anyway?\", name); const yes = localize('delete branch', \"Delete Branch\"); const pick = await window.showWarningMessage(message, yes); const pick = await window.showWarningMessage(message, { modal: true }, yes); if (pick === yes) { await run(true);"} {"_id":"q-en-vscode-ac097299f4304b00e3240cf42cf60c2925fbf0bb2b420685f07fae5e036194ac","text":"private async updateCustomBuiltinExtensionsCache(): Promise { if (!this._updateCustomBuiltinExtensionsCachePromise) { this._updateCustomBuiltinExtensionsCachePromise = (async () => { // Clear Cache await this.writeCustomBuiltinExtensionsCache(() => []); const { extensions } = await this.readCustomBuiltinExtensionsInfoFromEnv(); if (!extensions.length) { return []; } const galleryExtensionsMap = await this.getExtensionsWithDependenciesAndPackedExtensions(extensions); const missingExtensions = extensions.filter(({ id }) => !galleryExtensionsMap.has(id.toLowerCase())); if (missingExtensions.length) { this.logService.info('Skipping the additional builtin extensions because their compatible versions are not found.', missingExtensions); } this.logService.info('Updating additional builtin extensions cache'); const webExtensions: IWebExtension[] = []; await Promise.all([...galleryExtensionsMap.values()].map(async gallery => { try { webExtensions.push(await this.toWebExtensionFromGallery(gallery, { isPreReleaseVersion: gallery.properties.isPreReleaseVersion, preRelease: gallery.properties.isPreReleaseVersion, isBuiltin: true })); } catch (error) { this.logService.info(`Ignoring additional builtin extension ${gallery.identifier.id} because there is an error while converting it into web extension`, getErrorMessage(error)); const { extensions } = await this.readCustomBuiltinExtensionsInfoFromEnv(); if (extensions.length) { const galleryExtensionsMap = await this.getExtensionsWithDependenciesAndPackedExtensions(extensions); const missingExtensions = extensions.filter(({ id }) => !galleryExtensionsMap.has(id.toLowerCase())); if (missingExtensions.length) { this.logService.info('Skipping the additional builtin extensions because their compatible versions are not found.', missingExtensions); } })); await Promise.all([...galleryExtensionsMap.values()].map(async gallery => { try { webExtensions.push(await this.toWebExtensionFromGallery(gallery, { isPreReleaseVersion: gallery.properties.isPreReleaseVersion, preRelease: gallery.properties.isPreReleaseVersion, isBuiltin: true })); } catch (error) { this.logService.info(`Ignoring additional builtin extension ${gallery.identifier.id} because there is an error while converting it into web extension`, getErrorMessage(error)); } })); } await this.writeCustomBuiltinExtensionsCache(() => webExtensions); return webExtensions; })();"} {"_id":"q-en-vscode-ac28cfa3aecaa2b3f7351fa85178c788c6d8155de508f02495fa6fb879096970","text":"import { DisassemblyViewInput } from 'vs/workbench/contrib/debug/common/disassemblyViewInput'; import { DebugLifecycle } from 'vs/workbench/contrib/debug/common/debugLifecycle'; import { Icon } from 'vs/platform/action/common/action'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; const debugCategory = nls.localize('debugCategory', \"Debug\"); registerColors();"} {"_id":"q-en-vscode-ac34bb2d6d2761710c8c754d515f54e77781452ef0513f681b7e5d3636b268ab","text":"import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { EditorAction, EditorCommand, EditorContributionInstantiation, MultiEditorAction, registerEditorAction, registerEditorCommand, registerEditorContribution, registerMultiEditorAction, ServicesAccessor } from 'vs/editor/browser/editorExtensions'; import { EditorOption } from 'vs/editor/common/config/editorOptions'; import { overviewRulerRangeHighlight } from 'vs/editor/common/core/editorColorRegistry'; import { IRange } from 'vs/editor/common/core/range'; import { IEditorContribution } from 'vs/editor/common/editorCommon'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; import { OverviewRulerLane } from 'vs/editor/common/model'; import { CONTEXT_FIND_INPUT_FOCUSED, CONTEXT_FIND_WIDGET_VISIBLE, CONTEXT_REPLACE_INPUT_FOCUSED, FindModelBoundToEditorModel, FIND_IDS, ToggleCaseSensitiveKeybinding, TogglePreserveCaseKeybinding, ToggleRegexKeybinding, ToggleSearchScopeKeybinding, ToggleWholeWordKeybinding } from 'vs/editor/contrib/find/browser/findModel'; import { FindOptionsWidget } from 'vs/editor/contrib/find/browser/findOptionsWidget'; import { FindReplaceState, FindReplaceStateChangedEvent, INewFindReplaceState } from 'vs/editor/contrib/find/browser/findState';"} {"_id":"q-en-vscode-ac3ff60460bdde8bd82063835cca2b6122597141d4b2ef852e9d8f075babb33c","text":"public deregisterTokenType(id: string): void { delete this.tokenTypeById[id]; delete this.tokenStylingSchema.properties[id]; this.typeHierarchy = {}; this.typeHierarchy = Object.create(null); } public deregisterTokenModifier(id: string): void {"} {"_id":"q-en-vscode-ac7b1ab7fc6d54cdc6ef71666e58af4e730792fadea199c993737f2358f1e509","text":"'default': 'alwaysExpand' }, [OutlineConfigKeys.problemsEnabled]: { 'markdownDescription': localize('outline.showProblem', \"Show errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when `{0}` is off.\", `problems.visibility`), 'markdownDescription': localize('outline.showProblem', \"Show errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when it is off.\"), 'type': 'boolean', 'default': true }, [OutlineConfigKeys.problemsColors]: { 'markdownDescription': localize('outline.problem.colors', \"Use colors for errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when `{0}` is off.\", `problems.visibility`), 'markdownDescription': localize('outline.problem.colors', \"Use colors for errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when it is off.\"), 'type': 'boolean', 'default': true }, [OutlineConfigKeys.problemsBadges]: { 'markdownDescription': localize('outline.problems.badges', \"Use badges for errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when `{0}` is off.\", `problems.visibility`), 'markdownDescription': localize('outline.problems.badges', \"Use badges for errors and warnings on Outline elements. Overwritten by `#problems.visibility#` when it is off.\"), 'type': 'boolean', 'default': true },"} {"_id":"q-en-vscode-aca7540562f6a486feb409b4ddb82789807ef633500e2bef6345e91607b728af","text":"); })(); lineAlignments = optimizeSequenceDiffs(sequence1, sequence2, lineAlignments); const alignments: RangeMapping[] = []; const scanForWhitespaceChanges = (equalLinesCount: number) => {"} {"_id":"q-en-vscode-acd22292f0edf0453bca0cd9d891b1599761756a3a45c55c90e49192511cbce1","text":"import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ILogService } from 'vs/platform/log/common/log'; import { promiseWithResolvers } from 'vs/base/common/async'; import { shouldUseEnvironmentVariableCollection } from 'vs/platform/terminal/common/terminalEnvironment'; class CustomVariableResolver extends AbstractVariableResolverService { constructor("} {"_id":"q-en-vscode-ad32e2d084300c4bbd96ccd2678beff7c4f36a443c7ee2d72e3de04e487d4081","text":"const extension = await this.toScannedExtension(webExtension, false); if (extension.isValid || !scanOptions?.skipInvalidExtensions) { result.set(extension.identifier.id.toLowerCase(), extension); } else { this.logService.info(`Skipping invalid installed extension ${webExtension.identifier.id}`); } } return [...result.values()];"} {"_id":"q-en-vscode-ad447555d97c234233dc73517beaf3003940dfabc15bde48206728d0285186cb","text":"if (!(node instanceof ResolvableTreeItem) || !node.hasResolve) { if (resource && !node.tooltip) { return undefined; } else if (!node.tooltip) { } else if (node.tooltip === undefined) { return label; } else if (!isString(node.tooltip)) { return { markdown: node.tooltip, markdownNotSupportedFallback: resource ? undefined : renderMarkdownAsPlaintext(node.tooltip) }; // Passing undefined as the fallback for a resource falls back to the old native hover } else { } else if (node.tooltip !== '') { return node.tooltip; } else { return undefined; } }"} {"_id":"q-en-vscode-ad4c9ddc8c4d55ff4fe141a75f1adea5f9e2ba5d9555095e66507a401c5397db","text":"type: 'boolean', default: false, description: nls.localize('search.usePCRE2', \"Whether to use the PCRE2 regex engine in text search. This enables using some advanced regex features like lookbehind and backreferences. However, not all PCRE2 features are supported - only features that are also supported by JavaScript.\") }, 'search.actionsPosition': { type: 'string', enum: ['auto', 'right'], default: 'auto', description: nls.localize('search.actionsPosition', \"Controls whether to show actions at the end of match or always aligned to the right in wide panels.\") } } });"} {"_id":"q-en-vscode-ad60f944861830d2ea6931d696ca4417c959cece0ec0fe0ac2bdb8f13d1597a7","text":"*--------------------------------------------------------------------------------------------*/ import 'vs/css!./media/welcomeDialog'; import { IInstantiationService, createDecorator } from 'vs/platform/instantiation/common/instantiation'; import { ThemeIcon } from 'vs/base/common/themables'; import { createDecorator } from 'vs/platform/instantiation/common/instantiation'; import { InstantiationType, registerSingleton } from 'vs/platform/instantiation/common/extensions'; import { ILayoutService } from 'vs/platform/layout/browser/layoutService'; import { DisposableStore } from 'vs/base/common/lifecycle'; import { Dialog } from 'vs/base/browser/ui/dialog/dialog'; import { defaultButtonStyles, defaultCheckboxStyles, defaultDialogStyles, defaultInputBoxStyles } from 'vs/platform/theme/browser/defaultStyles'; import { $ } from 'vs/base/browser/dom'; import { renderLabelWithIcons } from 'vs/base/browser/ui/iconLabel/iconLabels'; import { ILinkDescriptor, Link } from 'vs/platform/opener/browser/link'; import { ILinkDescriptor } from 'vs/platform/opener/browser/link'; import { IDialogService } from 'vs/platform/dialogs/common/dialogs'; import { MarkdownString } from 'vs/base/common/htmlContent'; interface IWelcomeDialogItem { readonly title: string;"} {"_id":"q-en-vscode-ad7012abd85f720a040341c513f3d3dce22f5bf31e10f61f2df8f21b81b46b4c","text":"configurationRegistry.registerConfiguration(keyboardConfiguration); registerSingleton(IKeybindingService, WorkbenchKeybindingService); No newline at end of file registerSingleton(IKeybindingService, WorkbenchKeybindingService); "} {"_id":"q-en-vscode-ad98017cf53730b24ed52ed3a0695a2c0dc2694f805c3a3c6a08f1657463c596","text":"import * as nls from 'vs/nls'; import * as pfs from 'vs/base/node/pfs'; import * as platform from 'vs/base/common/platform'; import * as os from 'os'; import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { ILifecycleService } from 'vs/platform/lifecycle/common/lifecycle';"} {"_id":"q-en-vscode-ad9c1897c8ff358243720466600e4e81476b2362a5457d519fabb6c90f50b5e5","text":"disturl \"https://nodejs.org/dist\" target \"18.15.0\" ms_build_id \"229541\" ms_build_id \"234519\" runtime \"node\" build_from_source \"true\""} {"_id":"q-en-vscode-ada72359a05b2059a8874cfafba5ca43b6136fbd6171e0b0c15039be39c6403e","text":"import { Emitter, Event } from 'vs/base/common/event'; import { IHoverDelegate } from 'vs/base/browser/ui/hover/hoverDelegate'; import { IListVirtualDelegate } from 'vs/base/browser/ui/list/list'; import { IObjectTreeElement, ITreeNode, ITreeRenderer } from 'vs/base/browser/ui/tree/tree'; import { IObjectTreeElement, ITreeEvent, ITreeNode, ITreeRenderer } from 'vs/base/browser/ui/tree/tree'; import { localize } from 'vs/nls'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { WorkbenchObjectTree } from 'vs/platform/list/browser/listService';"} {"_id":"q-en-vscode-adba71abda67cc184ad25435ef05ec3c4efbd81af1788ee5848f3d00a91f4992","text":"import { IRecent, IRecentFile, IRecentFolder, IRecentlyOpened, IRecentWorkspace, isRecentFile, isRecentFolder, isRecentWorkspace, restoreRecentlyOpened, toStoreData } from 'vs/platform/workspaces/common/workspaces'; import { IWorkspaceIdentifier, WORKSPACE_EXTENSION } from 'vs/platform/workspace/common/workspace'; import { IWorkspacesManagementMainService } from 'vs/platform/workspaces/electron-main/workspacesManagementMainService'; import { ResourceMap } from 'vs/base/common/map'; export const IWorkspacesHistoryMainService = createDecorator('workspacesHistoryMainService');"} {"_id":"q-en-vscode-ade8aa39a0055bc973726d184aa76cb6caad1c7eb506e176a2a4949287085ba9","text":"horizontal: this.orientation === Orientation.HORIZONTAL ? (options.scrollbarVisibility ?? ScrollbarVisibility.Auto) : ScrollbarVisibility.Hidden }, this.scrollable)); // https://github.com/microsoft/vscode/issues/157737 const onDidScrollViewContainer = this._register(new DomEmitter(this.viewContainer, 'scroll')).event; this._register(onDidScrollViewContainer(_ => { const position = this.scrollableElement.getScrollPosition(); const scrollLeft = Math.abs(this.viewContainer.scrollLeft - position.scrollLeft) <= 1 ? undefined : this.viewContainer.scrollLeft; const scrollTop = Math.abs(this.viewContainer.scrollTop - position.scrollTop) <= 1 ? undefined : this.viewContainer.scrollTop; if (scrollLeft !== undefined || scrollTop !== undefined) { this.scrollableElement.setScrollPosition({ scrollLeft, scrollTop }); } })); this.onDidScroll = this.scrollableElement.onScroll; this._register(this.onDidScroll(e => { if (e.scrollTopChanged) {"} {"_id":"q-en-vscode-ae6307f030881699cef74c743a50e08c25d3ad818209efca45e0c8da720d0125","text":"import { IOpenerService } from 'vs/platform/opener/common/opener'; import { URI } from 'vs/base/common/uri'; const builtinExtensionIssueUrl = 'https://github.com/microsoft/vscode'; export class ReportExtensionIssueAction extends Action { private static readonly _id = 'workbench.extensions.action.reportExtensionIssue';"} {"_id":"q-en-vscode-ae9e0bcf5b13d63545b74983963cf7836a5f1fff45d6b38b05db5889bcb7058b","text":"\"contributes\": { \"languages\": [{ \"id\": \"ini\", \"extensions\": [ \".ini\", \".properties\", \".gitconfig\" ], \"filenames\": [\"config\", \".gitattributes\", \".gitconfig\", \"gitconfig\", \".editorconfig\"], \"extensions\": [ \".ini\"], \"aliases\": [ \"Ini\", \"ini\" ], \"configuration\": \"./language-configuration.json\" }], \"configuration\": \"./ini.language-configuration.json\" }, { \"id\": \"properties\", \"extensions\": [ \".properties\", \".gitconfig\" ], \"filenames\": [\"config\", \".gitattributes\", \".gitconfig\", \"gitconfig\", \".editorconfig\"], \"aliases\": [ \"properties\", \"properties\" ], \"configuration\": \"./properties.language-configuration.json\" } ], \"grammars\": [{ \"language\": \"ini\", \"scopeName\": \"source.ini\", \"path\": \"./syntaxes/Ini.plist\" \"path\": \"./syntaxes/Ini.tmLanuage\" },{ \"language\": \"properties\", \"scopeName\": \"source.properties\", \"path\": \"./syntaxes/properties.plist\" }] } }"} {"_id":"q-en-vscode-aea50bdcc64b835f68509a491436b846e71c9f1815fb0cf210e362e2fd6d75bb","text":"this._register(this._workingCopyService.registerWorkingCopy(workingCopyAdapter)); } capabilities = 0; capabilities = WorkingCopyCapabilities.None; async backup(): Promise> { if (this._notebook.supportBackup) {"} {"_id":"q-en-vscode-aebbc196b7c914acbb1b8ff69a8b75c3d6b80775381c98b37eb09bb2acbb5300","text":"this.update(); } set toggles(toggles: IQuickInputToggle[] | undefined) { // HACK: Filter out toggles here that are not concrete Toggle objects. This is to workaround // a layering issue as quick input's interface is in common but Toggle is in browser and // it requires a HTMLElement on its interface const concreteToggles = toggles?.filter(opts => opts instanceof Toggle) as Toggle[]; this.ui.inputBox.toggles = concreteToggles; } onDidChangeSelection = this.onDidChangeSelectionEmitter.event; onDidTriggerItemButton = this.onDidTriggerItemButtonEmitter.event;"} {"_id":"q-en-vscode-aed7d71c83830cf5cc605c8e987fb0f244a1188883545e6d4917f70ad0b2e448","text":"moveTo(thisCursor, 1, 8); moveTo(thisCursor, 3, 9, true); moveToBeginningOfLine(thisCursor, false); assertCursor(thisCursor, new Selection(1, 6, 1, 6)); assertCursor(thisCursor, new Selection(3, 5, 3, 5)); }); test('issue #17011: Shift+home/end now go to the end of the selection start's line, not the selection's end', () => { moveTo(thisCursor, 1, 8); moveTo(thisCursor, 3, 9, true); moveToBeginningOfLine(thisCursor, true); assertCursor(thisCursor, new Selection(1, 8, 3, 5)); }); // --------- move to end of line"} {"_id":"q-en-vscode-aee5d64bcf42e009a2434e5127b73c7156293b57ba44dfa1c93516a1cdf249f0","text":"array.push(workspaceIdentifier); this.saveSync(); } return workspaceIdentifier; } protected removeBackupPathSync(workspaceIdentifier: string, isEmptyWorkspace: boolean): void {"} {"_id":"q-en-vscode-af0c5b16f34f213e779f1ce5f72a4cc81d53b3307c7c20c7b817616e61d2edaf","text":"super(); const cellEditorOptions = this._register(new CellEditorOptions(this.notebookEditor.getBaseCellEditorOptions(viewCell.language), this.notebookEditor.notebookOptions, this.configurationService)); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 500 }); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: outputDisplayLimit }); this.cellParts = this._register(templateData.cellParts.concatContentPart([cellEditorOptions, this._outputContainerRenderer])); // this.viewCell.layoutInfo.editorHeight or estimation when this.viewCell.layoutInfo.editorHeight === 0"} {"_id":"q-en-vscode-af20c1b9b7252f1375946abcb5dccbff2bdffda3f5d89e8130e02f457dfe9b9a","text":"this._wrapperElement.classList.add('fixed-dims'); this._hasScrollBar = true; this._initDimensions(); // Always remove a row to make room for the scroll bar this._fixedRows = this._rows - 1; await this._resize(); this._terminalHasFixedWidth.set(true); if (!this._horizontalScrollbar) {"} {"_id":"q-en-vscode-af3646544a57de7e8ce4fa915b1b7cbfb35de5cc16ebf30769beef368f7b8784","text":"class NextMarkerAction extends MarkerNavigationAction { constructor() { super(true, { super(true, false, { id: 'editor.action.marker.next', label: nls.localize('markerAction.next.label', \"Go to Next Problem (Error, Warning, Info)\"), alias: 'Go to Next Error or Warning', precondition: EditorContextKeys.writable }); } } class PrevMarkerAction extends MarkerNavigationAction { constructor() { super(false, false, { id: 'editor.action.marker.prev', label: nls.localize('markerAction.previous.label', \"Go to Previous Problem (Error, Warning, Info)\"), alias: 'Go to Previous Error or Warning', precondition: EditorContextKeys.writable }); } } class NextMarkerInFilesAction extends MarkerNavigationAction { constructor() { super(true, true, { id: 'editor.action.marker.nextInFiles', label: nls.localize('markerAction.nextInFiles.label', \"Go to Next Problem in Files (Error, Warning, Info)\"), alias: 'Go to Next Error or Warning in Files', precondition: EditorContextKeys.writable, kbOpts: { kbExpr: EditorContextKeys.focus,"} {"_id":"q-en-vscode-af71d46cbd80069411174735c6281d18c39a7e8323363014070bb2652f683df7","text":"# OSC 633 ; E ; ; ST $Result = \"$([char]0x1b)]633;E;\" $Result += $(__VSCode-Escape-Value $CommandLine) $Result += \";$Nonce\" # Only send the nonce if the OS is not Windows 10 as it seems to echo to the terminal # sometimes if ($IsWindows10 -eq $false) { $Result += \";$Nonce\" } $Result += \"`a\" [Console]::Write($Result) # Command executed # OSC 633 ; C ST"} {"_id":"q-en-vscode-af94eff7bd9a7fc45263fe8f27baa05837b9da12fcf655930be03762cbb20970","text":"import { IMenuService, MenuId, IMenu, SubmenuItemAction, registerAction2, Action2, MenuItemAction, MenuRegistry } from 'vs/platform/actions/common/actions'; import { registerThemingParticipant, IThemeService } from 'vs/platform/theme/common/themeService'; import { MenuBarVisibility, getTitleBarStyle, IWindowOpenable, getMenuBarVisibility } from 'vs/platform/window/common/window'; import { ContextKeyExpr, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { IAction, Action, SubmenuAction, Separator, IActionRunner, ActionRunner, WorkbenchActionExecutedEvent, WorkbenchActionExecutedClassification } from 'vs/base/common/actions'; import { addDisposableListener, Dimension, EventType } from 'vs/base/browser/dom'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';"} {"_id":"q-en-vscode-afafcbbeeac93dd604d7ab87db691e433068faf7f737e61c111e56f8e7ee4e68","text":"import * as platform from 'vs/base/common/platform'; import * as dom from 'vs/base/browser/dom'; import * as paths from 'vs/base/common/paths'; import * as os from 'os'; import { Event, Emitter } from 'vs/base/common/event'; import { WindowsShellHelper } from 'vs/workbench/parts/terminal/node/windowsShellHelper'; import { Terminal as XTermTerminal, ISearchOptions } from 'vscode-xterm';"} {"_id":"q-en-vscode-b0056dab23b84e6b6341dc53882b5f728b70f936f8a2f60eda571ac0efd0c9bc","text":"], \"filenamePatterns\": [ \"tsconfig.*.json\", \"tsconfig-*.json\" \"jsconfig.*.json\", \"tsconfig-*.json\", \"jsconfig-*.json\" ] } ],"} {"_id":"q-en-vscode-b091fed3fa6eccdc45a15260d12a9052c570a21e64626f404c93ded5ffb73a2c","text":"'Selection': nls.localize({ key: 'mSelection', comment: ['&& denotes a mnemonic'] }, \"&&Selection\"), 'View': nls.localize({ key: 'mView', comment: ['&& denotes a mnemonic'] }, \"&&View\"), 'Go': nls.localize({ key: 'mGoto', comment: ['&& denotes a mnemonic'] }, \"&&Go\"), 'Terminal': nls.localize({ key: 'mTerminal', comment: ['&& denotes a mnemonic'] }, \"&&Terminal\"), 'Debug': nls.localize({ key: 'mDebug', comment: ['&& denotes a mnemonic'] }, \"&&Debug\"), 'Tasks': nls.localize({ key: 'mTasks', comment: ['&& denotes a mnemonic'] }, \"&&Tasks\"), 'Help': nls.localize({ key: 'mHelp', comment: ['&& denotes a mnemonic'] }, \"&&Help\")"} {"_id":"q-en-vscode-b0f746b4207e1845007e8f867f1268ec291326090fc116a4212889588ac82df7","text":"import { FileSystemProviderErrorCode, markAsFileSystemProviderError } from 'vs/platform/files/common/files'; import { RemoteAuthorityResolverErrorCode } from 'vs/platform/remote/common/remoteAuthorityResolver'; import { IRelativePatternDto } from 'vs/workbench/api/common/extHost.protocol'; import { CellEditType, ICellPartialMetadataEdit, IDocumentMetadataEdit, isTextStreamMime } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { CellEditType, ICellMetadataEdit, IDocumentMetadataEdit, isTextStreamMime } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { checkProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; import type * as vscode from 'vscode';"} {"_id":"q-en-vscode-b15a5a3a53c479d50682d6d651b2c8bae9db22d7a82b8677eb22b887995426c4","text":"} registerTerminalContribution(TerminalInitialHintContribution.ID, TerminalInitialHintContribution, false); class TerminalInitialHintWidget extends Disposable {"} {"_id":"q-en-vscode-b1881d07a1caa7e90b50e8c2f71cdcf2f3db070a0c18a7833541899289623974","text":"() => { }, (linkCandidates: string, cb: (result: { uri: URI, link: string, isDirectory: boolean } | undefined) => void) => { cb({ uri: URI.file('/'), link: linkCandidates[0], isDirectory: false }); } }, true ); // Write the text and wait for the parser to finish"} {"_id":"q-en-vscode-b1d2767b73b3acdebe61de1c083eadfa035ec044d01670372e26e4e2f5f4812b","text":"import { Action2, registerAction2 } from 'vs/platform/actions/common/actions'; import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { CATEGORIES } from 'vs/workbench/common/actions'; import { getNotebookEditorFromEditorPane, ICellViewModel, ICommonCellViewModelLayoutChangeInfo, INotebookEditor, INotebookEditorContribution } from 'vs/workbench/contrib/notebook/browser/notebookBrowser'; import { getNotebookEditorFromEditorPane, ICellViewModel, ICommonCellViewModelLayoutChangeInfo, INotebookDeltaCellStatusBarItems, INotebookEditor, INotebookEditorContribution } from 'vs/workbench/contrib/notebook/browser/notebookBrowser'; import { registerNotebookContribution } from 'vs/workbench/contrib/notebook/browser/notebookEditorExtensions'; import { NotebookEditorWidget } from 'vs/workbench/contrib/notebook/browser/notebookEditorWidget'; import { CellStatusbarAlignment, INotebookCellStatusBarItem } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookService'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService';"} {"_id":"q-en-vscode-b1d6bcd0f0c3239cb9b44f60667179b95c7320b3589ae5aa16a1690a1f35430a","text":"* Must be disposed as soon as the model detaches from the editor. */ export class ActiveGhostTextController extends Disposable { private readonly contextKeys = new GhostTextContextKeys(this.contextKeyService); public readonly contextKeys = new GhostTextContextKeys(this.contextKeyService); public readonly model = this._register(this.instantiationService.createInstance(GhostTextModel, this.editor)); public readonly widget = this._register(this.instantiationService.createInstance(GhostTextWidget, this.editor, this.model));"} {"_id":"q-en-vscode-b1dafd07089443215f981587bbccec94f1d925b912a9bb100608f9c220d4e85c","text":"\"makefile\" ], \"extensions\": [ \".mak\", \".mk\" ], \"filenames\": ["} {"_id":"q-en-vscode-b2079e441e1eb79b5ba5d52e874817cc0c68af1abe4d2e21dcf38eea6fa88c38","text":"\"tas-client-umd\": \"0.1.6\", \"vscode-oniguruma\": \"1.6.1\", \"vscode-textmate\": \"7.0.1\", \"xterm\": \"5.0.0-beta.32\", \"xterm-addon-canvas\": \"0.2.0-beta.15\", \"xterm-addon-search\": \"0.10.0-beta.3\", \"xterm-addon-unicode11\": \"0.4.0-beta.3\", \"xterm-addon-webgl\": \"0.13.0-beta.32\" \"xterm\": \"5.0.0-beta.35\", \"xterm-addon-canvas\": \"0.2.0-beta.17\", \"xterm-addon-search\": \"0.10.0-beta.5\", \"xterm-addon-unicode11\": \"0.4.0-beta.5\", \"xterm-addon-webgl\": \"0.13.0-beta.35\" } }"} {"_id":"q-en-vscode-b225564095084fb8ad3326c78995e9c4adfb1691020d424a4318a11a589a9cc3","text":"return; } if (this.size.width >= SearchView.WIDE_VIEW_SIZE) { dom.addClass(this.getContainer(), SearchView.WIDE_CLASS_NAME); } else { dom.removeClass(this.getContainer(), SearchView.WIDE_CLASS_NAME); } const actionsPosition = this.configurationService.getValue('search').actionsPosition; const useWideLayout = this.size.width >= SearchView.WIDE_VIEW_SIZE && actionsPosition === 'auto'; dom.toggleClass(this.getContainer(), SearchView.WIDE_CLASS_NAME, useWideLayout); this.searchWidget.setWidth(this.size.width - 28 /* container margin */);"} {"_id":"q-en-vscode-b243cb6c68aca9b7fc179128ff600375d0e4125c02ba2b298e2fa6c06685fe95","text":"import { SyncActionDescriptor } from 'vs/platform/actions/common/actions'; import { IMessageService, Severity } from 'vs/platform/message/common/message'; import product from 'vs/platform/node/product'; import IPackageConfiguration from 'vs/platform/node/package'; function ignore(code: string, value: T = null): (err: any) => TPromise { return err => err.code === code ? TPromise.as(value) : TPromise.wrapError(err);"} {"_id":"q-en-vscode-b2edef46af49ac4c58bc006763b39b2432adf152f9119aa5966eb0eade041014","text":"} const extensionsToUninstall: UninstallExtensionInfo[] = [{ extension: extension.local }]; const dependents: IExtension[] = []; for (const local of this.local) { if (local === extension) { continue; for (const packExtension of this.getAllPackExtensionsToUninstall(extension.local, this.local)) { if (!extensionsToUninstall.some(e => areSameExtensions(e.extension.identifier, packExtension.identifier))) { extensionsToUninstall.push({ extension: packExtension }); } if (!local.local) { continue; } if (local.dependencies.length === 0) { continue; } if (extension.extensionPack.some(id => areSameExtensions({ id }, local.identifier))) { continue; } if (dependents.some(d => d.extensionPack.some(id => areSameExtensions({ id }, local.identifier)))) { continue; } if (local.dependencies.some(dep => areSameExtensions(extension.identifier, { id: dep }))) { dependents.push(local); extensionsToUninstall.push({ extension: local.local }); } const dependents: IExtension[] = []; for (const { extension } of extensionsToUninstall) { for (const local of this.local) { if (!local.local) { continue; } if (areSameExtensions(local.identifier, extension.identifier)) { continue; } if (local.dependencies.length === 0) { continue; } if (extension.manifest.extensionPack?.some(id => areSameExtensions({ id }, local.identifier))) { continue; } if (dependents.some(d => d.extensionPack.some(id => areSameExtensions({ id }, local.identifier)))) { continue; } if (local.dependencies.some(dep => areSameExtensions(extension.identifier, { id: dep }))) { dependents.push(local); extensionsToUninstall.push({ extension: local.local }); } } }"} {"_id":"q-en-vscode-b31223dd6d1d3dc277d533bd8d50840782d504258ca238e035dced635a2d0a9d","text":"// Only consider requests for watching that are not // a child of an existing request path to prevent // duplication. // duplication. In addition, drop any request where // everything is excluded (via `**` glob). // // However, allow explicit requests to watch folders // that are symbolic links because the Parcel watcher // does not allow to recursively watch symbolic links. for (const request of requests) { if (request.excludes.includes(GLOBSTAR)) { continue; // path is ignored entirely (via `**` glob exclude) } if (requestTrie.findSubstr(request.path)) { try { const realpath = realpathSync(request.path);"} {"_id":"q-en-vscode-b31c06db83ef40b2492490b8c82f7966414b33d703e25f783d2be5b14b8a4f6c","text":"import { EDITOR_FONT_DEFAULTS } from 'vs/editor/common/config/editorOptions'; import { DEFAULT_LETTER_SPACING, DEFAULT_LINE_HEIGHT, TerminalCursorStyle, DEFAULT_COMMANDS_TO_SKIP_SHELL, SUGGESTIONS_FONT_WEIGHT, MINIMUM_FONT_WEIGHT, MAXIMUM_FONT_WEIGHT, DEFAULT_LOCAL_ECHO_EXCLUDE } from 'vs/workbench/contrib/terminal/common/terminal'; import { isMacintosh, isWindows, Platform } from 'vs/base/common/platform'; import { IJSONSchema } from 'vs/base/common/jsonSchema'; const terminalProfileSchema: IJSONSchema = { type: 'object', required: ['path'], properties: { path: { description: localize('terminalProfile.path', 'A single path to a shell executable or an array of paths that will be used as fallbacks when one fails.'), type: ['string', 'array'], items: { type: 'string' } }, args: { description: localize('terminalProfile.args', 'An optional set of arguments to run the shell executable with.'), type: 'array', items: { type: 'string' } } } }; export const terminalConfiguration: IConfigurationNode = { id: 'terminal',"} {"_id":"q-en-vscode-b33763bd6d478d3869d1273017775b79f0d36a5b645e9ebfede63bb2bc26a78c","text":"if (uri.path[0] === '/') { const root = vscode.workspace.getWorkspaceFolder(this.currentDocument!); if (root) { const fileUri = vscode.Uri.joinPath(root.uri, uri.fsPath); uri = fileUri.with({ scheme: uri.scheme, const fileUri = vscode.Uri.joinPath(root.uri, uri.fsPath).with({ fragment: uri.fragment, query: uri.query, }); // Ensure fileUri is relative by prepending `/` so that it uses the element URI // when resolving the absolute URL uri = vscode.Uri.parse('markdown-link:' + '/' + fileUri.toString(true).replace(/^S+?:/, fileUri.scheme)); } }"} {"_id":"q-en-vscode-b373fe9bc300343f9b52bb2edd08ac4097b8dbccf5d02c9799d04f4a3530ec8d","text":"} const srcDir = path.join(__dirname, 'src'); const outDir = path.join(outputRoot, 'out'); const outDir = path.join(outputRoot, 'notebook-out'); async function build() { await esbuild.build({"} {"_id":"q-en-vscode-b3ab74a7637bb0f8b65fb8cf3da9cbd64dd77588cf637fcc98e89f8436f06c37","text":"const items = new Set(this.view.getContext(respectMultiSelection)); items.forEach(item => { if (respectMultiSelection && this.view?.isItemCollapsed(item) && item.nestedChildren) { for (const child of item.nestedChildren) { items.add(child); try { if (respectMultiSelection && this.view?.isItemCollapsed(item) && item.nestedChildren) { for (const child of item.nestedChildren) { items.add(child); } } } catch { // We will error out trying to resolve collapsed nodes that have not yet been resolved. // So we catch and ignore them in the multiSelect context return; } });"} {"_id":"q-en-vscode-b450d2a4cf85715ed7a0bd4978150ff78f249d01b10e5434687e924a0bc7c0b9","text":"/** * Stores cell metadata. */ metadata?: Partial; metadata?: Partial & { vscode?: { languageId?: string } }; }"} {"_id":"q-en-vscode-b46114a20966d74daa9931e1eca9baa5d13ff47460bfa7a5059fdaf356ee0c01","text":"import { ServicesAccessor } from '../../../platform/instantiation/common/instantiation.js'; import { KeybindingWeight } from '../../../platform/keybinding/common/keybindingsRegistry.js'; import { Categories } from '../../../platform/action/common/actionCommonCategories.js'; import { ICommandService } from '../../../platform/commands/common/commands.js'; import { IAccessibilityService } from '../../../platform/accessibility/common/accessibility.js'; class KeybindingsReferenceAction extends Action2 {"} {"_id":"q-en-vscode-b4a3292b82352c695bc00d0d2cac19ca25afb1073ef6290c74978389df71e678","text":"menu: { id: MenuId.MenubarAppearanceMenu, group: '4_editor', order: 3 order: 4 } }); }"} {"_id":"q-en-vscode-b4cfac30c204fb2cfe870f9cf317801ee4ee2634befcdc2d6300db33ba4ba5ff","text":"import { AbstractURLService } from 'vs/platform/url/common/urlService'; import { Event } from 'vs/base/common/event'; import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService'; import { IOpenerService, matchesScheme } from 'vs/platform/opener/common/opener'; import { IProductService } from 'vs/platform/product/common/productService'; export interface IURLCallbackProvider {"} {"_id":"q-en-vscode-b4eaaa9e25bc1230bbb2479a28c38e9da4dcdc0f60b76bec5c7a17ec12ce7e89","text":"\"license\": \"MIT\", \"description\": \"Dependencies shared by all extensions\", \"dependencies\": { \"typescript\": \"5.4.3\" \"typescript\": \"5.4.4\" }, \"scripts\": { \"postinstall\": \"node ./postinstall.mjs\""} {"_id":"q-en-vscode-b536fd4ea03d19697d6df06e44b5848687143e204af991cca3e85c5a3cca2a10","text":"width: width, height: editorHeight }, enableDropIntoEditor: true, // overflowWidgetsDomNode: this.notebookEditor.getOverflowContainerDomNode() }, { contributions: this.notebookEditor.creationOptions.cellEditorContributions"} {"_id":"q-en-vscode-b54df97e4d07607144b852c9718c615d5843c8fee96fa4c389c4bc2bb32d78f0","text":"} class LanguageSelection implements ILanguageSelection { private readonly _value: IObservable; public readonly onDidChange: Event; constructor(onDidChangeLanguages: Event, selector: () => string) { this._value = observableFromEvent(this, onDidChangeLanguages, () => selector()); this.onDidChange = Event.fromObservable(this._value); public languageId: string; private _listener: IDisposable | null = null; private _emitter: Emitter | null = null; constructor( private readonly _onDidChangeLanguages: Event, private readonly _selector: () => string ) { this.languageId = this._selector(); } private _dispose(): void { if (this._listener) { this._listener.dispose(); this._listener = null; } if (this._emitter) { this._emitter.dispose(); this._emitter = null; } } public get languageId(): string { return this._value.get(); } public get onDidChange(): Event { if (!this._listener) { this._listener = this._onDidChangeLanguages(() => this._evaluate()); } if (!this._emitter) { this._emitter = new Emitter({ onDidRemoveLastListener: () => { this._dispose(); } }); } return this._emitter.event; } private _evaluate(): void { const languageId = this._selector(); if (languageId === this.languageId) { // no change return; } this.languageId = languageId; this._emitter?.fire(this.languageId); } }"} {"_id":"q-en-vscode-b5a7069d3e9195c2e28678905552dfa2d9bd1d5c6cf95933b6e481ddaf9cd634","text":"private readonly _onSeparatorButtonTriggered = new Emitter(); onSeparatorButtonTriggered = this._onSeparatorButtonTriggered.event; private readonly _onTriggerEmptySelectionOrFocus = new Emitter>(); private readonly _container: HTMLElement; private readonly _tree: WorkbenchObjectTree; private readonly _separatorRenderer: QuickPickSeparatorElementRenderer;"} {"_id":"q-en-vscode-b5ed2f1498a18bbc32f3f02d9f2e0815bf56e4a387977cd9493a7241f25d7e90","text":"dependsOn: [] jobs: - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX, true), eq(parameters.VSCODE_BUILD_LINUX_ALPINE, true)) }}: - job: Linux - job: LinuxX64 pool: vscode-1es-linux steps: - template: ./linux/cli-build-linux.yml"} {"_id":"q-en-vscode-b61369915169b7269f0143e045f1240e018f879a4f1f27b3067db3c09ac2ae4f","text":"resolved \"https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.1.tgz#34bdc31727a1889198855913db2f270ace6d7bf8\" integrity sha512-0G7tNyS+yW8TdgHwZKlDWYXFA6OJQnoLCQvYKkQP0Q2X205PSQ6RNUj0M+1OB/9gRQaUZ/ccYfaxd0nhaWKfjw== \"@xterm/addon-canvas@0.6.0-beta.19\": version \"0.6.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.19.tgz#5f8896b884d2a558a28eb197f7f4766ac37d33a0\" integrity sha512-i+26DqYgI/PZViCiEK4Vu8c4Fi5J0i+TwnFfBDLcumHH07Al1uRd5BRaVg/i93vk6bRyEIOiOiIToXSf37ov/w== \"@xterm/addon-image@0.7.0-beta.17\": version \"0.7.0-beta.17\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.17.tgz#bc3d6f09619ef1f3b68c7009d29ee14003a26b30\" integrity sha512-nnHVoYVoh+CpT4FQN/ALKesr96YvdVNUzQRQo4aAARUKst5DFaHQX9Yn/qLDN5s0WCqI3bgIEo8UAakfHITumA== \"@xterm/addon-search@0.14.0-beta.19\": version \"0.14.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.19.tgz#2bc13378765f0d5e72d9bcb7887e23eee31de7eb\" integrity sha512-Y1pPdtdZj0xRQ/Is4jdO0dyZe+uM6AhWi3v2U4sdJmhz2mxVe/HAKBHkx6tyfMtX9ge/9ZYajd/Sy8rkjIFdmQ== \"@xterm/addon-serialize@0.12.0-beta.19\": version \"0.12.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.19.tgz#465a9525a420b8f0d12eed419d6e051f9a887814\" integrity sha512-3v6a4/4gxAwoyJsBp6vJBofymgTH8paSHl8K2uQfFuLosOavNyCtrNPiNne7tpppK6t8zCDJ/mVrXNptz4Mlsg== \"@xterm/addon-unicode11@0.7.0-beta.19\": version \"0.7.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.19.tgz#0e81775f84346a97c657fb4cd7702de1cfe4b83f\" integrity sha512-U5O+JLklO4qtptWAWUw14QRWdalLl0bFAQxLKuTtDmusgfn33pNDRD6RH3R+IHhO2e6svAwrw27OcCEcdn0AJQ== \"@xterm/addon-webgl@0.17.0-beta.19\": version \"0.17.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.19.tgz#fefe44c20b4d4d070363e03ae33087505a88807e\" integrity sha512-L59l9Cd4KTMCwnw2HPi/cUgH4iL5dK7VERK/wSTWEGYMOi3WGTmXqsg8ftfR2jFC9P33eqYNVJDmbr+pF0XsDg== \"@xterm/headless@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/headless/-/headless-5.4.0-beta.19.tgz#e84a7cebda581273032f82fc8c53941204bc7f93\" integrity sha512-y7Ne2G/Tgn6bHr14eBHqcq5gGFFCHKGBzmXTExT1Z4Fb6ofPACPWAo60S5B6uh49W4Ts13gQYZ5C0XEvHud0Eg== \"@xterm/xterm@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.19.tgz#5c9c5cacd0cf2a0719086ce03ab035480b1cfd96\" integrity sha512-Rx/Y/y3YGjpiW6IUq8UlE6qrTYuUlEfpVg/BS6kIPr8/cUOchE1fsKWCMxz/u2bIyQyEovRi892iYcQJ4scstw== \"@xterm/addon-canvas@0.6.0-beta.20\": version \"0.6.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.20.tgz#078dddef70caf880b2cb121fdda37d301fc13156\" integrity sha512-tHhsuqElE7LNiDJPbZzgVpmbcG2Dk6i2vh1EI+DzSByUWScDqLoeJbVPE5Xd2UW2garo24lxErpnIAlsytcA3A== \"@xterm/addon-image@0.7.0-beta.18\": version \"0.7.0-beta.18\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.18.tgz#588ea2d0841cff48c63bde1bfcdf56e9494dc6af\" integrity sha512-+HQ+IBmHPelzjRJ5zO3XkjbeQNr2Zrf5wAlbPhy4EGSD0mDCqHJSfzZ8wKrhx7t8qpfiA8eTpWu/M76WsEnlnA== \"@xterm/addon-search@0.14.0-beta.20\": version \"0.14.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.20.tgz#cac366b1be1eb02cf9fe9537933f26f227d030c8\" integrity sha512-1LOL/OzWSrCBpndiBeeE2S1rxtKKgU1ucYFSG3P68W0J4VQz/Ksci1BgDKsgspj9jzpsGhdql3zwa5WEM7n4Pg== \"@xterm/addon-serialize@0.12.0-beta.20\": version \"0.12.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.20.tgz#5fe126194ff4dc466b92a0946e081e039a14ad21\" integrity sha512-GdRCQDjLyVNBxCFnhfCWsMmuqv2PryUkOaNl4z5MqB5lBUkiEnRNY0u/s5f34+2zrijp3h0O/f9JDLW4gSUQgw== \"@xterm/addon-unicode11@0.7.0-beta.20\": version \"0.7.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.20.tgz#5d3c97320898dd6766f2dc127deb4f071c8698c2\" integrity sha512-4/uwJ6lV/xJplT7hJc7sO4Im4XNvEXHnUEFIs03FFp8ZUfu3U6wcBk6/GoKMwJKJtGVNxotiD6ZzJ5v8IBH6nA== \"@xterm/addon-webgl@0.17.0-beta.20\": version \"0.17.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.20.tgz#443845ac5ac755cf762b105ed237b30426b07137\" integrity sha512-iqvXNSTfKIcO9FBraNwdO/ixPrTHok8CBN/wjlnGLv0ZMc4zLAiKE8+PHyg9ZY38QJfS+4Ouo8KsuZwoOYfnNA== \"@xterm/headless@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/headless/-/headless-5.4.0-beta.20.tgz#af26d3d0e2cdd615ccfac4a8660181fee19898fd\" integrity sha512-H/as1d67J43/CB8xt1Yg/eJMbq1yopwG1bDBKdsf2ro8A1PmJFXNzaDB+wSgoH42fCusSpLJvXtUvDLtqfvBTg== \"@xterm/xterm@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.20.tgz#28bbbbc73eceb6ef3e1e095de195cf849d0cbfb6\" integrity sha512-nkY91qBy5pe1HlW9LOoLcyG6v4teEsliEtUVshAO42NrJDaPniSn28O5m5832UjZOdjLCY58QlcBkZUquODGrQ== \"@xtuc/ieee754@^1.2.0\": version \"1.2.0\""} {"_id":"q-en-vscode-b6461bd37893d813d70cb5125334ff3dc57828825c0534e4b8ca84ffbd01b1ab","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { IResizeEvent, ResizableHTMLElement } from 'vs/base/browser/ui/resizable/resizable'; import { DisposableStore, IDisposable } from 'vs/base/common/lifecycle'; import { ResourceMap } from 'vs/base/common/map'; import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from 'vs/editor/browser/editorBrowser'; import { IPosition } from 'vs/editor/common/core/position'; import { PositionAffinity } from 'vs/editor/common/model'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import * as dom from 'vs/base/browser/dom'; import { clamp } from 'vs/base/common/numbers'; import { EditorOption } from 'vs/editor/common/config/editorOptions'; import { Emitter, Event } from 'vs/base/common/event'; export abstract class ResizableWidget implements IDisposable { readonly element: ResizableHTMLElement; private readonly _disposables = new DisposableStore(); private readonly _persistingMechanism: IPersistingMechanism; constructor( private readonly _editor: ICodeEditor, private readonly _persistingOptions: IPersistingOptions, ) { console.log('Inside of ResizableWidget constructor'); this.element = new ResizableHTMLElement(); this.element.domNode.classList.add('editor-widget', 'resizable-widget'); if (this._persistingOptions instanceof SingleSizePersistingOptions) { this._persistingMechanism = new SingleSizePersistingMechanism(this, this.element, this._editor, this._persistingOptions); } else if (this._persistingOptions instanceof MultipleSizePersistingOptions) { this._persistingMechanism = new MultipleSizePersistingMechanism(this, this.element, this._editor); } else { throw new Error('Please specify a valid persisting mechanism'); } } dispose(): void { this._disposables.dispose(); this.element.dispose(); } resize(dimension: dom.Dimension): void { } hide(): void { this.element.clearSashHoverState(); } findMaximumRenderingHeight(): number | undefined { return Infinity; } findMaximumRenderingWidth(): number | undefined { return Infinity; } findPersistedSize(): dom.Dimension | undefined { return this._persistingMechanism.findSize(); } } export abstract class ResizableContentWidget implements IContentWidget { abstract ID: string; private _position: IPosition | null = null; private _secondaryPosition: IPosition | null = null; private _preference: ContentWidgetPositionPreference[] = []; private _positionAffinity: PositionAffinity | undefined = undefined; constructor(private readonly resizableWidget: ResizableWidget, private readonly editor: ICodeEditor) { this.editor.addContentWidget(this); console.log('Inisde of ResizableContentWidget constructor'); } findPersistedSize(): dom.Dimension | undefined { return this.resizableWidget.findPersistedSize(); } getId(): string { console.log('this.ID : ', this.ID); return this.ID; } getDomNode(): HTMLElement { console.log('Inside of getDomNode of ResizableContentWidget'); console.log('this.resizableWidget.element.domNode : ', this.resizableWidget.element.domNode); this.resizableWidget.element.domNode.style.zIndex = '49'; this.resizableWidget.element.domNode.style.position = 'fixed'; // this.resizableWidget.element.domNode.style.display = 'block'; return this.resizableWidget.element.domNode; } getPosition(): IContentWidgetPosition | null { console.log('Inside of getPosition of ResizableContentWidget'); const contentWidgetPosition = { position: this._position, secondaryPosition: this._secondaryPosition, preference: (this._preference), positionAffinity: this._positionAffinity }; console.log('contentWidgetPosition: ', contentWidgetPosition); return contentWidgetPosition; } hide(): void { this.editor.layoutContentWidget(this); } set position(position: IPosition | null) { this._position = position; } set secondaryPosition(position: IPosition | null) { this._secondaryPosition = position; } set preference(preference: ContentWidgetPositionPreference[]) { this._preference = preference; } set positionAffinity(affinity: PositionAffinity | undefined) { this._positionAffinity = affinity; } } interface IPersistingOptions { } export class SingleSizePersistingOptions implements IPersistingOptions { constructor( public readonly key: string, public readonly defaultSize: dom.Dimension, @IStorageService public readonly storageService: IStorageService ) { } } export class MultipleSizePersistingOptions implements IPersistingOptions { constructor() { } } interface IPersistingMechanism extends IDisposable { findSize(): dom.Dimension | undefined; } // TODO: maybe need to make more generic, this is specific to the suggest widget class SingleSizePersistingMechanism implements IPersistingMechanism { private readonly _persistedWidgetSize: PersistedWidgetSize | null = null; private readonly _disposables = new DisposableStore(); constructor( private readonly resizableWidget: ResizableWidget, private readonly element: ResizableHTMLElement, private readonly editor: ICodeEditor, private readonly persistingOptions: SingleSizePersistingOptions ) { this._persistedWidgetSize = new PersistedWidgetSize(this.persistingOptions.key, this.persistingOptions.storageService, this.editor); class ResizeState { constructor( readonly persistedSize: dom.Dimension | undefined, readonly currentSize: dom.Dimension, public persistHeight = false, public persistWidth = false, ) { } } let state: ResizeState | undefined; this._disposables.add(this.element.onDidWillResize(() => { // TODO: add back, this._contentWidget.lockPreference(); state = new ResizeState(this._persistedWidgetSize!.restore(), this.element.size); })); this._disposables.add(this.element.onDidResize(e => { this.resizableWidget.resize(new dom.Dimension(e.dimension.width, e.dimension.height)); if (state) { state.persistHeight = state.persistHeight || !!e.north || !!e.south; state.persistWidth = state.persistWidth || !!e.east || !!e.west; } if (!e.done) { return; } if (state) { const fontInfo = this.editor.getOption(EditorOption.fontInfo); const itemHeight = clamp(this.editor.getOption(EditorOption.suggestLineHeight) || fontInfo.lineHeight, 8, 1000); const threshold = Math.round(itemHeight / 2); let { width, height } = this.element.size; if (!state.persistHeight || Math.abs(state.currentSize.height - height) <= threshold) { height = state.persistedSize?.height ?? this.persistingOptions.defaultSize.height; } if (!state.persistWidth || Math.abs(state.currentSize.width - width) <= threshold) { width = state.persistedSize?.width ?? this.persistingOptions.defaultSize.width; } this._persistedWidgetSize!.store(new dom.Dimension(width, height)); } // TODO: add back, reset working state // this._contentWidget.unlockPreference(); state = undefined; })); } findSize(): dom.Dimension | undefined { return undefined; } dispose(): void { this._disposables.dispose(); } } class MultipleSizePersistingMechanism implements IPersistingMechanism { private readonly _persistedWidgetSizes: ResourceMap> = new ResourceMap>(); private readonly _disposables = new DisposableStore(); private _tooltipPosition: IPosition | null = null; // TODO: not sure if I need the following // private _initialHeight: number = 0; // private _initialTop: number = 0; private _resizing: boolean = false; private _size: dom.Dimension | undefined = undefined; private _maxRenderingHeight: number | undefined = Infinity; private _maxRenderingWidth: number | undefined = Infinity; private readonly _onDidResize = new Emitter(); readonly onDidResize: Event = this._onDidResize.event; // private _renderingAbove: ContentWidgetPositionPreference | undefined = undefined; constructor( private readonly resizableWidget: ResizableWidget, private readonly element: ResizableHTMLElement, public readonly editor: ICodeEditor ) { this.element.minSize = new dom.Dimension(10, 24); this._disposables.add(this.editor.onDidChangeModelContent((e) => { const uri = this.editor.getModel()?.uri; if (!uri || !this._persistedWidgetSizes.has(uri)) { return; } const persistedSizesForUri = this._persistedWidgetSizes.get(uri)!; const updatedPersistedSizesForUri = new Map(); for (const change of e.changes) { const changeOffset = change.rangeOffset; const rangeLength = change.rangeLength; const endOffset = changeOffset + rangeLength; const textLength = change.text.length; for (const key of persistedSizesForUri.keys()) { const parsedKey = JSON.parse(key); const tokenOffset = parsedKey[0]; const tokenLength = parsedKey[1]; if (endOffset < tokenOffset) { const oldSize = persistedSizesForUri.get(key)!; const newKey: [number, number] = [tokenOffset - rangeLength + textLength, tokenLength]; updatedPersistedSizesForUri.set(JSON.stringify(newKey), oldSize); } else if (changeOffset >= tokenOffset + tokenLength) { updatedPersistedSizesForUri.set(key, persistedSizesForUri.get(key)!); } } } this._persistedWidgetSizes.set(uri, updatedPersistedSizesForUri); })); this._disposables.add(this.element.onDidWillResize(() => { this._resizing = true; // this._initialHeight = this.element.domNode.clientHeight; // this._initialTop = this.element.domNode.offsetTop; })); this._disposables.add(this.element.onDidResize(e => { let height = e.dimension.height; let width = e.dimension.width; const maxWidth = this.element.maxSize.width; const maxHeight = this.element.maxSize.height; width = Math.min(maxWidth, width); height = Math.min(maxHeight, height); if (!this._maxRenderingHeight) { return; } this._size = new dom.Dimension(width, height); this.element.layout(height, width); // Calling the resize function of the this.resizableWidget.resize(new dom.Dimension(width, height)); // Update the top parameters only when we decided to render above // TODO: presumably do not need to resize the element // if (this._renderingAbove === ContentWidgetPositionPreference.ABOVE) { // \tthis.element.domNode.style.top = this._initialTop - (height - this._initialHeight) + 'px'; // } // const horizontalSashWidth = width - 2 * SASH_WIDTH + 2 * TOTAL_BORDER_WIDTH + 'px'; // this.element.northSash.el.style.width = horizontalSashWidth; // this.element.southSash.el.style.width = horizontalSashWidth; // const verticalSashWidth = height - 2 * SASH_WIDTH + 2 * TOTAL_BORDER_WIDTH + 'px'; // this.element.eastSash.el.style.height = verticalSashWidth; // this.element.westSash.el.style.height = verticalSashWidth; // this.element.eastSash.el.style.top = TOTAL_BORDER_WIDTH + 'px'; // Fire the current dimension // TODO: probably don't need to listen on the firing event? // this._onDidResize.fire({ dimension: this._size, done: false }); this._maxRenderingWidth = this.resizableWidget.findMaximumRenderingWidth(); this._maxRenderingHeight = this.resizableWidget.findMaximumRenderingHeight(); // this._maxRenderingHeight = this.resizableWidget.findMaximumRenderingHeight(this._renderingAbove); if (!this._maxRenderingHeight || !this._maxRenderingWidth) { return; } this.element.maxSize = new dom.Dimension(this._maxRenderingWidth, this._maxRenderingHeight); // Persist the height only when the resizing has stopped if (e.done) { if (!this.editor.hasModel()) { return; } const uri = this.editor.getModel().uri; if (!uri || !this._tooltipPosition) { return; } const persistedSize = new dom.Dimension(width, height); const wordPosition = this.editor.getModel().getWordAtPosition(this._tooltipPosition); if (!wordPosition) { return; } const offset = this.editor.getModel().getOffsetAt({ lineNumber: this._tooltipPosition.lineNumber, column: wordPosition.startColumn }); const length = wordPosition.word.length; // Suppose that the uri does not exist in the persisted widget hover sizes, then create a map if (!this._persistedWidgetSizes.get(uri)) { const persistedWidgetSizesForUri = new Map([]); persistedWidgetSizesForUri.set(JSON.stringify([offset, length]), persistedSize); this._persistedWidgetSizes.set(uri, persistedWidgetSizesForUri); } else { const persistedWidgetSizesForUri = this._persistedWidgetSizes.get(uri)!; persistedWidgetSizesForUri.set(JSON.stringify([offset, length]), persistedSize); } this._resizing = false; } // this.editor.layoutOverlayWidget(this); // this.editor.render(); })); } set tooltipPosition(position: IPosition) { this._tooltipPosition = position; } findSize(): dom.Dimension | undefined { console.log('Inside of findSize of the MultiplePersistingMechanisms'); if (!this._tooltipPosition || !this.editor.hasModel()) { return; } const wordPosition = this.editor.getModel().getWordAtPosition(this._tooltipPosition); if (!wordPosition) { return; } const offset = this.editor.getModel().getOffsetAt({ lineNumber: this._tooltipPosition.lineNumber, column: wordPosition.startColumn }); const length = wordPosition.word.length; const uri = this.editor.getModel().uri; const persistedSizesForUri = this._persistedWidgetSizes.get(uri); if (!persistedSizesForUri) { return; } return persistedSizesForUri.get(JSON.stringify([offset, length])); } dispose(): void { this._disposables.dispose(); } } class PersistedWidgetSize { constructor( private readonly _key: string, private readonly _service: IStorageService, editor: ICodeEditor ) { } restore(): dom.Dimension | undefined { const raw = this._service.get(this._key, StorageScope.PROFILE) ?? ''; try { const obj = JSON.parse(raw); if (dom.Dimension.is(obj)) { return dom.Dimension.lift(obj); } } catch { // ignore } return undefined; } store(size: dom.Dimension) { this._service.store(this._key, JSON.stringify(size), StorageScope.PROFILE, StorageTarget.MACHINE); } reset(): void { this._service.remove(this._key, StorageScope.PROFILE); } } "} {"_id":"q-en-vscode-b6ad323a7b3c6b6fc8f6b7c59c83cce3a1cbddc646bf04df9afcdfc9666a2802","text":"} } function isWelcomePageEnabled(configurationService: IConfigurationService) { function isWelcomePageEnabled(configurationService: IConfigurationService, contextService?: IWorkspaceContextService) { const startupEditor = configurationService.inspect(configurationKey); if (!startupEditor.user && !startupEditor.workspace) { const welcomeEnabled = configurationService.inspect(oldConfigurationKey);"} {"_id":"q-en-vscode-b72ebd4472fdcd84ac50c5b566760938713778d907ce1162af65e5e96f2a11ab","text":"public activeEditorOptions: IEditorOptions; public activeEditorPosition: Position; public mockLineNumber: number; public mockSelectedText: string; private callback: (method: string) => void; constructor(callback?: (method: string) => void) { this.callback = callback || ((s: string) => { }); this.mockLineNumber = 15; this.mockSelectedText = 'selected text'; } public openEditors(inputs: any[]): Promise {"} {"_id":"q-en-vscode-b731799560f5dd7e02e9db18b5f408c3431058fe0947ea870eb0df6b082ecef0","text":" content=\"default-src 'none'; script-src 'sha256-p+nt+yoC/wuG5etLfVS00qSeblDcYdehfpOYYqdWocI=' 'self'; frame-src 'self'; style-src 'unsafe-inline';\"> content=\"default-src 'none'; script-src 'sha256-7T0Xm7l4AYKDwm8oYNQ65wcQX7K/ndvxH/2ZgHWUE3w=' 'self'; frame-src 'self'; style-src 'unsafe-inline';\"> this._register(disposableTimeout(() => this.promptRecommendations(uri, model), 0)); } private promptRecommendations(uri: URI, model: ITextModel): void { if (this.promptImportantRecommendations(uri, model)) { return; } const fileExtension = extname(uri).toLowerCase(); if (!this.processedFileExtensions.includes(fileExtension)) { this.processedFileExtensions.push(fileExtension); this.promptRecommendedExtensionForFileExtension(uri, fileExtension); } this._register(disposableTimeout(() => this.promptImportantRecommendations(uri, model), 0)); } /** * Prompt the user to either install the recommended extension for the file type in the current editor model * or prompt to search the marketplace if it has extensions that can support the file type */ private promptImportantRecommendations(uri: URI, model: ITextModel, extensionRecommendations?: IStringDictionary): boolean { private promptImportantRecommendations(uri: URI, model: ITextModel, extensionRecommendations?: IStringDictionary): void { const pattern = extname(uri).toLowerCase(); extensionRecommendations = extensionRecommendations ?? this.recommendationsByPattern.get(pattern) ?? this.fileOpenRecommendations; const extensionRecommendationEntries = Object.entries(extensionRecommendations); if (extensionRecommendationEntries.length === 0) { return false; return; } const processedPathGlobs = new Map();"} {"_id":"q-en-vscode-b78ee009b3ebf1fbb11b388fc587b83692d43cfd82ebdd63da1d5c8e5536ad9d","text":"\"publisher\": \"vscode\", \"version\": \"1.0.0\", \"license\": \"MIT\", \"icon\": \"media/icon.png\", \"icon\": \"media/icon.png\", \"engines\": { \"vscode\": \"^1.57.0\" },"} {"_id":"q-en-vscode-b81742838be36d807a04a2b868ed4463bc92812bd354298775b44c69dbf9bf24","text":"thanks.removeClass('task-panel-hidden'); }); noButton.item(0).on('click', e => { noButton.on('click', e => { if (!this.storageService.get(this.taskExperimentPart5)) { this.telemetryService.publicLog('taskPanel.no'); this.storageService.store(this.taskExperimentPart5, true, StorageScope.GLOBAL);"} {"_id":"q-en-vscode-b8193743ea7efa1b3a59db51e826294cd4ab70a779a44148b6a5f03554d586b7","text":"this.notificationService.warn(nls.localize('workbench.action.terminal.runActiveFile.noFile', 'Only files on disk can be run in the terminal')); return TPromise.as(void 0); } let uriPath: string = uri.fsPath; const hasSpace = uriPath.indexOf(' ') !== -1; if (hasSpace && isWindows) { uriPath = '\"' + uriPath + '\"'; } else if (!isWindows) { if (uriPath.indexOf('') !== 0) { uriPath = uriPath.replace(//g, ''); } const hasDoubleQuote = uriPath.indexOf('\"') !== -1; if (!hasSpace && hasDoubleQuote) { uriPath = ''' + uriPath + '''; } else if (hasSpace) { uriPath = uriPath.replace(/ /g, ' '); } } instance.sendText(uriPath, true); return this.terminalService.showPanel(); return instance.preparePathForTerminalAsync(uri.fsPath).then(path => { instance.sendText(path, true); return this.terminalService.showPanel(); }); } }"} {"_id":"q-en-vscode-b8c89914f90f2826a3d47b887c98e8f976b3d3d3f4bdc7c4d6e5bef78eb1f8ce","text":"import { AccessibilitySignal, IAccessibilitySignalService } from '../../../../platform/accessibilitySignal/browser/accessibilitySignalService.js'; import { ILoggerService, LogLevel, LogLevelToLocalizedString, LogLevelToString } from '../../../../platform/log/common/log.js'; import { IDefaultLogLevelsService } from '../../logs/common/defaultLogLevels.js'; import { EditorOptions } from '../../../../editor/common/config/editorOptions.js'; import { WordCharacterClassifier, getMapForWordSeparators } from '../../../../editor/common/core/wordCharacterClassifier.js'; import { WordNavigationType } from '../../../../editor/common/cursor/cursorWordOperations.js'; import { KeybindingsRegistry, KeybindingWeight } from '../../../../platform/keybinding/common/keybindingsRegistry.js'; import { EditorContextKeys } from '../../../../editor/common/editorContextKeys.js'; import { ITextModel } from '../../../../editor/common/model.js'; import { WordLeftCommand, WordRightCommand } from '../../../../editor/contrib/wordOperations/browser/wordOperations.js'; import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from '../../../../platform/accessibility/common/accessibility.js'; import { IsWindowsContext } from '../../../../platform/contextkey/common/contextkeys.js'; import { KeybindingWeight } from '../../../../platform/keybinding/common/keybindingsRegistry.js'; import { Position } from '../../../../editor/common/core/position.js'; import { registerEditorCommand } from '../../../../editor/browser/editorExtensions.js'; import { FocusedViewContext } from '../../../common/contextkeys.js'; // Register Service"} {"_id":"q-en-vscode-b953be882f374e92b0c020e2c21e173b157b852f08b22ff60de50708fd05d148","text":"MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: EditorActionsTitleBarAction.ID, title: localize('titleBar', \"Title Bar\"), toggled: ContextKeyExpr.or(ContextKeyExpr.equals('config.workbench.editor.editorActionsLocation', 'titleBar'), ContextKeyExpr.and(ContextKeyExpr.equals('config.workbench.editor.showTabs', 'none'), ContextKeyExpr.equals('config.workbench.editor.editorActionsLocation', 'default'))) }, group: '1_config', order: 20 }); MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, { command: { id: HideEditorActionsAction.ID, title: localize('hidden', \"Hidden\"), toggled: ContextKeyExpr.equals('config.workbench.editor.editorActionsLocation', 'hidden') }, group: '1_config', order: 30 }); MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, { command: { id: ConfigureEditorTabsAction.ID, title: localize('configureTabs', \"Configure Tabs ...\") }, group: '9_configure', order: 10 }); // Editor Title Context Menu MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_EDITOR_COMMAND_ID, title: localize('close', \"Close\") }, group: '1_close', order: 10 }); MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, { command: { id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID, title: localize('closeOthers', \"Close Others\"), precondition: EditorGroupEditorsCountContext.notEqualsTo('1') }, group: '1_close', order: 20 });"} {"_id":"q-en-vscode-ba30fb2cbae044413749c13465641cd08b2729d14e40cffe40da5f84f9b88dda","text":"this.domNode = undefined; })); this.toDispose.add(dom.addDisposableListener(this.domNode, dom.EventType.CONTEXT_MENU, (e) => { this.contextMenuService.showContextMenu({ getAnchor: () => { return new StandardMouseEvent(dom.getActiveWindow(), e); }, getActions: () => { return [{ id: 'workench.action.disableTerminalInitialHint', label: localize('disableInitialHint', \"Disable Initial Hint\"), tooltip: localize('disableInitialHint', \"Disable Initial Hint\"), enabled: true, class: undefined, run: () => this.configurationService.updateValue(TerminalInitialHintSettingId.Enabled, false) } ]; } }); })); } return this.domNode; }"} {"_id":"q-en-vscode-ba625fc3acee476cdb866320acef39dae0c4f0a6c7205b49b8a558184ed10007","text":"\"@vscode/l10n\": \"^0.0.11\", \"jsonc-parser\": \"^3.2.0\", \"request-light\": \"^0.7.0\", \"vscode-json-languageservice\": \"^5.3.1\", \"vscode-json-languageservice\": \"^5.3.2\", \"vscode-languageserver\": \"^8.1.0\", \"vscode-uri\": \"^3.0.7\" },"} {"_id":"q-en-vscode-babc2483bd4be47e197ad8bb59a880c53f23df9c9a458044a89ca6ee89b7fe22","text":"} switch (e.data.type) { case 'setScale': case 'setScale': { updateScale(e.data.scale); break; case 'setActive': } case 'setActive': { setActive(e.data.value); break; case 'zoomIn': } case 'zoomIn': { zoomIn(); break; case 'zoomOut': } case 'zoomOut': { zoomOut(); break; } case 'copyImage': { copyImage(); break; } } }); document.addEventListener('copy', () => { copyImage(); }); async function copyImage() { try { await navigator.clipboard.write([new ClipboardItem({ 'image/png': fetch(image.src).then(request => request.blob()) })]); } catch (e) { console.error(e); } } }());"} {"_id":"q-en-vscode-bac57aa2b092ee48dba6efafe5ac5c0dc2de49838ef54f52b65120a25f72092b","text":"} } private count(): number { return this.panes.reduce((count, view) => (view).count() + count, 0); private getFirstExpandedPane(): ExtensionsListView | undefined { for (const pane of this.panes) { if (pane.isExpanded() && pane instanceof ExtensionsListView) { return pane; } } return undefined; } private focusListView(): void { if (this.count() > 0) { this.panes[0].focus(); const pane = this.getFirstExpandedPane(); if (pane && pane.count() > 0) { pane.focus(); } }"} {"_id":"q-en-vscode-bada7867c9273d80ca42e986651add26734a3ce5a91fa0438faaacd4f821a7e2","text":"}); } function consoleLogFn(msg) { const type = msg.type(); const candidate = console[type]; if (candidate) { return candidate; } if (type === 'warning') { return console.warn; } return console.log; } function pkill(pid: number): Promise { return new Promise((c, e) => { kill(pid, error => error ? e(error) : c());"} {"_id":"q-en-vscode-bafa669af9b222c68f02457ba2ed970b38b425b2460f9e17ddf8293adc7ad9ab","text":"} const scopedContextKeyService = this._register(_contextKeyService.createScoped(this._wrapperElement)); this._scopedContextKeyService = scopedContextKeyService; this._scopedInstantiationService = instantiationService.createChild(new ServiceCollection( [IContextKeyService, scopedContextKeyService] ));"} {"_id":"q-en-vscode-bb64e6cf816ba0b76ebc76ab53314c645741454e1729101807527dae11cacda1","text":"{ \"open\": \"{\", \"close\": \"}\" }, { \"open\": \"(\", \"close\": \")\" }, { \"open\": \"'\", \"close\": \"'\", \"notIn\": [\"string\", \"comment\"] }, { \"open\": \"\"\", \"close\": \"\"\", \"notIn\": [\"string\"] } { \"open\": \"\"\", \"close\": \"\"\", \"notIn\": [\"string\"] }, { \"open\": \"/*\", \"close\": \" */\", \"notIn\": [\"string\", \"comment\"] } ], \"surroundingPairs\": [ [\"{\", \"}\"],"} {"_id":"q-en-vscode-bb91a6acd57ca36073e301d992876d78714aad17d471fc6fd0518033354107a6","text":"import { Codicon } from 'vs/base/common/codicons'; import { registerIcon } from 'vs/platform/theme/common/iconRegistry'; import { UntitledTextEditorInputSerializer, UntitledTextEditorWorkingCopyEditorHandler } from 'vs/workbench/services/untitled/common/untitledTextEditorHandler'; import { DynamicEditorGroupAutoLockConfiguration } from 'vs/workbench/browser/parts/editor/editorConfiguration'; import { DefaultBinaryEditorConfiguration, DynamicEditorGroupAutoLockConfiguration } from 'vs/workbench/browser/parts/editor/editorConfiguration'; //#region Editor Registrations"} {"_id":"q-en-vscode-bbb42b3d152dc80c594bc18d77ad4bcd041b40d32c3a7515e7c408bdf5a54496","text":"export const InteractiveWindowSetting = { interactiveWindowAlwaysScrollOnNewCell: 'interactiveWindow.alwaysScrollOnNewCell', interactiveWindowHotExit: 'interactiveWindow.hotExit' interactiveWindowRestore: 'interactiveWindow.restore' };"} {"_id":"q-en-vscode-bbd64ff191fa5f5202924874e95371809132a43cc35feb49dcfc0527e0b1300b","text":"model.dispose(); mode.dispose(); }); test('issue #45369: Select to Bracket with multicursor', () => { let mode = new BracketMode(); let model = TextModel.createFromString('{ } { } { }', undefined, mode.getLanguageIdentifier()); withTestCodeEditor(null, { model: model }, (editor, cursor) => { let bracketMatchingController = editor.registerAndInstantiateContribution(BracketMatchingController); // cursors inside brackets become selections of the entire bracket contents editor.setSelections([ new Selection(1, 3, 1, 3), new Selection(1, 10, 1, 10), new Selection(1, 17, 1, 17) ]); bracketMatchingController.selectToBracket(); assert.deepEqual(editor.getSelections(), [ new Selection(1, 1, 1, 5), new Selection(1, 8, 1, 13), new Selection(1, 16, 1, 19) ]); // cursors to the left of bracket pairs become selections of the entire pair editor.setSelections([ new Selection(1, 1, 1, 1), new Selection(1, 6, 1, 6), new Selection(1, 14, 1, 14) ]); bracketMatchingController.selectToBracket(); assert.deepEqual(editor.getSelections(), [ new Selection(1, 1, 1, 5), new Selection(1, 8, 1, 13), new Selection(1, 16, 1, 19) ]); // cursors just right of a bracket pair become selections of the entire pair editor.setSelections([ new Selection(1, 5, 1, 5), new Selection(1, 13, 1, 13), new Selection(1, 19, 1, 19) ]); bracketMatchingController.selectToBracket(); assert.deepEqual(editor.getSelections(), [ new Selection(1, 1, 1, 5), new Selection(1, 8, 1, 13), new Selection(1, 16, 1, 19) ]); bracketMatchingController.dispose(); }); model.dispose(); mode.dispose(); }); });"} {"_id":"q-en-vscode-bbeb23a1628a34993fe6c0c30070986c7007f4208ed8aa0b00f236ef3901aa5e","text":"} get persistentProcessId(): number | undefined { return this._processManager.persistentProcessId; } get shouldPersist(): boolean { return this._processManager.shouldPersist; } get shouldPersist(): boolean { return this._processManager.shouldPersist && !this.shellLaunchConfig.disablePersistence; } /** * Create xterm.js instance and attach data listeners."} {"_id":"q-en-vscode-bbfa6e6afe0e9e3dec106a01762d6cd6a6c5cd8a2701122bd67e8844b0a48caa","text":"} private onReady(container: HTMLElement, recentlyOpened: TPromise<{ files: URI[]; workspaces: (IWorkspaceIdentifier | ISingleFolderWorkspaceIdentifier)[]; }>, installedExtensions: TPromise): void { const enabled = isWelcomePageEnabled(this.configurationService); const enabled = isWelcomePageEnabled(this.configurationService, this.contextService); const showOnStartup = container.querySelector('#showOnStartup'); if (enabled) { showOnStartup.setAttribute('checked', 'checked');"} {"_id":"q-en-vscode-bc28d598ce3ab6d4a35724f5bd04ad718627d6985a31f9d9413e97737750f99f","text":"Registry.as(WorkbenchExtensions.Workbench).registerWorkbenchContribution(EditorStatus, LifecyclePhase.Ready); Registry.as(WorkbenchExtensions.Workbench).registerWorkbenchContribution(UntitledTextEditorWorkingCopyEditorHandler, LifecyclePhase.Ready); Registry.as(WorkbenchExtensions.Workbench).registerWorkbenchContribution(DynamicEditorGroupAutoLockConfiguration, LifecyclePhase.Ready); Registry.as(WorkbenchExtensions.Workbench).registerWorkbenchContribution(DefaultBinaryEditorConfiguration, LifecyclePhase.Ready); registerEditorContribution(OpenWorkspaceButtonContribution.ID, OpenWorkspaceButtonContribution);"} {"_id":"q-en-vscode-bc2da2bd31ff385daafe551805ee7ef1e34680158b8df63a0f50d0d3f57e509c","text":"MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: localize('maximizeGroup', \"Maximize Group\") }, group: '8_group_operations', order: 5, when: ContextKeyExpr.and(EditorPartMaximizedEditorGroupContext.negate(), EditorPartMultipleEditorGroupsContext) }); MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_MAXIMIZE_EDITOR_GROUP, title: localize('unmaximizeGroup', \"Unmaximize Group\") }, group: '8_group_operations', order: 5, when: EditorPartMaximizedEditorGroupContext }); MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: TOGGLE_LOCK_GROUP_COMMAND_ID, title: localize('lockGroup', \"Lock Group\"), toggled: ActiveEditorGroupLockedContext }, group: '8_group_operations', order: 10, when: IsAuxiliaryEditorPartContext.toNegated() /* already a primary action for aux windows */ }); MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: ConfigureEditorAction.ID, title: localize('configureEditor', \"Configure Editor ...\") }, group: '9_configure', order: 10 }); function appendEditorToolItem(primary: ICommandAction, when: ContextKeyExpression | undefined, order: number, alternative?: ICommandAction, precondition?: ContextKeyExpression | undefined): void { const item: IMenuItem = {"} {"_id":"q-en-vscode-bc545ff6dce118b9bc8df6aa194f9e6cabfbe98fba4a5fa702d2314f40d7dcfa","text":"{ \"name\": \"code-oss-dev\", \"version\": \"1.83.0\", \"distro\": \"46e7bb69af9f06de037c3d7e8f61de4a679f9ef1\", \"distro\": \"c13fa037c20b672a48c9e7990df10998974196f9\", \"author\": { \"name\": \"Microsoft Corporation\" },"} {"_id":"q-en-vscode-bc617f4d7963d05bd8a5c6b3e0c302b0ffc4bd4d4d3ebde7d5197a90819d04f7","text":"* Given a stable rendered state, checks every rendered element whether it needs * to be probed for dynamic height. Adjusts scroll height and top if necessary. */ private _rerender(renderTop: number, renderHeight: number): void { private _rerender(renderTop: number, renderHeight: number, updateScrollTop: boolean = true): void { const previousRenderRange = this.getRenderRange(renderTop, renderHeight); // Let's remember the second element's position, this helps in scrolling up"} {"_id":"q-en-vscode-bc6ddc5e074a87237be533f3be3dc7f9675ee7b63c7b26d6d092772d8cc46d8c","text":"} if (shadowElement) { this.updateShadowElement(shadowElement, dimension, position); this.updateShadowElement(shadowElement, dimension, /*position*/ undefined); } if (this._shadowElementViewInfo && this._shadowElementViewInfo.width <= 0 && this._shadowElementViewInfo.height <= 0) {"} {"_id":"q-en-vscode-bcb38c9f4e0cc50a830025f9aedab9bc1e2478081413ff7a02598329c10f046d","text":"const userExtensions = await this.webExtensionsScannerService.scanUserExtensions(profileLocation ?? this.userDataProfileService.currentProfile.extensionsResource); extensions.push(...userExtensions); } return Promise.all(extensions.map(e => toLocalExtension(e))); return extensions.map(e => toLocalExtension(e)); } async install(location: URI, options: InstallOptions = {}): Promise {"} {"_id":"q-en-vscode-bcb6b1811e422c46bee93b1a33560c156f3816413731ef4672afcb7f5927427c","text":"} getScopedEnvironmentVariableCollection(scope: vscode.EnvironmentVariableScope | undefined): IEnvironmentVariableCollection { if (this._extension && scope) { // TODO: This should be removed when the env var extension API(s) are stabilized checkProposedApiEnabled(this._extension, 'envCollectionWorkspace'); } const scopedCollectionKey = this.getScopeKey(scope); let scopedCollection = this.scopedCollections.get(scopedCollectionKey); if (!scopedCollection) {"} {"_id":"q-en-vscode-bd127d60cac196bd93f0234bf9e1bd6b4bba312e4e6b8fbb14c6d18c41ca6ceb","text":"}); } private onDidChangeActivityBarLocation(): void { this.updateTitleArea(); const id = this.getActiveComposite()?.getId(); if (id) { this.onTitleAreaUpdate(id!); } this.updateActivityBarVisiblity(); this.rememberActivityBarVisiblePosition(); } override updateStyles(): void { super.updateStyles();"} {"_id":"q-en-vscode-bd1b7b9a21b0b589e34e8ffdf11f686537502086f7ca5d0aa67c94ae3aaf3077","text":"// folder.1=>folder.2 if (isFolder && name.match(/(d+)$/)) { return name.replace(/(d+)$/, (match: string, ...groups: any[]) => { return strings.pad(parseInt(groups[0]) + 1, groups[0].length); }); return name.replace(/(d+)$/, (match: string, ...groups: any[]) => { let number = parseInt(groups[0]); return number < maxNumber ? strings.pad(number + 1, groups[0].length) : strings.format('{0}.1', groups[0]); }); } // 1.folder=>2.folder if (isFolder && name.match(/^(d+)/)) { return name.replace(/^(d+)/, (match: string, ...groups: any[]) => { return strings.pad(parseInt(groups[0]) + 1, groups[0].length); }); return name.replace(/^(d+)(.*)$/, (match: string, ...groups: any[]) => { let number = parseInt(groups[0]); return number < maxNumber ? strings.pad(number + 1, groups[0].length) + groups[1] : strings.format('{0}{1}.1', groups[0], groups[1]); }); } // file/folder=>file.1/folder.1"} {"_id":"q-en-vscode-bd3fea2b3ff939baa2e39666b4808a5d2dd7845cd0fda2829ddb8628b02e93ee","text":"// Each line and column clause have 6 groups (ie no. of expressions in round brackets) export const lineAndColumnClauseGroupCount = 6; const MAX_LENGTH = 2000; const InvalidLinkResult = 'Invalid Link Result'; const MAX_LENGTH = 2000; let map = new Map(); export class TerminalValidatedLocalLinkProvider extends TerminalBaseLinkProvider { constructor( private readonly _xterm: Terminal,"} {"_id":"q-en-vscode-bd5c32b4b3fd2c27a8754542a03df3dd9ced3c33759f0e7b3cd3d29963259fc2","text":"}) ); } export const foldBackgroundBackground = registerColor('editor.foldBackground', { light: transparent(editorSelectionBackground, 0.3), dark: transparent(editorSelectionBackground, 0.3), hcDark: null, hcLight: null }, nls.localize('foldBackgroundBackground', \"Background color behind folded ranges. The color must not be opaque so as not to hide underlying decorations.\"), true); export const editorFoldForeground = registerColor('editorGutter.foldingControlForeground', { dark: iconForeground, light: iconForeground, hcDark: iconForeground, hcLight: iconForeground }, nls.localize('editorGutter.foldingControlForeground', 'Color of the folding control in the editor gutter.')); "} {"_id":"q-en-vscode-bd5f38b81f7e35fe794654000d9bccabf83b63c8140c8885156c59b647a063ca","text":"import { TerminalStatus } from 'vs/workbench/contrib/terminal/browser/terminalStatusList'; import Severity from 'vs/base/common/severity'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; export class EnvironmentVariableInfoStale implements IEnvironmentVariableInfo { readonly requiresAction = true;"} {"_id":"q-en-vscode-bd74be93c007a9b9959a7a26136c9e59c491f39ed2e6481ac903162fba2b2257","text":"} } export class LineSequence implements ISequence { constructor( private readonly trimmedHash: number[], private readonly lines: string[] ) { } getElement(offset: number): number { return this.trimmedHash[offset]; } get length(): number { return this.trimmedHash.length; } getBoundaryScore(length: number): number { const indentationBefore = length === 0 ? 0 : getIndentation(this.lines[length - 1]); const indentationAfter = length === this.lines.length ? 0 : getIndentation(this.lines[length]); return 1000 - (indentationBefore + indentationAfter); } } function getIndentation(str: string): number { let i = 0; while (i < str.length && (str.charCodeAt(i) === CharCode.Space || str.charCodeAt(i) === CharCode.Tab)) { i++; } return i; } class Slice implements ISequence { private readonly elements: Int32Array; private readonly firstCharOnLineOffsets: Int32Array;"} {"_id":"q-en-vscode-bdbe443f8860f215fee42091aa1c5ef28f6dd6a104c70a0d95f0bce260ad6677","text":"declare function require(path: string): any; const enabledSetting = 'markdown.math.enabled'; const markdownMathSetting = 'markdown.math'; export function activate(context: vscode.ExtensionContext) { function isEnabled(): boolean {"} {"_id":"q-en-vscode-bdc5c02da7d964883cfee35231a2c4632da0a5ee09142dfe29242b4a7e81c621","text":"displayName: Extract openssl prebuilt # inspired by: https://github.com/emk/rust-musl-builder/blob/main/Dockerfile - bash: | set -e sudo apt-get update sudo apt-get install -yq build-essential curl file git graphviz musl-dev musl-tools linux-libc-dev pkgconf zip unzip xutils-dev ninja-build sudo ln -s \"/usr/bin/g++\" \"/usr/bin/musl-g++\" || echo \"link exists\" displayName: Install build dependencies - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ALPINE, true)) }}: - bash: | set -e sudo apt-get update sudo apt-get install -yq build-essential musl-dev musl-tools linux-libc-dev pkgconf xutils-dev sudo ln -s \"/usr/bin/g++\" \"/usr/bin/musl-g++\" || echo \"link exists\" displayName: Install musl build dependencies - ${{ if eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true) }}: - bash: | set -e sudo apt-get install -yq gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf displayName: Install cross compilation toolchains displayName: Install arm32 toolchains - ${{ if eq(parameters.VSCODE_BUILD_LINUX_ARM64, true) }}: - bash: | set -e sudo apt-get install -yq gcc-aarch64-linux-gnu g++-aarch64-linux-gnu binutils-aarch64-linux-gnu displayName: Install arm64 toolchains - task: NodeTool@0 inputs:"} {"_id":"q-en-vscode-bdcd1d8d6368c7421f87276394ef0c06a6fdaf2e75b595c7ea93d147afd00a39","text":"// do not scroll the viewport if resized element is out of viewport heightDiff = size - originalSize; } else { if (anchorIndex !== null && anchorIndex > index && anchorIndex <= lastRenderRange.end) { if (anchorIndex !== null && anchorIndex > index && anchorIndex < lastRenderRange.end) { // anchor in viewport // resized element in viewport and above the anchor heightDiff = size - originalSize;"} {"_id":"q-en-vscode-bddc9b426d67d17ac5f19ef24297eda5f73aee863c5923b2a8aec859a65e4bf0","text":"const computedSliderRatio = (maxMinimapSliderTop) / (scrollHeight - viewportHeight); const sliderTop = (scrollTop * computedSliderRatio); if (minimapLinesFitting >= lineCount) { let extraLinesAtTheBottom = 0; if (options.scrollBeyondLastLine) { const expectedViewportLineCount = viewportHeight / lineHeight; extraLinesAtTheBottom = expectedViewportLineCount; } if (minimapLinesFitting >= lineCount + extraLinesAtTheBottom) { // All lines fit in the minimap const startLineNumber = 1; const endLineNumber = lineCount;"} {"_id":"q-en-vscode-bde7c44d649f74df2ff08a02da0750a0cded7b55f0e472fe6028f8de02816951","text":"let goToSymbolHint = ''; if (providerHasSymbols) { if (goToSymbolKb) { goToSymbolHint = localize('goToSymbolHint', 'Go to a symbol ({0})', goToSymbolKb); goToSymbolHint = localize('goToSymbolHint', 'Go to a symbol ({0}).', goToSymbolKb); } else { goToSymbolHint = localize('goToSymbolHintNoKb', 'To go to a symbol, configure a keybinding for the command Go To Symbol in Accessible View'); }"} {"_id":"q-en-vscode-be2995610f8354a21915ac82716d6a46f0d62cd6933d0938e9185917901fe817","text":" flipped-cursor-mac No newline at end of file flipped-cursor-mac "} {"_id":"q-en-vscode-bea8f2ed004291cfca8d0831923d230166abbb407922c4d765f3cb7df796403e","text":"*--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { IWorkingCopy, IWorkingCopyBackup } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IWorkingCopy, IWorkingCopyBackup, WorkingCopyCapabilities } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { URI } from 'vs/base/common/uri'; import { Emitter } from 'vs/base/common/event'; import { Disposable } from 'vs/base/common/lifecycle';"} {"_id":"q-en-vscode-bee2c7bd12b632248a1a8f95b4040273599e0905261fa26cb6981cc75e48ebd9","text":") { super(); this._widget = this._register(this._instantiationService.createInstance(ResizableHoverWidget, this._editor)); // Instantiate participants and sort them by `hoverOrdinal` which is relevant for rendering order. this._participants = []; for (const participant of HoverParticipantRegistry.getAll()) {"} {"_id":"q-en-vscode-bf2f53abfedf68e7886f7215e993728dd9b1f4c93704ff71cb47a130705dc575","text":"font-weight: normal; } h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { font-size: inherit; line-height: auto; } a:hover { color: #4080D0; text-decoration: underline;"} {"_id":"q-en-vscode-bf415c0d57ef54ae06838d6eb7033d3b7a0e5eef14dbc64268c191f1e939716e","text":"const err = new Error('An extension called process.crash() and this was prevented.'); console.warn(err.stack); }; // Set ELECTRON_RUN_AS_NODE environment variable for extensions that use // child_process.spawn with process.execPath and expect to run as node process // on the desktop. // Refs https://github.com/microsoft/vscode/issues/151012#issuecomment-1156593228 process.env['ELECTRON_RUN_AS_NODE'] = '1'; } interface IRendererConnection {"} {"_id":"q-en-vscode-bf8091d18f99251048ad9e6b584d41e9609cd4dd74825a1d6ba3114658f88297","text":"*--------------------------------------------------------------------------------------------*/ import { Event } from 'vs/base/common/event'; import { IWorkbenchContribution } from 'vs/workbench/common/contributions'; import { IDebugService, VIEWLET_ID, IDebugSession } from 'vs/workbench/contrib/debug/common/debug'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { IProgressService, ProgressLocation } from 'vs/platform/progress/common/progress'; import { dispose, IDisposable } from 'vs/base/common/lifecycle'; import { IWorkbenchContribution } from 'vs/workbench/common/contributions'; import { IDebugService, IDebugSession, VIEWLET_ID } from 'vs/workbench/contrib/debug/common/debug'; import { IViewsService } from 'vs/workbench/services/views/common/viewsService'; import { NotificationPriority } from 'vs/platform/notification/common/notification'; export class DebugProgressContribution implements IWorkbenchContribution {"} {"_id":"q-en-vscode-bfa77206b03bc9e0a2cf68d02f24076e83aad853581ce32cce2d2203368630c3","text":"} private _updateContentsDomNodeMaxDimensions() { const width = Math.max(this._editor.getLayoutInfo().width * 0.66, 500); const height = Math.max(this._editor.getLayoutInfo().height / 4, 250); const height = Math.max(this._editor.getLayoutInfo().height / 4, 250, ContentHoverWidget._lastDimensions.height); const width = Math.max(this._editor.getLayoutInfo().width * 0.66, 500, ContentHoverWidget._lastDimensions.width); this._setContentsDomNodeMaxDimensions(width, height); }"} {"_id":"q-en-vscode-bfa9ec9d323eab34c983011887bcd480f31d7f7f3987c8c5592581db6b9b4a30","text":"return ''; } private get selectedText(): string { const activeEditor = this.editorService.getActiveEditor(); if (activeEditor) { const editorControl = (activeEditor.getControl()); if (editorControl) { const editorModel = editorControl.getModel(); const editorSelection = editorControl.getSelection(); if (editorModel && editorSelection) { return editorModel.getValueInRange(editorSelection); } } } return ''; } private getFilePath(): string { let input = this.editorService.getActiveEditorInput(); if (input instanceof DiffEditorInput) {"} {"_id":"q-en-vscode-bfb670678912bc01dcbcde29f4f6ba0921c1f055551adab9db955f92c5880cc9","text":"this.container.style.marginLeft = `${marginWithoutIndentation}px`; } setWidgetMargins(position: Position, indentationWidth?: number): void { if (indentationWidth === undefined) { indentationWidth = this._calculateIndentationWidth(position); } setWidgetMargins(position: Position): void { const indentationWidth = this._calculateIndentationWidth(position); if (this._indentationWidth === indentationWidth) { return; }"} {"_id":"q-en-vscode-bfc68e69c165cfa16e01492469e8ac88061439d5c0b25a59131d5b181637d849","text":"this._domNode.domNode.height = height * ratio; const ctx = this._domNode.domNode.getContext('2d')!; ctx.clearRect(0, 0, this.width * ratio, height * ratio); this._renderCanvas(ctx, this.width * ratio, height * ratio, scrollHeight * ratio, ratio); this._renderCanvas(ctx, this.width * ratio, height * ratio, contentHeight * ratio, ratio); this._renderOverviewViewport(); }"} {"_id":"q-en-vscode-bfe0c92a8a8b98f13ed9bec435512d3c8cdfdc16c04e7f1365d60635d3dfd24c","text":"private openAsBinary(input: FileEditorInput, options: ITextEditorOptions | undefined): void { // Mark file input for forced binary opening input.setForceOpenAsBinary(); // Open in group (this.group ?? this.editorGroupService.activeGroup).openEditor(input, { const defaultBinaryEditor = this.configurationService.getValue('workbench.editor.defaultBinaryEditor'); const groupToOpen = this.group ?? this.editorGroupService.activeGroup; const editorOptions = { ...options, // Make sure to not steal away the currently active group // because we are triggering another openEditor() call // and do not control the initial intent that resulted // in us now opening as binary. activation: EditorActivation.PRESERVE }); }; // If we the user setting specifies a default binary editor we use that. if (defaultBinaryEditor && defaultBinaryEditor !== '') { this.editorService.replaceEditors([{ editor: input, replacement: { resource: input.resource, options: { ...editorOptions, override: defaultBinaryEditor } } }], groupToOpen); } else { // Mark file input for forced binary opening input.setForceOpenAsBinary(); // Open in group groupToOpen.openEditor(input, editorOptions); } } private async openAsFolder(input: FileEditorInput): Promise {"} {"_id":"q-en-vscode-c0a175fade79860363ee376b6530ac7be83864751a9a5996c12b0497a9537d11","text":"} private get centeredEditorAvailableSize(): number { return this.silosSize[Position.ONE] - EditorGroupsControl.CENTERED_EDITOR_MIN_MARGIN * 2; return this.dimension.width - EditorGroupsControl.CENTERED_EDITOR_MIN_MARGIN * 2; } private get centeredEditorSize(): number { return Math.min(this.centeredEditorAvailableSize, this.centeredEditorPreferedSize); return Math.min(this.centeredEditorAvailableSize, this.centeredEditorPreferredSize); } private get centeredEditorPosition(): number {"} {"_id":"q-en-vscode-c0b3a911fb258a7f40ee99aa8731462a7d91494a80a5a60718140368e4aa4cf1","text":"// Default Filter return enableSeparateSubstringMatching ? fuzzySeparateFilter(word, wordToMatchAgainst) : fuzzyContiguousFilter(word, wordToMatchAgainst); } export function matchesFuzzy2(pattern: string, word: string): IMatch[] | undefined { pattern = pattern.toLowerCase(); word = word.toLowerCase(); let result: IMatch[] = []; let lastMatch: IMatch; let patternPos = 0; let wordPos = 0; while (patternPos < pattern.length && wordPos < word.length) { if (pattern.charAt(patternPos) === word.charAt(wordPos)) { patternPos += 1; if (lastMatch && lastMatch.end === wordPos) { lastMatch.end += 1; } else { lastMatch = { start: wordPos, end: wordPos + 1 }; result.push(lastMatch); } } wordPos += 1; } if (patternPos !== pattern.length) { return undefined; } return result; } export function matchesFuzzy3(pattern: string, word: string) { return _doMatchesFuzzy3( pattern, pattern.toLowerCase(), 0, word, word.toLowerCase(), 0, [], 0 ); } function _doMatchesFuzzy3( pattern: string, lowPattern: string, patternPos: number, word: string, lowWord: string, wordPos: number, positions: number[], score: number ): [IMatch[], number] { let retryPoints: number[] = []; let lastDidMatch = false; while (patternPos < lowPattern.length && wordPos < lowWord.length) { const charLowPattern = lowPattern.charAt(patternPos); const charLowWord = lowWord.charAt(wordPos); if (charLowPattern === charLowWord) { if (positions.length === 0) { score = -Math.min(wordPos, 3) * 3; // penalty -> gaps at start } else if (lastDidMatch) { score += 1; // bonus -> subsequent match } if (charLowWord !== word.charAt(wordPos)) { score += 10; // bonus -> upper-case } else if (wordPos > 0 && word.charAt(wordPos).match(_separator)) { score += 10; // bonus -> after a separator } else { // keep this as a retry point retryPoints.push(patternPos, wordPos + 1, positions.length, score); } patternPos += 1; positions.push(wordPos); lastDidMatch = true; } else { lastDidMatch = false; score -= 1; // penalty -> gaps in match } wordPos += 1; } if (patternPos !== lowPattern.length) { return undefined; } const matches: IMatch[] = []; let lastMatch: IMatch; for (const pos of positions) { if (lastMatch && lastMatch.end === pos) { lastMatch.end += 1; } else { lastMatch = { start: pos, end: pos + 1 }; matches.push(lastMatch); } } let result: [IMatch[], number] = [matches, score]; // try alternative matches for (let i = 0; i < retryPoints.length; i += 4) { const alt = _doMatchesFuzzy3( pattern, lowPattern, retryPoints[i], word, lowWord, retryPoints[i + 1], positions.slice(0, retryPoints[i + 2]), retryPoints[i + 3] ); if (alt && alt[1] > result[1]) { result = alt; } } return result; } const _separator = /[-_. ]/; export function matchesFuzzy4(pattern: string, word: string): [IMatch[], number] { const lowPattern = pattern.toLowerCase(); const lowWord = word.toLowerCase(); const [landmarkWord, landmarkPositions] = computeLandmarks(word, lowWord); let landmarkPos = 0; let wordPos = 0; let patternPos = 1; let charLowPattern = lowPattern.charAt(0); let result: IMatch[] = []; let lastMatch: IMatch; let score = 0; if (charLowPattern === lowWord.charAt(0)) { lastMatch = { start: wordPos, end: wordPos + 1 }; result.push(lastMatch); wordPos = 1; landmarkPos = 1; if (pattern.charAt(0) === word.charAt(0)) { score += 10; } } else if ((landmarkPos = landmarkWord.indexOf(charLowPattern)) >= 0) { wordPos = landmarkPositions[landmarkPos]; score += 10 - Math.min(9, wordPos * 3); lastMatch = { start: wordPos, end: wordPos + 1 }; result.push(lastMatch); wordPos += 1; landmarkPos += 1; } else { return undefined; } while (patternPos < lowPattern.length && wordPos < lowWord.length) { charLowPattern = lowPattern.charAt(patternPos); let match = false; if (landmarkPos < landmarkWord.length && charLowPattern === landmarkWord.charAt(landmarkPos)) { let newWordPos = landmarkPositions[landmarkPos]; match = true; score += 10 - (newWordPos - wordPos); wordPos = newWordPos; landmarkPos += 1; patternPos += 1; } else if (charLowPattern === lowWord.charAt(wordPos)) { match = true; patternPos += 1; } if (match) { if (lastMatch && lastMatch.end === wordPos) { lastMatch.end += 1; score += 1; } else { lastMatch = { start: wordPos, end: wordPos + 1 }; result.push(lastMatch); } } wordPos += 1; if (wordPos >= landmarkPositions[landmarkPos]) { landmarkPos += 1; } } if (patternPos !== lowPattern.length) { return undefined; } // substract uncovered remainder score -= lowWord.length - wordPos; return [result, score]; } function computeLandmarks(word: string, lowWord: string): [string, number[]] { let result: string = ''; let positions: number[] = []; let lastCh: string; for (let pos = 0; pos < word.length; pos++) { const ch = word.charAt(pos); if (!result // first character is a landmark || (lastCh === '_' || lastCh === '-' || lastCh === ' ') // last was separator || ch !== lowWord.charAt(pos) // upper-case ) { result += ch; positions.push(pos); } lastCh = ch; } result = result.toLowerCase(); return [result, positions]; } // function print(m: number[][]) { // \tfor (const n of m) { // \t\tconsole.log(n.join('|')); // \t} // } export function matchesFuzzy5(pattern: string, word: string) { // create matrix const matrix: number[][] = [[0]]; for (let i = 1; i <= pattern.length; i++) { matrix.push([-i]); } for (let i = 1; i <= word.length; i++) { matrix[0].push(-i); } for (let i = 0; i < pattern.length; i++) { let match = false; for (let j = 0; j < word.length; j++) { let diagScore = 0; if (pattern[i] === word[j]) { diagScore = 1 + matrix[i][j]; match = true; } else { diagScore = -1 + matrix[i][j]; } let upScore = -1 + matrix[i][j + 1]; let leftScore = -1 + matrix[i + 1][j]; matrix[i + 1][j + 1] = Math.max(diagScore, upScore, leftScore); } if (!match) { return undefined; } } // print(matrix); return []; } export function createMatches(position: number[]): IMatch[] { let ret: IMatch[] = []; let last: IMatch; for (const pos of position) { if (last && last.end === pos) { last.end += 1; } else { last = { start: pos, end: pos + 1 }; ret.push(last); } } return ret; } export function fuzzyMatchAndScore(pattern: string, word: string): [number, number[]] { let matches: number[] = []; let score = _matchRecursive( pattern, pattern.toLowerCase(), pattern.toUpperCase(), 0, word, word.toLowerCase(), 0, matches ); if (score <= 0) { return undefined; } score -= Math.min(matches[0], 3) * 3; // penalty for first matching character score -= (1 + matches[matches.length - 1]) - (pattern.length); // penalty for all non matching characters between first and last return [score, matches]; } export function _matchRecursive( pattern: string, lowPattern: string, upPattern: string, patternPos: number, word: string, lowWord: string, wordPos: number, matches: number[] ): number { if (patternPos >= lowPattern.length) { return 0; } const lowPatternChar = lowPattern.charAt(patternPos); let idx = -1; let value = 0; if ((patternPos === wordPos && lowPatternChar === lowWord.charAt(wordPos)) && ((value = _matchRecursive(pattern, lowPattern, upPattern, patternPos + 1, word, lowWord, wordPos + 1, matches)) >= 0) ) { matches.unshift(wordPos); return (pattern.charAt(patternPos) === word.charAt(wordPos) ? 17 : 11) + value; } if ((idx = lowWord.indexOf(`_${lowPatternChar}`, wordPos)) >= 0 && ((value = _matchRecursive(pattern, lowPattern, upPattern, patternPos + 1, word, lowWord, idx + 2, matches)) >= 0) ) { matches.unshift(idx + 1); return (pattern.charAt(patternPos) === word.charAt(idx + 1) ? 17 : 11) + value; } if ((idx = word.indexOf(upPattern.charAt(patternPos), wordPos)) >= 0 && ((value = _matchRecursive(pattern, lowPattern, upPattern, patternPos + 1, word, lowWord, idx + 1, matches)) >= 0) ) { matches.unshift(idx); return (pattern.charAt(patternPos) === word.charAt(idx) ? 17 : 11) + value; } if (patternPos > 0 && (idx = lowWord.indexOf(lowPatternChar, wordPos)) >= 0 && ((value = _matchRecursive(pattern, lowPattern, upPattern, patternPos + 1, word, lowWord, idx + 1, matches)) >= 0) ) { matches.unshift(idx); return 1 + value; } return -1; } "} {"_id":"q-en-vscode-c14c1a0b72e171deeb9767c0e6b93221e634b41edb636109fb15f0b898941850","text":"goMenuRegistration(); debugMenuRegistration(); tasksMenuRegistration(); terminalMenuRegistration(); if (isMacintosh) { windowMenuRegistration();"} {"_id":"q-en-vscode-c17fb9372a4a731489485dc13288f8882bbf8b172d6580f2c5932458e48c00c5","text":"this._widget?.inlineChatWidget.updateInfo(''); this._widget?.inlineChatWidget.updateToolbar(true); this._activeSession.addExchange(new SessionExchange(this._activeSession.lastInput, response)); this._activeSession?.addExchange(new SessionExchange(this._activeSession.lastInput, response)); this._ctxLastResponseType.set(response instanceof ReplyResponse ? response.raw.type : undefined); }"} {"_id":"q-en-vscode-c19c83b693b8f6a41cde4f28b6057920bf9acaf35177870619ad33c2ecbe8118","text":"private layoutTree(): void { const scrollBarHeight = 10; const treeHeight = Math.min(Math.max(266, this.editor.getLayoutInfo().height * 0.55), this.tree.contentHeight + scrollBarHeight); let maxHeightToAvoidCursorOverlay = Infinity; if (this.showAtPosition) { const editorTop = this.editor.getDomNode()?.offsetTop || 0; const containerTop = this.treeContainer.offsetTop + editorTop; const hoveredCharTop = this.editor.getTopForLineNumber(this.showAtPosition.lineNumber, true) - this.editor.getScrollTop(); if (containerTop < hoveredCharTop) { maxHeightToAvoidCursorOverlay = hoveredCharTop + editorTop - 22; // 22 is monaco top padding https://github.com/microsoft/vscode/blob/a1df2d7319382d42f66ad7f411af01e4cc49c80a/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.ts#L364 } } const treeHeight = Math.min(Math.max(266, this.editor.getLayoutInfo().height * 0.55), this.tree.contentHeight + scrollBarHeight, maxHeightToAvoidCursorOverlay); const realTreeWidth = this.tree.contentWidth; const treeWidth = clamp(realTreeWidth, 400, 550);"} {"_id":"q-en-vscode-c2261c02a68bbb1b0d59081bf9656b740ea6a9fe3f69993a278817d6cc5e2601","text":"\"target\" : { \"classification\": \"SystemMetaData\", \"purpose\": \"FeatureInsight\" } } */ telemetryService.publicLog('update:win32SetupTarget', { target: product.target }); this.telemetryService.publicLog('update:win32SetupTarget', { target: product.target }); } }"} {"_id":"q-en-vscode-c245369b3706698490e87c85f19a1853ae9fbe1b42cf80a501f2aedce2f1c99d","text":"\"list.hoverBackground\": \"#F2F2F2\", \"list.focusAndSelectionOutline\": \"#005FB8\", \"menu.border\": \"#CECECE\", \"menu.selectionBackground\": \"#005FB8\", \"menu.selectionForeground\": \"#ffffff\", \"notebook.cellBorderColor\": \"#E5E5E5\", \"notebook.selectedCellBackground\": \"#C8DDF150\", \"notificationCenterHeader.background\": \"#FFFFFF\","} {"_id":"q-en-vscode-c266dc70b1e654b7ab8ae0641890a4a2f26bf8a5700e9b3c3be42697397a5f55","text":"this.update(); } get toggles() { return this._toggles; } set toggles(toggles: IQuickInputToggle[]) { this._toggles = toggles ?? []; this.togglesUpdated = true; this.update(); } get validationMessage() { return this._validationMessage; }"} {"_id":"q-en-vscode-c2758e656775b85fca369957a79aa37176a358beca516193730954d89d470f72","text":"if (typeof options?.focusEditorLine === 'number') { this._cursorNavMode.set(true); this.revealInView(cell); } else if (options?.revealBehavior === ScrollToRevealBehavior.fullCell) { this.revealInView(cell); } else if (options?.revealBehavior === ScrollToRevealBehavior.firstLine) { this.revealFirstLineIfOutsideViewport(cell); } else {"} {"_id":"q-en-vscode-c277b3ad631d343ba0f76468823736043ec80c7d88ae6948189d2bbcd0c957b9","text":"\"displayName\": \"Markdown it ipynb Cell Attachment renderer\", \"entrypoint\": { \"extends\": \"vscode.markdown-it-renderer\", \"path\": \"./out/cellAttachmentRenderer.js\" \"path\": \"./notebook-out/cellAttachmentRenderer.js\" } } ],"} {"_id":"q-en-vscode-c2b1c591dab3976db14ed7490dcc0a82ffae55fb63d85eaa6e3efa638e54ff7a","text":"// Meta if (element.saneDetail) { data.detail.element.style.display = ''; data.detail.setLabel(element.saneDetail, undefined, { matches: detailHighlights, title: element.saneDetail }); } /* else { // TODO investigate potential detail bleeding into next quickpicks data.detail.setLabel(''); } */ } else { data.detail.element.style.display = 'none'; } // Separator if (element.item && element.separator && element.separator.label) {"} {"_id":"q-en-vscode-c2eaef17732ed39fe1100b2ee40d996736b16d51d39846831db1b179c6a7a8d0","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import * as sinon from 'sinon'; import { CancellationTokenSource, Disposable, EventEmitter, ExtensionContext, NotebookCellKind, NotebookDocumentChangeEvent, NotebookDocumentWillSaveEvent, NotebookEdit, NotebookRange, TextDocumentSaveReason, workspace, type CancellationToken, type NotebookCell, type NotebookDocument, type WorkspaceEdit, type WorkspaceEditMetadata } from 'vscode'; import { activate } from '../notebookModelStoreSync'; suite('Notebook Model Store Sync', () => { let disposables: Disposable[] = []; let onDidChangeNotebookDocument: EventEmitter; let onWillSaveNotebookDocument: AsyncEmitter; let notebook: NotebookDocument; let token: CancellationTokenSource; let editsApplied: WorkspaceEdit[] = []; let pendingPromises: Promise[] = []; let cellMetadataUpdates: NotebookEdit[] = []; let applyEditStub: sinon.SinonStub<[edit: WorkspaceEdit, metadata?: WorkspaceEditMetadata | undefined], Thenable>; setup(() => { disposables = []; notebook = { notebookType: '', metadata: {} } as NotebookDocument; token = new CancellationTokenSource(); disposables.push(token); sinon.stub(notebook, 'notebookType').get(() => 'jupyter-notebook'); applyEditStub = sinon.stub(workspace, 'applyEdit').callsFake((edit: WorkspaceEdit) => { editsApplied.push(edit); return Promise.resolve(true); }); const context = { subscriptions: [] as Disposable[] } as ExtensionContext; onDidChangeNotebookDocument = new EventEmitter(); disposables.push(onDidChangeNotebookDocument); onWillSaveNotebookDocument = new AsyncEmitter(); sinon.stub(NotebookEdit, 'updateCellMetadata').callsFake((index, metadata) => { const edit = (NotebookEdit.updateCellMetadata as any).wrappedMethod.call(NotebookEdit, index, metadata); cellMetadataUpdates.push(edit); return edit; } ); sinon.stub(workspace, 'onDidChangeNotebookDocument').callsFake(cb => onDidChangeNotebookDocument.event(cb) ); sinon.stub(workspace, 'onWillSaveNotebookDocument').callsFake(cb => onWillSaveNotebookDocument.event(cb) ); activate(context); }); teardown(async () => { await Promise.allSettled(pendingPromises); editsApplied = []; pendingPromises = []; cellMetadataUpdates = []; disposables.forEach(d => d.dispose()); disposables = []; sinon.restore(); }); test('Empty cell will not result in any updates', async () => { const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 0); }); test('Adding cell for non Jupyter Notebook will not result in any updates', async () => { sinon.stub(notebook, 'notebookType').get(() => 'some-other-type'); const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: {}, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 0); assert.strictEqual(cellMetadataUpdates.length, 0); }); test('Adding cell will result in an update to the metadata', async () => { const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: {}, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata; assert.deepStrictEqual(newMetadata, { custom: { metadata: {} } }); }); test('Add cell id if nbformat is 4.5', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5 } })); const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: {}, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata || {}; assert.strictEqual(Object.keys(newMetadata).length, 1); assert.strictEqual(Object.keys(newMetadata.custom).length, 2); assert.deepStrictEqual(newMetadata.custom.metadata, {}); assert.ok(newMetadata.custom.id); }); test('Do not add cell id if one already exists', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5 } })); const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234' } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata || {}; assert.strictEqual(Object.keys(newMetadata).length, 1); assert.strictEqual(Object.keys(newMetadata.custom).length, 2); assert.deepStrictEqual(newMetadata.custom.metadata, {}); assert.strictEqual(newMetadata.custom.id, '1234'); }); test('Do not perform any updates if cell id and metadata exists', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5 } })); const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234', metadata: {} } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 0); assert.strictEqual(cellMetadataUpdates.length, 0); }); test('Store language id in custom metadata, whilst preserving existing metadata', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5, metadata: { language_info: { name: 'python' } } } })); const cell: NotebookCell = { document: { languageId: 'javascript' } as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234', metadata: { collapsed: true, scrolled: true } } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [], cellChanges: [ { cell, document: undefined, metadata: undefined, outputs: undefined, executionSummary: undefined } ] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata || {}; assert.strictEqual(Object.keys(newMetadata).length, 1); assert.strictEqual(Object.keys(newMetadata.custom).length, 2); assert.deepStrictEqual(newMetadata.custom.metadata, { collapsed: true, scrolled: true, vscode: { languageId: 'javascript' } }); assert.strictEqual(newMetadata.custom.id, '1234'); }); test('No changes when language is javascript', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5, metadata: { language_info: { name: 'javascript' } } } })); const cell: NotebookCell = { document: { languageId: 'javascript' } as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234', metadata: { collapsed: true, scrolled: true } } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [], cellChanges: [ { cell, document: undefined, metadata: undefined, outputs: undefined, executionSummary: undefined } ] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 0); assert.strictEqual(cellMetadataUpdates.length, 0); }); test('Remove language from metadata when cell language matches kernel language', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5, metadata: { language_info: { name: 'javascript' } } } })); const cell: NotebookCell = { document: { languageId: 'javascript' } as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234', metadata: { vscode: { languageId: 'python' }, collapsed: true, scrolled: true } } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [], cellChanges: [ { cell, document: undefined, metadata: undefined, outputs: undefined, executionSummary: undefined } ] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata || {}; assert.strictEqual(Object.keys(newMetadata).length, 1); assert.strictEqual(Object.keys(newMetadata.custom).length, 2); assert.deepStrictEqual(newMetadata.custom.metadata, { collapsed: true, scrolled: true }); assert.strictEqual(newMetadata.custom.id, '1234'); }); test('Update language in metadata', async () => { sinon.stub(notebook, 'metadata').get(() => ({ custom: { nbformat: 4, nbformat_minor: 5, metadata: { language_info: { name: 'javascript' } } } })); const cell: NotebookCell = { document: { languageId: 'powershell' } as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: { custom: { id: '1234', metadata: { vscode: { languageId: 'python' }, collapsed: true, scrolled: true } } }, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [], cellChanges: [ { cell, document: undefined, metadata: undefined, outputs: undefined, executionSummary: undefined } ] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); const newMetadata = cellMetadataUpdates[0].newCellMetadata || {}; assert.strictEqual(Object.keys(newMetadata).length, 1); assert.strictEqual(Object.keys(newMetadata.custom).length, 2); assert.deepStrictEqual(newMetadata.custom.metadata, { collapsed: true, scrolled: true, vscode: { languageId: 'powershell' } }); assert.strictEqual(newMetadata.custom.id, '1234'); }); test('Will save event without any changes', async () => { await onWillSaveNotebookDocument.fireAsync({ notebook, reason: TextDocumentSaveReason.Manual }, token.token); }); test('Wait for pending updates to complete when saving', async () => { let resolveApplyEditPromise: (value: boolean) => void; const promise = new Promise((resolve) => resolveApplyEditPromise = resolve); applyEditStub.restore(); sinon.stub(workspace, 'applyEdit').callsFake((edit: WorkspaceEdit) => { editsApplied.push(edit); return promise; }); const cell: NotebookCell = { document: {} as any, executionSummary: {}, index: 0, kind: NotebookCellKind.Code, metadata: {}, notebook, outputs: [] }; const e: NotebookDocumentChangeEvent = { notebook, metadata: undefined, contentChanges: [ { range: new NotebookRange(0, 0), removedCells: [], addedCells: [cell] } ], cellChanges: [] }; onDidChangeNotebookDocument.fire(e); assert.strictEqual(editsApplied.length, 1); assert.strictEqual(cellMetadataUpdates.length, 1); // Try to save. let saveCompleted = false; const saved = onWillSaveNotebookDocument.fireAsync({ notebook, reason: TextDocumentSaveReason.Manual }, token.token); saved.finally(() => saveCompleted = true); await new Promise((resolve) => setTimeout(resolve, 10)); // Verify we have not yet completed saving. assert.strictEqual(saveCompleted, false); resolveApplyEditPromise!(true); await new Promise((resolve) => setTimeout(resolve, 1)); // Should have completed saving. saved.finally(() => saveCompleted = true); }); interface IWaitUntil { token: CancellationToken; waitUntil(thenable: Promise): void; } interface IWaitUntil { token: CancellationToken; waitUntil(thenable: Promise): void; } type IWaitUntilData = Omit, 'token'>; class AsyncEmitter { private listeners: ((d: T) => void)[] = []; get event(): (listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]) => Disposable { return (listener, thisArgs, _disposables) => { this.listeners.push(listener.bind(thisArgs)); return { dispose: () => { // } }; }; } dispose() { this.listeners = []; } async fireAsync(data: IWaitUntilData, token: CancellationToken): Promise { if (!this.listeners.length) { return; } const promises: Promise[] = []; this.listeners.forEach(cb => { const event = { ...data, token, waitUntil: (thenable: Promise) => { promises.push(thenable); } } as T; cb(event); }); await Promise.all(promises); } } }); "} {"_id":"q-en-vscode-c30fa9fed3a5ed88c9e30cb1167e49fd72c3e1187390182e4c3c92545d3b2ecc","text":"} fs.writeFileSync(this.workspacesJsonPath, JSON.stringify(this.backups)); } catch (ex) { console.error('Could not save workspaces.json', ex); console.error(`Backup: Could not save workspaces.json: ${ex.toString()}`); } }"} {"_id":"q-en-vscode-c33a76a589f7365f9b34c86ca2f08cd0a06b1feb0f3006a8002d3d03a3b08591","text":"import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { IPanelService } from 'vs/workbench/services/panel/common/panelService'; import { ITerminalInstance, KEYBINDING_CONTEXT_TERMINAL_TEXT_SELECTED, TERMINAL_PANEL_ID, IShellLaunchConfig, ITerminalProcessManager, ProcessState } from 'vs/workbench/parts/terminal/common/terminal'; import { ITerminalInstance, KEYBINDING_CONTEXT_TERMINAL_TEXT_SELECTED, TERMINAL_PANEL_ID, IShellLaunchConfig, ITerminalProcessManager, ProcessState, NEVER_MEASURE_RENDER_TIME_STORAGE_KEY } from 'vs/workbench/parts/terminal/common/terminal'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { TabFocus } from 'vs/editor/common/config/commonEditorConfig';"} {"_id":"q-en-vscode-c35f9afb29c42bca5a92dab0a4a2dab959881e1718d364f957eddb367f0d4905","text":"}); viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, { content: localize( { key: 'detectThenRunAndDebug', comment: [ 'Please do not translate the word \"command\", it is part of our internal syntax which must not change', '{Locked=\"](command:{0})\"}', ] }, \"[Show all automatic debug configurations](command:{0}).\", SELECT_AND_START_ID), content: `[${localize('detectThenRunAndDebug', \"Show all automatic debug configurations\")}](command:${SELECT_AND_START_ID}).`, when: CONTEXT_DEBUGGERS_AVAILABLE, group: ViewContentGroups.Debug, order: 10"} {"_id":"q-en-vscode-c3787286f605e5ae0164c25fb70fb9f671dc5deacd025e6a0d0f92c784913e83","text":".suggest-input-container .monaco-editor, .suggest-input-container .mtk1 { /* allow the embedded monaco to be styled from the outer context */ background-color: inherit; background-color: transparent; color: inherit; }"} {"_id":"q-en-vscode-c3b1f386b50e307a937bda0777fae1b33a32c637794c0d806b7065212c756df6","text":"if (searchView.shouldShowAIResults()) { if (searchView.model.hasAIResults) { viewer.expandAll(); await forcedExpandRecursively(viewer, undefined); } else { await viewer.expand(searchView.model.searchResult.plainTextSearchResult, true); await forcedExpandRecursively(viewer, searchView.model.searchResult.plainTextSearchResult); } } else { viewer.expandAll(); await forcedExpandRecursively(viewer, undefined); } } } /** * Recursively expand all nodes in the search results tree that are a child of `element` * If `element` is not provided, it is the root node. */ export async function forcedExpandRecursively( viewer: WorkbenchCompressibleAsyncDataTree, element: RenderableMatch | undefined ) { if (element) { if (!viewer.hasNode(element)) { return; } await viewer.expand(element, true); } const children = viewer.getNode(element)?.children; if (children) { for (const child of children) { if (child.element instanceof SearchResult) { throw Error('SearchResult should not be a child of a RenderableMatch'); } forcedExpandRecursively(viewer, child.element); } } } function clearSearchResults(accessor: ServicesAccessor) { const viewsService = accessor.get(IViewsService); const searchView = getSearchView(viewsService);"} {"_id":"q-en-vscode-c3d25441de953d2eff4fb4c04b495dd71dddb4faeee0ff7d9431bdf444877c7c","text":"private async _getCommandActions(command: ITerminalCommand): Promise { const actions: IAction[] = []; if (command.command !== '') { const labelRun = localize(\"terminal.rerunCommand\", 'Rerun Command'); actions.push({ class: undefined, tooltip: labelRun, dispose: () => { }, id: 'terminal.rerunCommand', label: labelRun, enabled: true, run: () => this._onDidRequestRunCommand.fire({ command }) }); const labelCopy = localize(\"terminal.copyCommand\", 'Copy Command'); actions.push({ class: undefined, tooltip: labelCopy, dispose: () => { }, id: 'terminal.copyCommand', label: labelCopy, enabled: true, run: () => this._clipboardService.writeText(command.command) }); } if (command.hasOutput) { if (actions.length > 0) { actions.push(new Separator()); } const labelText = localize(\"terminal.copyOutput\", 'Copy Output'); actions.push({ class: 'copy-output', tooltip: 'Copy Output', dispose: () => { }, id: 'terminal.copyOutput', label: localize(\"terminal.copyOutput\", 'Copy Output'), enabled: true, class: undefined, tooltip: labelText, dispose: () => { }, id: 'terminal.copyOutput', label: labelText, enabled: true, run: () => this._clipboardService.writeText(command.getOutput()!) }); const labelHtml = localize(\"terminal.copyOutputAsHtml\", 'Copy Output as HTML'); actions.push({ class: 'copy-output', tooltip: 'Copy Output as HTML', dispose: () => { }, id: 'terminal.copyOutputAsHtml', label: localize(\"terminal.copyOutputAsHtml\", 'Copy Output as HTML'), enabled: true, class: undefined, tooltip: labelHtml, dispose: () => { }, id: 'terminal.copyOutputAsHtml', label: labelHtml, enabled: true, run: () => this._onDidRequestRunCommand.fire({ command, copyAsHtml: true }) }); } if (command.command !== '') { actions.push({ class: 'rerun-command', tooltip: 'Rerun Command', dispose: () => { }, id: 'terminal.rerunCommand', label: localize(\"terminal.rerunCommand\", 'Rerun Command'), enabled: true, run: () => this._onDidRequestRunCommand.fire({ command }) }); if (actions.length > 0) { actions.push(new Separator()); } const label = localize(\"terminal.learnShellIntegration\", 'Learn About Shell Integration'); actions.push({ class: 'how-does-this-work', tooltip: 'How does this work?', dispose: () => { }, id: 'terminal.howDoesThisWork', label: localize(\"terminal.howDoesThisWork\", 'How does this work?'), enabled: true, class: undefined, tooltip: label, dispose: () => { }, id: 'terminal.learnShellIntegration', label, enabled: true, run: () => this._openerService.open('https://code.visualstudio.com/docs/editor/integrated-terminal#_shell-integration') }); return actions;"} {"_id":"q-en-vscode-c3d951f8677cde1ffe255ea6b59043d3e046e93a6b3e12cedba2cb33fe0e5ab4","text":"*/ globalFindClipboard?: boolean; /** * Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found * Controls whether the search result and diff result automatically restarts from the beginning (or the end) when no further matches can be found */ loop?: boolean; }"} {"_id":"q-en-vscode-c4134bc7d947a26179febd1c5a19c015fd240e703091f34c2da8d7aee476d67c","text":"abstract renderChanges(response: ReplyResponse): Promise; abstract hasFocus(): boolean; abstract needsMargin(): boolean; } export class PreviewStrategy extends EditModeStrategy {"} {"_id":"q-en-vscode-c41b444f16966cf650097228f4e732855c8f52bb6b685b306581f8f14dfb676b","text":"resolved \"https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad\" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^11.2.0: version \"11.2.0\" resolved \"https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b\" integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== dependencies: graceful-fs \"^4.2.0\" jsonfile \"^6.0.1\" universalify \"^2.0.0\" github-from-package@0.0.0: version \"0.0.0\" resolved \"https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce\" integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= graceful-fs@4.2.11: graceful-fs@4.2.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version \"4.2.11\" resolved \"https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3\" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="} {"_id":"q-en-vscode-c4454b5a180969c49210953c52cfa092d1891239ab9846d534f1de8b0131905b","text":"value: that.userDataProfileService.getShortName(profile), title: localize('change short name', \"Change Short Name...\"), validateInput: async (value: string) => { if (profile.shortName !== value && !ThemeIcon.fromString(value) && charCount(value) > 2) { if (profile.shortName === value) { return undefined; } const themeIcon = ThemeIcon.fromString(value); if (themeIcon) { if (Codicon.getAll().some(c => c.id === themeIcon.id)) { return undefined; } return localize('invalid codicon', \"Invalid codicon. Please use a valid codicon id.\"); } if (charCount(value) > 2) { return localize('invalid short name', \"Short name should be at most 2 characters long.\"); } return undefined;"} {"_id":"q-en-vscode-c4747978e04be75bb0dfbe53776dc889cf34a845066608949d10239ca2918387","text":"import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; import { MenuRegistry } from 'vs/platform/actions/common/actions'; import { registerSingleton } from 'vs/platform/instantiation/common/extensions'; import { commandsExtensionPoint } from 'vs/workbench/api/common/menusExtensionPoint'; export class KeyboardMapperFactory { public static readonly INSTANCE = new KeyboardMapperFactory();"} {"_id":"q-en-vscode-c49220c7dbaa10241cbe9026aca398fe7077cc32f3ac7c65894740a6be6b77b0","text":"} /** * Splits a recent label in name and parent path, supporting both '/' and '' and workspace suffixes * Splits a recent label in name and parent path, supporting both '/' and '' and workspace suffixes. * If the location is remote, the remote name is included in the name part. */ export function splitRecentLabel(recentLabel: string) { export function splitRecentLabel(recentLabel: string): { name: string; parentPath: string } { if (recentLabel.endsWith(']')) { // label with workspace suffix const lastIndexOfSquareBracket = recentLabel.lastIndexOf(' [', recentLabel.length - 2); if (lastIndexOfSquareBracket !== -1) { const split = splitName(recentLabel.substring(0, lastIndexOfSquareBracket)); return { name: split.name, parentPath: split.parentPath + recentLabel.substring(lastIndexOfSquareBracket) }; const remoteNameWithSpace = recentLabel.substring(lastIndexOfSquareBracket); return { name: split.name + remoteNameWithSpace, parentPath: split.parentPath }; } } return splitName(recentLabel);"} {"_id":"q-en-vscode-c496b9fe3b97f20e1b89fa633517673845d6282735acc2449ed5ff6e5330b1ee","text":"protocol: true } : undefined; this._proxy.$setTunnelProvider(tunnelFeatures); this._proxy.$setTunnelProvider(tunnelFeatures, !!provider.tunnelFactory); } } else { this._forwardPortProvider = undefined;"} {"_id":"q-en-vscode-c4b548c98983b7beeb1eceec924b5bad8c70fc8eedd84e24bd6c53742edb7337","text":"this.focus(); } getContextMenuActions(): IAction[] { getContextMenuActions(viewDescriptor?: IViewDescriptor): IAction[] { const result: IAction[] = []; if (viewDescriptor) { result.push({ id: `${viewDescriptor.id}.removeView`, label: localize('hideView', \"Hide\"), enabled: viewDescriptor.canToggleVisibility, run: () => this.toggleViewVisibility(viewDescriptor.id) }); } const viewToggleActions = this.viewsModel.viewDescriptors.map(viewDescriptor => ({ id: `${viewDescriptor.id}.toggleVisibility`, label: viewDescriptor.name,"} {"_id":"q-en-vscode-c51bdbcb0627b4d464e3f339033046a38776798d498f918ce776b97b3e7294b0","text":"import { TestConfigurationService } from 'vs/platform/configuration/test/common/testConfigurationService'; import { TestInstantiationService } from 'vs/platform/instantiation/test/common/instantiationServiceMock'; import { IMarkerData, IMarkerService } from 'vs/platform/markers/common/markers'; import { IInlineChatService, IInlineChatSessionProvider } from 'vs/workbench/contrib/inlineChat/common/inlineChat'; import { ChatAgentLocation, IChatAgent, IChatAgentData, IChatAgentService } from 'vs/workbench/contrib/chat/common/chatAgents'; import { CellDiagnostics } from 'vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticEditorContrib'; import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { CellKind, NotebookSetting } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { ICellExecutionStateChangedEvent, IExecutionStateChangedEvent, INotebookCellExecution, INotebookExecutionStateService, NotebookExecutionType } from 'vs/workbench/contrib/notebook/common/notebookExecutionStateService'; import { setupInstantiationService, TestNotebookExecutionStateService, withTestNotebook } from 'vs/workbench/contrib/notebook/test/browser/testNotebookEditor'; import { nullExtensionDescription } from 'vs/workbench/services/extensions/common/extensions'; suite('notebookCellDiagnostics', () => {"} {"_id":"q-en-vscode-c55e0fdb40a4a7cbc0b67593b7c44888da4feb4199bb9ec78df38788a417f0de","text":"withTestCodeEditor( [ 'camel from words', 'from_snake_case', 'from-kebab-case', 'alreadyCamel', 'ReTain_any_CAPitalization', 'my_var.test_function()', 'öçş_öç_şğü_ğü' ], {}, (editor) => { const model = editor.getModel()!; const camelcaseAction = new CamelCaseAction(); editor.setSelection(new Selection(1, 1, 1, 18)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(1), 'camelFromWords'); editor.setSelection(new Selection(2, 1, 2, 15)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(2), 'fromSnakeCase'); editor.setSelection(new Selection(3, 1, 3, 15)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(3), 'fromKebabCase'); editor.setSelection(new Selection(4, 1, 4, 12)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(4), 'alreadyCamel'); editor.setSelection(new Selection(5, 1, 5, 26)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(5), 'ReTainAnyCAPitalization'); editor.setSelection(new Selection(6, 1, 6, 23)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(6), 'myVar.testFunction()'); editor.setSelection(new Selection(7, 1, 7, 14)); executeAction(camelcaseAction, editor); assert.strictEqual(model.getLineContent(7), 'öçşÖçŞğüĞü'); } ); withTestCodeEditor( [ '', ' ' ], {}, (editor) => {"} {"_id":"q-en-vscode-c5737b18f8e7680d5ef7659be3d531d0d048aba4ff122faf29545751fc70aa36","text":"id: 'workbench.action.toggleZenMode', title: { value: localize('toggleZenMode', \"Toggle Zen Mode\"), mnemonicTitle: localize('miToggleZenMode', \"Zen Mode\"), mnemonicTitle: localize({ key: 'miToggleZenMode', comment: ['&& denotes a mnemonic'] }, \"Zen Mode\"), original: 'Toggle Zen Mode' }, category: Categories.View,"} {"_id":"q-en-vscode-c5763052fc3b2fa5b1c4e06e1ddc648c29b93758e66f6f3b57f6bfe28ccb1552","text":"export const enum WorkingCopyCapabilities { /** * Signals no specific capability for the working copy. */ None = 0, /** * Signals that the working copy requires * additional input when saving, e.g. an * associated path to save to."} {"_id":"q-en-vscode-c581cc2c2e9f85fd5d334117d054638656719fad023dbf757abbc7d39c01ad53","text":"source: 'Git Bash' } }, additionalProperties: { 'anyOf': [ { type: 'object', required: ['source'], properties: { source: { description: localize('terminalProfile.windowsSource', 'A profile source that will auto detect the paths to the shell.'), enum: ['PowerShell', 'Git Bash'] } } }, terminalProfileSchema ] } }, 'terminal.integrated.profiles.osx': { markdownDescription: localize("} {"_id":"q-en-vscode-c5b73183a5c896bd6602313fc5e080dcd40b8e815a56e82aab45966ecf6776e3","text":"} return this.toolBar.getItemsWidth(); } dispose(): void { this.disposables = dispose(this.disposables); } } registerThemingParticipant((theme: ITheme, collector: ICssStyleCollector) => {"} {"_id":"q-en-vscode-c5ef09caa233966e81ad1c9935bbd08e1eda5b509cf1f84ff39cbf0d396663fc","text":"if (this._focused) { this._disposeFocusStickyScrollStore(); } this._editor.revealPosition({ lineNumber: this._stickyScrollWidget.hoverOnLine, column: 1 }); this._revealPosition({ lineNumber: this._stickyScrollWidget.hoverOnLine, column: 1 }); } this._instaService.invokeFunction(goToDefinitionWithLocation, e, this._editor as IActiveCodeEditor, { uri: this._editor.getModel()!.uri, range: this._stickyRangeProjectedOnEditor! }); } else if (!e.isRightClick) { // Normal click const position = { lineNumber: this._stickyScrollWidget.hoverOnLine, column: this._stickyScrollWidget.hoverOnColumn }; if (this._focused) { this._disposeFocusStickyScrollStore(); } this._editor.revealPosition(position); this._editor.setSelection(Range.fromPositions(position)); this._revealPosition({ lineNumber: this._stickyScrollWidget.hoverOnLine, column: this._stickyScrollWidget.hoverOnColumn }); } })); return linkGestureStore;"} {"_id":"q-en-vscode-c62ea13c0f5855e22446b6385a8d5f545a59bfc2e2838b4ca836e78d31572688","text":"import { IChatEditorOptions } from '../chatEditor.js'; import { ChatEditorInput } from '../chatEditorInput.js'; import { ChatViewPane } from '../chatViewPane.js'; import { CONTEXT_CHAT_ENABLED, CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, CONTEXT_IN_CHAT_INPUT, CONTEXT_IN_CHAT_SESSION } from '../../common/chatContextKeys.js'; import { CONTEXT_CHAT_ENABLED, CONTEXT_CHAT_INPUT_CURSOR_AT_TOP, CONTEXT_IN_CHAT_INPUT, CONTEXT_IN_CHAT_SESSION, CONTEXT_IN_QUICK_CHAT } from '../../common/chatContextKeys.js'; import { IChatDetail, IChatService } from '../../common/chatService.js'; import { IChatRequestViewModel, IChatResponseViewModel, isRequestVM } from '../../common/chatViewModel.js'; import { IChatWidgetHistoryService } from '../../common/chatWidgetHistoryService.js';"} {"_id":"q-en-vscode-c62f453ebc4a58842e587319f6d515e0089854766519fa2a5677295babd9c5da","text":"constructor( private readonly _collection: IMergedEnvironmentVariableCollection, @ICommandService private readonly _commandService: ICommandService @ICommandService private readonly _commandService: ICommandService, @IExtensionService private readonly _extensionService: IExtensionService ) { }"} {"_id":"q-en-vscode-c6a209f0bb8b4cbac2a0d1a2b3e5106578d595fefd205d7fba65d60b4f6661bd","text":"this.configurationProperties[key] = property; this.defaultLanguageConfigurationOverridesNode.properties![key] = property; } else { this.defaultValues[key] = defaultConfiguration[key]; const property = this.configurationProperties[key]; if (property) { this.updatePropertyDefaultValue(key, property);"} {"_id":"q-en-vscode-c6e21eeb09a036d8f9af3121ff5253584b4175282f5fd777591cb8cdcfb57896","text":"\"config.branchProtectionPrompt.alwaysCommit\": \"Always commit changes to the protected branch.\", \"config.branchProtectionPrompt.alwaysCommitToNewBranch\": \"Always commit changes to a new branch.\", \"config.branchProtectionPrompt.alwaysPrompt\": \"Always prompt before changes are committed to a protected branch.\", \"config.branchRandomNameDictionary\": \"List of dictionaries used when the branch name that is randomly generated. Supported values: `adjectives`, `animals`, `colors`, `numbers`.\", \"config.branchRandomNameDictionary\": \"List of dictionaries used for the randomly generated branch name. Each value represents the dictionary used to generate the segment of the branch name. Supported dictionaries: `adjectives`, `animals`, `colors` and `numbers`.\", \"config.branchRandomNameDictionary.adjectives\": \"A random adjective\", \"config.branchRandomNameDictionary.animals\": \"A random animal name\", \"config.branchRandomNameDictionary.colors\": \"A random color name\", \"config.branchRandomNameDictionary.numbers\": \"A random number between 100 and 999\", \"config.branchRandomNameEnable\": \"Controls whether a random name is generated when creating a new branch.\", \"config.branchValidationRegex\": \"A regular expression to validate new branch names.\", \"config.branchWhitespaceChar\": \"The character to replace whitespace in new branch names, and to separate segments of a randomly generated branch name.\","} {"_id":"q-en-vscode-c73f48212113721af42a65fa2d895e8edfee7abaf873d2646b83a08f80719c6d","text":"super.dispose(); this._subscriptions = dispose(this._subscriptions); } } No newline at end of file } "} {"_id":"q-en-vscode-c74d505f068085cf0b9afb9cddd6d06c0fa95aec4627618429978975a0f2a4e6","text":"} dispose(): void { this._quickDiff?.dispose(); } }"} {"_id":"q-en-vscode-c750d827f393f96856b4380237eeeaaf459d5f10eb7774d8ec74d6360e33deeb","text":"font-family: 'codicon'; content: 'eb53'; background-image: none; font-size: 150%; font-size: 16px; line-height: 37px !important; } .workspace-trust-editor {"} {"_id":"q-en-vscode-c76706f81cf4d5b413b63566435ec1caeaeecb4e0ac27f1cf6665d06728f5927","text":"collector.addRule(` .monaco-editor .contentWidgets ${Codicon.lightbulbAutofix.cssSelector} { color: ${editorLightBulbAutoFixForegroundColor}; background-color: ${editorBackgroundColor}; }`); }"} {"_id":"q-en-vscode-c77ab1add5e828c968099b9bf83767166d069e8ed6af5a5b6278077fb0141838","text":"super(VIEWLET_ID, { mergeViewWithContainerWhenSingleView: true }, instantiationService, configurationService, layoutService, contextMenuService, telemetryService, extensionService, themeService, storageService, contextService, viewDescriptorService); this.viewletVisibleContextKey = ExplorerViewletVisibleContext.bindTo(contextKeyService); this._register(this.contextService.onDidChangeWorkspaceName(e => this.updateTitleArea())); }"} {"_id":"q-en-vscode-c79418c288c89be170624a7e0aaf93e165a4b5b58830a3e94cb409a70cec4819","text":"\"git\": { \"name\": \"electron\", \"repositoryUrl\": \"https://github.com/electron/electron\", \"commitHash\": \"84d7f7f071ae11637d4a41b95536410293672750\" \"commitHash\": \"dc3ce65dd5fd872db86e5308ae005a898142435a\" } }, \"isOnlyProductionDependency\": true, \"license\": \"MIT\", \"version\": \"25.8.0\" \"version\": \"25.8.1\" }, { \"component\": {"} {"_id":"q-en-vscode-c7cbd69d3f94c8effefae097c8618ecb74f9eb7ec0852295e1f2b47e9bd77526","text":"env: this._shellLaunchConfig.env }; this._logService.trace('Spawning remote agent process', { terminalId: this.id, shellLaunchConfigDto }); this._logService.trace('Spawning remote agent process', { terminalId: this._instanceId, shellLaunchConfigDto }); const result = await this._remoteTerminalChannel.createTerminalProcess( shellLaunchConfigDto,"} {"_id":"q-en-vscode-c85768bc60c002e91f3189cd464ec154046ed55069aeba4fe6ed791b9400359a","text":"import * as strings from 'vs/base/common/strings'; import * as objects from 'vs/base/common/objects'; import * as platform from 'vs/base/common/platform'; import * as stdfork from 'vs/base/node/stdFork'; import { Emitter, Event } from 'vs/base/common/event'; import { TPromise } from 'vs/base/common/winjs.base'; import { ExtensionsChannelId } from 'vs/platform/extensionManagement/common/extensionManagement';"} {"_id":"q-en-vscode-c888adcc359bab41140d010aec24d0ad40807a25604ba3d83038d2b63dfd8c79","text":"getSelectedOrSuggestedKernel(notebook: INotebookTextModel): INotebookKernel | undefined { const info = this.getMatchingKernel(notebook); return info.selected ?? (info.all.length === 1 ? info.all[0] : undefined); if (info.selected) { return info.selected; } const preferred = info.all.filter(kernel => this._kernels.get(kernel.id)?.notebookPriorities.get(notebook.uri) === 2 /* vscode.NotebookControllerPriority.Preferred */); if (preferred.length === 1) { return preferred[0]; } return info.all.length === 1 ? info.all[0] : undefined; } // default kernel for notebookType"} {"_id":"q-en-vscode-c896c6e6b11c3af42bba33e7229410c2dbdb33037012217a54a5c633868bcab7","text":"} run(accessor: ServicesAccessor) { accessor.get(ITerminalService).doWithActiveInstance(t => { t.xterm?.markTracker.scrollToPreviousMark(); t.xterm?.markTracker.scrollToPreviousMark(undefined, undefined, t.capabilities.has(TerminalCapability.CommandDetection)); }); } });"} {"_id":"q-en-vscode-c9698dd2130f0e8585358f90077cf9d1793b010b21d24071241026f42d895954","text":"public async run(accessor: ServicesAccessor | undefined, editor: ICodeEditor): Promise { const controller = InlineCompletionsController.get(editor); controller?.model.get()?.acceptNextLine(controller.editor); await controller?.model.get()?.acceptNextLine(controller.editor); } }"} {"_id":"q-en-vscode-c9797f6e5d670723ba58e351b37bcda63d5d5f8633da4ebfe1ff90a3708eb403","text":"import { Slugifier } from './slugify'; import { ITextDocument } from './types/textDocument'; import { Disposable } from './util/dispose'; import { stringHash } from './util/hash'; import { WebviewResourceProvider } from './util/resources'; import { isOfScheme, Schemes } from './util/schemes'; import { MdDocumentInfoCache } from './util/workspaceCache';"} {"_id":"q-en-vscode-c991b8bd7d39f3ea23604ad79524447ba9639f8a1790610a2fdb44e80208774f","text":"private addLinkValidator(md: any): void { const validateLink = md.validateLink; md.validateLink = (link: string) => { // support file:// links return validateLink(link) || isOfScheme(Schemes.file, link) || isOfScheme(Schemes.vscode, link) || isOfScheme(Schemes['vscode-insiders'], link) || /^data:image/.*?;/.test(link);"} {"_id":"q-en-vscode-c9a82d9b5b517b538611f377a74a17b4e7d98e8829bd79a5649ca4766bedd9a6","text":"import { IClipboardService } from 'vs/platform/clipboard/common/clipboardService'; import { toErrorMessage } from 'vs/base/common/errorMessage'; import { IListService } from 'vs/platform/list/browser/listService'; import { CommandsRegistry, ICommandHandler } from 'vs/platform/commands/common/commands'; import { CommandsRegistry, ICommandHandler, ICommandService } from 'vs/platform/commands/common/commands'; import { IContextKey, IContextKeyService, ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey'; import { IFileService } from 'vs/platform/files/common/files'; import { KeybindingsRegistry, KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry';"} {"_id":"q-en-vscode-c9cb37fbf8aa38ff3eaaf20667dd8302db53e705e0e715e38164c0243ace3ca1","text":"\"description\": \"%configuration.suggest.includeCompletionsForImportStatements%\", \"scope\": \"resource\" }, \"typescript.suggest.includeCompletionsWithSnippetText\": { \"type\": \"boolean\", \"default\": true, \"description\": \"%configuration.suggest.includeCompletionsWithSnippetText%\", \"scope\": \"resource\" }, \"typescript.reportStyleChecksAsWarnings\": { \"type\": \"boolean\", \"default\": true,"} {"_id":"q-en-vscode-ca19c76a11ac890087031302319c5e9c0cb5c33bcdbb4cc694dd2adce6571ca6","text":"\"--vscode-activityBarTop-foreground\", \"--vscode-activityBarTop-inactiveForeground\", \"--vscode-activityBarTop-background\", \"--vscode-activityBarTop-activeBackground\", \"--vscode-badge-background\", \"--vscode-badge-foreground\", \"--vscode-banner-background\","} {"_id":"q-en-vscode-ca68e782367b5bee3adc80397352291c6435235c4fd4d934c6708722648cb5d8","text":"} kbd { color: var(--vscode-editor-foreground); background-color: var(--vscode-keybindingLabel-background); color: var(--vscode-keybindingLabel-foreground); border-style: solid; border-width: 1px; border-radius: 3px; border-color: var(--vscode-keybindingLabel-border); border-bottom-color: var(--vscode-keybindingLabel-bottomBorder); box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow); vertical-align: middle; padding: 1px 3px; background-color: hsla(0,0%,50%,.17); border: 1px solid rgba(71,71,71,.4); border-bottom-color: rgba(88,88,88,.4); box-shadow: inset 0 -1px 0 rgba(88,88,88,.4); } .vscode-light kbd { background-color: hsla(0,0%,87%,.5); border: 1px solid hsla(0,0%,80%,.7); border-bottom-color: hsla(0,0%,73%,.7); box-shadow: inset 0 -1px 0 hsla(0,0%,73%,.7); } ::-webkit-scrollbar {"} {"_id":"q-en-vscode-ca86361c625bbaaa78db665bd0407f260db3c966c8b2cdf030daca1a1b2c3d1b","text":"templateData.button.element.style.display = 'none'; templateData.button.dispose(); } templateData.elementDisposable.dispose(); let editableData: IEditableData | undefined; if (element.editId === TunnelEditId.New && (editableData = this.remoteExplorerService.getEditableData(undefined))) {"} {"_id":"q-en-vscode-cad8882dda96932c919ee745b8ff0cfbca8bc56a53cf2829254810ce55fe85b7","text":"*--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { isWindows } from 'vs/base/common/platform'; import { URI, UriComponents } from 'vs/base/common/uri'; import { URI, UriComponents, isUriComponents } from 'vs/base/common/uri'; suite('URI', () => {"} {"_id":"q-en-vscode-caec37e9fa4d5b5183e6fa75c5dceb73521b528a08de4386cc71ad440505b671","text":" fileTypes ini conf keyEquivalent ^~I name Ini patterns begin (^[ t]+)?(?=#) beginCaptures 1 name punctuation.whitespace.comment.leading.ini end (?!G) patterns begin # beginCaptures 0 name punctuation.definition.comment.ini end n name comment.line.number-sign.ini begin (^[ t]+)?(?=;) beginCaptures 1 name punctuation.whitespace.comment.leading.ini end (?!G) patterns begin ; beginCaptures 0 name punctuation.definition.comment.ini end n name comment.line.semicolon.ini captures 1 name keyword.other.definition.ini 2 name punctuation.separator.key-value.ini match b([a-zA-Z0-9_.-]+)bs*(=) captures 1 name punctuation.definition.entity.ini 3 name punctuation.definition.entity.ini match ^([)(.*?)(]) name entity.name.section.group-title.ini begin ' beginCaptures 0 name punctuation.definition.string.begin.ini end ' endCaptures 0 name punctuation.definition.string.end.ini name string.quoted.single.ini patterns match . name constant.character.escape.ini begin \" beginCaptures 0 name punctuation.definition.string.begin.ini end \" endCaptures 0 name punctuation.definition.string.end.ini name string.quoted.double.ini scopeName source.ini uuid 77DC23B6-8A90-11D9-BAA4-000A9584EC8C No newline at end of file"} {"_id":"q-en-vscode-caee56b824244050863558057473dca8e3b481eefe6d280326d3eab35d73e8ba","text":"import { DisposableStore } from 'vs/base/common/lifecycle'; import { CellUri } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { disposableTimeout } from 'vs/base/common/async'; import { IPaneCompositePartService } from 'vs/workbench/services/panecomposite/browser/panecomposite'; import { ViewContainerLocation } from 'vs/workbench/common/views'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { areSameExtensions } from 'vs/platform/extensionManagement/common/extensionManagementUtil'; import { isEmptyObject } from 'vs/base/common/types'; import { PLAINTEXT_LANGUAGE_ID } from 'vs/editor/common/languages/modesRegistry'; type FileExtensionSuggestionClassification = { owner: 'sandy081'; comment: 'Response information when a file based reccommendation is suggested'; userReaction: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'User reaction after showing the recommendation prompt. Eg., install, cancel, show, neverShowAgain' }; fileExtension: { classification: 'PublicNonPersonalData'; purpose: 'FeatureInsight'; comment: 'Extension of the file for which an extension is being recommended.' }; }; const promptedRecommendationsStorageKey = 'fileBasedRecommendations/promptedRecommendations'; const promptedFileExtensionsStorageKey = 'fileBasedRecommendations/promptedFileExtensions'; const recommendationsStorageKey = 'extensionsAssistant/recommendations'; const searchMarketplace = localize('searchMarketplace', \"Search Marketplace\"); const milliSecondsInADay = 1000 * 60 * 60 * 24; export class FileBasedRecommendations extends ExtensionRecommendations {"} {"_id":"q-en-vscode-cbb3e9e06f49bfb5b34c1005e92adcf2d587b67e32399f851ce558d8aa2655f2","text":"import { Context as SuggestContext } from 'vs/editor/contrib/suggest/browser/suggest'; import { AsyncIterableObject } from 'vs/base/common/async'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; import { ResizableHoverWidget } from 'vs/editor/contrib/hover/browser/resizableHoverWidget'; const $ = dom.$; export class ContentHoverController extends Disposable { private readonly _participants: IEditorHoverParticipant[]; private readonly _widget = this._register(this._instantiationService.createInstance(ContentHoverWidget, this._editor)); // INITIALLY: private readonly _widget = this._register(this._instantiationService.createInstance(ContentHoverWidget, this._editor)); private readonly _widget; private readonly _computer: ContentHoverComputer; private readonly _hoverOperation: HoverOperation;"} {"_id":"q-en-vscode-cc05e287bdcd6b7385aa7c983c73e1d95545969bd489e6fabb524669c1a786a1","text":"display: none; } .monaco-tree.focused .selected .outline-element-label, .monaco-tree.focused .selected .outline-element-decoration { .monaco-tree.focused .selected .outline-element-label, .monaco-tree.focused .selected .outline-element-decoration{ /* make sure selection color wins when a label is being selected */ color: inherit !important; } .monaco-tree.focused .selected .outline-element-label .monaco-highlighted-label .highlight, .monaco-tree.focused .selected .monaco-icon-label .monaco-highlighted-label .highlight{ /* allows text color to use the default when selected */ color: inherit !important; } .monaco-workbench .outline-panel.no-icons .outline-element .outline-element-icon { display: none; }"} {"_id":"q-en-vscode-cc318e0cc164d7643c5547ee8f35622ad150265f9addebc28075fe5d7e3b35e6","text":"extendMarkdownIt(md: any) { if (isEnabled()) { const katex = require('@vscode/markdown-it-katex'); const options = { globalGroup: true, macros: {} }; md.core.ruler.push('reset-katex-macros', () => { options.macros = {}; }); const settingsMacros = getMacros(); const options = { globalGroup: true, macros: { ...settingsMacros } }; md.core.ruler.push('reset-katex-macros', () => { options.macros = { ...settingsMacros }; }); return md.use(katex, options); } return md;"} {"_id":"q-en-vscode-cc6423c8019f203b9c5fdb9efabad1e71ba5e37a5a4e5af0e1e1e8259c2e44bf","text":"invokeProtocolHandler(); const showProtocolUrlOpenedDialog = async () => { const { downloadUrl } = this.productService; let detail = localize( 'openExternalDialogDetail.v2', \"We launched {0} on your computer.nnIf {1} did not launch, try again or install it below.\", this.productService.nameLong, this.productService.nameLong ); const options = [ localize('openExternalDialogButtonClose', \"Close tab\"), localize('openExternalDialogButtonRetry', \"Try again\"), localize('openExternalDialogButtonInstall.v3', \"Install\"), localize('openExternalDialogButtonCancel', \"Cancel\") ]; if (downloadUrl === undefined) { options.splice(2, 1); detail = localize( 'openExternalDialogDetailNoInstall', \"We launched {0} on your computer.nnIf {1} did not launch, try again below.\", this.productService.nameLong, this.productService.nameLong ); } const showResult = await this.dialogService.show( Severity.Info, localize('openExternalDialogTitle', \"All done. You can close this tab now.\"), [ localize('openExternalDialogButtonRetry', \"Try again\"), localize('openExternalDialogButtonInstall', \"Install {0}\", this.productService.nameLong), localize('openExternalDialogButtonCancel', \"Cancel\") ], options, { cancelId: 2, detail: localize( 'openExternalDialogDetail.v2', \"We launched {0} on your computer.nnIf {1} did not launch, try again or install it below.\", this.productService.nameLong, this.productService.nameLong, ) cancelId: downloadUrl === undefined ? 2 : 3, detail }, ); if (showResult.choice === 0) { invokeProtocolHandler(); this.hostService.close(); } else if (showResult.choice === 1) { // Route the user to the appropriate install link await this.openerService.open(URI.parse( this.productService.quality === 'stable' ? `http://aka.ms/vscode-install` : `http://aka.ms/vscode-install-insiders` )); invokeProtocolHandler(); } else if (showResult.choice === 2 && downloadUrl !== undefined) { await this.openerService.open(URI.parse(downloadUrl)); // Re-show the dialog so that the user can come back after installing and try again showProtocolUrlOpenedDialog();"} {"_id":"q-en-vscode-cc6874ba651804665dd62fb4ce65ea4fe14059e0d566de156d983fa40946fd59","text":"@IWorkspaceContextService private readonly workspaceContextService: IWorkspaceContextService, @IEditorGroupsService private readonly editorGroupsService: IEditorGroupsService, @ILogService private readonly logService: ILogService, @IPathService private readonly pathService: IPathService @IPathService private readonly pathService: IPathService, @IUriIdentityService protected readonly uriIdentityService: IUriIdentityService ) { }"} {"_id":"q-en-vscode-cc88c1c23f5ba2122ddf20fe4076fb0f311c3960fb8e7de98a278f1734602a28","text":"resolved \"https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f\" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xterm-addon-canvas@0.4.0-beta.7: version \"0.4.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.7.tgz#ae365d8e10c900292186529f70f7f275ac94b3d5\" integrity sha512-r1hbQTsulI49orR5G3qWrJCwn2dKsEUCrgj6xsmgXuTeoUcGfed6lly+MvYlL3P8aPrxS2fC2TEzSM0Au4SX+w== xterm-addon-canvas@0.4.0-beta.9: version \"0.4.0-beta.9\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.9.tgz#e570fa4592890f92cc86706f2bba0dd128a8641d\" integrity sha512-BWRVWyUW7NY2g4BBMm3ecPQvbdyKXFgABnpmh4m0TVHqFJMNeXdNuTc94KiDbE+cvw8jtAY9NC/OIM4HcgjAIQ== xterm-addon-search@0.11.0: version \"0.11.0\""} {"_id":"q-en-vscode-cce3edfbf94cffe8c92bd94046f673e10e8d9b810d7fd707491437a155d576fd","text":"import { IListService, IWorkbenchListOptions, WorkbenchList } from 'vs/platform/list/browser/listService'; import { CursorAtBoundary, ICellViewModel, CellEditState, CellFocusMode, ICellOutputViewModel, CellRevealType, CellRevealSyncType, CellRevealRangeType, CursorAtLineBoundary } from 'vs/workbench/contrib/notebook/browser/notebookBrowser'; import { CellViewModel, NotebookViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/notebookViewModelImpl'; import { diff, NOTEBOOK_EDITOR_CURSOR_BOUNDARY, CellKind, SelectionStateType, NOTEBOOK_EDITOR_CURSOR_LINE_BOUNDARY } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { diff, NOTEBOOK_EDITOR_CURSOR_BOUNDARY, CellKind, SelectionStateType, NOTEBOOK_EDITOR_CURSOR_LINE_BOUNDARY, NotebookSetting } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { ICellRange, cellRangesToIndexes, reduceCellRanges, cellRangesEqual } from 'vs/workbench/contrib/notebook/common/notebookRange'; import { NOTEBOOK_CELL_LIST_FOCUSED } from 'vs/workbench/contrib/notebook/common/notebookContextKeys'; import { clamp } from 'vs/base/common/numbers';"} {"_id":"q-en-vscode-cceeff67a15f857b8577e6f30f0443f86362794276a42113acd6b251b125b644","text":"if (this.adapterExecutable.command === 'node' && this.outputService) { if (Array.isArray(this.adapterExecutable.args) && this.adapterExecutable.args.length > 0) { stdfork.fork(this.adapterExecutable.args[0], this.adapterExecutable.args.slice(1), {}, (err, child) => { if (err) { e(new Error(nls.localize('unableToLaunchDebugAdapter', \"Unable to launch debug adapter from '{0}'.\", this.adapterExecutable.args[0]))); } this.serverProcess = child; c(null); const child = cp.fork(this.adapterExecutable.args[0], this.adapterExecutable.args.slice(1), { execArgv: ['-e', 'delete process.env.ELECTRON_RUN_AS_NODE;require(process.argv[1])'].concat(process.execArgv || []), silent: true }); if (!child.pid) { e(new Error(nls.localize('unableToLaunchDebugAdapter', \"Unable to launch debug adapter from '{0}'.\", this.adapterExecutable.args[0]))); } this.serverProcess = child; c(null); } else { e(new Error(nls.localize('unableToLaunchDebugAdapterNoArgs', \"Unable to launch debug adapter.\"))); }"} {"_id":"q-en-vscode-cd04623342208d4e63473c7e0120a163aee857445b32cd5ac68e4d95561e536f","text":"const document = await vscode.workspace.openTextDocument(newUri); assert.strictEqual(document.isDirty, true); await document.save(); assert.strictEqual(document.isDirty, false); const result = await document.save(); assert.strictEqual(result, true, `save failed in iteration: ${i} (docUriOriginal: ${docUriOriginal.fsPath})`); assert.strictEqual(document.isDirty, false, `document still dirty in iteration: ${i} (docUriOriginal: ${docUriOriginal.fsPath})`); assert.strictEqual(document.getText(), expected);"} {"_id":"q-en-vscode-cd14260c39c3a13872a2d3cc9ddb9efe077b82dbc4b26f32939fe6162bfa7781","text":"const testDocument = workspaceFile('bower.json'); // Disable webview tests on web (vscode.env.uiKind === vscode.UIKind.Web ? suite.skip : suite)('vscode API - webview', () => { suite('vscode API - webview', () => { const disposables: vscode.Disposable[] = []; function _register(disposable: T) {"} {"_id":"q-en-vscode-cd284963b2410525055d527db66915bf1212914fe9b2598fae17bbfaa420f8a2","text":"throw new Error('Please sign in to store your edit session.'); } if (editSession.machine === undefined) { editSession.machine = await this.getOrCreateCurrentMachineId(); } return this.storeClient!.writeResource('editSessions', JSON.stringify(editSession), null, undefined, createSyncHeaders(generateUuid())); }"} {"_id":"q-en-vscode-cd36b7cf92e68fbbbbbca3da502ffb91f15277690bd047734c9f3f62ad5af11b","text":"if (options?.instanceToSplit && typeof shellLaunchConfig.cwd !== 'object' && typeof options.instanceToSplit.shellLaunchConfig.cwd === 'object') { shellLaunchConfig.cwd = URI.from({ scheme: options.instanceToSplit.shellLaunchConfig.cwd.scheme, authority: options.instanceToSplit.shellLaunchConfig.cwd.authority, path: shellLaunchConfig.cwd || options.instanceToSplit.shellLaunchConfig.cwd.path }); }"} {"_id":"q-en-vscode-cd3ad4a6ef86ac05beb256ae2d46cde91990c03931a10525a12a5d9ddd2a02b4","text":"// High Contrast Events ipc.on('vscode:enterHighContrast', (event) => { this.partService.joinCreation().then(() => { this.themeService.setColorTheme(VS_HC_THEME, false); }); const windowConfig = this.configurationService.getConfiguration('window'); if (windowConfig && windowConfig.autoDetectHighContrast) { this.partService.joinCreation().then(() => { this.themeService.setColorTheme(VS_HC_THEME, false); }); } }); ipc.on('vscode:leaveHighContrast', (event) => { this.partService.joinCreation().then(() => { this.themeService.setColorTheme(VS_DARK_THEME, false); }); const windowConfig = this.configurationService.getConfiguration('window'); if (windowConfig && windowConfig.autoDetectHighContrast) { this.partService.joinCreation().then(() => { this.themeService.setColorTheme(VS_DARK_THEME, false); }); } }); // Configuration changes"} {"_id":"q-en-vscode-cd3d1ad2a82e9476d948de7cc04454f856f49d74f7b709515e607155809e031f","text":"/** Ellipsis on hover **/ .monaco-editor .suggest-widget:not(.docs-side) .monaco-list .monaco-list-row:hover>.contents>.main>.right.can-expand-details>.details-label { .monaco-editor .suggest-widget:not(.docs-side) .monaco-list .monaco-list-row.focused:hover>.contents>.main>.right.can-expand-details>.details-label { width: calc(100% - 26px); }"} {"_id":"q-en-vscode-cd5e92926b847b2b27e125a76d525d0f99691b3ea7bcf9c2a22c55313f3ce192","text":"await p2; }); test('Ranges where additionalTextEdits are applied are not appropriate when characters are typed #177591', async function () { disposables.add(languageFeaturesService.completionProvider.register({ scheme: 'test-ctrl' }, { _debugDisplayName: 'test', provideCompletionItems(doc, pos) { return { suggestions: [{ kind: CompletionItemKind.Snippet, label: 'aaa', insertText: 'aaa', range: Range.fromPositions(pos), additionalTextEdits: [{ range: Range.fromPositions(pos.delta(0, 10)), text: 'aaa' }] }] }; } })); { // PART1 - no typing editor.setValue(`123456789123456789`); editor.setSelection(new Selection(1, 1, 1, 1)); const p1 = Event.toPromise(controller.model.onDidSuggest); controller.triggerSuggest(); const e = await p1; assert.strictEqual(e.completionModel.items.length, 1); assert.strictEqual(e.completionModel.items[0].textLabel, 'aaa'); controller.acceptSelectedSuggestion(false, false); assert.strictEqual(editor.getValue(), 'aaa1234567891aaa23456789'); } { // PART2 - typing editor.setValue(`123456789123456789`); editor.setSelection(new Selection(1, 1, 1, 1)); const p1 = Event.toPromise(controller.model.onDidSuggest); controller.triggerSuggest(); const e = await p1; assert.strictEqual(e.completionModel.items.length, 1); assert.strictEqual(e.completionModel.items[0].textLabel, 'aaa'); editor.trigger('keyboard', 'type', { text: 'aa' }); controller.acceptSelectedSuggestion(false, false); assert.strictEqual(editor.getValue(), 'aaa1234567891aaa23456789'); } }); });"} {"_id":"q-en-vscode-cd6e817d053e4501b1d118940844026cd80ca2be4c01508f01834dc52c342eea","text":"} # Debug trapping/preexec inspired by starship (ISC) __vsc_dbg_trap=\"$(trap -p DEBUG | cut -d' ' -f3 | tr -d ')\" if [[ -z \"$__vsc_dbg_trap\" ]]; then if [[ -n \"${bash_preexec_imported:-}\" ]]; then __vsc_preexec_only() { __vsc_status=\"$?\" __vsc_preexec } trap '__vsc_preexec_only \"$_\"' DEBUG elif [[ \"$__vsc_dbg_trap\" != '__vsc_preexec \"$_\"' && \"$__vsc_dbg_trap\" != '__vsc_preexec_all \"$_\"' ]]; then __vsc_preexec_all() { __vsc_status=\"$?\" builtin eval ${__vsc_dbg_trap} __vsc_preexec } trap '__vsc_preexec_all \"$_\"' DEBUG precmd_functions+=(__vsc_prompt_cmd) preexec_functions+=(__vsc_preexec_only) else __vsc_dbg_trap=\"$(trap -p DEBUG | cut -d' ' -f3 | tr -d ')\" if [[ -z \"$__vsc_dbg_trap\" ]]; then __vsc_preexec_only() { __vsc_status=\"$?\" __vsc_preexec } trap '__vsc_preexec_only \"$_\"' DEBUG elif [[ \"$__vsc_dbg_trap\" != '__vsc_preexec \"$_\"' && \"$__vsc_dbg_trap\" != '__vsc_preexec_all \"$_\"' ]]; then __vsc_preexec_all() { __vsc_status=\"$?\" builtin eval ${__vsc_dbg_trap} __vsc_preexec } trap '__vsc_preexec_all \"$_\"' DEBUG fi fi __vsc_update_prompt"} {"_id":"q-en-vscode-cd7750e4669d5454f1265f5acf86217b9238891afc24c2228e5c841fe2f3a34c","text":"} }); const task = this._activeSession.provider.provideResponse(this._activeSession.session, request, progress, requestCts.token); const task = this._activeSession.provider.provideResponse(this._activeSession.session, request, progress, this._activeRequestCts.token); let response: ReplyResponse | ErrorResponse | EmptyResponse; try {"} {"_id":"q-en-vscode-cd786545d13909996ecfd1dc91e8109bfafd42dec1a5fa9a5e1cfdb60bc3f00d","text":"import { IViewContainersRegistry, ViewContainerLocation, Extensions as ViewContainerExtensions, IViewsService } from 'vs/workbench/common/views'; import { IClipboardService } from 'vs/platform/clipboard/common/clipboardService'; import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences'; import { ContextKeyExpr, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { ContextKeyDefinedExpr, ContextKeyExpr, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IQuickAccessRegistry, Extensions } from 'vs/platform/quickinput/common/quickAccess'; import { InstallExtensionQuickAccessProvider, ManageExtensionsQuickAccessProvider } from 'vs/workbench/contrib/extensions/browser/extensionsQuickAccess'; import { ExtensionRecommendationsService } from 'vs/workbench/contrib/extensions/browser/extensionRecommendationsService';"} {"_id":"q-en-vscode-cd80ae1c7cdd9cbbc316493b253ec5b8dd545f98b948e8f75f71d1292cc47529","text":"import { Handler } from 'vs/editor/common/editorCommon'; import { ITextModel } from 'vs/editor/common/model'; import { ViewModel } from 'vs/editor/common/viewModel/viewModelImpl'; import { DeleteAllLeftAction, DeleteAllRightAction, DeleteDuplicateLinesAction, DeleteLinesAction, IndentLinesAction, InsertLineAfterAction, InsertLineBeforeAction, JoinLinesAction, KebabCaseAction, LowerCaseAction, SnakeCaseAction, SortLinesAscendingAction, SortLinesDescendingAction, TitleCaseAction, TransposeAction, UpperCaseAction } from 'vs/editor/contrib/linesOperations/browser/linesOperations'; import { CamelCaseAction, DeleteAllLeftAction, DeleteAllRightAction, DeleteDuplicateLinesAction, DeleteLinesAction, IndentLinesAction, InsertLineAfterAction, InsertLineBeforeAction, JoinLinesAction, KebabCaseAction, LowerCaseAction, SnakeCaseAction, SortLinesAscendingAction, SortLinesDescendingAction, TitleCaseAction, TransposeAction, UpperCaseAction } from 'vs/editor/contrib/linesOperations/browser/linesOperations'; import { withTestCodeEditor } from 'vs/editor/test/browser/testCodeEditor'; import { createTextModel } from 'vs/editor/test/common/testTextModel';"} {"_id":"q-en-vscode-cdc382b4a43b8d450ac96c77d1189a2c3f129553724f8ae54762a91e6d402dc1","text":"if (docUri.scheme === Schemes.untitled) { return vscode.workspace.workspaceFolders?.[0]?.uri; } return docUri; return Utils.dirname(docUri); } async function insertLink(activeEditor: vscode.TextEditor, selectedFiles: vscode.Uri[], insertAsImage: boolean): Promise {"} {"_id":"q-en-vscode-cdd16e72d70cf40935bb957851971a8397679f80457ba3d318bb9839c254035e","text":"\"workspaceTrust\", \"telemetry\", \"windowActivity\", \"interactiveUserActions\" \"interactiveUserActions\", \"envCollectionWorkspace\", \"envCollectionOptions\" ], \"private\": true, \"activationEvents\": [],"} {"_id":"q-en-vscode-ce0195d6d017c9ab527ebf997e859085ae45669bd3799c80c69cd6870bb8ee49","text":"resolved \"https://registry.yarnpkg.com/jschardet/-/jschardet-3.0.0.tgz#898d2332e45ebabbdb6bf2feece9feea9a99e882\" integrity sha512-lJH6tJ77V8Nzd5QWRkFYCLc13a3vADkh3r/Fi8HupZGWk2OVVDfnZP8V/VgQgZ+lzW0kG2UGb5hFgt3V3ndotQ== jsonfile@^6.0.1: version \"6.1.0\" resolved \"https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae\" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify \"^2.0.0\" optionalDependencies: graceful-fs \"^4.1.6\" kerberos@^2.0.1: version \"2.0.1\" resolved \"https://registry.yarnpkg.com/kerberos/-/kerberos-2.0.1.tgz#663b0b46883b4da84495f60f2e9e399a43a33ef5\""} {"_id":"q-en-vscode-ce05c326b29c1a7cacb7acc33a7240cfa97fadd032066d5ea5ebe0ee308f84dc","text":"} .monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) { max-width: 500px; word-wrap: break-word; }"} {"_id":"q-en-vscode-ce4eb83a54a4acc82cf0218f680a830b6c87141fc51919bf2838dc8b7a0f5c32","text":"} // Open based on config const { windows: usedWindows, filesOpenedInWindow } = await this.doOpen(openConfig, workspacesToOpen, foldersToOpen, emptyWindowsWithBackupsToRestore, emptyToOpen, filesToOpen, foldersToAdd); const { windows: usedWindows, filesOpenedInWindow } = await this.doOpen(openConfig, workspacesToOpen, foldersToOpen, emptyWindowsWithBackupsToRestore, openOneEmptyWindow, filesToOpen, foldersToAdd); this.logService.trace(`windowsManager#open used window count ${usedWindows.length} (workspacesToOpen: ${workspacesToOpen.length}, foldersToOpen: ${foldersToOpen.length}, emptyToRestore: ${emptyWindowsWithBackupsToRestore.length}, emptyToOpen: ${emptyToOpen})`); this.logService.trace(`windowsManager#open used window count ${usedWindows.length} (workspacesToOpen: ${workspacesToOpen.length}, foldersToOpen: ${foldersToOpen.length}, emptyToRestore: ${emptyWindowsWithBackupsToRestore.length}, openOneEmptyWindow: ${openOneEmptyWindow})`); // Make sure to pass focus to the most relevant of the windows if we open multiple if (usedWindows.length > 1) {"} {"_id":"q-en-vscode-cea4c5a116f4d114acabbe4b6a102c9ad6f33c342184dfe8a4de2730d403d167","text":"/usr/share/@@NAME@@/ /usr/share/applications/@@NAME@@.desktop /usr/share/applications/@@NAME@@-url-handler.desktop /usr/share/pixmaps/@@NAME@@.png"} {"_id":"q-en-vscode-cea630196ff7ecc837bf1d3d41c7bfba7efa652fcc8a50c5da5dadd10f59b740","text":"import { IEditorGroupsService, IEditorGroup, GroupDirection, GroupLocation, GroupsOrder, preferredSideBySideGroupDirection, EditorGroupLayout } from 'vs/workbench/services/group/common/editorGroupsService'; import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { CommandsRegistry } from 'vs/platform/commands/common/commands'; import { CommandsRegistry, ICommandHandler } from 'vs/platform/commands/common/commands'; import { MenuRegistry, MenuId } from 'vs/platform/actions/common/actions'; export const CLOSE_SAVED_EDITORS_COMMAND_ID = 'workbench.action.closeUnmodifiedEditors';"} {"_id":"q-en-vscode-ceb5afff3f0964bb4e5707e9665e72fa431b1012fec57eaa49ed880f2aaa157e","text":"} if (completion.command) { await this._commandService .executeCommand(completion.command.id, ...(completion.command.arguments || [])) .then(undefined, onUnexpectedExternalError); // Make sure the completion list will not be disposed. completion.source.addRef(); } // Reset before invoking the command, since the command might cause a follow up trigger. transaction(tx => { this._source.clear(tx); // Potentially, isActive will get set back to true by the typing or accept inline suggest event // if automatic inline suggestions are enabled. this._isActive.set(false, tx); }); if (completion.command) { await this._commandService .executeCommand(completion.command.id, ...(completion.command.arguments || [])) .then(undefined, onUnexpectedExternalError); completion.source.removeRef(); } } public acceptNextWord(editor: ICodeEditor): void { this._acceptNext(editor, (pos, text) => { public async acceptNextWord(editor: ICodeEditor): Promise { await this._acceptNext(editor, (pos, text) => { const langId = this.textModel.getLanguageIdAtPosition(pos.lineNumber, pos.column); const config = this._languageConfigurationService.getLanguageConfiguration(langId); const wordRegExp = new RegExp(config.wordDefinition.source, config.wordDefinition.flags.replace('g', ''));"} {"_id":"q-en-vscode-cebeb5f3febb916c53560be254cdecd97e722512bb4350f7d207f4ac0322d47e","text":"\"pickerGroup.border\": \"#749351\", \"list.activeSelectionForeground\": \"#6c6c6c\", \"list.focusBackground\": \"#CADEB9\", \"list.hoverBackground\": \"#e0e0e0\", \"list.activeSelectionBackground\": \"#c4d9b1\", \"list.inactiveSelectionBackground\": \"#d3dbcd\", \"list.highlightForeground\": \"#9769dc\","} {"_id":"q-en-vscode-cee6e197fdd9ab2988f5ad2e1acc1e737815ef8c63fb24b925ad3560783bb401","text":"if (!Types.isString(info.command)) { missingAttribute('command'); } return this.commandService.executeCommand(info.command, info.args).then(result => { return this.userInputAccessQueue.queue(() => this.commandService.executeCommand(info.command, info.args)).then(result => { if (typeof result === 'string' || Types.isUndefinedOrNull(result)) { return result; }"} {"_id":"q-en-vscode-cf93bab208e909d7da69b8f0f080cec9b362a6ed274645dcafba16d01afdec33","text":"updated: !!existingExtension, isPreReleaseVersion: this.gallery.properties.isPreReleaseVersion, installedTimestamp: Date.now(), pinned: this.options.installGivenVersion ? true : undefined, pinned: this.options.installGivenVersion ? true : existingExtension?.pinned, preRelease: this.gallery.properties.isPreReleaseVersion || (isBoolean(this.options.installPreReleaseVersion) ? this.options.installPreReleaseVersion /* Respect the passed flag */"} {"_id":"q-en-vscode-cfab1c9377139c8899a6ecc79482466e9a28d410bf9ead3824480a2940b331e6","text":"private static QUICK_INPUT_INPUT = `${QuickInput.QUICK_INPUT} .quick-input-box input`; private static QUICK_INPUT_ROW = `${QuickInput.QUICK_INPUT} .quick-input-list .monaco-list-row`; private static QUICK_INPUT_FOCUSED_ELEMENT = `${QuickInput.QUICK_INPUT_ROW}.focused .monaco-highlighted-label`; private static QUICK_INPUT_ENTRY_LABEL = `${QuickInput.QUICK_INPUT_ROW} .label-name`; // Note: this only grabs the label and not the description or detail private static QUICK_INPUT_ENTRY_LABEL = `${QuickInput.QUICK_INPUT_ROW} .quick-input-list-row > .monaco-icon-label .label-name`; private static QUICK_INPUT_ENTRY_LABEL_SPAN = `${QuickInput.QUICK_INPUT_ROW} .monaco-highlighted-label`; constructor(private code: Code) { }"} {"_id":"q-en-vscode-cfbdd53addb1a5f5a28d3ba11d0b252913085963c3380997f97d94b43532d5c0","text":"} clearCache(cacheKey: string): void { // cancel the token this.sessions.get(cacheKey)?.dispose(); // with no reference to this, it will be removed from WeakMaps this.sessions.delete(cacheKey); } private getSessionTokenSource(cacheKey: string | undefined): unknown { private getSessionTokenSource(cacheKey: string | undefined): SessionLifecycle | undefined { if (!cacheKey) { return undefined; } if (!this.sessions.has(cacheKey)) { this.sessions.set(cacheKey, new Object()); this.sessions.set(cacheKey, new SessionLifecycle()); } return this.sessions.get(cacheKey);"} {"_id":"q-en-vscode-cfdf9ef0be1afcb05c4f9c5939305a405413696ef52f82a86d37fdac465cddb1","text":"this.applyStyles(); // Allows focus to switch to next/previous entry after tab into an actionbar item DOM.addDisposableListener(this.treeContainer.getHTMLElement(), DOM.EventType.KEY_DOWN, (e: KeyboardEvent) => { const keyboardEvent: StandardKeyboardEvent = new StandardKeyboardEvent(e); if (keyboardEvent.keyCode === KeyCode.DownArrow || keyboardEvent.keyCode === KeyCode.UpArrow || keyboardEvent.keyCode === KeyCode.PageDown || keyboardEvent.keyCode === KeyCode.PageUp) { DOM.EventHelper.stop(e, true); this.navigateInTree(keyboardEvent.keyCode, keyboardEvent.shiftKey); this.inputBox.inputElement.focus(); } }); return this.builder.getHTMLElement(); }"} {"_id":"q-en-vscode-cff3dca1bc313bf50a96bb22fa07ef88885efadec8a7a455c6e4ad48d6b3b0f2","text":"import { ICodeEditor } from '../../../browser/editorBrowser.js'; import { EditorAction, EditorCommand, ICommandOptions, registerEditorAction, registerEditorCommand, ServicesAccessor } from '../../../browser/editorExtensions.js'; import { ReplaceCommand } from '../../../common/commands/replaceCommand.js'; import { EditorOption } from '../../../common/config/editorOptions.js'; import { EditorOption, EditorOptions } from '../../../common/config/editorOptions.js'; import { CursorState } from '../../../common/cursorCommon.js'; import { CursorChangeReason } from '../../../common/cursorEvents.js'; import { DeleteWordContext, WordNavigationType, WordOperations } from '../../../common/cursor/cursorWordOperations.js';"} {"_id":"q-en-vscode-d032b6953cb0fdfc475f2ee52cf33afd9ecb9b4e1d36291b15480a05d2927466","text":"protocol: information.tunnelFeatures.protocol === undefined ? true : information.tunnelFeatures.protocol, } : undefined; this._proxy.$setTunnelProvider(tunnelFeatures); this._proxy.$setTunnelProvider(tunnelFeatures, true); return Promise.resolve(toDisposable(() => { this._forwardPortProvider = undefined; this._proxy.$setTunnelProvider(undefined); this._proxy.$setTunnelProvider(undefined, false); })); }"} {"_id":"q-en-vscode-d03e742739736bb614ad89fcff20882d6018fb5c6eab060728af3f65acd71f55","text":"private readonly _hasAssociatedFilePath: boolean, readonly viewType: string, private readonly _workingCopyManager: IFileWorkingCopyManager, @IFileService private readonly _fileService: IFileService @IFileService private readonly _fileService: IFileService, @ILifecycleService lifecycleService: ILifecycleService ) { super(); if (this.viewType === 'interactive') { lifecycleService.onBeforeShutdown(async e => e.veto(this.onBeforeShutdown(), 'veto.InteractiveWindow')); } } private async onBeforeShutdown() { if (this._workingCopy?.isDirty()) { await this._workingCopy.save(); } return false; } override dispose(): void {"} {"_id":"q-en-vscode-d074819290d36668e307f62705fb3d98d767e0a21435ee917dfde07232f8dc82","text":"private _disposeFocusStickyScrollStore() { this._stickyScrollFocusedContextKey.set(false); this._focusDisposableStore!.dispose(); this._focusDisposableStore?.dispose(); this._focused = false; this._positionRevealed = false; this._onMouseDown = false; } public focus(): void { // If the mouse is down, do not focus on the sticky scroll if (this._onMouseDown) { this._onMouseDown = false; this._editor.focus(); return; } const focusState = this._stickyScrollFocusedContextKey.get(); if (focusState === true) { return;"} {"_id":"q-en-vscode-d0ebdb03e5e78ce36b7bd46278e4c2e50f16440fbe89dee1d0b5e15c5bef09be","text":"return this._repository.getMergeBase(ref1, ref2); } tag(name: string, upstream: string): Promise { return this._repository.tag(name, upstream); } deleteTag(name: string): Promise { return this._repository.deleteTag(name); } status(): Promise { return this._repository.status(); }"} {"_id":"q-en-vscode-d1bfc49d724829f09b690f17e95c50120b4afaa37ee17182b3c27111dfae7e0f","text":"const stylingSchemeEntry = getStylingSchemeEntry(description, deprecationMessage); this.tokenStylingSchema.properties[id] = stylingSchemeEntry; this.typeHierarchy = {}; this.typeHierarchy = Object.create(null); } public registerTokenModifier(id: string, description: string, deprecationMessage?: string): void {"} {"_id":"q-en-vscode-d1e4b1db90cb4fba79b37e9bd9152f903b1778cd6022fef98ec45a15d80447ad","text":"this._register(this.viewModel.searchResult.onChange((event) => this.onSearchResultsChanged(event))); this._register(this.onDidChangeBodyVisibility(visible => this.onVisibilityChanged(visible))); this.updateIndentStyles(this.themeService.getFileIconTheme()); this._register(this.themeService.onDidFileIconThemeChange(this.updateIndentStyles, this)); } private updateIndentStyles(theme: IFileIconTheme): void { this.resultsElement.classList.toggle('hide-arrows', this.isTreeLayoutViewVisible && theme.hidesExplorerArrows); } private onVisibilityChanged(visible: boolean): void {"} {"_id":"q-en-vscode-d2090b73a1ea7c9c20aa7bb853401fb65d56690a00ffdcf7517d452bd217c032","text":"if (activationEventsNode?.type === 'array' && activationEventsNode.children) { for (const activationEventNode of activationEventsNode.children) { const activationEvent = getNodeValue(activationEventNode); // Redundant Implicit Activation if (info.implicitActivationEvents?.has(activationEvent) && redundantImplicitActivationEventPrefixes.some((prefix) => activationEvent.startsWith(prefix))) { const start = document.positionAt(activationEventNode.offset); const end = document.positionAt(activationEventNode.offset + activationEventNode.length); diagnostics.push(new Diagnostic(new Range(start, end), redundantImplicitActivationEvent, DiagnosticSeverity.Warning)); } else { for (const implicitActivationEventPrefix of reservedImplicitActivationEventPrefixes) { if (activationEvent.startsWith(implicitActivationEventPrefix)) { const start = document.positionAt(activationEventNode.offset); const end = document.positionAt(activationEventNode.offset + activationEventNode.length); diagnostics.push(new Diagnostic(new Range(start, end), implicitActivationEvent, DiagnosticSeverity.Error)); } } // Reserved Implicit Activation for (const implicitActivationEventPrefix of reservedImplicitActivationEventPrefixes) { if (activationEvent.startsWith(implicitActivationEventPrefix)) { const start = document.positionAt(activationEventNode.offset); const end = document.positionAt(activationEventNode.offset + activationEventNode.length); diagnostics.push(new Diagnostic(new Range(start, end), implicitActivationEvent, DiagnosticSeverity.Error)); } } // Star activation if (activationEvent === '*') { const start = document.positionAt(activationEventNode.offset); const end = document.positionAt(activationEventNode.offset + activationEventNode.length); const diagnostic = new Diagnostic(new Range(start, end), starActivation, DiagnosticSeverity.Information); diagnostic.code = { value: 'star-activation', target: Uri.parse('https://code.visualstudio.com/api/references/activation-events#Start-up'), }; diagnostics.push(diagnostic); } } } }"} {"_id":"q-en-vscode-d20c6802db12b818d747a8ecad671006de9484e8e1a74a018c63ec8106617992","text":"public updateConfig(): void { const config = this._configHelper.config; this._safeSetOption('altClickMovesCursor', config.altClickMovesCursor); this._setCursorBlink(config.cursorBlinking); this._setCursorStyle(config.cursorStyle); this._setCursorWidth(config.cursorWidth);"} {"_id":"q-en-vscode-d24987ef8c0421a855b69499c166afb0b6fab600e69c619cc8281ec90c614693","text":"alwaysFocused: true, verticalScrollMode: ScrollbarVisibility.Visible, ariaLabel: nls.localize('treeAriaLabel', \"Quick Picker\"), keyboardSupport: this.options.keyboardSupport keyboardSupport: this.options.keyboardSupport, preventRootFocus: true }); this.treeElement = this.tree.getHTMLElement();"} {"_id":"q-en-vscode-d25e2db3494f71b4d68d2bce0b6f96d4676acab5a23bb43a4be99fa854805681","text":"name: string; value: string; type?: string; language?: string; expression?: string; hasNamedChildren: boolean; indexedChildrenCount: number; extensionId: string;"} {"_id":"q-en-vscode-d2901b22f736c638595a98bc6d69e88d00fcf88d996e9241f979bc1352b30966","text":"import { BackLayerWebView } from 'vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView'; import { CodeCellRenderer, MarkupCellRenderer, NotebookCellListDelegate } from 'vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer'; import { IAckOutputHeight, IMarkupCellInitialization } from 'vs/workbench/contrib/notebook/browser/view/renderers/webviewMessages'; import { CodeCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { CodeCellViewModel, outputDisplayLimit } from 'vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel'; import { NotebookEventDispatcher } from 'vs/workbench/contrib/notebook/browser/viewModel/eventDispatcher'; import { MarkupCellViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/markupCellViewModel'; import { CellViewModel, NotebookViewModel } from 'vs/workbench/contrib/notebook/browser/viewModel/notebookViewModelImpl';"} {"_id":"q-en-vscode-d2ce6082ecd4fd1d0e2f70a018701b660acd6c7a82bcd7f82ec6209964a7d9c5","text":"} } class GetStartedWithAccessibilityFeatures extends Action2 { static readonly ID = 'workbench.action.getStartedWithAccessibilityFeatures'; constructor() { super({ id: GetStartedWithAccessibilityFeatures.ID, title: localize2('getStartedWithAccessibilityFeatures', 'Get Started with Accessibility Features'), category: Categories.Help, f1: true, menu: { id: MenuId.MenubarHelpMenu, group: '1_welcome', order: 6 } }); } run(accessor: ServicesAccessor): void { const commandService = accessor.get(ICommandService); const accessibilityService = accessor.get(IAccessibilityService); commandService.executeCommand('workbench.action.openWalkthrough', accessibilityService.isScreenReaderOptimized() ? 'SetupScreenReader' : 'SetupAccessibility'); } } // --- Actions Registration if (KeybindingsReferenceAction.AVAILABLE) {"} {"_id":"q-en-vscode-d3040388f1113f2ed1c2730ef622923c7bc7ae844dafa884ddcc699c90bba02f","text":"} .monaco-button-dropdown > .monaco-button.monaco-dropdown-button { border: 1px solid var(--vscode-button-border, transparent); border-left-width: 0 !important; border-radius: 0 2px 2px 0; }"} {"_id":"q-en-vscode-d3bce008ab393f1da7db680669a9dc342aa1999a9bb91ba8a6c695750ef0a492","text":"\"@vscode/windows-mutex\": \"^0.4.4\", \"@vscode/windows-process-tree\": \"^0.5.0\", \"@vscode/windows-registry\": \"^1.1.0\", \"@xterm/addon-canvas\": \"0.6.0-beta.19\", \"@xterm/addon-image\": \"0.7.0-beta.17\", \"@xterm/addon-search\": \"0.14.0-beta.19\", \"@xterm/addon-serialize\": \"0.12.0-beta.19\", \"@xterm/addon-unicode11\": \"0.7.0-beta.19\", \"@xterm/addon-webgl\": \"0.17.0-beta.19\", \"@xterm/headless\": \"5.4.0-beta.19\", \"@xterm/xterm\": \"5.4.0-beta.19\", \"@xterm/addon-canvas\": \"0.6.0-beta.20\", \"@xterm/addon-image\": \"0.7.0-beta.18\", \"@xterm/addon-search\": \"0.14.0-beta.20\", \"@xterm/addon-serialize\": \"0.12.0-beta.20\", \"@xterm/addon-unicode11\": \"0.7.0-beta.20\", \"@xterm/addon-webgl\": \"0.17.0-beta.20\", \"@xterm/headless\": \"5.4.0-beta.20\", \"@xterm/xterm\": \"5.4.0-beta.20\", \"graceful-fs\": \"4.2.11\", \"http-proxy-agent\": \"^7.0.0\", \"https-proxy-agent\": \"^7.0.2\","} {"_id":"q-en-vscode-d3fd532092d152e78134d47ad20fcf88d6e8359a4d4f86cb61119f6e86040087","text":"} /** * Register an inlay hints provider. */ export function registerInlayHintsProvider(languageId: string, provider: modes.InlayHintsProvider): IDisposable { return modes.InlayHintsProviderRegistry.register(languageId, provider); } /** * Contains additional diagnostic information about the context in which * a [code action](#CodeActionProvider.provideCodeActions) is run. */"} {"_id":"q-en-vscode-d47d8f7307f0857cfa681b92ee961688255cd628f4720627cb146ff815a27c37","text":"} .monaco-tree .monaco-tree-row > .content.actions > .primary-action-bar .action-label { margin-right: 0.2em; margin-right: 0.4em; margin-top: 4px; background-repeat: no-repeat; width: 16px;"} {"_id":"q-en-vscode-d48cfaca0362a6a33bd8ce8f30fe9dba790e6516abf4a9dd512459503df343de","text":"border-color: var(--vscode-textBlockQuote-border); } kbd { color: var(--vscode-editor-foreground); border-radius: 3px; vertical-align: middle; padding: 1px 3px; background-color: hsla(0,0%,50%,.17); border: 1px solid rgba(71,71,71,.4); border-bottom-color: rgba(88,88,88,.4); box-shadow: inset 0 -1px 0 rgba(88,88,88,.4); } .vscode-light kbd { background-color: hsla(0,0%,87%,.5); border: 1px solid hsla(0,0%,80%,.7); border-bottom-color: hsla(0,0%,73%,.7); box-shadow: inset 0 -1px 0 hsla(0,0%,73%,.7); } ::-webkit-scrollbar { width: 10px; height: 10px;"} {"_id":"q-en-vscode-d4b8f486e6ba74bf2f9598d415e052ff242afed249c6f35bc89df7995f03b34f","text":"return false; }); let nextWidget: ReviewZoneWidget; if (idx === this._commentWidgets.length) { nextWidget = this._commentWidgets[0]; } else { nextWidget = sortedWidgets[idx]; const nextWidget: ReviewZoneWidget | undefined = sortedWidgets[idx]; if (nextWidget !== undefined) { this.editor.setSelection(nextWidget.commentThread.range ?? new Range(1, 1, 1, 1)); nextWidget.reveal(undefined, CommentWidgetFocus.Widget); } this.editor.setSelection(nextWidget.commentThread.range ?? new Range(1, 1, 1, 1)); nextWidget.reveal(undefined, CommentWidgetFocus.Widget); } public previousCommentThread(): void {"} {"_id":"q-en-vscode-d4c1658344c2381df277e21beeeeb83d429eff02c3ceaa5be77ed08978cd160d","text":"previewManager.activePreview?.zoomOut(); })); disposables.push(vscode.commands.registerCommand('imagePreview.copyImage', () => { previewManager.activePreview?.copyImage(); })); return vscode.Disposable.from(...disposables); }"} {"_id":"q-en-vscode-d50d01a02679ce2c28b63440c92b1dd95ff79586e2321cb587f09771c12300a1","text":"disturl \"https://electronjs.org/headers\" target \"25.8.0\" ms_build_id \"23503258\" target \"25.8.1\" ms_build_id \"23779380\" runtime \"electron\" build_from_source \"true\""} {"_id":"q-en-vscode-d514c260f5b681577d007a8aad3a9f5ebd748399beecd54e120e1fd5c08e0b2c","text":"if (event.affectsConfiguration(TitlebarPart.configCommandCenter)) { this.updateTitle(); this._onDidChangeCommandCenterVisibility.fire(); this._onDidChange.fire(undefined); } }"} {"_id":"q-en-vscode-d52d39658a5a8c040b40c12b89f86b87113a4f5a0196b8d01809f6aa3f9e9b88","text":"} const outputs = viewCell.outputsViewModels; for (const output of outputs) { for (const output of outputs.slice(0, outputDisplayLimit)) { const [mimeTypes, pick] = output.resolveMimeTypes(this.textModel!, undefined); if (!mimeTypes.find(mimeType => mimeType.isTrusted) || mimeTypes.length === 0) { continue;"} {"_id":"q-en-vscode-d545a8d35ac507d6296155f18d4d87d714f3c5504579e3f4c98537440cec4aad","text":"
${escape(localize('descriptionEmptyValidation', \"A description is required.\"))}
${escape(localize('descriptionTooShortValidation', \"Please provide a longer description.\"))}
"} {"_id":"q-en-vscode-d5c9f91a8802a9344323b937db41128f69bf3d3bd1344f28c250bbd0a461a4ed","text":"import { IExtHostRpcService } from 'vs/workbench/api/common/extHostRpcService'; import { ISelection } from 'vs/editor/common/core/selection'; import { TestItemImpl } from 'vs/workbench/api/common/extHostTestingPrivateApi'; import { VSBuffer } from 'vs/base/common/buffer'; import { SerializableObjectWithBuffers } from 'vs/workbench/services/extensions/common/proxyIdentifier'; interface CommandHandler { callback: Function;"} {"_id":"q-en-vscode-d61ffff65c222e2c59065f740ff77651eb6157d927d131d26794e157be0d2ab7","text":"weight = KeybindingWeight.ExternalExtension + idx; } let commandAction = MenuRegistry.getCommand(command); let precondition = commandAction && commandAction.precondition; let fullWhen: ContextKeyExpr | undefined; if (when && precondition) { fullWhen = ContextKeyExpr.and(precondition, ContextKeyExpr.deserialize(when)); } else if (when) { fullWhen = ContextKeyExpr.deserialize(when); } else if (precondition) { fullWhen = precondition; } let desc: IKeybindingRule2 = { id: command, args, when: ContextKeyExpr.deserialize(when), when: fullWhen, weight: weight, primary: KeybindingParser.parseKeybinding(key, OS), mac: mac ? { primary: KeybindingParser.parseKeybinding(mac, OS) } : null,"} {"_id":"q-en-vscode-d635c5c279c17ebc7ebd76876428b6ecef0a43fdac3db9de193cf3bca62837fb","text":"// Note: When this action is executed from the process explorer, a config is passed. For all // other cases it is run with no arguments. public run(config?: IConfig): Promise { if (config && 'type' in config && 'request' in config) { return this.debugService.startDebugging(undefined, config, this.isNoDebug()); } public run(): Promise { const configurationManager = this.debugService.getConfigurationManager(); let launch = configurationManager.selectedConfiguration.launch; if (!launch || launch.getConfigurationNames().length === 0) {"} {"_id":"q-en-vscode-d6dda776c776f85ae856a22f88658dea6c54dc43f8dde60ae4e14005ad8519fb","text":"* ------------------------------------------------------------------------------------------ */ 'use strict'; import { env, languages, commands, workspace, window, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable } from 'vscode'; import { env, languages, commands, workspace, window, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable, Uri } from 'vscode'; // This must be the first statement otherwise modules might got loaded with // the wrong locale."} {"_id":"q-en-vscode-d717bdd55e6e93e106762fcf79a7bf6bf6edae764b76629fe725da899d9700b4","text":"resolved \"https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-7.0.1.tgz#8118a32b02735dccd14f893b495fa5389ad7de79\" integrity sha512-zQ5U/nuXAAMsh691FtV0wPz89nSkHbs+IQV8FDk+wew9BlSDhf4UmWGlWJfTR2Ti6xZv87Tj5fENzKf6Qk7aLw== xterm-addon-search@0.9.0-beta.39: version \"0.9.0-beta.39\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.39.tgz#e8376e1485ee7d763c07d1a8f1354114f65b3e3e\" integrity sha512-h45wkecgfqXXoAUqgNytAfSd6g0xNT6rZy/enVaEU0aes7QoL9pxHUKkCry8PP6hs03Slk0VxQ4AGsbSZGvK/w== xterm-addon-search@0.9.0-beta.41: version \"0.9.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.41.tgz#0992da36fe01ff6d71449265a9dabeef7f9d0a3f\" integrity sha512-b1vuWR5JZ8QIiObbKkwSzpzf4x0B9hdzGCHJG+PXWT/xbxk65DOe/X9rgrRyOnCWe5ylQGG4DIHTiREigTp0lg== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.12.0-beta.41: version \"0.12.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.41.tgz#17dbca975b6e9b34526ebc57f4de59ee295da1b6\" integrity sha512-wvQxC5diMYEJEMaILfz+4CWB2GgtzjzNQRNDnK7R7Y9wDI+P4idDlQKgyH0nA93sl9R4zgqlBVha//wuq4vfZg== xterm-addon-webgl@0.12.0-beta.43: version \"0.12.0-beta.43\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.43.tgz#916ed4e390371403aab0d277097cd8a61be436e8\" integrity sha512-hGXfwT6TOmp0tBDiS/iF8s0SLHLd3shJ5zQyS4HNtq99B5cEhHhwaUAZAfjLt5rnUt0kvqR9YWtGsDux5dWVLA== xterm@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.60.tgz#de89d93153ae3ec17b53f3e5d03b8ea859126081\" integrity sha512-YQjvp4xtSAyNm9+gF4OA5+QzkSWdKMCy4WABETpe7CsrEGx+mJVoXCZ9wgopmvwRXz7DeJvKM5dWz1HPjVLDtA== xterm@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.67.tgz#9a7d79be64469c91bb693b9f5a50b5a22e921cd3\" integrity sha512-4bYTnT6g91N5QId1qPaiSvkpsxMQYpuPdPJItvBZFOcQLTuFSX85x5NeFuDvhNqi33eMFPimyGhzH/JvAV1v/Q== "} {"_id":"q-en-vscode-d76ca4f9be4b7f7e373c21fbc2131c866f110e51739524270423c0aee42a21d7","text":"private readonly _onDispose = this._register(new Emitter()); readonly onDispose = this._onDispose.event; readonly capabilities = 0; readonly capabilities = WorkingCopyCapabilities.None; readonly name = basename(this.resource);"} {"_id":"q-en-vscode-d78e3d7d7b06d2f59e840b512215241555b016c241cbc7aecc4e89ee33c15468","text":"\"when\": \"false\" } ], \"webview/context\": [ { \"command\": \"notebook.cellOutput.copy\", \"when\": \"webviewId == 'notebook.output' && webviewSection == 'image'\" } ] \"webview/context\": [ { \"command\": \"notebook.cellOutput.copy\", \"when\": \"webviewId == 'notebook.output' && webviewSection == 'image'\" } ] } }, \"scripts\": {"} {"_id":"q-en-vscode-d79bbd45c29a4ecd8bdc10f19e23747916f55eeb7002c08a5a7ac1265035dbaf","text":"export interface IActiveEditorActions { readonly actions: IToolbarActions; readonly onDidChange: Event; readonly onDidChange: Event; } export interface IEditorGroup {"} {"_id":"q-en-vscode-d7a245d382767b7285dc01bb8f3b15653613da2a71f80964f6d40d9bd0c67ef8","text":"'./foo', '../foo', '/foo/bar', 'foo/bar' '/foo/bar+more', 'foo/bar', 'foo/bar+more', ]; const windowsLinks = ["} {"_id":"q-en-vscode-d7af1131e3e2cd7763e4c99ca92147b1dcb576ab2f63107a57008be853215761","text":"*/ getBoundaryScore?(length: number): number; } export class SequenceFromIntArray implements ISequence { constructor(private readonly arr: number[]) { } getElement(offset: number): number { return this.arr[offset]; } get length(): number { return this.arr.length; } } "} {"_id":"q-en-vscode-d7bd0d62fad1bb1dbbf45803807fe69bf3667c6090227f5f82dcac0b0def3297","text":"import { extHostNamedCustomer } from 'vs/workbench/api/common/extHostCustomers'; import { revive } from 'vs/base/common/marshalling'; import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions'; import { SerializableObjectWithBuffers } from 'vs/workbench/services/extensions/common/proxyIdentifier'; @extHostNamedCustomer(MainContext.MainThreadCommands) export class MainThreadCommands implements MainThreadCommandsShape {"} {"_id":"q-en-vscode-d7cad6b11c398de222dc026a782f130e5a5c663d060ef5db16b21cada082c70c","text":"import { LiveTestResult } from 'vs/workbench/contrib/testing/common/testResult'; import { ITestResultService } from 'vs/workbench/contrib/testing/common/testResultService'; import { IMainThreadTestController, ITestRootProvider, ITestService } from 'vs/workbench/contrib/testing/common/testService'; import { CoverageDetails, ExtensionRunTestsRequest, IFileCoverage, ITestItem, ITestMessage, ITestRunProfile, ITestRunTask, ResolvedTestRunRequest, TestResultState, TestsDiffOp } from 'vs/workbench/contrib/testing/common/testTypes'; import { CoverageDetails, ExtensionRunTestsRequest, IFileCoverage, ITestItem, ITestMessage, ITestRunProfile, ITestRunTask, ResolvedTestRunRequest, TestResultState, TestRunProfileBitset, TestsDiffOp } from 'vs/workbench/contrib/testing/common/testTypes'; import { IExtHostContext, extHostNamedCustomer } from 'vs/workbench/services/extensions/common/extHostCustomers'; import { ExtHostContext, ExtHostTestingShape, ILocationDto, ITestControllerPatch, MainContext, MainThreadTestingShape } from '../common/extHost.protocol';"} {"_id":"q-en-vscode-d7f21c0e2f4fb406d2d576e0bc368eab1ae882b54acef4cdb19e640930b720a7","text":"private didLayout = false; private emptyViews: ISplitViewView<{ top: number; left: number }>[] | undefined; private readonly splitViewDisposables = new DisposableStore(); private centeredLayoutFixedWidth = true; constructor( private container: HTMLElement, private view: IView, public state: CenteredViewState = { ...defaultState } public state: CenteredViewState = { ...defaultState }, private centeredLayoutFixedWidth: boolean = false ) { this.container.appendChild(this.view.element); // Make sure to hide the split view overflow like sashes #52892"} {"_id":"q-en-vscode-d7f4df73451ea736f5d90f568c91b91faa6fec64bfac0d8f98c52e2ec06047cb","text":"resolved \"https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.207.tgz#9c3310ebace2952903d05dcaba8abe3a4ed44c01\" integrity sha512-piH7MJDJp4rJCduWbVvmUd59AUne1AFBJ8JaRQvk0KzNTSUnZrVXHCZc+eg+CGE4OujkcLJznhGKD6tuAshj5Q== electron@25.8.0: version \"25.8.0\" resolved \"https://registry.yarnpkg.com/electron/-/electron-25.8.0.tgz#60c84f1f256924ac5a0aff13276b901b0c43767a\" integrity sha512-T3kC1a/3ntSaYMCVVfUUc9v7myPzi6J2GP0Ad/CyfWKDPp054dGyKxb2EEjKnxQQ7wfjsT1JTEdBG04x6ekVBw== electron@25.8.1: version \"25.8.1\" resolved \"https://registry.yarnpkg.com/electron/-/electron-25.8.1.tgz#092fab5a833db4d9240d4d6f36218cf7ca954f86\" integrity sha512-GtcP1nMrROZfFg0+mhyj1hamrHvukfF6of2B/pcWxmWkd5FVY1NJib0tlhiorFZRzQN5Z+APLPr7aMolt7i2AQ== dependencies: \"@electron/get\" \"^2.0.0\" \"@types/node\" \"^18.11.18\""} {"_id":"q-en-vscode-d8092d8aedb07b7ff5879b89b37b076b53ed9f072cfd0d82499a9809e1e04b3c","text":"applyZoom(webFrame.getZoomLevel() - 1); } }; } No newline at end of file } "} {"_id":"q-en-vscode-d8428884e8873030381b9108540c16c56511a93a6be5e2630c3e2212b4f8ce42","text":"'navigation', shouldInlineGroup ); } else { // If there is no active pane in the group (it's the last group and it's empty) // Trigger the change event when the active editor changes const _onDidChange = new Emitter(); onDidChange = _onDidChange.event; disposables.add(this.onDidActiveEditorChange(() => _onDidChange.fire())); } return { actions: { primary, secondary }, onDidChange };"} {"_id":"q-en-vscode-d85659dc4f58713e25384c1caee71b8c0485a818eb7f1c09708af4923485e936","text":"import { IChatCommandButton, IChatContentReference, IChatFollowup, IChatProgressMessage, IChatResponseErrorDetails, IChatResponseProgressFileTreeData, IChatUsedContext, InteractiveSessionVoteDirection } from 'vs/workbench/contrib/chat/common/chatService'; import { countWords } from 'vs/workbench/contrib/chat/common/chatWordCounter'; import { CodeBlockModelCollection } from './codeBlockModelCollection'; import { IMarkdownString } from 'vs/base/common/htmlContent'; export function isRequestVM(item: unknown): item is IChatRequestViewModel { return !!item && typeof item === 'object' && 'message' in item;"} {"_id":"q-en-vscode-d8be437383833490d0c33962277ff37ac2bfee9743ebe5dc0fa981f8e97b4e75","text":"return; } const next = keybindingService.lookupKeybinding(AccessibleDiffViewerNext.id)?.getAriaLabel(); const previous = keybindingService.lookupKeybinding(AccessibleDiffViewerPrev.id)?.getAriaLabel(); let switchSides; const switchSidesKb = keybindingService.lookupKeybinding('diffEditor.switchSide')?.getAriaLabel(); if (switchSidesKb) { switchSides = localize('msg3', \"Run the command Diff Editor: Switch Side ({0}) to toggle between the original and modified editors.\", switchSidesKb); } else { switchSides = localize('switchSidesNoKb', \"Run the command Diff Editor: Switch Side, which is currently not triggerable via keybinding, to toggle between the original and modified editors.\"); } const keys = ['accessibility.signals.diffLineDeleted', 'accessibility.signals.diffLineInserted', 'accessibility.signals.diffLineModified']; const content = [ localize('msg1', \"You are in a diff editor.\"), localize('msg2', \"View the next ({0}) or previous ({1}) diff in diff review mode, which is optimized for screen readers.\", next, previous), localize('msg3', \"To control which accessibility signals should be played, the following settings can be configured: {0}.\", keys.join(', ')), switchSides, localize('msg4', \"To control which accessibility signals should be played, the following settings can be configured: {0}.\", keys.join(', ')), ]; const commentCommandInfo = getCommentCommandInfo(keybindingService, contextKeyService, codeEditor); if (commentCommandInfo) {"} {"_id":"q-en-vscode-d8c56fb066ce2cdbfc50fc47ef552690eb08faa0da8f9e5c8064d5412b537696","text":"}); }); test('trim final new lines bug#46075', function () { const model: TextFileEditorModel = instantiationService.createInstance(TextFileEditorModel, toResource.call(this, '/path/trim_final_new_line.txt'), 'utf8'); return model.load().then(() => { const configService = new TestConfigurationService(); configService.setUserConfiguration('files', { 'trimFinalNewlines': true }); const participant = new TrimFinalNewLinesParticipant(configService, undefined); const textContent = 'Test'; const eol = `${model.textEditorModel.getEOL()}`; let content = `${textContent}${eol}${eol}`; model.textEditorModel.setValue(content); // save many times for (let i = 0; i < 10; i++) { participant.participate(model, { reason: SaveReason.EXPLICIT }); } // confirm trimming assert.equal(snapshotToString(model.createSnapshot()), `${textContent}${eol}`); // undo should go back to previous content immediately model.textEditorModel.undo(); assert.equal(snapshotToString(model.createSnapshot()), `${textContent}${eol}${eol}`); model.textEditorModel.redo(); assert.equal(snapshotToString(model.createSnapshot()), `${textContent}${eol}`); }); }); });"} {"_id":"q-en-vscode-d8dd976ba79d839439063763463f128195e9882e367931fc23d9cf1cb599263d","text":".extension-list-item > .details > .footer > .author > .publisher-name { font-size: 90%; color: var(--vscode-descriptionForeground); font-weight: 600; } .monaco-list-row.disabled .extension-list-item > .details > .footer > .author > .publisher-name{ color: var(--vscode-disabledForeground); } .monaco-list-row.disabled.selected .extension-list-item > .details > .footer > .author > .publisher-name{ color: unset; } .monaco-list-row.selected .extension-list-item > .details > .footer > .author > .publisher-name{ color: unset; } .extension-list-item > .details > .footer > .author > .publisher-name:not(:first-child) { padding-left: 1px; }"} {"_id":"q-en-vscode-d94be0a289e2f1ef0319d870af6a0887093fdb0a8555e305412ed31b24dac502","text":"readonly viewType: string; readonly notebook: NotebookTextModel; isDirty(): boolean; isUntitled(): boolean; save(): Promise; saveAs(target: URI): Promise; revert(options?: IRevertOptions | undefined): Promise;"} {"_id":"q-en-vscode-d963f782ad11f5d0cb70d0ec246bb52ba1eb0a04de517fe82d0b5e1171f2526a","text":"}; export interface ISuggestController { isPasting: boolean; selectPreviousSuggestion(): void; selectPreviousPageSuggestion(): void; selectNextSuggestion(): void;"} {"_id":"q-en-vscode-d97f9b9204448c52e6436fa22587eb9a9847a94af61f381fb9e0e1bbdc27a7d5","text":"case FormEvent.SENDING: this.isSendingFeedback = true; this.sendButton.setClass('send in-progress'); this.sendButton.value(nls.localize('feedbackSending', \"Sending...\")); this.sendButton.value(nls.localize('feedbackSending', \"Sending\")); break; case FormEvent.SENT: this.isSendingFeedback = false; this.sendButton.setClass('send success').value(nls.localize('feedbackSent', \"Thanks :)\")); this.sendButton.setClass('send success').value(nls.localize('feedbackSent', \"Thanks\")); this.resetForm(); this.autoHideTimeout = setTimeout(() => { this.hide();"} {"_id":"q-en-vscode-d99ae65818013cce7144dd12d0a0a803adf13281288a367af874edb7deb1e7ef","text":"break; } } if (!differentGroups) { if (!differentGroups && group.terminalInstances.length === instances.length) { return; } }"} {"_id":"q-en-vscode-da0efb739f5c2671b19e6037c3f2924c1ae672ddfadf76a547d6bd9f010e50b6","text":"let _commandRegistrations: IDisposable[] = []; ExtensionsRegistry.registerExtensionPoint({ export const commandsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({ extensionPoint: 'commands', jsonSchema: schema.commandsContribution }).setHandler(extensions => { }); commandsExtensionPoint.setHandler(extensions => { function handleCommand(userFriendlyCommand: schema.IUserFriendlyCommand, extension: IExtensionPointUser, disposables: IDisposable[]) {"} {"_id":"q-en-vscode-da1e6691fa16dda14900e59f1c7cfcd57e15d1401793f1f539e9a39e52eec317","text":"@IIntegrityService private readonly integrityService: IIntegrityService, @IWorkbenchEnvironmentService private readonly environmentService: IWorkbenchEnvironmentService, @IAccessibilityService private readonly accessibilityService: IAccessibilityService, @IWorkspaceContextService private readonly contextService: IWorkspaceContextService @IWorkspaceContextService private readonly contextService: IWorkspaceContextService, @ITextFileService private readonly textFileService: ITextFileService ) { super();"} {"_id":"q-en-vscode-da33159f2d7fdb0ab8e01dfebddd69ab63ec3d32911a782294f3e07ee2b12414","text":"if (account.canSignOut) { const signOutAction = disposables.add(new Action('signOut', localize('signOut', \"Sign Out\"), undefined, true, async () => { const allSessions = await this.authenticationService.getSessions(providerId); const sessionsForAccount = allSessions.filter(s => s.account.id === account.id); const sessionsForAccount = allSessions.filter(s => s.account.label === account.label); return await this.authenticationService.removeAccountSessions(providerId, account.label, sessionsForAccount); })); providerSubMenuActions.push(signOutAction);"} {"_id":"q-en-vscode-da87d8ba4ec59b5e5a249252c80b2038dea3ea34c2980597dfe0f18d871f7de5","text":"private repositoryPanels: RepositoryPanel[] = []; private singleRepositoryPanelTitleActionsDisposable: IDisposable = EmptyDisposable; private disposables: IDisposable[] = []; private lastFocusedRepository: ISCMRepository | undefined; private _onDidSplice = new Emitter>(); readonly onDidSplice: Event> = this._onDidSplice.event;"} {"_id":"q-en-vscode-daa22fcc782556a5e4ec2eb6d829e79ff56888df8236667ecddb92ed7c5a58af","text":"import { basename, extname } from 'vs/base/common/resources'; import { match } from 'vs/base/common/glob'; import { URI } from 'vs/base/common/uri'; import { Mimes } from 'vs/base/common/mime'; import { getMimeTypes } from 'vs/editor/common/services/languagesAssociations'; import { IModelService } from 'vs/editor/common/services/model'; import { ILanguageService } from 'vs/editor/common/languages/language'; import { IExtensionRecommendationNotificationService, RecommendationsNotificationResult, RecommendationSource } from 'vs/platform/extensionRecommendations/common/extensionRecommendations';"} {"_id":"q-en-vscode-dae5db6069a57bba5b7142496560aa20f2ef01a1bba414f8886bd524bb623905","text":"hcLight: '#B5200D' }, localize('activityBarTopActiveFocusBorder', \"Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.\")); export const ACTIVITY_BAR_TOP_ACTIVE_BACKGROUND = registerColor('activityBarTop.activeBackground', { dark: null, light: null, hcDark: null, hcLight: null }, localize('activityBarTopActiveBackground', \"Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar.\")); export const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inactiveForeground', { dark: transparent(ACTIVITY_BAR_TOP_FOREGROUND, 0.6), light: transparent(ACTIVITY_BAR_TOP_FOREGROUND, 0.75),"} {"_id":"q-en-vscode-daf44df7e28dd5ce5795a5e868745a704eeb4d20e64b5ce9b235d0ccc2ad321f","text":"

${vscode.l10n.t(\"An error occurred while loading the video file.\")}

"} {"_id":"q-en-vscode-db1a7f8da40271907d2a7791b53a97688115520fa8ed234b039bd1efd27e50d3","text":"} async getStashes(): Promise { const result = await this.exec(['stash', 'list']); const result = await this.exec(['stash', 'list', `--format=${STASH_FORMAT}`, '-z']); return parseGitStashes(result.stdout.trim()); }"} {"_id":"q-en-vscode-db543e8fd6bf696d0863b0b6803e4a3599b6e64de1c9637b56d6577c0a714863","text":"import * as nls from '../../../../nls.js'; import { ICommandHandler } from '../../../../platform/commands/common/commands.js'; import { ServicesAccessor } from '../../../../platform/instantiation/common/instantiation.js'; import { WorkbenchListFocusContextKey } from '../../../../platform/list/browser/listService.js'; import { WorkbenchCompressibleAsyncDataTree, WorkbenchListFocusContextKey } from '../../../../platform/list/browser/listService.js'; import { IViewsService } from '../../../services/views/common/viewsService.js'; import { searchClearIcon, searchCollapseAllIcon, searchExpandAllIcon, searchRefreshIcon, searchShowAsList, searchShowAsTree, searchStopIcon } from './searchIcons.js'; import * as Constants from '../common/constants.js'; import { ISearchHistoryService } from '../common/searchHistoryService.js'; import { FileMatch, FolderMatch, FolderMatchNoRoot, FolderMatchWorkspaceRoot, Match, SearchResult, TextSearchResult } from './searchModel.js'; import { FileMatch, FolderMatch, FolderMatchNoRoot, FolderMatchWorkspaceRoot, Match, RenderableMatch, SearchResult, TextSearchResult } from './searchModel.js'; import { VIEW_ID } from '../../../services/search/common/search.js'; import { ContextKeyExpr } from '../../../../platform/contextkey/common/contextkey.js'; import { Action2, MenuId, registerAction2 } from '../../../../platform/actions/common/actions.js';"} {"_id":"q-en-vscode-db97b5536c30bec1c44ba9c8944791ba911f5afbf9efaf8517d4310852eb05e9","text":"dom.EventHelper.stop(e); } })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.KEY_PRESS, (e: KeyboardEvent) => { dom.EventHelper.stop(e); })); } public get onDidSelect(): Event {"} {"_id":"q-en-vscode-dbab7eea6d531f926b5703acf2e0eef0f461888c045d614f42891fdf61a0affa","text":"// avoid creating the storage library a second time on // the same DB. const { indededDb: applicationStorageIndexedDB, storage: applicationStorage } = await this.applicationStoragePromise.p; const { indexedDb: applicationStorageIndexedDB, storage: applicationStorage } = await this.applicationStoragePromise.p; this.profileStorageDatabase = applicationStorageIndexedDB; this.profileStorage = applicationStorage; this.profileStorageDisposables.add(this.profileStorage.onDidChangeStorage(key => this.emitDidChangeValue(StorageScope.PROFILE, key))); } else { const profileStorageIndexedDB = await IndexedDBStorageDatabase.create({ id: this.getId(StorageScope.PROFILE), broadcastChanges: true }, this.logService); this.profileStorageDatabase = this.profileStorageDisposables.add(profileStorageIndexedDB); this.profileStorage = this.profileStorageDisposables.add(new Storage(this.profileStorageDatabase)); } this.profileStorageDisposables.add(this.profileStorage.onDidChangeStorage(key => this.emitDidChangeValue(StorageScope.PROFILE, key))); this.profileStorageDisposables.add(this.profileStorage.onDidChangeStorage(key => this.emitDidChangeValue(StorageScope.PROFILE, key))); await this.profileStorage.init(); await this.profileStorage.init(); this.updateIsNew(this.profileStorage); this.updateIsNew(this.profileStorage); } } private async createWorkspaceStorage(): Promise {"} {"_id":"q-en-vscode-dc058b6e70c6baf5ebc37e47c2169e0b2ad9385486670aeaba0366eac0d7c3af","text":"\"opn\": \"^6.0.0\", \"optimist\": \"0.3.5\", \"p-all\": \"^1.0.0\", \"playwright\": \"0.15.0\", \"playwright\": \"1.0.1\", \"pump\": \"^1.0.1\", \"queue\": \"3.0.6\", \"rcedit\": \"^1.1.0\","} {"_id":"q-en-vscode-dc1fd6ed21b252de6691be0f80c9d15e223dc87cd1ba7005d0c27a29d9e74348","text":"} } if (this.extension.enablementState === EnablementState.EnabledGlobally) { this.updateStatus({ message: new MarkdownString(localize('globally enabled', \"This extension is enabled globally.\")) }, true); return; } }"} {"_id":"q-en-vscode-dc72328badbf5861c2c8385a5d974dd828907d31f72f2099623e04fcb7811b2d","text":"} /** @type {Promise} */ const workerReady = new Promise(async (resolve, reject) => { const workerReady = new Promise((resolve, reject) => { if (!areServiceWorkersEnabled()) { return reject(new Error('Service Workers are not enabled. Webviews will not work. Try disabling private/incognito mode.')); }"} {"_id":"q-en-vscode-dc827276402048134d745701fba471c31c45fdc7196eb2164d44748a3fa90447","text":"suite('NotebookVariableDataSource', () => { let dataSource: NotebookVariableDataSource; const notebookModel = { uri: 'one.ipynb', languages: ['python'] } as unknown as NotebookTextModel; let provideVariablesCalled = false; let provideVariablesCalled: boolean; type VariablesResultWithAction = VariablesResult & { action?: () => void }; let results: VariablesResultWithAction[] = [ { id: 1, name: 'a', value: '1', hasNamedChildren: false, indexedChildrenCount: 0 }, ]; let results: VariablesResultWithAction[]; const kernel = new class extends mock() { override hasVariableProvider = true;"} {"_id":"q-en-vscode-dcb690d3ab3e9dfb64a86d20aca03e5ebe0f6f5d8a5fc257239833ca6841fb79","text":".extension-list-item > .details { flex: 1; padding: 4px 0; display: flex; overflow: hidden; flex-direction: column; justify-content: center; } .extension-list-item > .details > .header-container {"} {"_id":"q-en-vscode-dccbe2c840fa677b4c686d9fba8df386ff7af1d2e9234c72765a748c139e3ccc","text":"moveTo(thisCursor, 3, 9); moveTo(thisCursor, 1, 1, true); moveToEndOfLine(thisCursor, false); assertCursor(thisCursor, new Selection(3, 17, 3, 17)); assertCursor(thisCursor, new Selection(1, 21, 1, 21)); }); test('move to end of line with selection single line forward', () => {"} {"_id":"q-en-vscode-dcd0cd5b55e7ace23fa6c31bddb2be7bc7598245b1ce997c6e216a7640782076","text":"} }); } private _handleCursorPositionChange(e: ICursorPositionChangedEvent | undefined, isModifiedEditor: boolean): void { if (e?.reason === CursorChangeReason.Explicit) { const diff = this._diffModel.get()?.diff.get()?.mappings.find(m => isModifiedEditor ? m.lineRangeMapping.modified.contains(e.position.lineNumber) : m.lineRangeMapping.original.contains(e.position.lineNumber)); if (diff?.lineRangeMapping.modified.isEmpty) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineDeleted, { source: 'diffEditor.cursorPositionChanged' }); } else if (diff?.lineRangeMapping.original.isEmpty) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineInserted, { source: 'diffEditor.cursorPositionChanged' }); } else if (diff) { this._accessibilitySignalService.playSignal(AccessibilitySignal.diffLineModified, { source: 'diffEditor.cursorPositionChanged' }); } } } } function toLineChanges(state: DiffState): ILineChange[] {"} {"_id":"q-en-vscode-dcfa0c4ac833fc28c6958fbb60e13df4fe7a35895f9122463b6977cfb8967164","text":"templateData.actionBar.clear(); templateData.icon.style.color = ''; if (resource) { const fileDecorations = this.configurationService.getValue<{ colors: boolean; badges: boolean }>('explorer.decorations'); const labelResource = resource ? resource : URI.parse('missing:_icon_resource');"} {"_id":"q-en-vscode-dd7ad93b7ff6ec4a1940d10960c06e829506f4c5d01aed2ca11a40578d4fed5c","text":"\"entity.name.section\" ], \"settings\": { \"fontStyle\": \"\", \"fontStyle\": \"bold\", \"foreground\": \"#8ab1b0\" } },"} {"_id":"q-en-vscode-dd8b7f8f86f83f68ee0a93d3e3d65568041df12e963aed1d27302b1f05a34d29","text":"toggled: { condition: SideBarVisibleContext, title: localize('primary sidebar', \"Primary Side Bar\"), mnemonicTitle: localize('primary sidebar mnemonic', \"&&Primary Side Bar\"), mnemonicTitle: localize({ key: 'primary sidebar mnemonic', comment: ['&& denotes a mnemonic'] }, \"&&Primary Side Bar\"), }, category: Categories.View, f1: true,"} {"_id":"q-en-vscode-ddc1e8facae2ca5ca22ff9ed2477eee437b985ef0167e8a2422b10609728b7ae","text":"} } private resolveKeybindings(actionIds: string[]): TPromise<{ id: string; label: string, isNative: boolean; }[]> { return TPromise.join([this.lifecycleService.when(LifecyclePhase.Running), this.extensionService.whenInstalledExtensionsRegistered()]).then(() => { return arrays.coalesce(actionIds.map(id => { const binding = this.keybindingService.lookupKeybinding(id); if (!binding) { return null; } // first try to resolve a native accelerator const electronAccelerator = binding.getElectronAccelerator(); if (electronAccelerator) { return { id, label: electronAccelerator, isNative: true }; } // we need this fallback to support keybindings that cannot show in electron menus (e.g. chords) const acceleratorLabel = binding.getLabel(); if (acceleratorLabel) { return { id, label: acceleratorLabel, isNative: false }; } return null; })); }); } private onAddFoldersRequest(request: IAddFoldersRequest): void { // Buffer all pending requests"} {"_id":"q-en-vscode-de7370374053cef6fe57fc02745de5dbffa6bd7f82a9fd38aea69a4f033addb3","text":"this._domNode.style.padding = '6px 11px'; this._domNode.style.borderRadius = '2px'; this._domNode.style.cursor = 'pointer'; this._domNode.style.zIndex = '1'; if (keyBindingAction) { const keybinding = keybindingService.lookupKeybinding(keyBindingAction);"} {"_id":"q-en-vscode-de9c8d7e28c0257e96a7a75714a337fd42a94d3c9f14de5440a5b2364bb2bdf2","text":"dispose(deletedCells); }); })); const vm = this._notebookEditor._getViewModel(); let items: INotebookDeltaCellStatusBarItems[] = []; if (this._enabled) { items = this._getItemsForCells(); } this._cellStatusItems = vm.deltaCellStatusBarItems(this._cellStatusItems, items); } private _getItemsForCells(): INotebookDeltaCellStatusBarItems[] { const items: INotebookDeltaCellStatusBarItems[] = []; for (let i = 0; i < this._notebookEditor.getLength(); i++) { items.push({ handle: i, items: [ { text: `index: ${i}`, alignment: CellStatusbarAlignment.Left, priority: Number.MAX_SAFE_INTEGER } ] }); } return items; } override dispose() {"} {"_id":"q-en-vscode-deb9e4cd1df78e00dbd50163e00f88717934d573bc627316631d3737d748ff51","text":"toggled: { condition: AuxiliaryBarVisibleContext, title: localize('secondary sidebar', \"Secondary Side Bar\"), mnemonicTitle: localize('secondary sidebar mnemonic', \"Secondary Si&&de Bar\"), mnemonicTitle: localize({ key: 'secondary sidebar mnemonic', comment: ['&& denotes a mnemonic'] }, \"Secondary Si&&de Bar\"), }, category: Categories.View,"} {"_id":"q-en-vscode-dedb084f1417f8aebb527ca4c76bf788745d1905d2b83ffd8355be5cac02a025","text":"buildfile.workerNotebook, buildfile.workerLanguageDetection, buildfile.workerLocalFileSearch, buildfile.workerProfileAnalysis, buildfile.keyboardMaps, buildfile.workbenchWeb ].flat();"} {"_id":"q-en-vscode-def52b76c0b06564322bc64d1ef135f80e216fbebf191b08c991199ff4a9dd49","text":"let message = localize('extensionEnvironmentContributionInfoStale', \"The following extensions want to relaunch the terminal to contribute to its environment:\"); message += 'n'; for (const ext of extSet) { message += `n- `${ext}``; message += `n- `${getExtensionName(ext, this._extensionService)}``; } return message; }"} {"_id":"q-en-vscode-df046a7ee5d58941b6f2db453aa1979cc29c7903e2bce8aa0c0cb66c21c8f5d0","text":"type ManualSyncTaskEvent = { manualSyncTaskId: string; data: T }; function reviewSyncResource(syncResource: IUserDataSyncResource, userDataProfilesService: IUserDataProfilesService) { return { ...syncResource, profie: reviveProfile(syncResource.profile, userDataProfilesService.profilesHome.scheme) }; function reviewSyncResource(syncResource: IUserDataSyncResource, userDataProfilesService: IUserDataProfilesService): IUserDataSyncResource { return { ...syncResource, profile: reviveProfile(syncResource.profile, userDataProfilesService.profilesHome.scheme) }; } export class UserDataSyncChannel implements IServerChannel {"} {"_id":"q-en-vscode-df0987b77079676bbad7e7f67d1411d787f178a5088db2ab7803f2e8c58bf662","text":"executableEnv, windowsEnableConpty }; const persistentProcess = new PersistentTerminalProcess(id, process, workspaceId, workspaceName, shouldPersist, cols, rows, processLaunchOptions, unicodeVersion, this._reconnectConstants, this._logService, isReviving ? shellLaunchConfig.initialText : undefined, shellLaunchConfig.icon, shellLaunchConfig.color, shellLaunchConfig.fixedDimensions); const persistentProcess = new PersistentTerminalProcess(id, process, workspaceId, workspaceName, shouldPersist, cols, rows, processLaunchOptions, unicodeVersion, this._reconnectConstants, this._logService, isReviving ? shellLaunchConfig.initialText : undefined, shellLaunchConfig.icon, shellLaunchConfig.color, shellLaunchConfig.name, shellLaunchConfig.fixedDimensions); process.onDidChangeProperty(property => this._onDidChangeProperty.fire({ id, property })); process.onProcessExit(event => { persistentProcess.dispose();"} {"_id":"q-en-vscode-df48c8e1eb903b6d0e4e9783ed1eab51f304052f51a33f9d030da5ee68b8ad0c","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ function numberHash(val: number, initialHashVal: number): number { return (((initialHashVal << 5) - initialHashVal) + val) | 0; // hashVal * 31 + ch, keep as int32 } export function stringHash(s: string) { let hashVal = numberHash(149417, 0); for (let i = 0, length = s.length; i < length; i++) { hashVal = numberHash(s.charCodeAt(i), hashVal); } return hashVal; } "} {"_id":"q-en-vscode-df6264b6a3e80084be714babc66bf3a094f327fcd91fadc665ac634526c146c5","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Lazy } from 'vs/base/common/lazy'; /** * A regex that extracts the link suffix which contains line and column information. */ const linkSuffixRegex = new Lazy(() => { let ri = 0; let ci = 0; function l(): string { return `(?d+)`; } function c(): string { return `(?d+)`; } // The comments in the regex below use real strings/numbers for better readability, here's // the legend: // - Path = foo // - Row = 339 // - Col = 12 // // These all support single quote ' in the place of \" and [] in the place of () const lineAndColumnRegexClauses = [ // foo:339 // foo:339:12 // foo 339 // foo 339:12 [#140780] // \"foo\",339 // \"foo\",339:12 `(?::| |['\"],)${l()}(:${c()})?$`, // \"foo\", line 339 [#40468] // \"foo\", line 339, col 12 // \"foo\", line 339, column 12 // \"foo\":line 339 // \"foo\":line 339, col 12 // \"foo\":line 339, column 12 // \"foo\": line 339 // \"foo\": line 339, col 12 // \"foo\": line 339, column 12 // \"foo\" on line 339 // \"foo\" on line 339, col 12 // \"foo\" on line 339, column 12 `['\"](?:, |: ?| on )line ${l()}(, col(?:umn)? ${c()})?$`, // foo(339) // foo(339,12) // foo(339, 12) // foo (339) // foo (339,12) // foo (339, 12) ` ?[[(]${l()}(?:, ?${c()})?[])]`, ]; const suffixClause = lineAndColumnRegexClauses // Join all clauses together .join('|') // Convert spaces to allow the non-breaking space char (ascii 160) .replace(/ /g, `[${'u00A0'} ]`); return new RegExp(`(${suffixClause})`); }); /** * Removes the optional link suffix which contains line and column information. * @param link The link to parse. */ export function removeLinkSuffix(link: string): string { const suffix = getLinkSuffix(link)?.suffix; if (!suffix) { return link; } return link.substring(0, suffix.index); } /** * Returns the optional link suffix which contains line and column information. * @param link The link to parse. */ export function getLinkSuffix(link: string): { row: number | undefined; col: number | undefined; suffix: { index: number; text: string } } | null { const matches = linkSuffixRegex.getValue().exec(link); const groups = matches?.groups; if (!groups || matches.length < 1) { return null; } const rowString = groups.row0 || groups.row1 || groups.row2; const colString = groups.col0 || groups.col1 || groups.col2; return { row: rowString !== undefined ? parseInt(rowString) : undefined, col: colString !== undefined ? parseInt(colString) : undefined, suffix: { index: matches.index, text: matches[0] } }; } "} {"_id":"q-en-vscode-df799c0d407193fbcd46f07612d2c9d23290790b0b66733539c18c954c0b3b93","text":" { \"comments\": { \"lineComment\": \"#\", \"blockComment\": [ \"#\", \" \" ] }, \"brackets\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"] ], \"autoClosingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ], \"surroundingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ] } No newline at end of file"} {"_id":"q-en-vscode-df892bd67fb9bad51346f7cb05da53fd469d999baf167a24f31c69619b5016f6","text":"*--------------------------------------------------------------------------------------------*/ import { OperatingSystem, OS } from 'vs/base/common/platform'; import type { IShellLaunchConfig } from 'vs/platform/terminal/common/terminal'; /** * Aggressively escape non-windows paths to prepare for being sent to a shell. This will do some"} {"_id":"q-en-vscode-df9184ccf4a3947d88a8e2b0e369f51ac898db8d3fc8e3c93afe2103f79f48b6","text":"private readonly _onDidStateChange: Emitter; get taskShellIntegrationStartSequence(): string { return this._configurationService.getValue('task.showDecorations') ? VSCodeSequence(VSCodeOscPt.PromptStart) + VSCodeSequence(VSCodeOscPt.Property, `${VSCodeOscProperty.Task}=True`) + VSCodeSequence(VSCodeOscPt.CommandStart) : ''; } get taskShellIntegrationOutputSequence(): string { return this._configurationService.getValue('task.showDecorations') ? VSCodeSequence(VSCodeOscPt.CommandExecuted) : ''; } constructor( private _terminalService: ITerminalService, private _terminalGroupService: ITerminalGroupService,"} {"_id":"q-en-vscode-df959781c78079a249bbefbbc0b45ae67088def83e8427f8b1f92a24e7451593","text":"} export class MoveToMatchFindAction extends EditorAction { private _highlightDecorations: string[] = []; constructor() { super({ id: FIND_IDS.GoToMatchFindAction,"} {"_id":"q-en-vscode-dfe564ff415f7053fe66c235833dc9cc1268176160cc96d8bf336d24748ece9e","text":"} })); this._sessionDisposables.add(this._editor.onDidChangeModelContent((e) => { cts?.cancel(); // update less aggressive when typing const delay = Math.max(scheduler.delay, 1250); scheduler.schedule(delay);"} {"_id":"q-en-vscode-e038a7f8e3b70d9218ea05169f74401386e02869d85c5a3a498f9d2562db26a4","text":"if (!language || !locale || locale === 'en' || locale.indexOf('en-') === 0) { return; } if (language === locale || languagePackSuggestionIgnoreList.indexOf(language) > -1) { if (language === locale || languagePackSuggestionIgnoreList.indexOf(locale) > -1) { return; }"} {"_id":"q-en-vscode-e0512e53e76b64c504192fc6bfaee0fa8e1d49cf335c48abec3a1cdf40dc626f","text":"return this.configurationService.getValue(LayoutSettings.ACTIVITY_BAR_LOCATION) !== ActivityBarPosition.HIDDEN; } private rememberActivityBarVisiblePosition(): void { const activityBarPosition = this.configurationService.getValue(LayoutSettings.ACTIVITY_BAR_LOCATION); if (activityBarPosition !== ActivityBarPosition.HIDDEN) { this.storageService.store(LayoutSettings.ACTIVITY_BAR_LOCATION, activityBarPosition, StorageScope.PROFILE, StorageTarget.USER); } } private getRememberedActivityBarVisiblePosition(): ActivityBarPosition { const activityBarPosition = this.storageService.get(LayoutSettings.ACTIVITY_BAR_LOCATION, StorageScope.PROFILE); switch (activityBarPosition) { case ActivityBarPosition.SIDE: return ActivityBarPosition.SIDE; default: return ActivityBarPosition.TOP; } } private updateActivityBarVisiblity(): void { if (this.shouldShowActivityBar()) { this.acitivityBarPart.show();"} {"_id":"q-en-vscode-e0528033ba66b59a6b07495897dfe33ed518dbd7419ea6ef02c4229bfa972f79","text":"extensionWorkbenchService.open(extension, { showPreReleaseVersion: false }); } }); this.registerExtensionAction({ id: SkipUpdateAction.ID, title: { value: SkipUpdateAction.LABEL, original: 'Ignore Updates' }, category: ExtensionsLocalizedLabel, toggled: ContextKeyDefinedExpr.create('isExtensionPinned'), menu: { id: MenuId.ExtensionContext, group: INSTALL_ACTIONS_GROUP, order: 2, when: ContextKeyExpr.and(ContextKeyExpr.equals('extensionStatus', 'installed'), ContextKeyExpr.not('isBuiltinExtension')) }, run: async (accessor: ServicesAccessor, id: string) => { const instantiationService = accessor.get(IInstantiationService); const extensionWorkbenchService = accessor.get(IExtensionsWorkbenchService); const extension = extensionWorkbenchService.local.find(e => areSameExtensions(e.identifier, { id })); if (extension) { const action = instantiationService.createInstance(SkipUpdateAction); action.extension = extension; return action.run(); } } }); this.registerExtensionAction({ id: SwitchToPreReleaseVersionAction.ID, title: SwitchToPreReleaseVersionAction.TITLE,"} {"_id":"q-en-vscode-e05b6d616c90a2e15ab3808cd93529ade0506d1a9f1d3ae68eea5fe6bd8121a3","text":"id: MenuId.NotebookCellTitle, when: NOTEBOOK_EDITOR_FOCUSED, group: CellOverflowToolbarGroups.Copy, order: 2, }, keybinding: platform.isNative ? undefined : { primary: KeyMod.CtrlCmd | KeyCode.KeyC,"} {"_id":"q-en-vscode-e06ef6f629ab3db235487f0529715712a21aed2d5268bd305821ad0006b9e898","text":"keybinding: { weight: KeybindingWeight.WorkbenchContrib, primary: KeyMod.CtrlCmd | KeyCode.DownArrow, when: CONTEXT_IN_CHAT_INPUT } }); }"} {"_id":"q-en-vscode-e08970f7cb066a311b0953498e0b8c43331e818b7ae9cab035d3c3ddcb39bfe6","text":"stats?: IFileSearchProviderStats; } /** * For backwards compatibility, store both a cancellation token and a session object. The session object is the new implementation, where */ class SessionLifecycle extends Disposable { public readonly obj: object; public readonly tokenSource: CancellationTokenSource; constructor() { super(); this.obj = new Object(); this.tokenSource = new CancellationTokenSource(); } public override dispose(): void { this.tokenSource.cancel(); super.dispose(); } } export class FileSearchManager { private static readonly BATCH_SIZE = 512; private readonly sessions = new Map(); private readonly sessions = new Map(); fileSearch(config: IFileQuery, provider: FileSearchProviderNew, onBatch: (matches: IFileMatch[]) => void, token: CancellationToken): Promise { const sessionTokenSource = this.getSessionTokenSource(config.cacheKey);"} {"_id":"q-en-vscode-e0c444c1ac10a7b94c99d15cb4bf4709b531b4f67ec3ab0468bbff0943ef0881","text":"dependencies: object-keys \"~0.4.0\" xterm-addon-canvas@0.4.0-beta.7: version \"0.4.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.7.tgz#ae365d8e10c900292186529f70f7f275ac94b3d5\" integrity sha512-r1hbQTsulI49orR5G3qWrJCwn2dKsEUCrgj6xsmgXuTeoUcGfed6lly+MvYlL3P8aPrxS2fC2TEzSM0Au4SX+w== xterm-addon-canvas@0.4.0-beta.9: version \"0.4.0-beta.9\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.9.tgz#e570fa4592890f92cc86706f2bba0dd128a8641d\" integrity sha512-BWRVWyUW7NY2g4BBMm3ecPQvbdyKXFgABnpmh4m0TVHqFJMNeXdNuTc94KiDbE+cvw8jtAY9NC/OIM4HcgjAIQ== xterm-addon-search@0.11.0: version \"0.11.0\""} {"_id":"q-en-vscode-e1114950e43ff12ef85837341c6b61b4855a0d3ab9145b921fa563a72b5dac7f","text":"scope: scopeData.scopeStr, sessionId, account: { label, label: claims.email ?? claims.preferred_username ?? claims.unique_name ?? 'user@example.com', id, type: claims.tid === MSA_TID || claims.tid === MSA_PASSTHRU_TID ? MicrosoftAccountType.MSA : MicrosoftAccountType.AAD }"} {"_id":"q-en-vscode-e16acd4689a4b342b5f16fa4c595d5b8a6527343b872d9834082b027040be67e","text":"console.error(`Playwright ERROR: HTTP status ${response.status()} for ${response.url()}`); } }); page.on('console', async msg => { try { consoleLogFn(msg)(msg.text(), await Promise.all(msg.args().map(async arg => await arg.jsonValue()))); } catch (err) { console.error('Error logging console', err); } }); page.on('requestfailed', e => { console.error('Request Failed', e.url(), e.failure()?.errorText); }); const host = endpoint.host; const protocol = 'vscode-remote';"} {"_id":"q-en-vscode-e18ce2f489d37c1b95adc291aa462739d26eeadfc68480652c685049c537d7af","text":"return filename; } // Trim whitespaces filename = strings.trim(strings.trim(filename, ' '), 't'); // Trim tabs filename = strings.trim(filename, 't'); // Remove trailing dots // Remove trailing dots, slashes, and spaces filename = strings.rtrim(filename, '.'); // Remove trailing slashes filename = strings.rtrim(filename, ' '); filename = strings.rtrim(filename, '/'); filename = strings.rtrim(filename, '');"} {"_id":"q-en-vscode-e1d3b9ec1042e765fa27a5baf8fe52a85e25c07c5d645661c87336693c301370","text":"if (!model) { return; } const selection = this._editor.getSelection(); if (!selection.isEmpty()) { return; } const position = selection.getStartPosition(); let newSelections: Selection[] = []; this._editor.getSelections().forEach(selection => { const position = selection.getStartPosition(); let brackets = model.matchBracket(position); let brackets = model.matchBracket(position); let openBracket: Position = null; let closeBracket: Position = null; let openBracket: Position = null; let closeBracket: Position = null; if (!brackets) { const nextBracket = model.findNextBracket(position); if (nextBracket && nextBracket.range) { brackets = model.matchBracket(nextBracket.range.getStartPosition()); if (!brackets) { const nextBracket = model.findNextBracket(position); if (nextBracket && nextBracket.range) { brackets = model.matchBracket(nextBracket.range.getStartPosition()); } } } if (brackets) { if (brackets[0].startLineNumber === brackets[1].startLineNumber) { openBracket = brackets[1].startColumn < brackets[0].startColumn ? brackets[1].getStartPosition() : brackets[0].getStartPosition(); closeBracket = brackets[1].startColumn < brackets[0].startColumn ? brackets[0].getEndPosition() : brackets[1].getEndPosition(); } else { openBracket = brackets[1].startLineNumber < brackets[0].startLineNumber ? brackets[1].getStartPosition() : brackets[0].getStartPosition(); closeBracket = brackets[1].startLineNumber < brackets[0].startLineNumber ? brackets[0].getEndPosition() : brackets[1].getEndPosition(); if (brackets) { if (brackets[0].startLineNumber === brackets[1].startLineNumber) { openBracket = brackets[1].startColumn < brackets[0].startColumn ? brackets[1].getStartPosition() : brackets[0].getStartPosition(); closeBracket = brackets[1].startColumn < brackets[0].startColumn ? brackets[0].getEndPosition() : brackets[1].getEndPosition(); } else { openBracket = brackets[1].startLineNumber < brackets[0].startLineNumber ? brackets[1].getStartPosition() : brackets[0].getStartPosition(); closeBracket = brackets[1].startLineNumber < brackets[0].startLineNumber ? brackets[0].getEndPosition() : brackets[1].getEndPosition(); } } } if (openBracket && closeBracket) { this._editor.setSelection(new Range(openBracket.lineNumber, openBracket.column, closeBracket.lineNumber, closeBracket.column)); if (openBracket && closeBracket) { newSelections.push(new Selection(openBracket.lineNumber, openBracket.column, closeBracket.lineNumber, closeBracket.column)); } }); if (newSelections.length > 0) { this._editor.setSelections(newSelections); this._editor.revealRange(newSelections[0]); } }"} {"_id":"q-en-vscode-e1e0e5d2307b420895d48341cd21b01810a2a7af39aa97ddb647b2f5c28f21b8","text":"this._terminalCreationQueue = this._terminalCreationQueue.then(() => this._doCreateTerminal(task, group, launchConfigs!)); const terminal: ITerminalInstance = (await this._terminalCreationQueue)!; terminal.shellLaunchConfig.reconnectionProperties = { ownerId: ReconnectionType, data: { lastTask: task.getCommonTaskId(), group, label: task._label, id: task._id } }; if (task.configurationProperties.isBackground) { terminal.shellLaunchConfig.reconnectionProperties = { ownerId: ReconnectionType, data: { lastTask: task.getCommonTaskId(), group, label: task._label, id: task._id } }; } const terminalKey = terminal.instanceId.toString(); const terminalData = { terminal: terminal, lastTask: taskKey, group }; terminal.onDisposed(() => this._deleteTaskAndTerminal(terminal, terminalData));"} {"_id":"q-en-vscode-e22893c2cc7b620ea0f481e9037edea4976cffe279997c130bd76211240e96f3","text":"group: '', title: nls.localize('actions.clipboard.copyLabel', \"Copy\"), order: 1 }, { menuId: MenuId.SimpleEditorContext, group: CLIPBOARD_CONTEXT_MENU_GROUP, title: nls.localize('actions.clipboard.copyLabel', \"Copy\"), order: 2, }] })) : undefined;"} {"_id":"q-en-vscode-e2ae7189aec60a835f67588c2546b7d17bdaaf5ad764f748677b992ed5e51a68","text":"/** * Inline hints */ export const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: transparent(badgeForeground, .8), light: transparent(badgeForeground, .8), hcDark: badgeForeground, hcLight: badgeForeground }, nls.localize('editorInlayHintForeground', 'Foreground color of inline hints')); export const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: transparent(badgeBackground, .6), light: transparent(badgeBackground, .3), hcDark: badgeBackground, hcLight: badgeBackground }, nls.localize('editorInlayHintBackground', 'Background color of inline hints')); export const editorInlayHintForeground = registerColor('editorInlayHint.foreground', { dark: badgeForeground, light: badgeForeground, hcDark: Color.black, hcLight: badgeForeground }, nls.localize('editorInlayHintForeground', 'Foreground color of inline hints')); export const editorInlayHintBackground = registerColor('editorInlayHint.background', { dark: transparent(badgeBackground, .8), light: transparent(badgeBackground, .6), hcDark: '#f38518', hcLight: badgeBackground }, nls.localize('editorInlayHintBackground', 'Background color of inline hints')); export const editorInlayHintTypeForeground = registerColor('editorInlayHint.typeForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundTypes', 'Foreground color of inline hints for types')); export const editorInlayHintTypeBackground = registerColor('editorInlayHint.typeBackground', { dark: editorInlayHintBackground, light: editorInlayHintBackground, hcDark: editorInlayHintBackground, hcLight: editorInlayHintBackground }, nls.localize('editorInlayHintBackgroundTypes', 'Background color of inline hints for types')); export const editorInlayHintParameterForeground = registerColor('editorInlayHint.parameterForeground', { dark: editorInlayHintForeground, light: editorInlayHintForeground, hcDark: editorInlayHintForeground, hcLight: editorInlayHintForeground }, nls.localize('editorInlayHintForegroundParameter', 'Foreground color of inline hints for parameters'));"} {"_id":"q-en-vscode-e2f326bd1137eeeeaf57dec92f280f973678fa2865fea712263c7ad8fed13843","text":"private getMarkersItemTurnedOff(): IStatusbarEntry { const config = this.configurationService.getValue('problems.visibility'); if (config) { return { name: '', text: '', ariaLabel: '', tooltip: '', command: '' }; } this.statusbarService.updateEntryVisibility('status.problemsVisibility', !config); const openSettingsCommand = 'workbench.action.openSettings'; const configureSettingsLabel = 'problems.visibility'; const configureSettingsLabel = '@id:problems.visibility'; const tooltip = !config ? localize('problemsOff', \"Problems have been turned off.\") : ''; return { name: localize('status.problems.off', \"Problems\"), name: localize('status.problemsVisibility', \"Problems Visibility\"), text: '$(whole-word)', ariaLabel: tooltip, tooltip,"} {"_id":"q-en-vscode-e36d3f147a4d5092ff52d36dadf95dd5f207e5cc218ab137286e8ce8ac7f8c10","text":"} public validate(): boolean { let result: IMessage = null; let errorMsg: IMessage = null; if (this.validation) { result = this.validation(this.value); errorMsg = this.validation(this.value); if (!result) { if (errorMsg) { this.inputElement.setAttribute('aria-invalid', 'true'); this.showMessage(errorMsg); } else if (this.inputElement.hasAttribute('aria-invalid')) { this.inputElement.removeAttribute('aria-invalid'); this.hideMessage(); } else { this.inputElement.setAttribute('aria-invalid', 'true'); this.showMessage(result); } } return !result; return !errorMsg; } private stylesForType(type: MessageType): { border: Color; background: Color } {"} {"_id":"q-en-vscode-e3ae7f27a60a062aa67d33e7d6722d3874d48f3b3e11903182354da65c40cfdb","text":"if (Range.isIRange((obj as modes.Location).range) && URI.isUri((obj as modes.Location).uri)) { return extHostTypeConverter.location.to(obj); } if (obj instanceof VSBuffer) { return obj.buffer.buffer; } if (!Array.isArray(obj)) { return obj; }"} {"_id":"q-en-vscode-e3cc2de8d83e70103e549b96b770b7be47026f54e5aad808c1fcd331bfcb22fc","text":"const apiProposalNotListed = l10n.t(\"This proposal cannot be used because for this extension the product defines a fixed set of API proposals. You can test your extension but before publishing you MUST reach out to the VS Code team.\"); const implicitActivationEvent = l10n.t(\"This activation event cannot be explicitly listed by your extension.\"); const redundantImplicitActivationEvent = l10n.t(\"This activation event can be removed as VS Code generates these automatically from your package.json contribution declarations.\"); const starActivation = l10n.t(\"Using '*' activation is usually a bad idea as it impacts performance.\"); enum Context { ICON,"} {"_id":"q-en-vscode-e3e84af32580a74e69bd60c48f803edd15d7a72e210ed29a10b1b75b1af38993","text":"} } const pickOptions: IPickOptions = { placeHolder: info.description, matchOnDetail: true, ignoreFocusLost: true }; return this.quickInputService.pick(picks, pickOptions, undefined).then(resolvedInput => { return this.userInputAccessQueue.queue(() => this.quickInputService.pick(picks, pickOptions, undefined)).then(resolvedInput => { if (resolvedInput) { return resolvedInput.value; return (resolvedInput as PickStringItem).value; } return undefined; });"} {"_id":"q-en-vscode-e454135048d92ffb1cb961d890b9a8fd5f57eb38fd503825474962df96eebee0","text":"this.continueEditSessionOptions = continueEditSessionOptions; }); this.shouldShowViewsContext = EDIT_SESSIONS_SHOW_VIEW.bindTo(this.contextKeyService); textModelResolverService.registerTextModelContentProvider(EDIT_SESSIONS_SCHEME, instantiationService.createInstance(EditSessionsContentProvider)); }"} {"_id":"q-en-vscode-e4c43de75f1fac0ecd64364967cab1e885593ea2f034e96efde2f69a216159ad","text":"leftMarginRatio: this.centeredEditorLeftMarginRatio, size: this.centeredEditorSize }; this.storageServise.store(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, JSON.stringify(data), StorageScope.GLOBAL); this.storageService.store(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, JSON.stringify(data), StorageScope.GLOBAL); } public getVerticalSashTop(sash: Sash): number {"} {"_id":"q-en-vscode-e4f3bdf2b8071f385d231cb7ee8d86eb4af4bdf7e6038e0e3ff3d50decd093fe","text":"description: nls.localize('task.quickOpen.showAll', \"Causes the Tasks: Run Task command to use the slower \"show all\" behavior instead of the faster two level picker where tasks are grouped by provider.\"), default: false }, 'task.showDecorations': { type: 'boolean', description: nls.localize('task.showDecorations', \"Shows decorations at points of interest in the terminal buffer such as the first problem found via a watch task. Note that this will only take effect for future tasks.\"), default: true }, 'task.saveBeforeRun': { markdownDescription: nls.localize( 'task.saveBeforeRun',"} {"_id":"q-en-vscode-e4f822eb22ee30eb35aa3d4fd111b8d99d414e4d6b5aeb1bd4b078eb26110d1b","text":"media: { type: 'markdown', path: 'empty' } }, { id: 'accessibilitySettings', title: localize('gettingStarted.accessibilitySettings.title', \"Configure accessibility settings\"), description: localize('gettingStarted.accessibilitySettings.description.interpolated', \"Accessibility settings can be configured by running the Open Accessibility Settings command.n{0}\", Button(localize('openAccessibilitySettings', \"Open Accessibility Settings\"), 'command:workbench.action.openAccessibilitySettings')), media: { type: 'markdown', path: 'empty' } } ] }"} {"_id":"q-en-vscode-e52e162a74f21c46f016e85940a8c409f9f93eee3ea76b5de30be1006503248f","text":"if (Object.keys(matchedRecommendations).length) { this.promptFromRecommendations(uri, model, matchedRecommendations); return true; } return false; } private promptFromRecommendations(uri: URI, model: ITextModel, extensionRecommendations: IStringDictionary): void {"} {"_id":"q-en-vscode-e530ca67a8688c195f1f521e0ef8d12b29327ce8472b2710662f9533fdd894de","text":"// Stat needs to be resolved first and then revealed const options: IResolveFileOptions = { resolveTo: [resource], resolveMetadata: this.sortOrder === 'modified' }; const workspaceFolder = this.contextService.getWorkspaceFolder(resource); const rootUri = workspaceFolder ? workspaceFolder.uri : this.roots[0].resource; if (workspaceFolder === null) { return Promise.resolve(undefined); } const rootUri = workspaceFolder.uri; const root = this.roots.filter(r => r.resource.toString() === rootUri.toString()).pop()!; try {"} {"_id":"q-en-vscode-e57815db2cc42872e9bbac9879212ce233ee72e33e32f896825f10881e8c4fda","text":"const toplevelDomainSegements = parsedDomainToConfigure.authority.split('.'); const domainEnd = toplevelDomainSegements.slice(toplevelDomainSegements.length - 2).join('.'); const topLevelDomain = '*.' + domainEnd; const options: ConfigureTrustedDomainsQuickPickItem[] = []; const trustDomainAndOpenLinkItem: ConfigureTrustedDomainsQuickPickItem = { options.push({ type: 'item', label: localize('trustedDomain.trustDomain', 'Trust {0}', domainToConfigure), id: 'trustDomain', id: 'trust', toTrust: domainToConfigure, picked: true }; const trustSubDomainAndOpenLinkItem: ConfigureTrustedDomainsQuickPickItem = { type: 'item', label: localize('trustedDomain.trustSubDomain', 'Trust {0} and all its subdomains', domainEnd), id: 'trustSubdomain' }; const openAllLinksItem: ConfigureTrustedDomainsQuickPickItem = { }); const isIP = toplevelDomainSegements.length === 4 && toplevelDomainSegements.every(segment => Number.isInteger(+segment) || Number.isInteger(+segment.split(':')[0])); if (isIP) { if (parsedDomainToConfigure.authority.includes(':')) { const base = parsedDomainToConfigure.authority.split(':')[0]; options.push({ type: 'item', label: localize('trustedDomain.trustAllPorts', 'Trust {0} on all ports', base), toTrust: base + ':*', id: 'trust' }); } } else { options.push({ type: 'item', label: localize('trustedDomain.trustSubDomain', 'Trust {0} and all its subdomains', domainEnd), toTrust: topLevelDomain, id: 'trust' }); } options.push({ type: 'item', label: localize('trustedDomain.trustAllDomains', 'Trust all domains (disables link protection)'), id: 'trustAll' }; const manageTrustedDomainItem: ConfigureTrustedDomainsQuickPickItem = { toTrust: '*', id: 'trust' }); options.push({ type: 'item', label: localize('trustedDomain.manageTrustedDomains', 'Manage Trusted Domains'), id: 'manage' }; }); const pickedResult = await quickInputService.pick( [trustDomainAndOpenLinkItem, trustSubDomainAndOpenLinkItem, openAllLinksItem, manageTrustedDomainItem], { activeItem: trustDomainAndOpenLinkItem } options, { activeItem: options[0] } ); if (pickedResult && pickedResult.id) {"} {"_id":"q-en-vscode-e57d0f915098dbed35ddf9aee42888090ac7ce073a141eedc321fce95c379b97","text":"return extHostTypeConverter.location.from(value); } else if (extHostTypes.NotebookRange.isNotebookRange(value)) { return extHostTypeConverter.NotebookRange.from(value); } else if (value instanceof ArrayBuffer) { hasBuffers = true; return VSBuffer.wrap(new Uint8Array(value)); } else if (value instanceof Uint8Array) { hasBuffers = true; return VSBuffer.wrap(value); } if (!Array.isArray(value)) { return value;"} {"_id":"q-en-vscode-e58fc67de4a857c72531f2cf2b959f417e8bcca3470ac964bb2dfb52159a0fd9","text":"// Terminal shell integration 'out-build/vs/workbench/contrib/terminal/browser/media/shellIntegration.ps1', 'out-build/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh', 'out-build/vs/workbench/contrib/terminal/browser/media/shellIntegration-env.zsh', 'out-build/vs/workbench/contrib/terminal/browser/media/shellIntegration-profile.zsh', 'out-build/vs/workbench/contrib/terminal/browser/media/shellIntegration.zsh', '!**/test/**'"} {"_id":"q-en-vscode-e5a1f848c9d0659c274cd6c25f632400f43f576b4005fda819756e5ccfd3e686","text":"\"inputOption.activeBorder\": \"#2488DB\", \"keybindingLabel.foreground\": \"#CCCCCC\", \"menu.background\": \"#1F1F1F\", \"menu.selectionBackground\": \"#0078d4\", \"notificationCenterHeader.background\": \"#1F1F1F\", \"notificationCenterHeader.foreground\": \"#CCCCCC\", \"notifications.background\": \"#1F1F1F\","} {"_id":"q-en-vscode-e5a76acff5b0b018d018938ad6597726c40026bba3b5f59314056da2e74adf4c","text":"let prefixFileRegex = RegExp('(d+)(' + separators + '.*)(..*)$'); if (!isFolder && name.match(prefixFileRegex)) { return name.replace(prefixFileRegex, (match, g1?, g2?, g3?) => { return strings.pad(parseInt(g1) + 1, g1.length) + g2 + g3; let number = parseInt(g1); return number < maxNumber ? strings.pad(number + 1, g1.length) + g2 + g3 : strings.format('{0}{1}.1{2}', g1, g2, g3); }); }"} {"_id":"q-en-vscode-e5c436a5b7bcfa15a7c028031feee84ba1c844ac1be0292f473738a1fde6b284","text":"[ localize('openExternalDialogButtonRetry', \"Try again\"), localize('openExternalDialogButtonInstall', \"Install {0}\", this.productService.nameLong), localize('openExternalDialogButtonContinue', \"Continue here\") localize('openExternalDialogButtonCancel', \"Cancel\") ], { cancelId: 2, detail: localize('openExternalDialogDetail', \"We tried opening {0} on your computer.\", this.productService.nameLong) detail: localize( 'openExternalDialogDetail.v2', \"We launched {0} on your computer.nnIf {1} did not launch, try again or install it below.\", this.productService.nameLong, this.productService.nameLong, ) }, );"} {"_id":"q-en-vscode-e5e8d521c4d4fd5424bdac59ccd072ec0f3095b154e9b6b4475f49950c8ea258","text":"this._terminalHasTextContextKey.set(isActive && this.hasSelection()); } private _sanitizeInput(data: any) { return typeof data === 'string' ? data.replace(TerminalInstance.WINDOWS_EOL_REGEX, 'r') : data; } protected _getCwd(shell: IShellLaunchConfig, root: Uri): string { if (shell.cwd) { return shell.cwd;"} {"_id":"q-en-vscode-e65e9f0477522792550068f51323c8e1db4c9d4822b07179e482448ba5fbf94e","text":"resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.5.0.tgz#41c0d96acc1e3bb6c6596eee64e163b6bca74be7\" integrity sha512-Jm4/g4QiTxiKiTbYICQgC791ubhIZyoIwxAIgOW8z8HWFNY+lwk+dwaKEaEeGBfM48Vk8fklsUW9u/PlenYEBg== xterm-addon-webgl@0.15.0-beta.7: version \"0.15.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.7.tgz#ab247b499f61e8eebff92e08ec5ca999d87e06af\" integrity sha512-7WCI/D6uFNp3y9TeTsbSo1h7gCy4h/yP2lWn8ZEjCaiGvO11DbKMq17fbiwaR3YmGWXoRKkcLaNIiqxFnjKO4w== xterm-addon-webgl@0.15.0-beta.8: version \"0.15.0-beta.8\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.8.tgz#2005198582f6f1f4a9b2612b9354c0bcc9f148d8\" integrity sha512-HjTr9bi3FvdOIPaaIpih6qdHX2z+H7sQPluLj5KzwCqRiEVUVRi19dl8SdHjf6dCmN3GahMhjV7D+zxHi2pLTw== xterm@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.30.tgz#6f50796d1652a61b30eeed7fa2bdd9c485a7d8ee\" integrity sha512-l1YBwMnakKXd638oxbzEg9Y1sWqxcrm/q7i5gBuWaK8N7Tq1NvF51FCamxXtfdL4dostgw8WoM+/6KRlL53t6A== xterm@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.33.tgz#584fb261ec283573ddb9d3ef4b3ea63a9a359f81\" integrity sha512-HIkQgn0/akWLWLzUJquAeVF1/nqPgqL6KzmhkAOJbOtNHftNZbEK+lDGfzz1dUC/smpXQkKm7X2nn92h3i1tgQ== "} {"_id":"q-en-vscode-e6a4cd939a1bf69f175fa73f264aee147d0fcd061e5a919c8b63bab2233827a3","text":"import { WorkbenchStateContext } from 'vs/workbench/common/contextkeys'; import { OpenFolderAction, OpenFileAction, OpenFileFolderAction } from 'vs/workbench/browser/actions/workspaceActions'; import { isMacintosh, isWeb } from 'vs/base/common/platform'; import { isCodeEditor } from 'vs/editor/browser/editorBrowser'; import { isCodeEditor, isDiffEditor } from 'vs/editor/browser/editorBrowser'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { DisposableStore } from 'vs/base/common/lifecycle';"} {"_id":"q-en-vscode-e6d9a71298b6bb25ed6d9a9426b65d84c7dfd40cd4df17d9e425d1a1f1f185ba","text":"} if (node.collapsible) { // Do not set this before calling a handler on the super class, because it will reject it as handled e.browserEvent.isHandledByList = true; const location = this.tree.getNodeLocation(node); const recursive = e.browserEvent.altKey; this.tree.setFocus([location]); this.tree.toggleCollapsed(location, recursive); if (expandOnlyOnTwistieClick && onTwistie) { // Do not set this before calling a handler on the super class, because it will reject it as handled e.browserEvent.isHandledByList = true; return; } }"} {"_id":"q-en-vscode-e7082f2b4efbc2ba0ba3a4df1737abb1614b082e8cb482df8d27c052bedb34c0","text":"case MarkdownPreviewSecurityLevel.AllowInsecureContent: return ``; case MarkdownPreviewSecurityLevel.AllowInsecureLocalContent: return ``; case MarkdownPreviewSecurityLevel.AllowScriptsAndAllContent: return '';"} {"_id":"q-en-vscode-e736a8fc3b99f7a82182ecbb2e84cba84c15feeb1776d4ff0e6ed1b3af6a6a63","text":"// Listen to editor closing (if we run with --wait) const filesToWait = this.environmentService.configuration.filesToWait; if (filesToWait) { const resourcesToWaitFor = coalesce(filesToWait.paths.map(p => p.fileUri)); const waitMarkerFile = filesToWait.waitMarkerFileUri; const listenerDispose = this.editorService.onDidCloseEditor(() => this.onEditorClosed(listenerDispose, resourcesToWaitFor, waitMarkerFile)); const resourcesToWaitFor = coalesce(filesToWait.paths.map(p => p.fileUri)); this._register(listenerDispose); this._register(this.trackClosedWaitFiles(waitMarkerFile, resourcesToWaitFor)); } }"} {"_id":"q-en-vscode-e74f35a28b79130c0db70e2b0469e39208c21171285fd3d762f820bc69cec9b9","text":"// service worker already loaded & ready to receive messages postVersionMessage(currentController); } else { console.log(`Found unexpected service worker controller. Found: ${currentController?.scriptURL}. Expected: ${swPath}`); if (currentController) { console.log(`Found unexpected service worker controller. Found: ${currentController.scriptURL}. Expected: ${swPath}. Waiting for controllerchange.`); } else { console.log(`No service worker controller found. Waiting for controllerchange.`); } // either there's no controlling service worker, or it's an old one: // wait for it to change before posting the message // Either there's no controlling service worker, or it's an old one. // Wait for it to change before posting the message const onControllerChange = () => { navigator.serviceWorker.removeEventListener('controllerchange', onControllerChange); postVersionMessage(navigator.serviceWorker.controller); if (navigator.serviceWorker.controller) { postVersionMessage(navigator.serviceWorker.controller); } else { return reject(new Error('No controller found.')); } }; navigator.serviceWorker.addEventListener('controllerchange', onControllerChange); }"} {"_id":"q-en-vscode-e756060e23ac6edc2240d3669baad9337b7a7829dd2660c478e2ba84ca2803b0","text":"} const controller = editor.getContribution(TroubleshootController.id); controller?.toggleLogging(); controller?.toggle(); } });"} {"_id":"q-en-vscode-e7a064b64e0066f64a76b61caee5a415510f7d8ea5b91b6a95e97d9045556cef","text":"'force'?: boolean; 'force-user-env'?: boolean; // node flags // chromium command line args: https://electronjs.org/docs/all#supported-chrome-command-line-switches 'no-proxy-server'?: boolean; 'proxy-server'?: string; 'proxy-bypass-list'?: string; 'proxy-pac-url'?: string; 'inspect'?: string; 'inspect-brk'?: string; 'js-flags'?: string; 'disable-gpu'?: boolean; 'nolazy'?: boolean;"} {"_id":"q-en-vscode-e7be8815d33002bcca85a3c977dd83dfc0c64635cc4e064b76f0236a077d34a3","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', className: 'folded-background', minimap: foldedBackgroundMinimap, isWholeLine: true });"} {"_id":"q-en-vscode-e7ceaa9f4d215e62ae6d51cabc4295b544cf7542af33f98b05369161871a37e4","text":"} } export class ExtensionsTree extends WorkbenchAsyncDataTree { export class ExtensionsTree extends WorkbenchAsyncDataTree { constructor( input: IExtensionData,"} {"_id":"q-en-vscode-e7ea96023517f57f6b3a1588c3ef75ddbee564862cfc493b714a139c34978271","text":"import * as aria from 'vs/base/browser/ui/aria/aria'; import { Action, IAction } from 'vs/base/common/actions'; import { distinct } from 'vs/base/common/arrays'; import { Queue, raceTimeout, RunOnceScheduler } from 'vs/base/common/async'; import { raceTimeout, RunOnceScheduler } from 'vs/base/common/async'; import { CancellationTokenSource } from 'vs/base/common/cancellation'; import { isErrorWithActions } from 'vs/base/common/errorMessage'; import * as errors from 'vs/base/common/errors';"} {"_id":"q-en-vscode-e83d25a7b0476ef4de999349c85b795535fb518b017711b11a3263cd10213327","text":"@memoize get onDidChangeSelection() { return Event.map( this._tree.onDidChangeSelection, Event.any(this._tree.onDidChangeSelection, this._onTriggerEmptySelectionOrFocus.event), e => ({ items: e.elements.filter((e): e is QuickPickItemElement => e instanceof QuickPickItemElement).map(e => e.item), event: e.browserEvent"} {"_id":"q-en-vscode-e8dfce8a6e5d0733199320f31a30b13d6db4277bd1a3f2a1a2bd290287f25619","text":"const onEnablementChange = filterEvent(workspace.onDidChangeConfiguration, e => e.affectsConfiguration('git.enableStatusBarSync')); onEnablementChange(this.updateEnablement, this, this.disposables); this.updateEnablement(); this._onDidChange.fire(); }"} {"_id":"q-en-vscode-e8fb22b819cc1bbeea91a6428dd3f53c6143e038d87a9d9d89313585bb0746ea","text":"import type * as nbformat from '@jupyterlab/nbformat'; import { NotebookCell, NotebookCellData, NotebookCellKind, NotebookCellOutput } from 'vscode'; import { CellOutputMetadata } from './common'; import { CellOutputMetadata, type CellMetadata } from './common'; import { textMimeTypes } from './deserializers'; const textDecoder = new TextDecoder();"} {"_id":"q-en-vscode-e9247180ecc7db49287794578e52b411072a5c8df1b640ba783400577616b853","text":"\"command\": \"imagePreview.zoomOut\", \"title\": \"%command.zoomOut%\", \"category\": \"Image Preview\" }, { \"command\": \"imagePreview.copyImage\", \"title\": \"%command.copyImage%\", \"category\": \"Image Preview\" } ], \"menus\": {"} {"_id":"q-en-vscode-e95437e87c3990451006332a09b885a04d5f278032faa0961c58717c2039f377","text":"* Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ .monaco-editor .lightbulb-glyph, .monaco-editor .codicon-lightbulb { .monaco-editor .contentWidgets .codicon-light-bulb, .monaco-editor .contentWidgets .codicon-lightbulb-autofix { display: flex; align-items: center; justify-content: center; height: 16px; width: 20px; padding-left: 2px; } .monaco-editor .lightbulb-glyph:hover, .monaco-editor .codicon-lightbulb:hover { .monaco-editor .contentWidgets .codicon-light-bulb:hover, .monaco-editor .contentWidgets .codicon-lightbulb-autofix:hover { cursor: pointer; /* transform: scale(1.3, 1.3); */ }"} {"_id":"q-en-vscode-e9db93e4f9138df1de951442160afad1e22ad3d41f90131b02cf644cb02cd417","text":"'tmux': { path: 'tmux' } } }, additionalProperties: terminalProfileSchema }, 'terminal.integrated.showQuickLaunchWslProfiles': { description: localize('terminal.integrated.showQuickLaunchWslProfiles', 'Controls whether or not WSL distros are shown in the quick launch dropdown'),"} {"_id":"q-en-vscode-e9fb68ff1f35298cdad98bc96d14e0afe937b6849b5f08b6a220ce96d34fdb54","text":"this.searchWidget.setReplaceAllActionState(false); this.tree.setSelection([]); this.tree.setFocus([]); return this.viewModel.search(query) .then(onComplete, onError); }"} {"_id":"q-en-vscode-e9fd35fc71478520437b8a9b8cfa6ef29fd95e6e6f9892d523d8195cc203753d","text":"padding: 0; } .search-view:not(.wide) .foldermatch .monaco-icon-label, .search-view:not(.wide) .filematch .monaco-icon-label { flex: 1; } .search-view:not(.wide) .monaco-tree .monaco-tree-row:hover:not(.highlighted) .foldermatch .monaco-icon-label, .search-view:not(.wide) .monaco-tree .monaco-tree-row.focused .foldermatch .monaco-icon-label, .search-view:not(.wide) .monaco-tree .monaco-tree-row:hover:not(.highlighted) .filematch .monaco-icon-label, .search-view:not(.wide) .monaco-tree .monaco-tree-row.focused .filematch .monaco-icon-label { flex: 1; } .search-view .foldermatch .directory, .search-view .filematch .directory { opacity: 0.7;"} {"_id":"q-en-vscode-ea159aa27bc062a008a6714ec64192049fdb91703c6cc6e6559f824efc0ff862","text":"background-color: var(--vscode-editorWidget-background) !important; color: var(--vscode-editorWidget-foreground); box-shadow: 0 0 8px 2px var(--vscode-widget-shadow); border: 1px solid var(--vscode-contrastBorder); border: 1px solid var(--vscode-widget-border); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; font-size: 12px;"} {"_id":"q-en-vscode-ea2b0a1edf953b79bf69bb087182fd1142d351e2e1227f269918fe275ecb1570","text":"this.configurationRegistry.updateConfigurations({ add: [this.configurationNode], remove: oldConfigurationNode ? [oldConfigurationNode] : [] }); } } export class DefaultBinaryEditorConfiguration extends Disposable implements IWorkbenchContribution { private configurationRegistry = Registry.as(ConfigurationExtensions.Configuration); private configurationNode: IConfigurationNode | undefined; constructor( @IEditorResolverService private readonly editorResolverService: IEditorResolverService, @IExtensionService extensionService: IExtensionService, ) { super(); // Editor configurations are getting updated very aggressively // (atleast 20 times) while the extensions are getting registered. // As such push out the default binary editor configuration // until after extensions registered. (async () => { await extensionService.whenInstalledExtensionsRegistered(); this.updateConfiguration(); this.registerListeners(); })(); } private registerListeners(): void { // Registered editors this._register(this.editorResolverService.onDidChangeEditorRegistrations(() => this.updateConfiguration())); } private updateConfiguration(): void { // Get registered editors const editorIds = this.editorResolverService.getEditors().filter(e => e.priority !== RegisteredEditorPriority.exclusive).map(editor => editor.id); const oldConfigurationNode = this.configurationNode; this.configurationNode = { ...workbenchConfigurationNodeBase, properties: { 'workbench.editor.defaultBinaryEditor': { type: 'string', // This allows for intellisense autocompletion enum: editorIds, description: localize('workbench.editor.defaultBinaryEditor', \"The default editor for files detected as binary. If undefined the user will be presented with a picker.\"), } } }; this.configurationRegistry.updateConfigurations({ add: [this.configurationNode], remove: oldConfigurationNode ? [oldConfigurationNode] : [] }); } } "} {"_id":"q-en-vscode-ea63b7ef322f061634bb2df99509cb1836822b9e0a0ccc7b0537466a81b1eafe","text":"resolved \"https://registry.yarnpkg.com/request-light/-/request-light-0.7.0.tgz#885628bb2f8040c26401ebf258ec51c4ae98ac2a\" integrity sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q== vscode-json-languageservice@^5.3.1: version \"5.3.1\" resolved \"https://registry.yarnpkg.com/vscode-json-languageservice/-/vscode-json-languageservice-5.3.1.tgz#c36175d05f425fbd8f47dcee6f2a72096bdda36f\" integrity sha512-tPRf/2LOBS6uFflFLABdj8T3ol2/QgZ0kpzZHFCs+cbxpnjBNiCo+rfh3th0dtdytq5dSnWo5iFJj99zF6jZWQ== vscode-json-languageservice@^5.3.2: version \"5.3.2\" resolved \"https://registry.yarnpkg.com/vscode-json-languageservice/-/vscode-json-languageservice-5.3.2.tgz#11e530ba9ec541eaeb421dc274a22efdb5d580ef\" integrity sha512-5td6olfoNdtyxnNA4uocq7V9jdTJt63o9mGEntQb6cbD2HiObZW2XgbSj6nRaebWwBCiYdWpFklNjm6Wz6Xy1Q== dependencies: \"@vscode/l10n\" \"^0.0.11\" jsonc-parser \"^3.2.0\""} {"_id":"q-en-vscode-ea6cb1ec71a729f2a0088b9070bc39084ce0e2d68502a7196352ada12cd07037","text":"__vsc_original_prompt_command=${PROMPT_COMMAND[@]} fi if [[ -n \"$__vsc_original_prompt_command\" && \"$__vsc_original_prompt_command\" != \"__vsc_prompt_cmd\" ]]; then PROMPT_COMMAND=__vsc_prompt_cmd_original else PROMPT_COMMAND=__vsc_prompt_cmd if [[ -z \"${bash_preexec_imported:-}\" ]]; then if [[ -n \"$__vsc_original_prompt_command\" && \"$__vsc_original_prompt_command\" != \"__vsc_prompt_cmd\" ]]; then PROMPT_COMMAND=__vsc_prompt_cmd_original else PROMPT_COMMAND=__vsc_prompt_cmd fi fi"} {"_id":"q-en-vscode-ea813c70f7f32341eedbe7eb1e3b4cdbd645f18081cc6c1cb3c0d8c0a8cf9878","text":"class Trait implements ISpliceable, IDisposable { private length = 0; private indexes: number[] = []; private sortedIndexes: number[] = []; protected indexes: number[] = []; protected sortedIndexes: number[] = []; private readonly _onChange = new Emitter(); readonly onChange: Event = this._onChange.event;"} {"_id":"q-en-vscode-eaa501e9842634f49718e6fc8062b22129c870de96169113354ae3ced63cbe06","text":"@IUserDataSyncWorkbenchService private readonly userDataSyncWorkbenchService: IUserDataSyncWorkbenchService, @IUserDataSyncEnablementService private readonly userDataSyncEnablementService: IUserDataSyncEnablementService, @IWorkspaceTrustManagementService private readonly workspaceTrustManagementService: IWorkspaceTrustManagementService, @IExtensionService private readonly extensionService: IExtensionService @IExtensionService private readonly extensionService: IExtensionService, @ILanguageService private readonly languageService: ILanguageService ) { super(SettingsEditor2.ID, telemetryService, themeService, storageService); this.delayedFilterLogging = new Delayer(1000);"} {"_id":"q-en-vscode-eaec2ed48b7371c8e2fd8741be58219e7d5ecaecc36927aa18e70532dcdf4116","text":"name: result.variable.name, value: result.variable.value, type: result.variable.type, language: result.variable.language, expression: result.variable.expression, hasNamedChildren: result.hasNamedChildren, indexedChildrenCount: result.indexedChildrenCount, extensionId: obj.extensionId.value,"} {"_id":"q-en-vscode-eb59abf54782fc43bb27492ce78a06c6473bae3a0a9cbcacdeed16676f558410","text":"

${vscode.l10n.t(\"An error occurred while loading the image.\")}

"} {"_id":"q-en-vscode-ebcd09f600f3e738b792bc1d0fefb3d4917a86bc104b91eec18d0733f1ed8a31","text":"} public static moveToEndOfLine(config: CursorConfiguration, model: ICursorSimpleModel, cursor: SingleCursorState, inSelectionMode: boolean): SingleMoveOperationResult { let lineNumber = cursor.selection.endLineNumber; let lineNumber = cursor.position.lineNumber; let maxColumn = model.getLineMaxColumn(lineNumber); return SingleMoveOperationResult.fromMove(cursor, inSelectionMode, lineNumber, maxColumn, 0, true, CursorChangeReason.Explicit); }"} {"_id":"q-en-vscode-ebd47da9b8fb86017e561da920c1cd8f8829a84545db7e2fd060fd652a882b65","text":"this._onDidDeleteFile.fire(Object.freeze({ files: files.map(f => URI.revive(f.target)) })); break; case FileOperation.CREATE: case FileOperation.COPY: this._onDidCreateFile.fire(Object.freeze({ files: files.map(f => URI.revive(f.target)) })); break; default:"} {"_id":"q-en-vscode-ebf7a1d62c5e949755ee58491ace7e333c7de832283a0f4f37ea26b847fdf1d0","text":"} async showStash(index: number): Promise { const args = ['stash', 'show', `stash@{${index}}`, '--name-status', '-z']; const args = ['stash', 'show', `stash@{${index}}`, '--name-status', '-z', '-u']; try { const result = await this.exec(args);"} {"_id":"q-en-vscode-ec07d0df12157b4ca49adb37061a5244978b1561b51eda6225f0dff1f77da3bd","text":"private compressedFocusLastContext: IContextKey; private viewHasSomeCollapsibleRootItem: IContextKey; private viewVisibleContextKey: IContextKey; private horizontalScrolling: boolean | undefined;"} {"_id":"q-en-vscode-ecdd0fa3ef2c21ed8c9b05d82b3e53261b0655fa9e31d8f9479e000c0f1017ef","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { HoverWidget } from 'vs/base/browser/ui/hover/hoverWidget'; import { DisposableStore } from 'vs/base/common/lifecycle'; import { ContentWidgetPositionPreference, ICodeEditor, IContentWidgetPosition } from 'vs/editor/browser/editorBrowser'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; import { MultipleSizePersistingOptions, ResizableContentWidget, ResizableWidget } from 'vs/editor/contrib/hover/browser/resizableContentWidget'; import * as dom from 'vs/base/browser/dom'; import { ConfigurationChangedEvent, EditorOption } from 'vs/editor/common/config/editorOptions'; import { Position } from 'vs/editor/common/core/position'; import { HoverStartSource } from 'vs/editor/contrib/hover/browser/hoverOperation'; import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { PositionAffinity } from 'vs/editor/common/model'; import { IEditorHoverColorPickerWidget } from 'vs/editor/contrib/hover/browser/hoverTypes'; const SCROLLBAR_WIDTH = 10; // TODO: maybe don't need the resizable widget class export class ResizableHoverWidget extends ResizableWidget { public ID = 'editor.contrib.resizableContentHoverWidget'; private hoverDisposables = new DisposableStore(); // The ContentWidget is a child of the resizable widget private resizableContentWidget: ResizableContentHoverWidget; public readonly allowEditorOverflow = true; public readonly _hover: HoverWidget = this.hoverDisposables.add(new HoverWidget()); private readonly editor: ICodeEditor; private readonly _hoverVisibleKey = EditorContextKeys.hoverVisible.bindTo(this._contextKeyService); private readonly _hoverFocusedKey = EditorContextKeys.hoverFocused.bindTo(this._contextKeyService); private readonly _focusTracker = this.hoverDisposables.add(dom.trackFocus(this.getDomNode())); private readonly _horizontalScrollingBy: number = 30; private _visibleData: ContentHoverVisibleData | null = null; private _renderingAbove: ContentWidgetPositionPreference; constructor( editor: ICodeEditor, @IContextKeyService private readonly _contextKeyService: IContextKeyService ) { super(editor, new MultipleSizePersistingOptions()); this.editor = editor; // create here the dom node and all other logic should go here that was in the super abstract class this.resizableContentWidget = new ResizableContentHoverWidget(this, editor); this._renderingAbove = this.editor.getOption(EditorOption.hover).above ? ContentWidgetPositionPreference.ABOVE : ContentWidgetPositionPreference.BELOW; this.hoverDisposables.add(this.element.onDidResize((e) => { // When the resizable hover overlay changes, resize the widget // this._widget.resize(e.dimension); })); this.hoverDisposables.add(this.editor.onDidLayoutChange(() => this._layout())); this.hoverDisposables.add(this.editor.onDidChangeConfiguration((e: ConfigurationChangedEvent) => { if (e.hasChanged(EditorOption.fontInfo)) { this._updateFont(); } })); this._setVisibleData(null); this._layout(); this.hoverDisposables.add(this._focusTracker.onDidFocus(() => { this._hoverFocusedKey.set(true); })); this.hoverDisposables.add(this._focusTracker.onDidBlur(() => { this._hoverFocusedKey.set(false); })); dom.append(this.element.domNode, this._hover.containerDomNode); } public get position(): Position | null { return this._visibleData?.showAtPosition ?? null; } public get isColorPickerVisible(): boolean { return Boolean(this._visibleData?.colorPicker); } public get isVisibleFromKeyboard(): boolean { return (this._visibleData?.source === HoverStartSource.Keyboard); } public get isVisible(): boolean { return this._hoverVisibleKey.get() ?? false; } public get renderingAbove(): ContentWidgetPositionPreference { return this._renderingAbove; } public set renderingAbove(renderingAbove: ContentWidgetPositionPreference) { this._renderingAbove = renderingAbove; } // NEW public override resize(size: dom.Dimension) { console.log('Inside of resize'); // Removing the max height and max width here - the max size is controlled by the resizable overlay this._hover.contentsDomNode.style.maxHeight = 'none'; this._hover.contentsDomNode.style.maxWidth = 'none'; const width = size.width + 'px'; // const width = size.width - 2 * SASH_WIDTH + TOTAL_BORDER_WIDTH + 'px'; this._hover.containerDomNode.style.width = width; this._hover.contentsDomNode.style.width = width; // const height = size.height - 2 * SASH_WIDTH + TOTAL_BORDER_WIDTH + 'px'; const height = size.height + 'px'; this._hover.containerDomNode.style.height = height; this._hover.contentsDomNode.style.height = height; const scrollDimensions = this._hover.scrollbar.getScrollDimensions(); const hasHorizontalScrollbar = (scrollDimensions.scrollWidth > scrollDimensions.width); if (hasHorizontalScrollbar) { // When there is a horizontal scroll-bar use a different height to make the scroll-bar visible const extraBottomPadding = `${this._hover.scrollbar.options.horizontalScrollbarSize}px`; if (this._hover.contentsDomNode.style.paddingBottom !== extraBottomPadding) { this._hover.contentsDomNode.style.paddingBottom = extraBottomPadding; } this._hover.contentsDomNode.style.height = size.height - SCROLLBAR_WIDTH + 'px'; // - 2 * SASH_WIDTH + TOTAL_BORDER_WIDTH } this._hover.scrollbar.scanDomNode(); this.editor.layoutContentWidget(this.resizableContentWidget); this.editor.render(); } public override findMaximumRenderingHeight(): number | undefined { if (!this.editor || !this.editor.hasModel() || !this._visibleData?.showAtPosition) { return; } const editorBox = dom.getDomNodePagePosition(this.editor.getDomNode()); const mouseBox = this.editor.getScrolledVisiblePosition(this._visibleData.showAtPosition); const bodyBox = dom.getClientArea(document.body); let availableSpace: number; if (this._renderingAbove === ContentWidgetPositionPreference.ABOVE) { availableSpace = editorBox.top + mouseBox.top - 30; } else { const mouseBottom = editorBox.top + mouseBox!.top + mouseBox!.height; availableSpace = bodyBox.height - mouseBottom; } let divMaxHeight = 0; for (const childHtmlElement of this._hover.contentsDomNode.children) { divMaxHeight += childHtmlElement.clientHeight; } if (this._hover.contentsDomNode.clientWidth < this._hover.contentsDomNode.scrollWidth) { divMaxHeight += SCROLLBAR_WIDTH; } return Math.min(availableSpace, divMaxHeight); } public findMaxRenderingWidth(): number | undefined { if (!this.editor || !this.editor.hasModel()) { return; } const editorBox = dom.getDomNodePagePosition(this.editor.getDomNode()); const widthOfEditor = editorBox.width; const leftOfEditor = editorBox.left; const glyphMarginWidth = this.editor.getLayoutInfo().glyphMarginWidth; const leftOfContainer = this._hover.containerDomNode.offsetLeft; return widthOfEditor + leftOfEditor - leftOfContainer - glyphMarginWidth; } public override dispose(): void { this.editor.removeContentWidget(this.resizableContentWidget); if (this._visibleData) { this._visibleData.disposables.dispose(); } super.dispose(); } public getDomNode() { return this._hover.containerDomNode; } public getContentsDomNode() { return this._hover.contentsDomNode; } public isMouseGettingCloser(posx: number, posy: number): boolean { if (!this._visibleData) { return false; } if (typeof this._visibleData.initialMousePosX === 'undefined' || typeof this._visibleData.initialMousePosY === 'undefined') { this._visibleData.initialMousePosX = posx; this._visibleData.initialMousePosY = posy; return false; } const widgetRect = dom.getDomNodePagePosition(this.resizableContentWidget.getDomNode()); if (typeof this._visibleData.closestMouseDistance === 'undefined') { this._visibleData.closestMouseDistance = computeDistanceFromPointToRectangle(this._visibleData.initialMousePosX, this._visibleData.initialMousePosY, widgetRect.left, widgetRect.top, widgetRect.width, widgetRect.height); } const distance = computeDistanceFromPointToRectangle(posx, posy, widgetRect.left, widgetRect.top, widgetRect.width, widgetRect.height); if (!distance || !this._visibleData.closestMouseDistance || distance > this._visibleData.closestMouseDistance + 4 /* tolerance of 4 pixels */) { // The mouse is getting farther away return false; } this._visibleData.closestMouseDistance = Math.min(this._visibleData.closestMouseDistance, distance); return true; } private _setVisibleData(visibleData: ContentHoverVisibleData | null): void { if (this._visibleData) { this._visibleData.disposables.dispose(); } this._visibleData = visibleData; this._hoverVisibleKey.set(!!this._visibleData); this._hover.containerDomNode.classList.toggle('hidden', !this._visibleData); } private _layout(): void { const height = Math.max(this.editor.getLayoutInfo().height / 4, 250); const { fontSize, lineHeight } = this.editor.getOption(EditorOption.fontInfo); this._hover.contentsDomNode.style.fontSize = `${fontSize}px`; this._hover.contentsDomNode.style.lineHeight = `${lineHeight / fontSize}`; this._hover.contentsDomNode.style.maxHeight = `${height}px`; this._hover.contentsDomNode.style.maxWidth = `${Math.max(this.editor.getLayoutInfo().width * 0.66, 500)}px`; } private _updateFont(): void { const codeClasses: HTMLElement[] = Array.prototype.slice.call(this._hover.contentsDomNode.getElementsByClassName('code')); codeClasses.forEach(node => this.editor.applyFontInfo(node)); } public showAt(node: DocumentFragment, visibleData: ContentHoverVisibleData): void { this.editor.addContentWidget(this.resizableContentWidget); const persistedSize = this.findPersistedSize(); if (!this.editor || !this.editor.hasModel()) { return; } this._setVisibleData(visibleData); this._hover.contentsDomNode.textContent = ''; this._hover.contentsDomNode.appendChild(node); this._hover.contentsDomNode.style.paddingBottom = ''; this._updateFont(); const containerDomNode = this.resizableContentWidget.getDomNode(); let height; // If the persisted size has already been found then set a maximum height and width if (!persistedSize) { this._hover.contentsDomNode.style.maxHeight = `${Math.max(this.editor.getLayoutInfo().height / 4, 250)}px`; this._hover.contentsDomNode.style.maxWidth = `${Math.max(this.editor.getLayoutInfo().width * 0.66, 500)}px`; this.onContentsChanged(); // Simply force a synchronous render on the editor // such that the widget does not really render with left = '0px' this.editor.render(); height = containerDomNode.clientHeight; } // When there is a persisted size then do not use a maximum height or width else { this._hover.contentsDomNode.style.maxHeight = 'none'; this._hover.contentsDomNode.style.maxWidth = 'none'; height = persistedSize.height; } // The dimensions of the document in which we are displaying the hover const bodyBox = dom.getClientArea(document.body); // Hard-coded in the hover.css file as 1.5em or 24px const minHeight = 24; // The full height is already passed in as a parameter const fullHeight = height; const editorBox = dom.getDomNodePagePosition(this.editor.getDomNode()); const mouseBox = this.editor.getScrolledVisiblePosition(visibleData.showAtPosition); // Position where the editor box starts + the top of the mouse box relatve to the editor + mouse box height const mouseBottom = editorBox.top + mouseBox.top + mouseBox.height; // Total height of the box minus the position of the bottom of the mouse, this is the maximum height below the mouse position const availableSpaceBelow = bodyBox.height - mouseBottom; // Max height below is the minimum of the available space below and the full height of the widget const maxHeightBelow = Math.min(availableSpaceBelow, fullHeight); // The available space above the mouse position is the height of the top of the editor plus the top of the mouse box relative to the editor const availableSpaceAbove = editorBox.top + mouseBox.top - 30; const maxHeightAbove = Math.min(availableSpaceAbove, fullHeight); // We find the maximum height of the widget possible on the top or on the bottom const maxHeight = Math.min(Math.max(maxHeightAbove, maxHeightBelow), fullHeight); if (height < minHeight) { height = minHeight; } if (height > maxHeight) { height = maxHeight; } // Determining whether we should render above or not ideally if (this.editor.getOption(EditorOption.hover).above) { this._renderingAbove = height <= maxHeightAbove ? ContentWidgetPositionPreference.ABOVE : ContentWidgetPositionPreference.BELOW; } else { this._renderingAbove = height <= maxHeightBelow ? ContentWidgetPositionPreference.BELOW : ContentWidgetPositionPreference.ABOVE; } // See https://github.com/microsoft/vscode/issues/140339 // TODO: Doing a second layout of the hover after force rendering the editor if (!persistedSize) { this.onContentsChanged(); } if (visibleData.stoleFocus) { this._hover.containerDomNode.focus(); } visibleData.colorPicker?.layout(); if (!this._visibleData) { return; } const clientHeight = this._hover.containerDomNode.clientHeight; const clientWidth = this._hover.containerDomNode.clientWidth; this.element.layout(clientHeight, clientWidth); this.resizableContentWidget.position = this._visibleData.showAtPosition; this.resizableContentWidget.secondaryPosition = this._visibleData.showAtSecondaryPosition; this.resizableContentWidget.preference = [this._renderingAbove]; this.resizableContentWidget.positionAffinity = this._visibleData.isBeforeContent ? PositionAffinity.LeftOfInjectedText : undefined; this.editor.layoutContentWidget(this.resizableContentWidget); this.editor.render(); console.log('At the end of showAt'); } public override hide(): void { this.element.clearSashHoverState(); if (this._visibleData) { const stoleFocus = this._visibleData.stoleFocus; this._setVisibleData(null); this.editor.layoutContentWidget(this.resizableContentWidget); if (stoleFocus) { this.editor.focus(); } } } // NEW public onContentsChanged(persistedSize?: dom.Dimension | undefined): void { console.log('Inside of onContentsChanged'); const containerDomNode = this.getDomNode(); const contentsDomNode = this.getContentsDomNode(); // Suppose a persisted size is defined if (persistedSize) { const widthMinusSash = Math.min(this.findMaximumRenderingWidth() ?? Infinity, persistedSize.width); // - SASH_WIDTH // const heightMinusSash = Math.min(this.findMaxRenderingHeight(this._renderingAbove) ?? Infinity, persistedSize.height - SASH_WIDTH); const heightMinusSash = Math.min(this.findMaximumRenderingHeight() ?? Infinity, persistedSize.height); // SASH_WIDTH // Already setting directly the height and width parameters containerDomNode.style.width = widthMinusSash + 'px'; containerDomNode.style.height = heightMinusSash + 'px'; contentsDomNode.style.width = widthMinusSash + 'px'; contentsDomNode.style.height = heightMinusSash + 'px'; } else { // Otherwise the height and width are set to auto containerDomNode.style.width = 'auto'; containerDomNode.style.height = 'auto'; contentsDomNode.style.width = 'auto'; contentsDomNode.style.height = 'auto'; } this.editor.layoutContentWidget(this.resizableContentWidget); this._hover.onContentsChanged(); const scrollDimensions = this._hover.scrollbar.getScrollDimensions(); const hasHorizontalScrollbar = (scrollDimensions.scrollWidth > scrollDimensions.width); if (hasHorizontalScrollbar) { // There is just a horizontal scrollbar const extraBottomPadding = `${this._hover.scrollbar.options.horizontalScrollbarSize}px`; let reposition = false; if (this._hover.contentsDomNode.style.paddingBottom !== extraBottomPadding) { this._hover.contentsDomNode.style.paddingBottom = extraBottomPadding; reposition = true; } const maxRenderingHeight = this.findMaximumRenderingHeight(); // Need the following code since we are using an exact height when using the persisted size. If not used the horizontal scrollbar would just not be visible. if (persistedSize && maxRenderingHeight) { containerDomNode.style.height = Math.min(maxRenderingHeight, persistedSize.height) + 'px'; // - SASH_WIDTH contentsDomNode.style.height = Math.min(maxRenderingHeight, persistedSize.height - SCROLLBAR_WIDTH) + 'px'; // - SASH_WIDTH reposition = true; } if (reposition) { this.editor.layoutContentWidget(this.resizableContentWidget); this._hover.onContentsChanged(); } } } // OLD FUNCTION /* public onContentsChanged(): void { this.editor.layoutContentWidget(this.resizableContentWidget); this._hover.onContentsChanged(); const scrollDimensions = this._hover.scrollbar.getScrollDimensions(); const hasHorizontalScrollbar = (scrollDimensions.scrollWidth > scrollDimensions.width); if (hasHorizontalScrollbar) { // There is just a horizontal scrollbar const extraBottomPadding = `${this._hover.scrollbar.options.horizontalScrollbarSize}px`; if (this._hover.contentsDomNode.style.paddingBottom !== extraBottomPadding) { this._hover.contentsDomNode.style.paddingBottom = extraBottomPadding; this.editor.layoutContentWidget(this.resizableContentWidget); this._hover.onContentsChanged(); } } } */ public clear(): void { this._hover.contentsDomNode.textContent = ''; } public focus(): void { this._hover.containerDomNode.focus(); } public scrollUp(): void { const scrollTop = this._hover.scrollbar.getScrollPosition().scrollTop; const fontInfo = this.editor.getOption(EditorOption.fontInfo); this._hover.scrollbar.setScrollPosition({ scrollTop: scrollTop - fontInfo.lineHeight }); } public scrollDown(): void { const scrollTop = this._hover.scrollbar.getScrollPosition().scrollTop; const fontInfo = this.editor.getOption(EditorOption.fontInfo); this._hover.scrollbar.setScrollPosition({ scrollTop: scrollTop + fontInfo.lineHeight }); } public scrollLeft(): void { const scrollLeft = this._hover.scrollbar.getScrollPosition().scrollLeft; this._hover.scrollbar.setScrollPosition({ scrollLeft: scrollLeft - this._horizontalScrollingBy }); } public scrollRight(): void { const scrollLeft = this._hover.scrollbar.getScrollPosition().scrollLeft; this._hover.scrollbar.setScrollPosition({ scrollLeft: scrollLeft + this._horizontalScrollingBy }); } public pageUp(): void { const scrollTop = this._hover.scrollbar.getScrollPosition().scrollTop; const scrollHeight = this._hover.scrollbar.getScrollDimensions().height; this._hover.scrollbar.setScrollPosition({ scrollTop: scrollTop - scrollHeight }); } public pageDown(): void { const scrollTop = this._hover.scrollbar.getScrollPosition().scrollTop; const scrollHeight = this._hover.scrollbar.getScrollDimensions().height; this._hover.scrollbar.setScrollPosition({ scrollTop: scrollTop + scrollHeight }); } public goToTop(): void { this._hover.scrollbar.setScrollPosition({ scrollTop: 0 }); } public goToBottom(): void { this._hover.scrollbar.setScrollPosition({ scrollTop: this._hover.scrollbar.getScrollDimensions().scrollHeight }); } public escape(): void { this.editor.focus(); } } export class ResizableContentHoverWidget extends ResizableContentWidget { public ID = 'editor.contrib.resizableContentHoverWidget'; private hoverDisposables = new DisposableStore(); constructor(resizableHoverWidget: ResizableHoverWidget, editor: ICodeEditor) { super(resizableHoverWidget, editor); console.log('Inside of resizable content hover widget'); } } class ContentHoverVisibleData { public closestMouseDistance: number | undefined = undefined; constructor( public readonly colorPicker: IEditorHoverColorPickerWidget | null, public readonly showAtPosition: Position, public readonly showAtSecondaryPosition: Position, public readonly preferAbove: boolean, public readonly stoleFocus: boolean, public readonly source: HoverStartSource, public readonly isBeforeContent: boolean, public initialMousePosX: number | undefined, public initialMousePosY: number | undefined, public readonly disposables: DisposableStore ) { } } function computeDistanceFromPointToRectangle(pointX: number, pointY: number, left: number, top: number, width: number, height: number): number { const x = (left + width / 2); // x center of rectangle const y = (top + height / 2); // y center of rectangle const dx = Math.max(Math.abs(pointX - x) - width / 2, 0); const dy = Math.max(Math.abs(pointY - y) - height / 2, 0); return Math.sqrt(dx * dx + dy * dy); } "} {"_id":"q-en-vscode-ece256b743c9fe67d90675be75de47530d5fffaa76c8390b5a1c8f436a98c0d4","text":"write(editSession: EditSession): Promise; delete(ref: string | null): Promise; list(): Promise; getMachineById(machineId: string): Promise; } export const IEditSessionsLogService = createDecorator('IEditSessionsLogService');"} {"_id":"q-en-vscode-ed364d61fb6dbd3fb282db4a757dcc181a2589c8eb4312de1a34519b05285af2","text":"integrity sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w== \"@vscode/emmet-helper@^2.3.0\": version \"2.8.4\" resolved \"https://registry.yarnpkg.com/@vscode/emmet-helper/-/emmet-helper-2.8.4.tgz#ab937e3ce79b0873c604d1ad50a9eeb7abae2937\" integrity sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg== version \"2.8.6\" resolved \"https://registry.yarnpkg.com/@vscode/emmet-helper/-/emmet-helper-2.8.6.tgz#ee2fa52321d6af8a40310fd9d37b8590a4dabb18\" integrity sha512-IIB8jbiKy37zN8bAIHx59YmnIelY78CGHtThnibD/d3tQOKRY83bYVi9blwmZVUZh6l9nfkYH3tvReaiNxY9EQ== dependencies: emmet \"^2.3.0\" jsonc-parser \"^2.3.0\" vscode-languageserver-textdocument \"^1.0.1\" vscode-languageserver-types \"^3.15.1\" vscode-nls \"^5.0.0\" vscode-uri \"^2.1.2\" emmet@^2.3.0:"} {"_id":"q-en-vscode-ed3ec936794dead417030c008b394d2f639c1ba4c54d5d5852a2731977821163","text":"required: ['include'] } ], minItems: 2, maxItems: 2, additionalItems: false, examples: [ ['search', { 'include': ['${workspaceFolder}'] }],"} {"_id":"q-en-vscode-ed91219b468f486bbbf9d333564fb9833c5eee41afea38109f6e66d86257fe47","text":"{ ...state.shellLaunchConfig, cwd: state.processDetails.cwd, color: state.processDetails.color, icon: state.processDetails.icon, name: state.processDetails.title, initialText: state.replayEvent.events[0].data + 'x1b[0mnnrx1b[1;48;5;252;38;5;234m ' + restoreMessage + ' x1b[Kx1b[0mnr' }, state.processDetails.cwd,"} {"_id":"q-en-vscode-eda70f5a15287d6d571fe10cbee8ca107e1c5b1537e494a0266086a54368f0f9","text":"} } class SelectionToReplAction extends EditorAction { export class SelectionToReplAction extends EditorAction { public static readonly ID = 'editor.debug.action.selectionToRepl'; public static readonly LABEL = nls.localize('evaluateInDebugConsole', \"Evaluate in Debug Console\"); constructor() { super({ id: 'editor.debug.action.selectionToRepl', label: nls.localize('evaluateInDebugConsole', \"Evaluate in Debug Console\"), alias: 'Evaluate', id: SelectionToReplAction.ID, label: SelectionToReplAction.LABEL, alias: 'Debug: Evaluate in Console', precondition: ContextKeyExpr.and(EditorContextKeys.hasNonEmptySelection, CONTEXT_IN_DEBUG_MODE, EditorContextKeys.editorTextFocus), contextMenuOpts: { group: 'debug',"} {"_id":"q-en-vscode-ee23b5678f4c87758906a7ffd09d5e06d2a3b00315f4b06e9c55b41142f54c84","text":"overviewRulerLanes, parameterHints, peekWidgetDefaultFocus, definitionLinkOpensInPeek, quickSuggestions, quickSuggestionsDelay, readOnly,"} {"_id":"q-en-vscode-ee35bb636ce4be0e36eccc7c26a3ba600b85de5fd1c371277723d03cd55cd972","text":"// Remove Element from Parent (Model) const parent = modelElement.parent; parent.removeChild(modelElement); this.view?.focusNext(); const oldNestedParent = modelElement.nestedParent; if (oldNestedParent) {"} {"_id":"q-en-vscode-ee71200e08440a67adb40ed531a90a8c8262ebbc69c298f2912060ff2e1ff091","text":"* Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as dom from 'vs/base/browser/dom'; import * as languages from 'vs/editor/common/languages'; import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';"} {"_id":"q-en-vscode-eedc8c75f8643abc156500c0dc770cc7a0a9441f826ceb96b2447de116dc108f","text":"registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, nls.localize('jumpToCursor', \"Jump to Cursor\"), CONTEXT_JUMP_TO_CURSOR_SUPPORTED); registerDebugCommandPaletteItem(JUMP_TO_CURSOR_ID, nls.localize('SetNextStatement', \"Set Next Statement\"), CONTEXT_JUMP_TO_CURSOR_SUPPORTED); registerDebugCommandPaletteItem(RunToCursorAction.ID, RunToCursorAction.LABEL, ContextKeyExpr.and(CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE.isEqualTo('stopped'))); registerDebugCommandPaletteItem(SelectionToReplAction.ID, SelectionToReplAction.LABEL, ContextKeyExpr.and(EditorContextKeys.hasNonEmptySelection, CONTEXT_IN_DEBUG_MODE)); registerDebugCommandPaletteItem(SelectionToWatchExpressionsAction.ID, SelectionToWatchExpressionsAction.LABEL, ContextKeyExpr.and(EditorContextKeys.hasNonEmptySelection, CONTEXT_IN_DEBUG_MODE)); registerDebugCommandPaletteItem(TOGGLE_INLINE_BREAKPOINT_ID, nls.localize('inlineBreakpoint', \"Inline Breakpoint\")); registerDebugCommandPaletteItem(DEBUG_START_COMMAND_ID, DEBUG_START_LABEL, ContextKeyExpr.and(CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Initializing)))); registerDebugCommandPaletteItem(DEBUG_RUN_COMMAND_ID, DEBUG_RUN_LABEL, ContextKeyExpr.and(CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Initializing))));"} {"_id":"q-en-vscode-efdf6f5ca24cd4dae98fb4703d9c2e71737b97b118a0a38c2ebae53d661ee854","text":" No newline at end of file No newline at end of file"} {"_id":"q-en-vscode-efe0a733c555bc8f569c181823a7d85e0241e20e7898ac29984ca0a7c6c790ba","text":"static readonly MenubarWindowMenu = new MenuId(); static readonly MenubarPreferencesMenu = new MenuId(); static readonly MenubarHelpMenu = new MenuId(); static readonly MenubarTerminalMenu = new MenuId(); readonly id: string = String(MenuId.ID++); }"} {"_id":"q-en-vscode-efeb6a1b92217cc428c3848d9d057ed898ba57077737a11ba4ff1131e3015b1e","text":"this.toDisposeOnSessionEnd.get(session.getId()).push(session.onDidThread(event => { if (event.body.reason === 'started') { this.fetchThreads(session).done(undefined, errors.onUnexpectedError); // debounce to reduce threadsRequest frequency and improve performance let scheduler = this.fetchThreadsSchedulers.get(session.getId()); if (!scheduler) { scheduler = new RunOnceScheduler(() => { this.fetchThreads(session).done(undefined, errors.onUnexpectedError); }, 100); this.fetchThreadsSchedulers.set(session.getId(), scheduler); this.toDisposeOnSessionEnd.get(session.getId()).push(scheduler); } if (!scheduler.isScheduled()) { scheduler.schedule(); } } else if (event.body.reason === 'exited') { this.model.clearThreads(session.getId(), true, event.body.threadId); }"} {"_id":"q-en-vscode-eff15a53aef1c4114c3f6cb6be648ac41eab77cbd4c30b500310d91b7e502e36","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', className: 'folded-background', minimap: foldedBackgroundMinimap, isWholeLine: true, firstLineDecorationClassName: ThemeIcon.asClassName(foldingCollapsedIcon) });"} {"_id":"q-en-vscode-f0167a2ff6bb36aff01ab8c9cecad4ea680aacffa3b7ac5bdb7d626cb44f0c1b","text":"const primary: IAction[] = []; const secondary: IAction[] = []; let onDidChange = Event.None; let onDidChange; // Editor actions require the editor control to be there, so we retrieve it via service const activeEditorPane = this.activeEditorPane;"} {"_id":"q-en-vscode-f021384e2deb2d3ee476f702200d41a309fa0fa590ba6f1548a5329cf3a91545","text":"this.domNode = document.createElement('div'); this.domNode.className = `monaco-tree no-focused-item monaco-tree-instance-${this.instance}`; this.domNode.tabIndex = 0; // to allow direct tabbing into the tree instead of first focusing the tree this.domNode.tabIndex = context.options.preventRootFocus ? -1 : 0; this.styleElement = DOM.createStyleSheet(this.domNode);"} {"_id":"q-en-vscode-f04342fbbc00adf7c6ced991d89f74014d02cab7e79fbcea1f1a821b3c36f127","text":"this.toUnbind.push(this.onDidPanelClose(panel => this.compositeBar.deactivateComposite(panel.getId()))); } private _onDidPanelOpen(viewlet: IPanel): void { this.activePanelContextKey.set(viewlet.getId()); } private _onDidPanelClose(viewlet: IPanel): void { const id = viewlet.getId(); if (this.activePanelContextKey.get() === id) { this.activePanelContextKey.set(''); } } public get onDidPanelOpen(): Event { return this._onDidCompositeOpen.event; }"} {"_id":"q-en-vscode-f0503e4b864f387476d34317af9074f13849a4ca52b06f366c5cb208e0df38d4","text":"this._register(this.model.onDidChange(() => { this.updateContextKeys(); })); this._register(this.editor.onDidChangeModelContent(() => { this.contextKeys.inlineSuggestionJustCommitted.reset(); })); this._register(this.editor.onDidChangeCursorPosition(() => { this.contextKeys.inlineSuggestionJustCommitted.reset(); })); this.updateContextKeys(); }"} {"_id":"q-en-vscode-f05bf1162d10fd0be309a73f325f08adfd6208ce6d5f999214e88c2c5d934d9d","text":"} } linkCandidates.push(...specialEndLinkCandidates); this._logService.trace('terminalLocaLinkDetector#detect linkCandidates', linkCandidates); // Validate the path and convert to the outgoing type const simpleLink = await this._validateAndGetLink(undefined, bufferRange, linkCandidates, trimRangeMap);"} {"_id":"q-en-vscode-f05cc514d459a36a176e8738fe228022b5eeb7fda1532fa348f4389213f0e705","text":"DOM.removeClass(image, 'scale-to-fit'); image.style.minWidth = `${(image.naturalWidth * scale)}px`; image.style.widows = `${(image.naturalWidth * scale)}px`; image.style.width = `${(image.naturalWidth * scale)}px`; const newWidth = image.width; const scaleFactor = (newWidth - oldWidth) / oldWidth;"} {"_id":"q-en-vscode-f07cff65e81f8eaa16b892906f2e03b299c0aaaf28c122260004d129c3152457","text":"export function startsWithUTF8BOM(str: string): boolean { return (str && str.length > 0 && str.charCodeAt(0) === __utf8_bom); } No newline at end of file } "} {"_id":"q-en-vscode-f08a348dbd5d761fc89ba93adb3f7b9b17622bfea8efaa238255d7ea9e32ed4a","text":"import { Extensions, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry'; import { IQuickInputService, IQuickPickItem } from 'vs/platform/quickinput/common/quickInput'; import { ExtensionsRegistry } from 'vs/workbench/services/extensions/common/extensionsRegistry'; import { ContextKeyExpr, ContextKeyExpression, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { ContextKeyExpr, ContextKeyExpression, IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { getVirtualWorkspaceLocation } from 'vs/platform/workspace/common/virtualWorkspace'; import { Schemas } from 'vs/base/common/network'; import { IsWebContext } from 'vs/platform/contextkey/common/contextkeys'; import { isProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; import { EditSessionsLogService } from 'vs/workbench/contrib/editSessions/common/editSessionsLogService'; import { IViewContainersRegistry, Extensions as ViewExtensions, ViewContainerLocation } from 'vs/workbench/common/views'; import { IViewContainersRegistry, Extensions as ViewExtensions, ViewContainerLocation, IViewsService } from 'vs/workbench/common/views'; import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors'; import { ViewPaneContainer } from 'vs/workbench/browser/parts/views/viewPaneContainer'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';"} {"_id":"q-en-vscode-f0c6f756ea3c441e93fd460d3022b263b49aa5f9103051a1549014425c99a486","text":".search-view > .results > .monaco-tree .monaco-tree-row.focused .content .filematch .monaco-count-badge, .search-view > .results > .monaco-tree .monaco-tree-row.focused .content .foldermatch .monaco-count-badge, .search-view > .results > .monaco-tree .monaco-tree-row.focused .content .linematch .monaco-count-badge { display: none; margin-right: 0; } .search-view .focused .monaco-tree-row.selected:not(.highlighted) > .content.actions .action-remove,"} {"_id":"q-en-vscode-f0e753526dcd4d617242df2dca3b0276b1c56b4a5c25d33e7bb5dd27935c8c63","text":"private async doSearch(fqs: IFolderQuery[], onResult: (match: IInternalFileMatch) => void): Promise { const cancellation = new CancellationTokenSource(); const folderOptions = fqs.map(fq => this.getSearchOptionsForFolder(fq)); const session = this.provider instanceof OldFileSearchProviderConverter ? this.sessionLifecycle?.tokenSource.token : this.sessionLifecycle?.obj; const options: FileSearchProviderOptions = { folderOptions, maxResults: this.config.maxResults ?? DEFAULT_MAX_SEARCH_RESULTS, session: this.sessionToken session };"} {"_id":"q-en-vscode-f1290197753fd4a92b7b8b0bc41b0c6bc373706c58710ad26b08f5fab8485879","text":"private open(id: string, extension: IExtension, template: IExtensionEditorTemplate): Promise { switch (id) { case NavbarSection.Readme: return this.openReadme(template); case NavbarSection.Contributions: return this.openContributions(template); case NavbarSection.FeatureContributions: return this.openContributions(template); case NavbarSection.Changelog: return this.openChangelog(template); case NavbarSection.Dependencies: return this.openDependencies(extension, template); case NavbarSection.ExtensionPack: return this.openExtensionPack(extension, template);"} {"_id":"q-en-vscode-f1341c7e72f8693510070c9e35966c60f0e71e7a36c481897126d1098f4c8e40","text":"return undefined; } get cwd(): string | undefined { return this._cwd; } private get _isInputting(): boolean { return !!(this._currentCommand.commandStartMarker && !this._currentCommand.commandExecutedMarker); } get hasInput(): boolean | undefined { if (!this._isInputting || !this._currentCommand?.commandStartMarker) { return undefined; } if (this._terminal.buffer.active.baseY + this._terminal.buffer.active.cursorY === this._currentCommand.commandStartMarker?.line) { const line = this._terminal.buffer.active.getLine(this._terminal.buffer.active.cursorY)?.translateToString(true, this._currentCommand.commandStartX); if (line === undefined) { return undefined; } return line.length > 0; } return true; } private readonly _onCommandStarted = new Emitter(); readonly onCommandStarted = this._onCommandStarted.event;"} {"_id":"q-en-vscode-f1437954cd43e6876aeb1e700653f54febe60126d68c98fb645b9b8f3639062e","text":"} protected restoreViewState(input: EditorInput) { if (input instanceof UntitledEditorInput) { if (input instanceof UntitledEditorInput || input instanceof ResourceEditorInput) { const viewState = this.loadTextEditorViewState(input.getResource().toString()); if (viewState) { this.getControl().restoreViewState(viewState);"} {"_id":"q-en-vscode-f1a0ebae689f89791a37fa28a3d33b3ea85dbd738dad6ac9e698ee05d06c37e8","text":" No newline at end of file No newline at end of file"} {"_id":"q-en-vscode-f1ec32d9fa17d6a5cd5c1e91154a297a0235bc98c038d7843d895420cd6cdec5","text":"import { WebviewResourceProvider } from './util/resources'; import { isOfScheme, Schemes } from './util/schemes'; const UNICODE_NEWLINE_REGEX = /u2028|u2029/g; /** * Adds begin line index to the output via the 'data-line' data attribute. */"} {"_id":"q-en-vscode-f24d5fefd3aeae384eb037219faf2ec3cdce8c77e4d9ced5690767e8e67f3d48","text":"} .quick-input-widget .interactive-session .interactive-input-part .interactive-execute-toolbar { bottom: 1px; margin-bottom: 1px; } .quick-input-widget .interactive-session .interactive-input-and-execute-toolbar {"} {"_id":"q-en-vscode-f2bd093f34d832a4bdfbf8d8bf986649c926716dde62d0afbc3e13c4522d39a0","text":"builtin printf \"e]633;P;ContinuationPrompt=$(echo \"$PS2\" | sed 's/x1b/x1b/g')a\" __vsc_report_prompt() { # HACK: Git bash is too slow at reporting the prompt, so skip for now if [ \"$__vsc_is_windows\" = \"1\" ]; then return fi # Expand the original PS1 similarly to how bash would normally # See https://stackoverflow.com/a/37137981 for technique if ((BASH_VERSINFO[0] >= 5 || (BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] >= 4))); then"} {"_id":"q-en-vscode-f2c0eca9f8baf7ad5ee1e71e1fe17ecc22f421e41a5187a4bd0a01d666b99280","text":"const keybindingsExtPoint = ExtensionsRegistry.registerExtensionPoint({ extensionPoint: 'keybindings', deps: [commandsExtensionPoint], jsonSchema: { description: nls.localize('vscode.extension.contributes.keybindings', \"Contributes keybindings.\"), oneOf: ["} {"_id":"q-en-vscode-f30a47faba64207a45c3e7d6c5c636f85a30405159e47aeca8519c939854941b","text":"} const index = this.mustGetTaskIndex(taskId); const oldTerminalStatePrio = terminalStatePriorities[entry.tasks[index].state]; const newTerminalStatePrio = terminalStatePriorities[state]; // Ignore requests to set the state from one terminal state back to a // \"lower\" one, e.g. from failed back to passed: if (oldTerminalStatePrio !== undefined && (newTerminalStatePrio === undefined || newTerminalStatePrio < oldTerminalStatePrio)) { return; } this.fireUpdateAndRefresh(entry, index, state, duration); }"} {"_id":"q-en-vscode-f31d21bf0a5d2089025406f51bdadd35f449cef7ba907d90d0b51f8e5e7188e9","text":"if (this.widget.viewModel) { this.chatService.clearSession(this.widget.viewModel.sessionId); } this.viewState.inputValue = ''; this.updateModel(); }"} {"_id":"q-en-vscode-f32bd210b9a0c20145e64b2a49110012dee19084ce3c4dfcf98c39152abbffd5","text":"return; } if (e.browserEvent.defaultPrevented) { return; } super.onDoubleClick(e); } }"} {"_id":"q-en-vscode-f3377ddef012531490e753501f4e7f916fc2129ff206dc5ef8c44aa6f770c625","text":"} this._currentCommand.commandFinishedMarker = this._terminal.registerMarker(0); const command = this._currentCommand.command; let command = this._currentCommand.command; this._logService.debug('CommandDetectionCapability#handleCommandFinished', this._terminal.buffer.active.cursorX, this._currentCommand.commandFinishedMarker?.line, this._currentCommand.command, this._currentCommand); this._exitCode = exitCode;"} {"_id":"q-en-vscode-f346923b17242ceec785bcfae8da6692bdc00cc97305089e2127e890f3b8dc6c","text":"registerEditorCommand(new CursorWordStartRightSelect()); registerEditorCommand(new CursorWordEndRightSelect()); registerEditorCommand(new CursorWordRightSelect()); registerEditorCommand(new CursorWordAccessibilityLeft()); registerEditorCommand(new CursorWordAccessibilityLeftSelect()); registerEditorCommand(new CursorWordAccessibilityRight()); registerEditorCommand(new CursorWordAccessibilityRightSelect()); registerEditorCommand(new DeleteWordStartLeft()); registerEditorCommand(new DeleteWordEndLeft()); registerEditorCommand(new DeleteWordLeft());"} {"_id":"q-en-vscode-f36189f687e8a5bc9bd90f9c4dcb6c666bec49af59fdc505f0a7d7ced6a1aba9","text":"return true; } const domain = `${url.scheme}://${url.authority}`; for (let i = 0; i < trustedDomains.length; i++) { if (trustedDomains[i] === '*') { return true; } if (trustedDomains[i] === domain) { if (isTrusted(url.toString(), trustedDomains[i])) { return true; } } let parsedTrustedDomain; if (/^https?:///.test(trustedDomains[i])) { parsedTrustedDomain = URI.parse(trustedDomains[i]); if (url.scheme !== parsedTrustedDomain.scheme) { continue; } } else { parsedTrustedDomain = URI.parse('https://' + trustedDomains[i]); } return false; } if (url.authority === parsedTrustedDomain.authority) { if (pathMatches(url.path, parsedTrustedDomain.path)) { return true; } else { continue; } } export const isTrusted = (url: string, trustedURL: string): boolean => { const normalize = (url: string) => url.replace(//+$/, ''); trustedURL = normalize(trustedURL); url = normalize(url); if (trustedDomains[i].indexOf('*') !== -1) { const memo = Array.from({ length: url.length + 1 }).map(() => Array.from({ length: trustedURL.length + 1 }).map(() => undefined), ); let reversedAuthoritySegments = url.authority.split('.').reverse(); const reversedTrustedDomainAuthoritySegments = parsedTrustedDomain.authority.split('.').reverse(); if (/^[^./:]*:///.test(trustedURL)) { return doURLMatch(memo, url, trustedURL, 0, 0); } if ( reversedTrustedDomainAuthoritySegments.length < reversedAuthoritySegments.length && reversedTrustedDomainAuthoritySegments[reversedTrustedDomainAuthoritySegments.length - 1] === '*' ) { reversedAuthoritySegments = reversedAuthoritySegments.slice(0, reversedTrustedDomainAuthoritySegments.length); } const scheme = /^(https?):///.exec(url)?.[1]; if (scheme) { return doURLMatch(memo, url, `${scheme}://${trustedURL}`, 0, 0); } const authorityMatches = reversedAuthoritySegments.every((val, i) => { return reversedTrustedDomainAuthoritySegments[i] === '*' || val === reversedTrustedDomainAuthoritySegments[i]; }); return false; }; if (authorityMatches && pathMatches(url.path, parsedTrustedDomain.path)) { return true; } } const doURLMatch = ( memo: (boolean | undefined)[][], url: string, trustedURL: string, urlOffset: number, trustedURLOffset: number, ): boolean => { if (memo[urlOffset]?.[trustedURLOffset] !== undefined) { return memo[urlOffset][trustedURLOffset]!; } return false; } const options = []; function pathMatches(open: string, rule: string) { if (rule === '/') { return true; // Endgame. // Fully exact match if (urlOffset === url.length) { return trustedURLOffset === trustedURL.length; } if (rule[rule.length - 1] === '/') { rule = rule.slice(0, -1); // Some path remaining in url if (trustedURLOffset === trustedURL.length) { const remaining = url.slice(urlOffset); return remaining[0] === '/'; } const openSegments = open.split('/'); const ruleSegments = rule.split('/'); for (let i = 0; i < ruleSegments.length; i++) { if (ruleSegments[i] !== openSegments[i]) { return false; if (url[urlOffset] === trustedURL[trustedURLOffset]) { // Exact match. options.push(doURLMatch(memo, url, trustedURL, urlOffset + 1, trustedURLOffset + 1)); } if (trustedURL[trustedURLOffset] + trustedURL[trustedURLOffset + 1] === '*.') { // Any subdomain match. Either consume one thing that's not a / or : and don't advance base or consume nothing and do. if (!['/', ':'].includes(url[urlOffset])) { options.push(doURLMatch(memo, url, trustedURL, urlOffset + 1, trustedURLOffset)); } options.push(doURLMatch(memo, url, trustedURL, urlOffset, trustedURLOffset + 2)); } return true; } if (trustedURL[trustedURLOffset] + trustedURL[trustedURLOffset + 1] === '.*' && url[urlOffset] === '.') { // IP mode. Consume one segment of numbers or nothing. let endBlockIndex = urlOffset + 1; do { endBlockIndex++; } while (/[0-9]/.test(url[endBlockIndex])); if (['.', ':', '/', undefined].includes(url[endBlockIndex])) { options.push(doURLMatch(memo, url, trustedURL, endBlockIndex, trustedURLOffset + 2)); } } if (trustedURL[trustedURLOffset] + trustedURL[trustedURLOffset + 1] === ':*') { // any port match. Consume a port if it exists otherwise nothing. Always comsume the base. if (url[urlOffset] === ':') { let endPortIndex = urlOffset + 1; do { endPortIndex++; } while (/[0-9]/.test(url[endPortIndex])); options.push(doURLMatch(memo, url, trustedURL, endPortIndex, trustedURLOffset + 2)); } else { options.push(doURLMatch(memo, url, trustedURL, urlOffset, trustedURLOffset + 2)); } } return (memo[urlOffset][trustedURLOffset] = options.some(a => a === true)); }; "} {"_id":"q-en-vscode-f362d9f16088e81ea879df5889e9b35ce50b3795b7745d7b423eaddfb5dcb22e","text":"const minimapOpts = options.get(EditorOption.minimap); const minimapEnabled = minimapOpts.enabled; const minimapSide = minimapOpts.side; const backgroundColor = minimapEnabled ? theme.getColor(editorOverviewRulerBackground) || TokenizationRegistry.getDefaultBackground() : null; const themeColor = theme.getColor(editorOverviewRulerBackground); const defaultBackground = TokenizationRegistry.getDefaultBackground(); let backgroundColor: Color | null = null; if (themeColor !== undefined) { backgroundColor = themeColor; } else if (minimapEnabled) { backgroundColor = defaultBackground; } if (backgroundColor === null || minimapSide === 'left') { this.backgroundColor = null;"} {"_id":"q-en-vscode-f37b831c91c41f437659710a334acbe7218a6c282512f06ca189ad300e887849","text":"renderedWordCount: wordCountResult.actualWordCount, lastRenderTime: Date.now(), isFullyRendered: wordCountResult.isFullString, originalMarkdown: part.content, }; wordCountResults[index] = wordCountResult; }"} {"_id":"q-en-vscode-f39528e463b7de22084e95bf42bb35572aa6ad32e0d540228f548766da5d16cf","text":"return this.openerService.open(uri, { openToSide }); }, err => { const messageOrError = err instanceof Error ? (err).message : err; // different error cases if (err === 'invalid') { if (messageOrError === 'invalid') { this.notificationService.warn(nls.localize('invalid.url', 'Failed to open this link because it is not well-formed: {0}', link.url!.toString())); } else if (err === 'missing') { } else if (messageOrError === 'missing') { this.notificationService.warn(nls.localize('missing.url', 'Failed to open this link because its target is missing.')); } else { onUnexpectedError(err);"} {"_id":"q-en-vscode-f39778450d3e0861eb2d0bc72d0d5771e25fc558e0c71dc3e7d553143d07e6b1","text":"assert.strictEqual(result, 'test_2'); }); test('Increment file name with suffix version, too big number', function () { const name = 'test.9007199254740992.js'; const result = incrementFileName(name, false); assert.strictEqual(result, 'test.9007199254740992.1.js'); }); test('Increment folder name with suffix version, too big number', function () { const name = 'test.9007199254740992'; const result = incrementFileName(name, true); assert.strictEqual(result, 'test.9007199254740992.1'); }); test('Increment file name with prefix version', function () { const name = '1.test.js'; const result = incrementFileName(name, false);"} {"_id":"q-en-vscode-f3c374903c93dfed42ab764cd4dbbaa596ce19f390f2378d03d8c7418ffee2e0","text":"import { ActiveEditorGroupLockedContext, ActiveEditorDirtyContext, EditorGroupEditorsCountContext, ActiveEditorStickyContext, ActiveEditorPinnedContext, ActiveEditorLastInGroupContext, ActiveEditorFirstInGroupContext, EditorPinnedAndUnpinnedTabsContext, ResourceContextKey, applyAvailableEditorIds, ActiveEditorAvailableEditorIdsContext, ActiveEditorCanSplitInGroupContext, SideBySideEditorActiveContext } from 'vs/workbench/common/contextkeys'; import { EditorInput } from 'vs/workbench/common/editor/editorInput'; import { SideBySideEditorInput } from 'vs/workbench/common/editor/sideBySideEditorInput'; import { Emitter, Relay, Event } from 'vs/base/common/event'; import { Emitter, Relay } from 'vs/base/common/event'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { Dimension, trackFocus, addDisposableListener, EventType, EventHelper, findParentWithClass, isAncestor, IDomNodePagePosition, isMouseEvent, isActiveElement, focusWindow } from 'vs/base/browser/dom'; import { ServiceCollection } from 'vs/platform/instantiation/common/serviceCollection';"} {"_id":"q-en-vscode-f3eb5bd04f3b5a4e714d68e38f0660c9caed5388ead4b9731882713417be4f2c","text":"private _isNext: boolean; constructor(next: boolean, opts: IActionOptions) { private _multiFile: boolean; constructor(next: boolean, multiFile: boolean, opts: IActionOptions) { super(opts); this._isNext = next; this._multiFile = multiFile; } public run(accessor: ServicesAccessor, editor: ICodeEditor): TPromise {"} {"_id":"q-en-vscode-f3f3d506b933eab0e1c7a72ba16cbffb1207c5df25e3a5f06983a51425df273a","text":"import * as nls from 'vs/nls'; import { ContextKeyExpr, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { KeybindingsRegistry } from 'vs/platform/keybinding/common/keybindingsRegistry'; export class GhostTextController extends Disposable { public static readonly inlineSuggestionVisible = new RawContextKey('inlineSuggestionVisible', false, nls.localize('inlineSuggestionVisible', \"Whether an inline suggestion is visible\")); public static readonly inlineSuggestionHasIndentation = new RawContextKey('inlineSuggestionHasIndentation', false, nls.localize('inlineSuggestionHasIndentation', \"Whether the inline suggestion starts with whitespace\")); public static readonly inlineSuggestionHasIndentationLessThanTabSize = new RawContextKey('inlineSuggestionHasIndentationLessThanTabSize', true, nls.localize('inlineSuggestionHasIndentationLessThanTabSize', \"Whether the inline suggestion starts with whitespace that is less than what would be inserted by tab\")); /** * Enables to use Ctrl+Left to undo fully (partially) accepted inline completions (the completion is no longer visible then). */ public static readonly inlineSuggestionJustCommitted = new RawContextKey('inlineSuggestionJustCommitted', false, nls.localize('inlineSuggestionJustCommitted', \"Whether an inline suggestion just got committed\")); static ID = 'editor.contrib.ghostTextController';"} {"_id":"q-en-vscode-f482bdb3e1750e82ad684c3a4b6851c343e8d050f477b55f245828e94e85b4a1","text":"resolved \"https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f\" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xterm-addon-search@0.9.0-beta.39: version \"0.9.0-beta.39\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.39.tgz#e8376e1485ee7d763c07d1a8f1354114f65b3e3e\" integrity sha512-h45wkecgfqXXoAUqgNytAfSd6g0xNT6rZy/enVaEU0aes7QoL9pxHUKkCry8PP6hs03Slk0VxQ4AGsbSZGvK/w== xterm-addon-search@0.9.0-beta.41: version \"0.9.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.41.tgz#0992da36fe01ff6d71449265a9dabeef7f9d0a3f\" integrity sha512-b1vuWR5JZ8QIiObbKkwSzpzf4x0B9hdzGCHJG+PXWT/xbxk65DOe/X9rgrRyOnCWe5ylQGG4DIHTiREigTp0lg== xterm-addon-serialize@0.7.0-beta.13: version \"0.7.0-beta.13\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.13.tgz#5c859c8657cab7f28405aab1a0715daf54bc7714\" integrity sha512-TYFlm/gds0pOmpzXw7ZWx8Cy48lMaOZZqZgfm5pWU37HPvzfKxXSVdYL1biWpRCH2zCH+3cWmOma8W1pBRr+Eg== xterm-addon-serialize@0.7.0-beta.15: version \"0.7.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.15.tgz#0f7d5f9b423802ac67c2a891d74de530a4fe6a65\" integrity sha512-gO/dxqGgOAuj7DN2ETTeCHyalkb655XogZh5408CmH5D6mjI1lxqVLGUdiFeBVU/OHfWZT2PZ95k06VXqLU5kA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.12.0-beta.41: version \"0.12.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.41.tgz#17dbca975b6e9b34526ebc57f4de59ee295da1b6\" integrity sha512-wvQxC5diMYEJEMaILfz+4CWB2GgtzjzNQRNDnK7R7Y9wDI+P4idDlQKgyH0nA93sl9R4zgqlBVha//wuq4vfZg== xterm-addon-webgl@0.12.0-beta.43: version \"0.12.0-beta.43\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.43.tgz#916ed4e390371403aab0d277097cd8a61be436e8\" integrity sha512-hGXfwT6TOmp0tBDiS/iF8s0SLHLd3shJ5zQyS4HNtq99B5cEhHhwaUAZAfjLt5rnUt0kvqR9YWtGsDux5dWVLA== xterm-headless@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.60.tgz#ccd09a7c69ba487d3fd87d6a8d159f1a6a10e9b2\" integrity sha512-mJ24BRnEDCASJDTGFZysZxiXkCmed3eMFiWCPvIF48LVrqxt1cImoVKBlxqkdgUkHKjfF2c92S1TTBL5aT1I0w== xterm-headless@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.67.tgz#fe44a243974bf307c9a0694114ab45289734c7f9\" integrity sha512-rpxUsE/te2LN4B/erI108uaAhuLTUsnRl9zIZgcqMqZGFRqDUTtyVM05jIA/8A32g06wFd3WioTkeKc6ow+sLg== xterm@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.60.tgz#de89d93153ae3ec17b53f3e5d03b8ea859126081\" integrity sha512-YQjvp4xtSAyNm9+gF4OA5+QzkSWdKMCy4WABETpe7CsrEGx+mJVoXCZ9wgopmvwRXz7DeJvKM5dWz1HPjVLDtA== xterm@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.67.tgz#9a7d79be64469c91bb693b9f5a50b5a22e921cd3\" integrity sha512-4bYTnT6g91N5QId1qPaiSvkpsxMQYpuPdPJItvBZFOcQLTuFSX85x5NeFuDvhNqi33eMFPimyGhzH/JvAV1v/Q== yallist@^4.0.0: version \"4.0.0\""} {"_id":"q-en-vscode-f4a68f2088565f2bb7bb6b4f88dcaf9d45f5a481beec306c2862788d52210df6","text":"})); } } class EditSessionsStoreClient extends UserDataSyncStoreClient { _serviceBrand: any; } "} {"_id":"q-en-vscode-f4fb2d58930292b666337a112aaec10f851e5dda0346c04ab3c974fa7f7582b4","text":"const lastDot = value.lastIndexOf('.'); inputBox.value = value; inputBox.focus(); inputBox.select({ start: 0, end: lastDot > 0 && !stat.isDirectory ? lastDot : value.length }); const done = once(async (success: boolean, finishEditing: boolean) => { let isFinishableDisposeEvent = false; setTimeout(() => { // Check if disposed if (!inputBox.inputElement) { return; } inputBox.focus(); inputBox.select({ start: 0, end: lastDot > 0 && !stat.isDirectory ? lastDot : value.length }); isFinishableDisposeEvent = true; }, 0); const done = once(async (success: boolean) => { label.element.style.display = 'none'; const value = inputBox.value; dispose(toDispose); container.removeChild(label.element); if (finishEditing) { // Timeout: once done rendering only then re-render #70902 setTimeout(() => editableData.onFinish(value, success), 0); } // Timeout: once done rendering only then re-render #70902 setTimeout(() => editableData.onFinish(value, success), 0); }); const blurDisposable = DOM.addDisposableListener(inputBox.inputElement, DOM.EventType.BLUR, () => { done(inputBox.isInputValid(), true); done(inputBox.isInputValid()); }); const toDispose = ["} {"_id":"q-en-vscode-f502a2a971a52a84a8756f020ecf1b46541c7c9d5bfa09e3e642581debcfac12","text":"export class NotebookOutlineEntryFactory { private cellOutlineEntryCache: Record = {}; private readonly cachedMarkdownOutlineEntries = new WeakMap(); private readonly cachedMarkdownOutlineEntries = new WeakMap(); constructor( private readonly executionStateService: INotebookExecutionStateService ) { }"} {"_id":"q-en-vscode-f53cc09ad69faa3bc65ceff900e51077414f294558a9f5b7619657b4bb5383c9","text":"return; } if (this.isPasting) { return; } const builtinCompletionsConfig = this._configurationService.getValue(terminalSuggestConfigSection).builtinCompletions; if (!this._codeCompletionsRequested && builtinCompletionsConfig.pwshCode) { this._onAcceptedCompletion.fire(SuggestAddon.requestEnableCodeCompletionsSequence);"} {"_id":"q-en-vscode-f5448057a53626a0dcf7eadc5ebc3a74aebd7657afceae7c1f621714956ac5f3","text":"export interface UriComponents { scheme: string; authority: string; path: string; query: string; fragment: string; authority?: string; path?: string; query?: string; fragment?: string; } export function isUriComponents(thing: any): thing is UriComponents { if (!thing || typeof thing !== 'object') { return false; } return typeof (thing).scheme === 'string' && (typeof (thing).authority === 'string' || typeof (thing).authority === 'undefined') && (typeof (thing).path === 'string' || typeof (thing).path === 'undefined') && (typeof (thing).query === 'string' || typeof (thing).query === 'undefined') && (typeof (thing).fragment === 'string' || typeof (thing).fragment === 'undefined'); } interface UriState extends UriComponents { $mid: MarshalledId.Uri; external: string; fsPath: string; _sep: 1 | undefined; external?: string; fsPath?: string; _sep?: 1; } const _pathSepMarker = isWindows ? 1 : undefined;"} {"_id":"q-en-vscode-f57e004fd27a62eca19123e315abf8a0d196f1f9ffcb404e685be8ccb6548203","text":"throw e; } let label; if (claims.name && claims.email) { label = `${claims.name} - ${claims.email}`; } else { label = claims.email ?? claims.unique_name ?? claims.preferred_username ?? 'user@example.com'; } const id = `${claims.tid}/${(claims.oid ?? (claims.altsecid ?? '' + claims.ipd ?? ''))}`; const sessionId = existingId || `${id}/${randomUUID()}`; this._logger.trace(`[${scopeData.scopeStr}] '${sessionId}' Token response parsed successfully.`);"} {"_id":"q-en-vscode-f596c42d3e30a6fd66cfde564981fd0a888c4d7d0428d6293e64f62b5675a0b6","text":"} async sendText(text: string, addNewLine: boolean): Promise { // Apply bracketed paste sequences if the terminal has the mode enabled, this will prevent // the text from triggering keybindings https://github.com/microsoft/vscode/issues/153592 if (this.xterm?.raw.modes.bracketedPasteMode) { text = `x1b[200~${text}x1b[201~`; } // Normalize line endings to 'enter' press. text = text.replace(/r?n/g, 'r'); if (addNewLine && text[text.length - 1] !== 'r') {"} {"_id":"q-en-vscode-f5972fef6739248cd18e17b8a267b2684c3031d9a47b36e4b6b5ef747bc0957c","text":"); } for (const [profileName, value] of Object.entries(configProfiles || {})) { if (value === null) { detectedProfiles.delete(profileName); } detectedProfiles.set(profileName, value); } applyConfigProfilesToMap(configProfiles, detectedProfiles); const resultProfiles: ITerminalProfile[] = await transformToTerminalProfiles(detectedProfiles.entries(), statProvider, logService, variableResolver, workspaceFolder);"} {"_id":"q-en-vscode-f5a4a6ec6fbcd13129727c4cdf3591235e0ff811304eeec2f29edcbad6e6c766","text":"}, () => this.extensionManagementService.uninstallExtensions(extensionsToUninstall).then(() => undefined)); } private getAllPackExtensionsToUninstall(extension: ILocalExtension, installed: IExtension[], checked: ILocalExtension[] = []): ILocalExtension[] { if (checked.some(e => areSameExtensions(e.identifier, extension.identifier))) { return []; } checked.push(extension); const extensionsPack = extension.manifest.extensionPack ?? []; if (extensionsPack.length) { const packedExtensions: ILocalExtension[] = []; for (const i of installed) { if (i.local && !i.isBuiltin && extensionsPack.some(id => areSameExtensions({ id }, i.identifier))) { packedExtensions.push(i.local); } } const packOfPackedExtensions: ILocalExtension[] = []; for (const packedExtension of packedExtensions) { packOfPackedExtensions.push(...this.getAllPackExtensionsToUninstall(packedExtension, installed, checked)); } return [...packedExtensions, ...packOfPackedExtensions]; } return []; } private getErrorMessageForUninstallingAnExtensionWithDependents(extension: IExtension, dependents: IExtension[]): string { if (dependents.length === 1) { return nls.localize('singleDependentUninstallError', \"Cannot uninstall '{0}' extension alone. '{1}' extension depends on this. Do you want to uninstall all these extensions?\", extension.displayName, dependents[0].displayName);"} {"_id":"q-en-vscode-f5d2b09199813bda25ee95db1f86768a3c374ccca621cb9476586cb4a7fe746b","text":"} } class SelectionToWatchExpressionsAction extends EditorAction { export class SelectionToWatchExpressionsAction extends EditorAction { public static readonly ID = 'editor.debug.action.selectionToWatch'; public static readonly LABEL = nls.localize('addToWatch', \"Add to Watch\"); constructor() { super({ id: 'editor.debug.action.selectionToWatch', label: nls.localize('addToWatch', \"Add to Watch\"), alias: 'Add to Watch', id: SelectionToWatchExpressionsAction.ID, label: SelectionToWatchExpressionsAction.LABEL, alias: 'Debug: Add to Watch', precondition: ContextKeyExpr.and(EditorContextKeys.hasNonEmptySelection, CONTEXT_IN_DEBUG_MODE, EditorContextKeys.editorTextFocus), contextMenuOpts: { group: 'debug',"} {"_id":"q-en-vscode-f5e315d9dff4154fe0d8adc88714e33d63cd27f513a746f0177570823bb0085f","text":"} public get capabilities(): WorkingCopyCapabilities { return 0; return WorkingCopyCapabilities.None; } public isDirty(): boolean {"} {"_id":"q-en-vscode-f604a9e075e4f7734306a4b264e36b04349c3000107bd4a2f57d286bd388c82f","text":"}) .text(this.feedback).attr('required', 'required') .on('keyup', () => { $charCounter.text('(' + (FeedbackDropdown.MAX_FEEDBACK_CHARS - this.feedbackDescriptionInput.value.length) + ' ' + nls.localize(\"characters left\", \"characters left\") + ')'); $charCounter.text(this.getCharCountText(this.feedbackDescriptionInput.value.length)); this.feedbackDescriptionInput.value ? this.sendButton.removeAttribute('disabled') : this.sendButton.attr('disabled', ''); }) .appendTo($form).domFocus().getHTMLElement();"} {"_id":"q-en-vscode-f64c2d93e266ce445b420e61ba0a3c83412ddf8a2ce563484ee5b3939a3294b1","text":"import { CommandsRegistry, ICommandHandler, ICommandService } from 'vs/platform/commands/common/commands'; import { ConfigurationTarget, IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ConfigurationScope, Extensions as ConfigurationExtensions, IConfigurationRegistry } from 'vs/platform/configuration/common/configurationRegistry'; import { ContextKeyEqualsExpr, ContextKeyExpr, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { ContextKeyAndExpr, ContextKeyEqualsExpr, ContextKeyExpr, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { IFileService } from 'vs/platform/files/common/files'; import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors'; import { registerSingleton } from 'vs/platform/instantiation/common/extensions';"} {"_id":"q-en-vscode-f6f2a59a1c0024aabb1241492b2c8d7d0eb230a7c7e121d161e1f74496cb183f","text":"import { DiffEditorEditors } from 'vs/editor/browser/widget/diffEditorWidget2/diffEditorEditors'; import { DiffEditorViewModel } from 'vs/editor/browser/widget/diffEditorWidget2/diffEditorViewModel'; import { appendRemoveOnDispose } from 'vs/editor/browser/widget/diffEditorWidget2/utils'; import { EditorLayoutInfo } from 'vs/editor/common/config/editorOptions'; import { EditorLayoutInfo, EditorOption } from 'vs/editor/common/config/editorOptions'; import { LineRange } from 'vs/editor/common/core/lineRange'; import { Position } from 'vs/editor/common/core/position'; import { OverviewRulerZone } from 'vs/editor/common/viewModel/overviewZoneManager';"} {"_id":"q-en-vscode-f70d47f5dac96468c4f8418d728990adac8141f9f0d09ce2020e72afaed2d0e4","text":"import { ICommandService } from 'vs/platform/commands/common/commands'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IFileService } from 'vs/platform/files/common/files'; import { IDebugService, State, IDebugSession, IThread, IEnablement, IBreakpoint, IStackFrame, REPL_ID, IConfig } import { IDebugService, State, IDebugSession, IThread, IEnablement, IBreakpoint, IStackFrame, REPL_ID } from 'vs/workbench/parts/debug/common/debug'; import { Variable, Expression, Thread, Breakpoint } from 'vs/workbench/parts/debug/common/debugModel'; import { IPartService } from 'vs/workbench/services/part/common/partService';"} {"_id":"q-en-vscode-f71d07e96eac20a3ad6ffe07103e52cb4649701add3242082e039a417383c5ff","text":"\"customEditor.imagePreview.displayName\": \"Image Preview\", \"customEditor.videoPreview.displayName\": \"Video Preview\", \"command.zoomIn\": \"Zoom in\", \"command.zoomOut\": \"Zoom out\" \"command.zoomOut\": \"Zoom out\", \"command.copyImage\": \"Copy\" }"} {"_id":"q-en-vscode-f7c3ec54b90fb5c3d4a7bc449efb255d361a2428d33da2d3da97764d3ded0ebf","text":" No newline at end of file No newline at end of file"} {"_id":"q-en-vscode-f7d2fc89d8931236324708043fc1659a8ec6963cd2c7403c4d550b8eda497c92","text":"// Send data if the pty is ready this._process.send({ event: 'input', data: this._sanitizeInput(data) data }); } else { // If the pty is not ready, queue the data received from"} {"_id":"q-en-vscode-f7ec0ec5cad28978246032b871de39777a4e18f9ca984e9b58b83ec6fc4ae30b","text":"import { IWorkbenchLayoutService } from 'vs/workbench/services/layout/browser/layoutService'; import { BrowserLifecycleService } from 'vs/workbench/services/lifecycle/browser/lifecycleService'; import { ILifecycleService } from 'vs/workbench/services/lifecycle/common/lifecycle'; import { IHostService } from 'vs/workbench/services/host/browser/host'; export class BrowserWindow extends Disposable {"} {"_id":"q-en-vscode-f82bd03493bea9c3284496e150b455ef37a1a39ac3a04a8a44d5284a78a2c77e","text":"fn print_listening(log: &log::Logger, tunnel_name: &str) { debug!(log, \"VS Code Server is listening for incoming connections\"); let extension_name = \"+ms-vscode.remote-server\"; let home_dir = dirs::home_dir().unwrap_or_else(|| PathBuf::from(\"\")); let current_dir = env::current_dir().unwrap_or_else(|_| PathBuf::from(\"\"));"} {"_id":"q-en-vscode-f82f911b2babf2641894984c0892496181461b7d4ba43d2cfeb08175031885f9","text":"document: vscode.TextDocument, link: string, ): { uri: vscode.Uri, tooltip?: string } | undefined { const externalSchemeUri = getUriForLinkWithKnownExternalScheme(link); const cleanLink = stripAngleBrackets(link); const externalSchemeUri = getUriForLinkWithKnownExternalScheme(cleanLink); if (externalSchemeUri) { // Normalize VS Code links to target currently running version if (isOfScheme(Schemes.vscode, link) || isOfScheme(Schemes['vscode-insiders'], link)) {"} {"_id":"q-en-vscode-f8381fb40f95ffcbfbbecedb23507e9feb6eb561a6e84394470879522802fe0c","text":"export enum MarkdownPreviewSecurityLevel { Strict = 0, AllowInsecureContent = 1, AllowScriptsAndAllContent = 2 AllowScriptsAndAllContent = 2, AllowInsecureLocalContent = 3 } export interface ContentSecurityPolicyArbiter {"} {"_id":"q-en-vscode-f84cff8d06bb0039b2ef7d20466d34d2036f8911578a686cb0d241dc637bc81d","text":"} } private updateImageWatchers(containingImages: { src: string }[]) { const srcs = new Set(containingImages.map(img => img.src)); private updateImageWatchers(srcs: Set) { // Delete stale file watchers. for (const [src, watcher] of this._fileWatchersBySrc) { if (!srcs.has(src)) {"} {"_id":"q-en-vscode-f8517707b150ed686367ab78b0288d094cdc49de9e88ccf6610ecebbc0e8ce31","text":"} } } function getExtensionName(id: string, extensionService: IExtensionService): string { return extensionService.extensions.find(e => e.id === id)?.displayName || id; } "} {"_id":"q-en-vscode-f85d6d1bff2cd419cff32749221a8a239fd2701217f917beb0d83f98d3b64f83","text":"/* Right aligned */ .monaco-workbench .activitybar.right > .content :not(.monaco-menu) > .monaco-action-bar .action-label:not(.codicon) { .monaco-workbench .activitybar.right > .content :not(.monaco-menu) > .monaco-action-bar .action-label:not(.codicon):not(.profile-activity-item) { margin-left: 0; padding: 0 48px 0 0; background-position: calc(100% - 9px) center;"} {"_id":"q-en-vscode-f8917d2c2dad4d65c8b9839b00da38543900374b4e88944f5ae14b58aef3bd3f","text":"backups.folderWorkspaces.forEach(workspacePath => { const backupPath = path.join(this.backupHome, this.getWorkspaceHash(workspacePath)); if (!this.hasBackupsSync(backupPath)) { const hasBackups = this.hasBackupsSync(backupPath); const missingWorkspace = hasBackups && !fs.existsSync(workspacePath); // If the folder has no backups, make sure to delete it // If the folder has backups, but the target workspace is missing, convert backups to empty ones if (!hasBackups || missingWorkspace) { const backupWorkspace = this.sanitizePath(workspacePath); staleBackupWorkspaces.push({ workspaceIdentifier: Uri.file(backupWorkspace).fsPath, backupPath, isEmptyWorkspace: false }); if (missingWorkspace) { const identifier = this.pushBackupPathsSync(this.getRandomEmptyWorkspaceId(), true /* is empty workspace */); const newEmptyWorkspaceBackupPath = path.join(path.dirname(backupPath), identifier); try { fs.renameSync(backupPath, newEmptyWorkspaceBackupPath); } catch (ex) { console.error(`Backup: Could not rename backup folder for missing workspace: ${ex.toString()}`); this.removeBackupPathSync(identifier, true); } } } });"} {"_id":"q-en-vscode-f8e07be0f6e2926a8b6a9855a8d262bec643378f9d9845251f79b20598fefd1f","text":"} } // Handle empty to open (only if no other window opened) if (usedWindows.length === 0 || filesToOpen) { if (filesToOpen && !emptyToOpen) { emptyToOpen++; } // Open empty window either if enforced or when files still have to open if (filesToOpen || openOneEmptyWindow) { const remoteAuthority = filesToOpen ? filesToOpen.remoteAuthority : openConfig.remoteAuthority; for (let i = 0; i < emptyToOpen; i++) { addUsedWindow(await this.doOpenEmpty(openConfig, openFolderInNewWindow, remoteAuthority, filesToOpen), !!filesToOpen); // any other window to open must open in new window then openFolderInNewWindow = true; } addUsedWindow(await this.doOpenEmpty(openConfig, openFolderInNewWindow, remoteAuthority, filesToOpen), !!filesToOpen); } return { windows: distinct(usedWindows), filesOpenedInWindow };"} {"_id":"q-en-vscode-f8f4a2c3d2db048a0b7ded4c37dbdaf47c1e351ff8972298733e944b0e1df4a1","text":"} .action-widget .monaco-list .monaco-list-row.action.focused:not(.option-disabled) { background-color: var(--vscode-quickInputList-focusBackground); background-color: var(--vscode-quickInputList-focusBackground) !important; color: var(--vscode-quickInputList-focusForeground); outline: 1px solid var(--vscode-menu-selectionBorder, transparent); outline-offset: -1px; } .action-widget .monaco-list-row.group-header { color: var(--vscode-pickerGroup-foreground); color: var(--vscode-pickerGroup-foreground) !important; font-weight: 600; }"} {"_id":"q-en-vscode-f90a414b0a7203d25f4a45c28d194f9dcf0e587aa818fd4e47f3124f71083395","text":"id: 'breadcrumbs.toggle', title: { value: localize('cmd.toggle', \"Toggle Breadcrumbs\"), mnemonicTitle: localize('miBreadcrumbs', \"Toggle &&Breadcrumbs\"), mnemonicTitle: localize({ key: 'miBreadcrumbs', comment: ['&& denotes a mnemonic'] }, \"Toggle &&Breadcrumbs\"), original: 'Toggle Breadcrumbs', }, category: Categories.View, toggled: { condition: ContextKeyExpr.equals('config.breadcrumbs.enabled', true), title: localize('cmd.toggle2', \"Breadcrumbs\"), mnemonicTitle: localize('miBreadcrumbs2', \"&&Breadcrumbs\") mnemonicTitle: localize({ key: 'miBreadcrumbs2', comment: ['&& denotes a mnemonic'] }, \"&&Breadcrumbs\") }, menu: [ { id: MenuId.CommandPalette },"} {"_id":"q-en-vscode-f9302cab5c35960093e5aa42488c8ddb6a1ceb25eede1aaa0455403cd3f9afb6","text":"export interface MainThreadCommandsShape extends IDisposable { $registerCommand(id: string): void; $unregisterCommand(id: string): void; $executeCommand(id: string, args: any[], retry: boolean): Promise; $executeCommand(id: string, args: any[] | SerializableObjectWithBuffers, retry: boolean): Promise; $getCommands(): Promise; }"} {"_id":"q-en-vscode-f94b66ec64c983606a40c98aac8c933bc24bf43a49f8a5cb495822478377bf99","text":" Compare_16x No newline at end of file No newline at end of file"} {"_id":"q-en-vscode-f94cc7287ef00a847743ccb7f1129853ab57365fe162864bf487ff297cf3e53e","text":"position: relative; padding: 0 6px; margin-bottom: 4px; align-items: center; align-items: flex-end; justify-content: space-between; }"} {"_id":"q-en-vscode-f9adf069da4e4b9f9d30e07d52cba14c40c1611303cc9fbaf3a41c78f88a9bcf","text":"const pathSeparatorClause = '/'; // '\":; are allowed in paths but they are often separators so ignore them // Also disallow to prevent a catastropic backtracking case #24798 const excludedPathCharactersClause = '[^0s!$`&*()[]+'\":;]'; const excludedPathCharactersClause = '[^0s!$`&*()[]'\":;]'; /** A regex that matches paths in the form /foo, ~/foo, ./foo, ../foo, foo/bar */ export const unixLocalLinkClause = '((' + pathPrefix + '|(' + excludedPathCharactersClause + ')+)?(' + pathSeparatorClause + '(' + excludedPathCharactersClause + ')+)+)'; export const winDrivePrefix = '(?:?)?[a-zA-Z]:'; const winPathPrefix = '(' + winDrivePrefix + '|..?|~)'; const winPathSeparatorClause = '(|/)'; const winExcludedPathCharactersClause = '[^0<>?|/s!$`&*()[]+'\":;]'; const winExcludedPathCharactersClause = '[^0<>?|/s!$`&*()[]'\":;]'; /** A regex that matches paths in the form ?c:foo c:foo, ~foo, .foo, ..foo, foobar */ export const winLocalLinkClause = '((' + winPathPrefix + '|(' + winExcludedPathCharactersClause + ')+)?(' + winPathSeparatorClause + '(' + winExcludedPathCharactersClause + ')+)+)';"} {"_id":"q-en-vscode-f9b6735dc61a52674ca6ee6a64b486ecde7742a57a0944a7ab42ed16ab1fadae","text":"const resources: { originalUri: Uri | undefined; modifiedUri: Uri | undefined }[] = []; for (const change of stashChanges) { if (change.status === Status.INDEX_ADDED) { resources.push({ originalUri: undefined, modifiedUri: toGitUri(change.uri, `stash@{${stash.index}}`) }); resources.push({ originalUri: undefined, modifiedUri: toGitUri(change.uri, stash.hash) }); } else if (change.status === Status.DELETED) { resources.push({ originalUri: change.uri, modifiedUri: undefined }); resources.push({ originalUri: toGitUri(change.uri, stashParentCommit), modifiedUri: undefined }); } else if (change.status === Status.INDEX_RENAMED) { resources.push({ originalUri: change.originalUri, modifiedUri: toGitUri(change.uri, `stash@{${stash.index}}`) }); resources.push({ originalUri: toGitUri(change.originalUri, stashParentCommit), modifiedUri: toGitUri(change.uri, stash.hash) }); } else { resources.push({ originalUri: change.uri, modifiedUri: toGitUri(change.uri, `stash@{${stash.index}}`) }); resources.push({ originalUri: toGitUri(change.uri, stashParentCommit), modifiedUri: toGitUri(change.uri, stash.hash) }); } }"} {"_id":"q-en-vscode-fa06e598107eed078db46471bd5264f82cf5c0ea76e22f63f2e6a3181186182a","text":"} } private _onReplaceInputKeyDown(e: IKeyboardEvent): void { if (e.equals(KeyCode.Enter)) { this.replaceOne(); e.preventDefault(); return; } } protected onInputChanged(): boolean { this._state.change({ searchString: this.inputValue }, false); // this._findModel.research();"} {"_id":"q-en-vscode-fa124f753547f11bd4e548b9d483de86acdf21422175d28946315cc9dd3c5bf1","text":"import { IFileService } from 'vs/platform/files/common/files'; import { createFileStat } from 'vs/workbench/test/common/workbenchTestServices'; import { URI } from 'vs/base/common/uri'; import { ILogService, NullLogService } from 'vs/platform/log/common/log'; const unixLinks: (string | { link: string; resource: URI })[] = [ // Absolute"} {"_id":"q-en-vscode-fa349ffb750492ccdcc35b5a177a32ed9b03cadefe44b9e5f12f73754e91a077","text":"} } private onEditorClosed(listenerDispose: IDisposable, resourcesToWaitFor: URI[], waitMarkerFile: URI): void { // In wait mode, listen to changes to the editors and wait until the files // are closed that the user wants to wait for. When this happens we delete // the wait marker file to signal to the outside that editing is done. if (resourcesToWaitFor.every(resource => !this.editorService.isOpen({ resource }))) { listenerDispose.dispose(); this.fileService.del(waitMarkerFile); } } private onContextMenu(e: MouseEvent): void { if (e.target instanceof HTMLElement) { const target = e.target;"} {"_id":"q-en-vscode-fa38633ae0b5a563b59e2e335adfaa0dcb506e543022f8a6e06d8056de853052","text":"} private createSearchResultsView(container: HTMLElement): void { this.resultsElement = dom.append(container, $('.results.show-file-icons')); this.resultsElement = dom.append(container, $('.results.show-file-icons.file-icon-themable-tree')); const delegate = this.instantiationService.createInstance(SearchDelegate); const identityProvider: IIdentityProvider = {"} {"_id":"q-en-vscode-fa6eb27716b9af20b4eeb1ef267bdefc57406917dad5bccdb55a2c8bd1911dd3","text":"id: 'editor.action.toggleStickyScroll', title: { value: localize('toggleStickyScroll', \"Toggle Sticky Scroll\"), mnemonicTitle: localize('mitoggleStickyScroll', \"&&Toggle Sticky Scroll\"), mnemonicTitle: localize({ key: 'mitoggleStickyScroll', comment: ['&& denotes a mnemonic'] }, \"&&Toggle Sticky Scroll\"), original: 'Toggle Sticky Scroll', }, category: Categories.View, toggled: { condition: ContextKeyExpr.equals('config.editor.stickyScroll.enabled', true), title: localize('stickyScroll', \"Sticky Scroll\"), mnemonicTitle: localize('miStickyScroll', \"&&Sticky Scroll\"), mnemonicTitle: localize({ key: 'miStickyScroll', comment: ['&& denotes a mnemonic'] }, \"&&Sticky Scroll\"), }, menu: [ { id: MenuId.CommandPalette },"} {"_id":"q-en-vscode-fa964f2a4264e0349e5939bef164bfd2306fac759d02422c1fdfcb476fa1c3d4","text":"if (!disableServiceWorker) { hostMessaging.onMessage('did-load-resource', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); }); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); }); hostMessaging.onMessage('did-load-localhost', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-localhost', data }); }); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-localhost', data }); }); navigator.serviceWorker.addEventListener('message', event => {"} {"_id":"q-en-vscode-fae60595e4ff4159bcf4fa2adc187dedeaee05b67a12f2e27be0b0114f1d7faf","text":"disposables.length = 0; }); test('sendText immediately after createTerminal should not throw', (done) => { disposables.push(window.onDidOpenTerminal(term => { try { equal(terminal, term); } catch (e) { done(e); return; } terminal.dispose(); disposables.push(window.onDidCloseTerminal(() => done())); })); test('sendText immediately after createTerminal should not throw', async () => { const terminal = window.createTerminal(); const result = await new Promise(r => { disposables.push(window.onDidOpenTerminal(t => { if (t === terminal) { r(t); } })); }); equal(result, terminal); doesNotThrow(terminal.sendText.bind(terminal, 'echo \"foo\"')); await new Promise(r => { disposables.push(window.onDidCloseTerminal(t => { if (t === terminal) { r(); } })); terminal.dispose(); }); }); (process.platform === 'linux' ? test.skip : test)('echo works in the default shell', (done) => {"} {"_id":"q-en-vscode-faf877559fcf3f123e3c0efa24ec9fa921e0a685bb409c7e4f4691057140d382","text":"editorService.openEditor({ resource: GettingStartedInput.RESOURCE, options: { selectedCategory: selectedCategory, selectedStep: selectedStep, preserveFocus: toSide ?? false } }).then((editor) => { }, toSide ? SIDE_GROUP : undefined).then((editor) => { (editor as GettingStartedPage)?.makeCategoryVisibleWhenAvailable(selectedCategory, selectedStep); }); } } else { editorService.openEditor({ resource: GettingStartedInput.RESOURCE }); editorService.openEditor({ resource: GettingStartedInput.RESOURCE, options: { preserveFocus: toSide ?? false } }, toSide ? SIDE_GROUP : undefined); } } });"} {"_id":"q-en-vscode-fb6222c8de36cd81b37397ca3dabff54dce8f1bfa683afbbdb3e99a55e112b77","text":"this._onDidBlur.fire(); })); this._register(this._inputEditor.onDidChangeCursorPosition(e => { const model = this._inputEditor.getModel(); if (!model) { return; } const atTop = e.position.column === 1 && e.position.lineNumber === 1; this.chatCursorAtTop.set(atTop); this.historyNavigationBackwardsEnablement.set(atTop); this.historyNavigationForewardsEnablement.set(e.position.equals(getLastPosition(model))); })); this.toolbar = this._register(this.instantiationService.createInstance(MenuWorkbenchToolBar, inputContainer, this.options.menus.executeToolbar, { telemetrySource: this.options.menus.telemetrySource,"} {"_id":"q-en-vscode-fb67e6cef887d5898fcbcb170af88249381b7139f0807a6f3721655b25e0d887","text":"private applicationStorage: IStorage | undefined; private applicationStorageDatabase: IIndexedDBStorageDatabase | undefined; private readonly applicationStoragePromise = new DeferredPromise<{ indededDb: IIndexedDBStorageDatabase; storage: IStorage }>(); private readonly applicationStoragePromise = new DeferredPromise<{ indexedDb: IIndexedDBStorageDatabase; storage: IStorage }>(); private profileStorage: IStorage | undefined; private profileStorageDatabase: IIndexedDBStorageDatabase | undefined;"} {"_id":"q-en-vscode-fb856ddfdd2c50d00eddc144f38d46d3a88cfc12103dc7a762f2c9d5a6aad9c3","text":"const repositoryPath = await window.withProgress( opts, (progress, token) => this.git.clone(url!, parentPath, progress, token) (progress, token) => this.git.clone(url!, parentPath!, progress, token) ); let message = localize('proposeopen', \"Would you like to open the cloned repository?\");"} {"_id":"q-en-vscode-fb99ad0b30b3b7ecf7a81773148283b12ac337debe3cf627d8586e98b59bb3e1","text":"\"@microsoft/1ds-post-js\": \"^3.2.13\", \"@vscode/iconv-lite-umd\": \"0.7.0\", \"@vscode/vscode-languagedetection\": \"1.0.21\", \"@xterm/addon-canvas\": \"0.6.0-beta.19\", \"@xterm/addon-image\": \"0.7.0-beta.17\", \"@xterm/addon-search\": \"0.14.0-beta.19\", \"@xterm/addon-serialize\": \"0.12.0-beta.19\", \"@xterm/addon-unicode11\": \"0.7.0-beta.19\", \"@xterm/addon-webgl\": \"0.17.0-beta.19\", \"@xterm/xterm\": \"5.4.0-beta.19\", \"@xterm/addon-canvas\": \"0.6.0-beta.20\", \"@xterm/addon-image\": \"0.7.0-beta.18\", \"@xterm/addon-search\": \"0.14.0-beta.20\", \"@xterm/addon-serialize\": \"0.12.0-beta.20\", \"@xterm/addon-unicode11\": \"0.7.0-beta.20\", \"@xterm/addon-webgl\": \"0.17.0-beta.20\", \"@xterm/xterm\": \"5.4.0-beta.20\", \"jschardet\": \"3.0.0\", \"tas-client-umd\": \"0.1.8\", \"vscode-oniguruma\": \"1.7.0\","} {"_id":"q-en-vscode-fbbc1b28764d6af6b284c8c4131d9afdbc3748ed2c099a3a2f94dfad4a47cbb8","text":"// Modifed to not include the message as part of the marker key to work around // https://github.com/microsoft/vscode/issues/77475 if (markerData.message && useMessage) { result.push(markerData.message.replace('¦', '¦')); result.push(markerData.message.replace('¦', '¦')); } else { result.push(emptyString); }"} {"_id":"q-en-vscode-fbbdccd8bc4033e6e95bc4eb2fea3db842d3a7ceb6035d12494601a287da1626","text":"assert.strictEqual(configurationResolverService.resolve(workspace, 'abc ${lineNumber} xyz'), `abc ${editorService.mockLineNumber} xyz`); }); test('current selected text', () => { assert.strictEqual(configurationResolverService.resolve(workspace, 'abc ${selectedText} xyz'), `abc ${editorService.mockSelectedText} xyz`); }); test('substitute many', () => { if (platform.isWindows) { assert.strictEqual(configurationResolverService.resolve(workspace, '${workspaceFolder} - ${workspaceFolder}'), 'VSCodeworkspaceLocation - VSCodeworkspaceLocation');"} {"_id":"q-en-vscode-fbf20181d2b1626afbee33c8cd9c6f4e250e80483f1ab5a77f723088f31b2c43","text":"return; } const session = await VoiceChatSessions.getInstance(instantiationService).start(controller, context); session = await VoiceChatSessions.getInstance(instantiationService).start(controller, context); await holdMode; handle.dispose();"} {"_id":"q-en-vscode-fc7831f369f7ed5052f0571d135d416191f5383d9aa67486c76a373fae049dd1","text":"items.splice(0, 0, item); } const working = repo.workingTreeGroup.resourceStates.find(r => r.resourceUri.fsPath === uri.fsPath); if (working) { const date = new Date(); const item = new GitTimelineItem('', index ? '~' : 'HEAD', localize('git.timeline.uncommitedChanges', 'Uncommitted Changes'), date.getTime(), 'working', 'git:file:working'); // TODO@eamodio: Replace with a better icon -- reflecting its status maybe? item.iconPath = new ThemeIcon('git-commit'); item.description = ''; item.setItemDetails(you, undefined, dateFormatter.format(date), Resource.getStatusText(working.type)); const cmd = this.commands.resolveTimelineOpenDiffCommand(item, uri); if (cmd) { item.command = { title: openComparison, command: cmd.command, arguments: cmd.arguments, }; } items.splice(0, 0, item); } } return {"} {"_id":"q-en-vscode-fca64f6d3864b4575b95d2dfafc7cc47e33e606a56c9fa32860c89ad6b8c309a","text":" { \"comments\": { \"lineComment\": \"#\", \"blockComment\": [ \"#\", \" \" ] }, \"brackets\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"] ], \"autoClosingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ], \"surroundingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ] } No newline at end of file"} {"_id":"q-en-vscode-fd07a80cd4cd209c02c72e378b7a11a20ab714c77f2cbbf61d5e76a594997b82","text":"assert.ok(!fs.exists(service.toBackupPath(fooFile.fsPath))); assert.ok(!fs.exists(service.toBackupPath(barFile.fsPath))); // 4) backup workspace path points to a workspace that no longer exists // so it should convert the backup worspace to an empty workspace backup const fileBackups = path.join(service.toBackupPath(fooFile.fsPath), 'file'); fs.mkdirSync(service.toBackupPath(fooFile.fsPath)); fs.mkdirSync(service.toBackupPath(barFile.fsPath)); fs.mkdirSync(fileBackups); service.registerWindowForBackups(1, false, null, fooFile.fsPath); assert.equal(service.workspaceBackupPaths.length, 1); assert.equal(service.emptyWorkspaceBackupPaths.length, 0); fs.writeFileSync(path.join(fileBackups, 'backup.txt'), ''); service.loadSync(); assert.equal(service.workspaceBackupPaths.length, 0); assert.equal(service.emptyWorkspaceBackupPaths.length, 1); done(); });"} {"_id":"q-en-vscode-fd5d79724226d8e457455e337bd5e46bdb61ed438078c811ce455b171611d8c3","text":"//#endregion readonly capabilities = 0; readonly capabilities = WorkingCopyCapabilities.None; readonly name = basename(this.labelService.getUriLabel(this.resource));"} {"_id":"q-en-vscode-fddd86c9e7aa839fbb532395f4050694cb23d4df168e40bf027ec97d4e831bb9","text":"}; for (let i = 0; i < this._regions.length; i++) { const foldRange = this._regions.toFoldRange(i); if (!foldRange.isUserDefined && !foldRange.isRecovered || !containedBy(foldRange)) { if (!foldRange.isUserDefined && !foldRange.isRecovered || !intersects(foldRange)) { newFoldingRanges.push(foldRange); } }"} {"_id":"q-en-vscode-fdf7a949e16557cad368d9248593db284145fa37b5712f79db405bed2fd16700","text":"private _findMatchesInLine(searchRegex:RegExp, text:string, lineNumber:number, deltaOffset:number, counter:number, result:EditorCommon.IEditorRange[], limitResultCount:number): number { var m:RegExpExecArray; // Reset regex to search from the beginning searchRegex.lastIndex = 0; do { m = searchRegex.exec(text); if (m) { result.push(new Range(lineNumber, m.index + 1 + deltaOffset, lineNumber, m.index + 1 + m[0].length + deltaOffset)); var range = new Range(lineNumber, m.index + 1 + deltaOffset, lineNumber, m.index + 1 + m[0].length + deltaOffset); // Exit early if the regex matches the same range if (range.equalsRange(result[result.length - 1])) { return counter; } result.push(range); counter++; if (counter >= limitResultCount) { return counter;"} {"_id":"q-en-vscode-fe0287790726346ae94682165e3d45e82ac124e2e5067c0d277e2078d70f0b9c","text":"constructor( @IExtensionsWorkbenchService private readonly extensionsWorkbenchService: IExtensionsWorkbenchService, @IPaneCompositePartService private readonly paneCompositeService: IPaneCompositePartService, @IModelService private readonly modelService: IModelService, @ILanguageService private readonly languageService: ILanguageService, @IProductService productService: IProductService, @INotificationService private readonly notificationService: INotificationService, @ITelemetryService private readonly telemetryService: ITelemetryService, @IStorageService private readonly storageService: IStorageService, @IExtensionRecommendationNotificationService private readonly extensionRecommendationNotificationService: IExtensionRecommendationNotificationService, @IExtensionIgnoredRecommendationsService private readonly extensionIgnoredRecommendationsService: IExtensionIgnoredRecommendationsService, @IWorkspaceContextService private readonly workspaceContextService: IWorkspaceContextService, @IExtensionManagementServerService private readonly extensionManagementServerService: IExtensionManagementServerService, ) { super(); this.fileOpenRecommendations = {};"} {"_id":"q-en-vscode-fe41c911bdb9dea2ef2c0197d3958cbb82301c34158d3855b9c2c480f19c2c56","text":"} } } KeybindingsRegistry.registerKeybindingRule({ id: 'undo', weight: 1000, primary: KeyMod.CtrlCmd | KeyCode.LeftArrow, when: ContextKeyExpr.and(EditorContextKeys.writable, ContextKeyExpr.or(GhostTextController.inlineSuggestionVisible, GhostTextController.inlineSuggestionJustCommitted)), }); "} {"_id":"q-en-vscode-fe66ab5f5cba22c1bf7396cd8a1d0e9b58759aa590e2aaaea06fd35094d37840","text":"import { onUnexpectedError, isPromiseCanceledError } from 'vs/base/common/errors'; import { IWindowService } from 'vs/platform/windows/common/windows'; import { TPromise } from 'vs/base/common/winjs.base'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { IConfigurationService, ConfigurationTarget } from 'vs/platform/configuration/common/configuration'; import { localize } from 'vs/nls'; import { Action } from 'vs/base/common/actions';"} {"_id":"q-en-vscode-fef2f63d6f39abc2861cc850e6ca67caa4cfd2f622e965f7def32dceba143ed9","text":"isExtensionOwnedTerminal?: boolean; useShellEnvironment?: boolean; location?: TerminalLocation | { viewColumn: number, preserveFocus?: boolean } | { parentTerminal: ExtHostTerminalIdentifier } | { splitActiveTerminal: boolean }; disablePersistence?: boolean; } export interface MainThreadTerminalServiceShape extends IDisposable {"} {"_id":"q-en-vscode-ff1da2b562c57071e4d44cea37f797967a8a39a78d619df9716f3ee49a683ed7","text":"import { registerIcon } from 'vs/platform/theme/common/iconRegistry'; import { UntitledTextEditorInputSerializer, UntitledTextEditorWorkingCopyEditorHandler } from 'vs/workbench/services/untitled/common/untitledTextEditorHandler'; import { DynamicEditorConfigurations } from 'vs/workbench/browser/parts/editor/editorConfiguration'; import { EditorActionsDefaultAction, EditorActionsTitleBarAction, HideEditorActionsAction, HideEditorTabsAction, ShowMultipleEditorTabsAction, ShowSingleEditorTabAction, ZenHideEditorTabsAction, ZenShowMultipleEditorTabsAction, ZenShowSingleEditorTabAction } from 'vs/workbench/browser/actions/layoutActions'; import { ConfigureEditorAction, ConfigureEditorTabsAction, EditorActionsDefaultAction, EditorActionsTitleBarAction, HideEditorActionsAction, HideEditorTabsAction, ShowMultipleEditorTabsAction, ShowSingleEditorTabAction, ZenHideEditorTabsAction, ZenShowMultipleEditorTabsAction, ZenShowSingleEditorTabAction } from 'vs/workbench/browser/actions/layoutActions'; import { ICommandAction } from 'vs/platform/action/common/action'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys';"} {"_id":"q-en-vscode-ff523ceacd05495cca70317d73d4e1abad73ff0d8007a4784240c07cb872898b","text":"sortedIndexes.push(this.sortedIndexes[i++] + diff); } const length = this.length + diff; if (this.sortedIndexes.length > 0 && sortedIndexes.length === 0 && length > 0) { const first = this.sortedIndexes.find(index => index >= start) ?? length - 1; sortedIndexes.push(Math.min(first, length - 1)); } this.renderer.splice(start, deleteCount, elements.length); this._set(sortedIndexes, sortedIndexes); this.length = length; } renderIndex(index: number, container: HTMLElement): void {"} {"_id":"q-en-vscode-ff910bc193b3db0f199288341ad2f9846a3424179f1f7ed276d2a837258a430a","text":"provideRefactorNotApplicableReason: true, generateReturnInDocTemplate: config.get('suggest.jsdoc.generateReturns', true), includeCompletionsForImportStatements: config.get('suggest.includeCompletionsForImportStatements', true), includeCompletionsWithSnippetText: config.get('suggest.includeCompletionsWithSnippetText', true), includeCompletionsWithSnippetText: true, includeCompletionsWithClassMemberSnippets: config.get('suggest.classMemberSnippets.enabled', true), includeCompletionsWithObjectLiteralMethodSnippets: config.get('suggest.objectLiteralMethodSnippets.enabled', true), autoImportFileExcludePatterns: this.getAutoImportFileExcludePatternsPreference(preferencesConfig, vscode.workspace.getWorkspaceFolder(document.uri)?.uri),"} {"_id":"q-en-vscode-fffa0059faf65966664a491ecebfb3bb9a0c9a888c572f32994afc0080ca3752","text":"} export interface Stash { index: number; description: string; branchName?: string; readonly hash: string; readonly parents: string[]; readonly index: number; readonly description: string; readonly branchName?: string; } interface MutableRemote extends Remote {"}