From 5d41281706d70b5182db4cbebbd8a20e6f849d74 Mon Sep 17 00:00:00 2001 From: lxsang Date: Sun, 18 Apr 2021 20:56:17 +0200 Subject: [PATCH] used libantosdk for pompiling --- Makefile | 6 +- d.ts/jquery.d.ts | 492 ++++++++------------ src/packages/CodePad/AntOSDK.ts | 316 ++++--------- src/packages/CodePad/libs/coffeescript.js | 8 - src/packages/CodePad/libs/corelib.d.ts.zip | Bin 326021 -> 0 bytes src/packages/CodePad/libs/terser.min.js | 2 - src/packages/CodePad/libs/typescript.min.js | 15 - src/packages/CodePad/main.ts | 3 +- 8 files changed, 294 insertions(+), 548 deletions(-) delete mode 100644 src/packages/CodePad/libs/coffeescript.js delete mode 100644 src/packages/CodePad/libs/corelib.d.ts.zip delete mode 100644 src/packages/CodePad/libs/terser.min.js delete mode 100644 src/packages/CodePad/libs/typescript.min.js diff --git a/Makefile b/Makefile index 822ed6d..483e946 100644 --- a/Makefile +++ b/Makefile @@ -71,9 +71,9 @@ ts: tsc -p tsconfig.json cat `find dist/core/ -name "*.d.ts"` > d.ts/antos.d.ts rm `find dist/ -name "*.d.ts"` - cat d.ts/*.d.ts > /tmp/corelib.d.ts - -rm src/packages/CodePad/libs/corelib.d.ts.zip - zip -j src/packages/CodePad/libs/corelib.d.ts.zip /tmp/corelib.d.ts + cat d.ts/core.d.ts d.ts/jquery.d.ts d.ts/antos.d.ts > /tmp/corelib.d.ts + #-rm src/packages/CodePad/libs/corelib.d.ts.zip + #zip -j src/packages/CodePad/libs/corelib.d.ts.zip /tmp/corelib.d.ts standalone_tags: ts @echo "$(BLUE)Bundling standalone tags files$(NC)" diff --git a/d.ts/jquery.d.ts b/d.ts/jquery.d.ts index a36741d..e803b9c 100644 --- a/d.ts/jquery.d.ts +++ b/d.ts/jquery.d.ts @@ -1,95 +1,3 @@ -// Type definitions for sizzle 2.3 -// Project: https://sizzlejs.com -// Definitions by: Leonard Thieu -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.3 - -export as namespace Sizzle; - -declare const Sizzle: SizzleStatic; -export = Sizzle; - -interface SizzleStatic { - selectors: Sizzle.Selectors; - >(selector: string, context: Element | Document | DocumentFragment, results: TArrayLike): TArrayLike; - (selector: string, context?: Element | Document | DocumentFragment): Element[]; - // tslint:disable-next-line:ban-types - compile(selector: string): Function; - matchSelector(element: Element, selector: string): boolean; - matches(selector: string, elements: Element[]): Element[]; -} - -declare namespace Sizzle { - interface Selectors { - cacheLength: number; - match: Selectors.Matches; - find: Selectors.FindFunctions; - preFilter: Selectors.PreFilterFunctions; - filter: Selectors.FilterFunctions; - attrHandle: Selectors.AttrHandleFunctions; - pseudos: Selectors.PseudoFunctions; - setFilters: Selectors.SetFilterFunctions; - createPseudo(fn: Selectors.CreatePseudoFunction): Selectors.PseudoFunction; - } - - namespace Selectors { - interface Matches { - [name: string]: RegExp; - } - - interface FindFunction { - (match: RegExpMatchArray, context: Element | Document, isXML: boolean): Element[] | void; - } - - interface FindFunctions { - [name: string]: FindFunction; - } - - interface PreFilterFunction { - (match: RegExpMatchArray): string[]; - } - - interface PreFilterFunctions { - [name: string]: PreFilterFunction; - } - - interface FilterFunction { - (element: string, ...matches: string[]): boolean; - } - - interface FilterFunctions { - [name: string]: FilterFunction; - } - - interface AttrHandleFunction { - (elem: any, casePreservedName: string, isXML: boolean): string; - } - - interface AttrHandleFunctions { - [name: string]: AttrHandleFunction; - } - - interface PseudoFunction { - (elem: Element): boolean; - } - - interface PseudoFunctions { - [name: string]: PseudoFunction; - } - - interface SetFilterFunction { - (elements: Element[], argument: number, not: boolean): Element[]; - } - - interface SetFilterFunctions { - [name: string]: SetFilterFunction; - } - - interface CreatePseudoFunction { - (...args: any[]): PseudoFunction; - } - } -} // tslint:disable:jsdoc-format // tslint:disable:max-line-length // tslint:disable:no-irregular-whitespace @@ -26633,206 +26541,6 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) ) */ when(...deferreds: any[]): JQuery.Promise; } -// tslint:disable:no-irregular-whitespace - -// tslint:disable-next-line:no-empty-interface -interface JQueryCallback extends JQuery.Callbacks { } -interface JQueryDeferred extends JQuery.Deferred { } -// tslint:disable-next-line:no-empty-interface -interface JQueryEventConstructor extends JQuery.EventStatic { } -interface JQueryDeferred extends JQuery.Deferred { } -// tslint:disable-next-line:no-empty-interface -interface JQueryAjaxSettings extends JQuery.AjaxSettings { } -interface JQueryAnimationOptions extends JQuery.EffectsOptions { } -// tslint:disable-next-line:no-empty-interface -interface JQueryCoordinates extends JQuery.Coordinates { } -interface JQueryGenericPromise extends JQuery.Thenable { } -// tslint:disable-next-line:no-empty-interface -interface JQueryXHR extends JQuery.jqXHR { } -interface JQueryPromise extends JQuery.Promise { } -// tslint:disable-next-line:no-empty-interface -interface JQuerySerializeArrayElement extends JQuery.NameValuePair { } - -/** - * @deprecated ​ Deprecated since 1.9. See \`{@link https://api.jquery.com/jQuery.support/ }\`. - */ -// tslint:disable-next-line:no-empty-interface -interface JQuerySupport extends JQuery.PlainObject { } - -// Legacy types that are not represented in the current type definitions are marked deprecated. - -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Deferred.Callback }\` or \`{@link JQuery.Deferred.CallbackBase }\`. - */ -interface JQueryPromiseCallback { - (value?: T, ...args: any[]): void; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQueryStatic.param JQueryStatic['param']}\`. - */ -interface JQueryParam { - /** - * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. - * @param obj An array or object to serialize. - * @param traditional A Boolean indicating whether to perform a traditional "shallow" serialization. - */ - (obj: any, traditional?: boolean): string; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. - */ -interface BaseJQueryEventObject extends Event { - /** - * The current DOM element within the event bubbling phase. - * @see \`{@link https://api.jquery.com/event.currentTarget/ }\` - */ - currentTarget: Element; - /** - * An optional object of data passed to an event method when the current executing handler is bound. - * @see \`{@link https://api.jquery.com/event.data/ }\` - */ - data: any; - /** - * The element where the currently-called jQuery event handler was attached. - * @see \`{@link https://api.jquery.com/event.delegateTarget/ }\` - */ - delegateTarget: Element; - /** - * Returns whether event.preventDefault() was ever called on this event object. - * @see \`{@link https://api.jquery.com/event.isDefaultPrevented/ }\` - */ - isDefaultPrevented(): boolean; - /** - * Returns whether event.stopImmediatePropagation() was ever called on this event object. - * @see \`{@link https://api.jquery.com/event.isImmediatePropagationStopped/ }\` - */ - isImmediatePropagationStopped(): boolean; - /** - * Returns whether event.stopPropagation() was ever called on this event object. - * @see \`{@link https://api.jquery.com/event.isPropagationStopped/ }\` - */ - isPropagationStopped(): boolean; - /** - * The namespace specified when the event was triggered. - * @see \`{@link https://api.jquery.com/event.namespace/ }\` - */ - namespace: string; - /** - * The browser's original Event object. - * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` - */ - originalEvent: Event; - /** - * If this method is called, the default action of the event will not be triggered. - * @see \`{@link https://api.jquery.com/event.preventDefault/ }\` - */ - preventDefault(): any; - /** - * The other DOM element involved in the event, if any. - * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` - */ - relatedTarget: Element; - /** - * The last value returned by an event handler that was triggered by this event, unless the value was undefined. - * @see \`{@link https://api.jquery.com/event.result/ }\` - */ - result: any; - /** - * Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree. - * @see \`{@link https://api.jquery.com/event.stopImmediatePropagation/ }\` - */ - stopImmediatePropagation(): void; - /** - * Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. - * @see \`{@link https://api.jquery.com/event.stopPropagation/ }\` - */ - stopPropagation(): void; - /** - * The DOM element that initiated the event. - * @see \`{@link https://api.jquery.com/event.target/ }\` - */ - target: Element; - /** - * The mouse position relative to the left edge of the document. - * @see \`{@link https://api.jquery.com/event.pageX/ }\` - */ - pageX: number; - /** - * The mouse position relative to the top edge of the document. - * @see \`{@link https://api.jquery.com/event.pageY/ }\` - */ - pageY: number; - /** - * For key or mouse events, this property indicates the specific key or button that was pressed. - * @see \`{@link https://api.jquery.com/event.which/ }\` - */ - which: number; - /** - * Indicates whether the META key was pressed when the event fired. - * @see \`{@link https://api.jquery.com/event.metaKey/ }\` - */ - metaKey: boolean; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. - */ -interface JQueryInputEventObject extends BaseJQueryEventObject { - altKey: boolean; - ctrlKey: boolean; - metaKey: boolean; - shiftKey: boolean; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. - */ -interface JQueryMouseEventObject extends JQueryInputEventObject { - button: number; - clientX: number; - clientY: number; - offsetX: number; - offsetY: number; - pageX: number; - pageY: number; - screenX: number; - screenY: number; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. - */ -interface JQueryKeyEventObject extends JQueryInputEventObject { - /** @deprecated */ - char: string; - /** @deprecated */ - charCode: number; - key: string; - /** @deprecated */ - keyCode: number; -} -/** - * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. - */ -interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject { } -/** - * @deprecated ​ Deprecated. - */ -interface JQueryPromiseOperator { - (callback1: JQuery.TypeOrArray>, - ...callbacksN: Array>>): JQueryPromise; -} -/** - * @deprecated ​ Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`. - */ -interface JQueryEasingFunction { - (percent: number): number; -} -/** - * @deprecated ​ Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`. - */ -interface JQueryEasingFunctions { - [name: string]: JQueryEasingFunction; - linear: JQueryEasingFunction; - swing: JQueryEasingFunction; -} // tslint:disable:jsdoc-format // tslint:disable:max-line-length // tslint:disable:no-irregular-whitespace @@ -33481,3 +33189,203 @@ interface SymbolConstructor { declare var Symbol: SymbolConstructor; // #endregion +// tslint:disable:no-irregular-whitespace + +// tslint:disable-next-line:no-empty-interface +interface JQueryCallback extends JQuery.Callbacks { } +interface JQueryDeferred extends JQuery.Deferred { } +// tslint:disable-next-line:no-empty-interface +interface JQueryEventConstructor extends JQuery.EventStatic { } +interface JQueryDeferred extends JQuery.Deferred { } +// tslint:disable-next-line:no-empty-interface +interface JQueryAjaxSettings extends JQuery.AjaxSettings { } +interface JQueryAnimationOptions extends JQuery.EffectsOptions { } +// tslint:disable-next-line:no-empty-interface +interface JQueryCoordinates extends JQuery.Coordinates { } +interface JQueryGenericPromise extends JQuery.Thenable { } +// tslint:disable-next-line:no-empty-interface +interface JQueryXHR extends JQuery.jqXHR { } +interface JQueryPromise extends JQuery.Promise { } +// tslint:disable-next-line:no-empty-interface +interface JQuerySerializeArrayElement extends JQuery.NameValuePair { } + +/** + * @deprecated ​ Deprecated since 1.9. See \`{@link https://api.jquery.com/jQuery.support/ }\`. + */ +// tslint:disable-next-line:no-empty-interface +interface JQuerySupport extends JQuery.PlainObject { } + +// Legacy types that are not represented in the current type definitions are marked deprecated. + +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Deferred.Callback }\` or \`{@link JQuery.Deferred.CallbackBase }\`. + */ +interface JQueryPromiseCallback { + (value?: T, ...args: any[]): void; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQueryStatic.param JQueryStatic['param']}\`. + */ +interface JQueryParam { + /** + * Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. + * @param obj An array or object to serialize. + * @param traditional A Boolean indicating whether to perform a traditional "shallow" serialization. + */ + (obj: any, traditional?: boolean): string; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. + */ +interface BaseJQueryEventObject extends Event { + /** + * The current DOM element within the event bubbling phase. + * @see \`{@link https://api.jquery.com/event.currentTarget/ }\` + */ + currentTarget: Element; + /** + * An optional object of data passed to an event method when the current executing handler is bound. + * @see \`{@link https://api.jquery.com/event.data/ }\` + */ + data: any; + /** + * The element where the currently-called jQuery event handler was attached. + * @see \`{@link https://api.jquery.com/event.delegateTarget/ }\` + */ + delegateTarget: Element; + /** + * Returns whether event.preventDefault() was ever called on this event object. + * @see \`{@link https://api.jquery.com/event.isDefaultPrevented/ }\` + */ + isDefaultPrevented(): boolean; + /** + * Returns whether event.stopImmediatePropagation() was ever called on this event object. + * @see \`{@link https://api.jquery.com/event.isImmediatePropagationStopped/ }\` + */ + isImmediatePropagationStopped(): boolean; + /** + * Returns whether event.stopPropagation() was ever called on this event object. + * @see \`{@link https://api.jquery.com/event.isPropagationStopped/ }\` + */ + isPropagationStopped(): boolean; + /** + * The namespace specified when the event was triggered. + * @see \`{@link https://api.jquery.com/event.namespace/ }\` + */ + namespace: string; + /** + * The browser's original Event object. + * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` + */ + originalEvent: Event; + /** + * If this method is called, the default action of the event will not be triggered. + * @see \`{@link https://api.jquery.com/event.preventDefault/ }\` + */ + preventDefault(): any; + /** + * The other DOM element involved in the event, if any. + * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` + */ + relatedTarget: Element; + /** + * The last value returned by an event handler that was triggered by this event, unless the value was undefined. + * @see \`{@link https://api.jquery.com/event.result/ }\` + */ + result: any; + /** + * Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree. + * @see \`{@link https://api.jquery.com/event.stopImmediatePropagation/ }\` + */ + stopImmediatePropagation(): void; + /** + * Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. + * @see \`{@link https://api.jquery.com/event.stopPropagation/ }\` + */ + stopPropagation(): void; + /** + * The DOM element that initiated the event. + * @see \`{@link https://api.jquery.com/event.target/ }\` + */ + target: Element; + /** + * The mouse position relative to the left edge of the document. + * @see \`{@link https://api.jquery.com/event.pageX/ }\` + */ + pageX: number; + /** + * The mouse position relative to the top edge of the document. + * @see \`{@link https://api.jquery.com/event.pageY/ }\` + */ + pageY: number; + /** + * For key or mouse events, this property indicates the specific key or button that was pressed. + * @see \`{@link https://api.jquery.com/event.which/ }\` + */ + which: number; + /** + * Indicates whether the META key was pressed when the event fired. + * @see \`{@link https://api.jquery.com/event.metaKey/ }\` + */ + metaKey: boolean; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. + */ +interface JQueryInputEventObject extends BaseJQueryEventObject { + altKey: boolean; + ctrlKey: boolean; + metaKey: boolean; + shiftKey: boolean; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. + */ +interface JQueryMouseEventObject extends JQueryInputEventObject { + button: number; + clientX: number; + clientY: number; + offsetX: number; + offsetY: number; + pageX: number; + pageY: number; + screenX: number; + screenY: number; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. + */ +interface JQueryKeyEventObject extends JQueryInputEventObject { + /** @deprecated */ + char: string; + /** @deprecated */ + charCode: number; + key: string; + /** @deprecated */ + keyCode: number; +} +/** + * @deprecated ​ Deprecated. Use \`{@link JQuery.Event }\`. + */ +interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject { } +/** + * @deprecated ​ Deprecated. + */ +interface JQueryPromiseOperator { + (callback1: JQuery.TypeOrArray>, + ...callbacksN: Array>>): JQueryPromise; +} +/** + * @deprecated ​ Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`. + */ +interface JQueryEasingFunction { + (percent: number): number; +} +/** + * @deprecated ​ Deprecated. Internal. See \`{@link https://github.com/jquery/api.jquery.com/issues/912 }\`. + */ +interface JQueryEasingFunctions { + [name: string]: JQueryEasingFunction; + linear: JQueryEasingFunction; + swing: JQueryEasingFunction; +} diff --git a/src/packages/CodePad/AntOSDK.ts b/src/packages/CodePad/AntOSDK.ts index 2073006..e50f4c0 100644 --- a/src/packages/CodePad/AntOSDK.ts +++ b/src/packages/CodePad/AntOSDK.ts @@ -14,16 +14,7 @@ namespace OS { */ class AntOSDK extends App.BaseExtension { - - /** - * Core library for the transpiler stored here - * - * @static - * @type {GenericObject} - * @memberof AntOSDK - */ - static corelib: GenericObject; - + private sdk: any; /** *Creates an instance of AntOSDK. * @param {application.CodePad} app @@ -120,6 +111,17 @@ namespace OS { .catch((e) => this.logger().error(__("Unable to read meta-data: {0}", e.stack))); } + /** + * + * + * @protected + * @returns {string[]} + * @memberof BaseExtension + */ + protected dependencies(): string[] { + return ["pkg://libantosdk/main.js"]; + } + // private functions /** * Create project template @@ -173,193 +175,6 @@ namespace OS { ); } - /** - * Check coffeescript file validity - * - * @private - * @param {string[]} list - * @returns {Promise} - * @memberof AntOSDK - */ - private verify_coffee(list: string[]): Promise { - return new Promise((resolve, reject) => { - if (list.length === 0) { - return resolve(); - } - const file = list.splice(0, 1)[0].asFileHandle(); - this.logger().info(__("Verifying: {0}", file.path)); - return file - .read() - .then((data) => { - try { - CoffeeScript.nodes(data); - return this.verify_coffee(list) - .then(() => resolve()) - .catch((e) => reject(__e(e))); - } catch (ex) { - return reject(__e(ex)); - } - }) - .catch((e) => reject(__e(e))); - }); - } - - /** - * load typescript core lib - * - * @private - * @param {string} path - * @return {*} {Promise} - * @memberof AntOSDK - */ - private load_corelib(path: string): Promise { - return new Promise(async (resolve, reject) => { - if (AntOSDK.corelib["ts"]) { - return resolve(AntOSDK.corelib["ts"]); - } - try { - const code = await API.VFS.readFileFromZip(`${path}.zip`, "text"); - AntOSDK.corelib["ts"] = ts.createSourceFile(path, code, ts.ScriptTarget.Latest); - return resolve(AntOSDK.corelib["ts"]); - } catch (e) { - return reject(__e(e)); - } - }); - } - - /** - * Compile typescript to javascript - * - * @private - * @param {string[]} files - * @return {*} {Promise} - * @memberof AntOSDK - */ - private compile_ts(files: string[]): Promise { - return new Promise(async (resolve, reject) => { - if (files.length == 0) { - return resolve(undefined); - } - const core_lib = "os://packages/CodePad/libs/corelib.d.ts"; - try { - await this.load_corelib(core_lib); - const arr = await API.VFS.read_files(files); - const libs: string[] = files.map((e) => e) - libs.unshift(core_lib); - const src_files: GenericObject = {}; - src_files[core_lib] = AntOSDK.corelib["ts"]; - for (const i in arr) { - src_files[files[i]] = ts.createSourceFile(files[i], arr[i], ts.ScriptTarget.Latest); - } - let js_code = ""; - const host = { - fileExists: (path: string) => { - return src_files[path] != undefined; - }, - directoryExists: (path: string) => { - return true; - }, - getCurrentDirectory: () => "/", - getDirectories: () => [], - getCanonicalFileName: (path: string) => path, - getNewLine: () => "\n", - getDefaultLibFileName: () => "", - getSourceFile: (path: string) => src_files[path], - readFile: (path: string) => undefined, - useCaseSensitiveFileNames: () => true, - writeFile: (path: string, data: string) => js_code = `${js_code}\n${data}`, - }; - const program = ts.createProgram(libs, { - "target": "es6", - "skipLibCheck": true, - }, host); - const result = program.emit(); - const diagnostics = result.diagnostics.concat((ts.getPreEmitDiagnostics(program))); - if (diagnostics.length > 0) { - diagnostics.forEach(diagnostic => { - if (diagnostic.file) { - let { line, character } = ts.getLineAndCharacterOfPosition(diagnostic.file, diagnostic.start!); - let message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n"); - this.logger().error(`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`); - } else { - this.logger().error(ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n")); - } - }); - return reject(API.throwe(__("Typescript compile error"))); - } - for (const file of files) { - this.logger().info(__("Compiled: {0}", file)); - } - resolve(js_code); - } catch (e) { - return reject(__e(e)); - } - }) - } - - private compile(meta: GenericObject): Promise { - return new Promise(async (resolve, reject) => { - const libs = [ - `${this.basedir()}/libs/terser.min.js`, - ]; - if (!meta.coffees) - meta.coffees = []; - if (meta.coffees.length > 0) { - libs.push(`${this.basedir()}/libs/coffeescript.js`); - } - if (!meta.ts) - meta.ts = []; - if (meta.ts && meta.ts.length > 0) { - libs.push("os://scripts/jszip.min.js"); - libs.push(`${this.basedir()}/libs/typescript.min.js`) - } - try { - await this.import(libs); - const coffee_list = meta.coffees.map( - (v: string) => `${meta.root.trimBy("/")}/${v}` - ); - const ts_list = meta.ts.map( - (v: string) => `${meta.root.trimBy("/")}/${v}` - ); - const results = await Promise.all([ - this.compile_ts(ts_list), - this.compile_coffee(coffee_list) - ]); - - resolve(results.join("\n")); - } catch (e_2) { - return reject(__e(e_2)); - } - }); - } - - /** - * Compile coffeescript to javascript - * - * @private - * @param {GenericObject} meta - * @returns {Promise} - * @memberof AntOSDK - */ - private compile_coffee(list: string[]): Promise { - return new Promise(async (resolve, reject) => { - if (list.length == 0) { - return resolve(""); - } - try { - await this.verify_coffee(list.map((x: string) => x)); - const code = await API.VFS.cat(list, ""); - const jsrc = CoffeeScript.compile(code); - for (const file of list) { - this.logger().info(__("Compiled: {0}", file)); - } - return resolve(jsrc); - } catch (e_1) { - return reject(__e(e_1)); - } - }); - } - /** * Build the project * @@ -372,39 +187,87 @@ namespace OS { private build(meta: GenericObject, debug: boolean): Promise { return new Promise(async (resolve, reject) => { try { + const options = { + root: meta.root, + targets: {} + } + if(!this.sdk) + { + this.sdk = new (OS.API as any).AntOSDKBuilder(this.logger(), ""); + } this.logger().info(__("Building the package", meta.name)); await API.VFS.mkdirAll([`${meta.root}/build`,]); await API.VFS.mkdirAll([`${meta.root}/build/debug`, `${meta.root}/build/release`]); - const src = await this.compile(meta); - let code = await API.VFS.cat(meta.javascripts.map(v => `${meta.root}/${v}`), src); - if (!debug) { - const options = { - toplevel: false, - compress: { - passes: 3, - }, - mangle: true, - output: { - //beautify: true, - }, - }; - const result = Terser.minify(code, options); - if (result.error) { - this.logger().error( - __( - "Unable to minify code: {0}", - result.error - ) - ); - } else { - code = result.code; - } + if(!meta.coffees) + meta.coffees = []; + if(!meta.ts) + meta.ts = []; + options.targets["coffee"] = { + "require": ["coffee"], + "jobs":[ + { + "name": "coffee-compile", + "data": { + "src": meta.coffees, + "dest": "build/debug/coffee-main.js" + } + } + ] + } + + options.targets["ts"] = { + "require": ["ts"], + "jobs":[ + { + "name": "ts-import", + "data": [ + "sdk://core/ts/core.d.ts", + "sdk://core/ts/jquery.d.ts", + "sdk://core/ts/antos.d.ts" + ] + }, + { + "name": "ts-compile", + "data": { + "src": meta.ts, + "dest": "build/debug/ts-main.js" + } + } + ] + } + + options.targets["cat"] = { + "jobs":[ + { + "name": "vfs-cat", + "data": { + "src": [ + "build/debug/ts-main.js", "build/debug/coffee-main.js" + ].concat(meta.javascripts.map(v => `${meta.root}/${v}`)), + "dest": "build/debug/main.js" + } + }, + { + "name": "vfs-rm", + "data": ["build/debug/ts-main.js", "build/debug/coffee-main.js"] + } + ] + } + + options.targets["uglify"] = { + "require": ["terser"], + "jobs":[ + { + "name": "terser-uglify", + "data": ["build/debug/main.js"] + } + ] + } + console.log(options); + await this.sdk.batch(["coffee", "ts", "cat"], options); + if (!debug) { + await this.sdk.batch(["uglify"], options); } - if (code != "") - await `${meta.root}/build/debug/main.js` - .asFileHandle() - .setCache(code) - .write("text/plain"); const txt = await API.VFS.cat(meta.css.map(v => `${meta.root}/${v}`), ""); if (txt != "") await `${meta.root}/build/debug/main.css` @@ -452,6 +315,5 @@ namespace OS { }); } } - AntOSDK.corelib = {}; App.extensions.AntOSDK = AntOSDK; } diff --git a/src/packages/CodePad/libs/coffeescript.js b/src/packages/CodePad/libs/coffeescript.js deleted file mode 100644 index d348a2d..0000000 --- a/src/packages/CodePad/libs/coffeescript.js +++ /dev/null @@ -1,8 +0,0 @@ -/** - * CoffeeScript Compiler v2.5.1 - * https://coffeescript.org - * - * Copyright 2011-2020, Jeremy Ashkenas - * Released under the MIT License - */ -function _get(target,property,receiver){return _get="undefined"!=typeof Reflect&&Reflect.get?Reflect.get:function(target,property,receiver){var base=_superPropBase(target,property);if(base){var desc=Object.getOwnPropertyDescriptor(base,property);return desc.get?desc.get.call(receiver):desc.value}},_get(target,property,receiver||target)}function _superPropBase(object,property){for(;!Object.prototype.hasOwnProperty.call(object,property)&&(object=_getPrototypeOf(object),null!==object););return object}function _possibleConstructorReturn(self,call){return call&&("object"===_typeof(call)||"function"==typeof call)?call:_assertThisInitialized(self)}function _assertThisInitialized(self){if(void 0===self)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return self}function _getPrototypeOf(o){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function(o){return o.__proto__||Object.getPrototypeOf(o)},_getPrototypeOf(o)}function _inherits(subClass,superClass){if("function"!=typeof superClass&&null!==superClass)throw new TypeError("Super expression must either be null or a function");subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor:{value:subClass,writable:!0,configurable:!0}}),superClass&&_setPrototypeOf(subClass,superClass)}function _setPrototypeOf(o,p){return _setPrototypeOf=Object.setPrototypeOf||function(o,p){return o.__proto__=p,o},_setPrototypeOf(o,p)}function _toArray(arr){return _arrayWithHoles(arr)||_iterableToArray(arr)||_nonIterableRest()}function _slicedToArray(arr,i){return _arrayWithHoles(arr)||_iterableToArrayLimit(arr,i)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function _iterableToArrayLimit(arr,i){if(Symbol.iterator in Object(arr)||"[object Arguments]"===Object.prototype.toString.call(arr)){var _arr=[],_n=!0,_d=!1,_e=void 0;try{for(var _i=arr[Symbol.iterator](),_s;!(_n=(_s=_i.next()).done)&&(_arr.push(_s.value),!(i&&_arr.length===i));_n=!0);}catch(err){_d=!0,_e=err}finally{try{_n||null==_i["return"]||_i["return"]()}finally{if(_d)throw _e}}return _arr}}function _arrayWithHoles(arr){if(Array.isArray(arr))return arr}function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}function _defineProperties(target,props){for(var i=0,descriptor;i=6"},directories:{lib:"./lib/coffeescript"},main:"./lib/coffeescript/index",module:"./lib/coffeescript-browser-compiler-modern/coffeescript.js",browser:"./lib/coffeescript-browser-compiler-legacy/coffeescript.js",bin:{coffee:"./bin/coffee",cake:"./bin/cake"},files:["bin","lib","register.js","repl.js"],scripts:{test:"node ./bin/cake test","test-harmony":"node --harmony ./bin/cake test"},homepage:"https://coffeescript.org",bugs:"https://github.com/jashkenas/coffeescript/issues",repository:{type:"git",url:"git://github.com/jashkenas/coffeescript.git"},devDependencies:{"@babel/core":"^7.7.7","@babel/preset-env":"^7.7.7","babel-preset-minify":"^0.5.1",codemirror:"^5.50.0",docco:"~0.8.0","highlight.js":"~9.17.1",jison:"^0.4.18","markdown-it":"~10.0.0",underscore:"~1.9.1",webpack:"~4.41.5"},dependencies:{}}}(),require["./helpers"]=function(){var exports={};return function(){var indexOf=[].indexOf,UNICODE_CODE_POINT_ESCAPE,attachCommentsToNode,buildLocationData,buildLocationHash,buildTokenDataDictionary,extend,_flatten,isBoolean,isNumber,isString,ref,repeat,syntaxErrorToString,unicodeCodePointToUnicodeEscapes;exports.starts=function(string,literal,start){return literal===string.substr(start,literal.length)},exports.ends=function(string,literal,back){var len;return len=literal.length,literal===string.substr(string.length-len-(back||0),len)},exports.repeat=repeat=function(str,n){var res;for(res="";0>>=1,str+=str;return res},exports.compact=function(array){var i,item,len1,results;for(results=[],i=0,len1=array.length;icodePoint)?toUnicodeEscape(codePoint):(high=_Mathfloor((codePoint-65536)/1024)+55296,low=(codePoint-65536)%1024+56320,"".concat(toUnicodeEscape(high)).concat(toUnicodeEscape(low)))},exports.replaceUnicodeCodePointEscapes=function(str){var _ref2=1indexOf.call(flags,"u"),str.replace(UNICODE_CODE_POINT_ESCAPE,function(match,escapedBackslash,codePointHex,offset){var codePointDecimal;return escapedBackslash?escapedBackslash:(codePointDecimal=parseInt(codePointHex,16),1114111levels)return opts.returnOnNegativeLevel?void 0:action.call(this,token,i);i+=1}return i-1}},{key:"removeLeadingNewlines",value:function removeLeadingNewlines(){var i,k,l,leadingNewlineToken,len,len1,ref,ref1,tag;for(ref=this.tokens,i=k=0,len=ref.length;k=i&&":"===this.tokens[i+1][0]?(startToken[0]="[",token[0]="]"):token[0]="INDEX_END"},this.scanTokens(function(token,i){return"INDEX_START"===token[0]&&(startToken=token,this.detectEnd(i+1,condition,action)),1})}},{key:"indexOfTag",value:function indexOfTag(i){var fuzz,j,k,ref,ref1;fuzz=0;for(var _len=arguments.length,pattern=Array(1<_len?_len-1:0),_key=1;_key<_len;_key++)pattern[_key-1]=arguments[_key];for(j=k=0,ref=pattern.length;0<=ref?kref;j=0<=ref?++k:--k)if(null!=pattern[j]&&("string"==typeof pattern[j]&&(pattern[j]=[pattern[j]]),ref1=this.tag(i+j+fuzz),0>indexOf.call(pattern[j],ref1)))return-1;return i+j+fuzz-1}},{key:"looksObjectish",value:function looksObjectish(j){var end,index;return-1!==this.indexOfTag(j,"@",null,":")||-1!==this.indexOfTag(j,null,":")||(index=this.indexOfTag(j,EXPRESSION_START),!!(-1!==index&&(end=null,this.detectEnd(index+1,function(token){var ref;return ref=token[0],0<=indexOf.call(EXPRESSION_END,ref)},function(token,i){return end=i}),":"===this.tag(end+1))))}},{key:"findTagsBackwards",value:function findTagsBackwards(i,tags){var backStack,ref,ref1,ref2,ref3,ref4,ref5;for(backStack=[];0<=i&&(backStack.length||(ref2=this.tag(i),0>indexOf.call(tags,ref2))&&((ref3=this.tag(i),0>indexOf.call(EXPRESSION_START,ref3))||this.tokens[i].generated)&&(ref4=this.tag(i),0>indexOf.call(LINEBREAKS,ref4)));)(ref=this.tag(i),0<=indexOf.call(EXPRESSION_END,ref))&&backStack.push(this.tag(i)),(ref1=this.tag(i),0<=indexOf.call(EXPRESSION_START,ref1))&&backStack.length&&backStack.pop(),i-=1;return ref5=this.tag(i),0<=indexOf.call(tags,ref5)}},{key:"addImplicitBracesAndParens",value:function addImplicitBracesAndParens(){var stack,start;return stack=[],start=null,this.scanTokens(function(token,i,tokens){var _this=this,_token=_slicedToArray(token,1),endImplicitCall,endImplicitObject,forward,implicitObjectContinues,implicitObjectIndent,inControlFlow,inImplicit,inImplicitCall,inImplicitControl,inImplicitObject,isImplicit,isImplicitCall,isImplicitObject,k,newLine,nextTag,nextToken,offset,preContinuationLineIndent,preObjectToken,prevTag,prevToken,ref,ref1,ref2,ref3,s,sameLine,stackIdx,stackItem,stackTag,stackTop,startIdx,startImplicitCall,startImplicitObject,startIndex,startTag,startsLine,tag;tag=_token[0];var _prevToken=prevToken=0"!==prevTag&&"->"!==prevTag&&"["!==prevTag&&"("!==prevTag&&","!==prevTag&&"{"!==prevTag&&"ELSE"!==prevTag&&"="!==prevTag)for(;inImplicitCall()||inImplicitObject()&&":"!==prevTag;)inImplicitCall()?endImplicitCall():endImplicitObject();return inImplicitControl()&&stack.pop(),stack.push([tag,i]),forward(1)}if(0<=indexOf.call(EXPRESSION_START,tag))return stack.push([tag,i]),forward(1);if(0<=indexOf.call(EXPRESSION_END,tag)){for(;inImplicit();)inImplicitCall()?endImplicitCall():inImplicitObject()?endImplicitObject():stack.pop();start=stack.pop()}if(inControlFlow=function(){var controlFlow,isFunc,seenFor,tagCurrentLine;return(seenFor=_this.findTagsBackwards(i,["FOR"])&&_this.findTagsBackwards(i,["FORIN","FOROF","FORFROM"]),controlFlow=seenFor||_this.findTagsBackwards(i,["WHILE","UNTIL","LOOP","LEADING_WHEN"]),!!controlFlow)&&(isFunc=!1,tagCurrentLine=token[2].first_line,_this.detectEnd(i,function(token){var ref;return ref=token[0],0<=indexOf.call(LINEBREAKS,ref)},function(token,i){var _ref4=tokens[i-1]||[],_ref5=_slicedToArray(_ref4,3),first_line;return prevTag=_ref5[0],first_line=_ref5[2].first_line,isFunc=tagCurrentLine===first_line&&("->"===prevTag||"=>"===prevTag)},{returnOnNegativeLevel:!0}),isFunc)},(0<=indexOf.call(IMPLICIT_FUNC,tag)&&token.spaced||"?"===tag&&0indexOf.call(EXPRESSION_END,ref1)):var _start=start,_start2=_slicedToArray(_start,2);return startTag=_start2[0],startIndex=_start2[1],"["===startTag&&0=s||(ref1=this.tag(s-1),0<=indexOf.call(LINEBREAKS,ref1))||tokens[s-1].newLine,stackTop()){var _stackTop=stackTop(),_stackTop2=_slicedToArray(_stackTop,2);if(stackTag=_stackTop2[0],stackIdx=_stackTop2[1],("{"===stackTag||"INDENT"===stackTag&&"{"===this.tag(stackIdx-1))&&(startsLine||","===this.tag(s-1)||"{"===this.tag(s-1))&&(ref2=this.tag(s-1),0>indexOf.call(UNFINISHED,ref2)))return forward(1)}return preObjectToken=1preContinuationLineIndent;)endImplicitObject();if(newLine="OUTDENT"===prevTag||prevToken.newLine,0<=indexOf.call(IMPLICIT_END,tag)||0<=indexOf.call(CALL_CLOSERS,tag)&&newLine||(".."===tag||"..."===tag)&&this.findTagsBackwards(i,["INDEX_START"]))for(;inImplicit();){var _stackTop3=stackTop(),_stackTop4=_slicedToArray(_stackTop3,3);stackTag=_stackTop4[0],stackIdx=_stackTop4[1];var _stackTop4$=_stackTop4[2];if(sameLine=_stackTop4$.sameLine,startsLine=_stackTop4$.startsLine,inImplicitCall()&&","!==prevTag||","===prevTag&&"TERMINATOR"===tag&&null==nextTag)endImplicitCall();else if(inImplicitObject()&&sameLine&&"TERMINATOR"!==tag&&":"!==prevTag&&!(("POST_IF"===tag||"FOR"===tag||"WHILE"===tag||"UNTIL"===tag)&&startsLine&&implicitObjectContinues(i+1)))endImplicitObject();else if(inImplicitObject()&&"TERMINATOR"===tag&&","!==prevTag&&!(startsLine&&this.looksObjectish(i+1)))endImplicitObject();else if(inImplicitControl()&&"CLASS"===tokens[stackTop()[1]][0]&&"TERMINATOR"===tag)stack.pop();else break}if(","===tag&&!this.looksObjectish(i+1)&&inImplicitObject()&&"FOROF"!==(ref3=this.tag(i+2))&&"FORIN"!==ref3&&("TERMINATOR"!==nextTag||!this.looksObjectish(i+2)))for(offset="OUTDENT"===nextTag?1:0;inImplicitObject();)endImplicitObject(i+offset);return forward(1)})}},{key:"enforceValidJSXAttributes",value:function enforceValidJSXAttributes(){return this.scanTokens(function(token,i,tokens){var next,ref;return token.jsxColon&&(next=tokens[i+1],"STRING_START"!==(ref=next[0])&&"STRING"!==ref&&"("!==ref&&throwSyntaxError("expected wrapped or quoted JSX attribute",next[2])),1})}},{key:"rescueStowawayComments",value:function rescueStowawayComments(){var dontShiftForward,insertPlaceholder,shiftCommentsBackward,shiftCommentsForward;return insertPlaceholder=function(token,j,tokens,method){return"TERMINATOR"!==tokens[j][0]&&tokens[method](generate("TERMINATOR","\n",tokens[j])),tokens[method](generate("JS","",tokens[j],token))},dontShiftForward=function(i,tokens){var j,ref;for(j=i+1;j!==tokens.length&&(ref=tokens[j][0],0<=indexOf.call(DISCARDED,ref));){if("INTERPOLATION_END"===tokens[j][0])return!0;j++}return!1},shiftCommentsForward=function(token,i,tokens){var comment,j,k,len,ref,ref1,ref2;for(j=i;j!==tokens.length&&(ref=tokens[j][0],0<=indexOf.call(DISCARDED,ref));)j++;if(!(j===tokens.length||(ref1=tokens[j][0],0<=indexOf.call(DISCARDED,ref1)))){for(ref2=token.comments,k=0,len=ref2.length;kindentSize)&&(!indented||comment.indented)&&!!(comment.locationData.range[0]afterPosition)},first){for(lastMatching=null,ref=_this2.allComments,k=ref.length-1;0<=k;k+=-1)if(comment=ref[k],matches(comment))lastMatching=comment;else if(lastMatching)return lastMatching;return lastMatching}for(ref1=_this2.allComments,l=ref1.length-1;0<=l;l+=-1)if(comment=ref1[l],matches(comment))return comment;return null},this.scanTokens(function(token,i,tokens){var isIndent,nextToken,nextTokenIndex,precedingComment,prevLocationData,prevToken,ref,ref1,ref2,useNextToken;if("INDENT"!==(ref=token[0])&&"OUTDENT"!==ref&&(!token.generated||"CALL_END"!==token[0]||null!=(ref1=token.data)&&ref1.closingTagNameToken)&&(!token.generated||"}"!==token[0]))return 1;if(isIndent="INDENT"===token[0],prevToken=null==(ref2=token.prevToken)?tokens[i-1]:ref2,prevLocationData=prevToken[2],useNextToken=token.explicit||token.generated,useNextToken)for(nextToken=token,nextTokenIndex=i;(nextToken.explicit||nextToken.generated)&&nextTokenIndex!==tokens.length-1;)nextToken=tokens[nextTokenIndex++];return(precedingComment=findPrecedingComment(useNextToken?nextToken:token,{afterPosition:prevLocationData.range[0],indentSize:token.indentSize,first:isIndent,indented:useNextToken}),isIndent&&(null==precedingComment||!precedingComment.newLine))?1:token.generated&&"CALL_END"===token[0]&&(null==precedingComment?void 0:precedingComment.indented)?1:(null!=precedingComment&&(prevLocationData=precedingComment.locationData),token[2]={first_line:null==precedingComment?prevLocationData.last_line:prevLocationData.first_line,first_column:null==precedingComment?prevLocationData.last_column:isIndent?0:prevLocationData.first_column,last_line:prevLocationData.last_line,last_column:prevLocationData.last_column,last_line_exclusive:prevLocationData.last_line_exclusive,last_column_exclusive:prevLocationData.last_column_exclusive,range:isIndent&&null!=precedingComment?[prevLocationData.range[0]-precedingComment.indentSize,prevLocationData.range[1]]:prevLocationData.range},1)})}},{key:"normalizeLines",value:function normalizeLines(){var _this3=this,action,closeElseTag,condition,ifThens,indent,leading_if_then,leading_switch_when,outdent,starter;return starter=indent=outdent=null,leading_switch_when=null,leading_if_then=null,ifThens=[],condition=function(token,i){var ref,ref1,ref2,ref3;return";"!==token[1]&&(ref=token[0],0<=indexOf.call(SINGLE_CLOSERS,ref))&&!("TERMINATOR"===token[0]&&(ref1=this.tag(i+1),0<=indexOf.call(EXPRESSION_CLOSE,ref1)))&&!("ELSE"===token[0]&&("THEN"!==starter||leading_if_then||leading_switch_when))&&("CATCH"!==(ref2=token[0])&&"FINALLY"!==ref2||"->"!==starter&&"=>"!==starter)||(ref3=token[0],0<=indexOf.call(CALL_CLOSERS,ref3))&&(this.tokens[i-1].newLine||"OUTDENT"===this.tokens[i-1][0])},action=function(token,i){return"ELSE"===token[0]&&"THEN"===starter&&ifThens.pop(),this.tokens.splice(","===this.tag(i-1)?i-1:i,0,outdent)},closeElseTag=function(tokens,i){var lastThen,outdentElse,tlen;if(tlen=ifThens.length,!(0"===tag||"=>"===tag)&&this.findTagsBackwards(i,["IF","WHILE","FOR","UNTIL","SWITCH","WHEN","LEADING_WHEN","[","INDEX_START"])&&!this.findTagsBackwards(i,["THEN","..","..."]),"TERMINATOR"===tag){if("ELSE"===this.tag(i+1)&&"OUTDENT"!==this.tag(i-1))return tokens.splice.apply(tokens,[i,1].concat(_toConsumableArray(this.indentation()))),1;if(ref=this.tag(i+1),0<=indexOf.call(EXPRESSION_CLOSE,ref))return";"===token[1]&&"OUTDENT"===this.tag(i+1)&&(tokens[i+1].prevToken=token,moveComments(token,tokens[i+1])),tokens.splice(i,1),0}if("CATCH"===tag)for(j=k=1;2>=k;j=++k)if("OUTDENT"===(ref1=this.tag(i+j))||"TERMINATOR"===ref1||"FINALLY"===ref1)return tokens.splice.apply(tokens,[i+j,0].concat(_toConsumableArray(this.indentation()))),2+j;if(("->"===tag||"=>"===tag)&&(","===(ref2=this.tag(i+1))||"]"===ref2||"."===this.tag(i+1)&&token.newLine)){var _this$indentation=this.indentation(tokens[i]),_this$indentation2=_slicedToArray(_this$indentation,2);return indent=_this$indentation2[0],outdent=_this$indentation2[1],tokens.splice(i+1,0,indent,outdent),1}if(0<=indexOf.call(SINGLE_LINERS,tag)&&"INDENT"!==this.tag(i+1)&&("ELSE"!==tag||"IF"!==this.tag(i+1))&&!conditionTag){starter=tag;var _this$indentation3=this.indentation(tokens[i]),_this$indentation4=_slicedToArray(_this$indentation3,2);return indent=_this$indentation4[0],outdent=_this$indentation4[1],"THEN"===starter&&(indent.fromThen=!0),"THEN"===tag&&(leading_switch_when=this.findTagsBackwards(i,["LEADING_WHEN"])&&"IF"===this.tag(i+1),leading_if_then=this.findTagsBackwards(i,["IF"])&&"IF"===this.tag(i+1)),"THEN"===tag&&this.findTagsBackwards(i,["IF"])&&ifThens.push(i),"ELSE"===tag&&"OUTDENT"!==this.tag(i-1)&&(i=closeElseTag(tokens,i)),tokens.splice(i+1,0,indent),this.detectEnd(i+2,condition,action),"THEN"===tag&&tokens.splice(i,1),1}return 1})}},{key:"tagPostfixConditionals",value:function tagPostfixConditionals(){var action,condition,original;return original=null,condition=function(token,i){var _token3=_slicedToArray(token,1),prevTag,tag;tag=_token3[0];var _this$tokens=_slicedToArray(this.tokens[i-1],1);return prevTag=_this$tokens[0],"TERMINATOR"===tag||"INDENT"===tag&&0>indexOf.call(SINGLE_LINERS,prevTag)},action=function(token){if("INDENT"!==token[0]||token.generated&&!token.fromThen)return original[0]="POST_"+original[0]},this.scanTokens(function(token,i){return"IF"===token[0]?(original=token,this.detectEnd(i+1,condition,action),1):1})}},{key:"exposeTokenDataToGrammar",value:function exposeTokenDataToGrammar(){return this.scanTokens(function(token){var key,ref,ref1,val;if(token.generated||token.data&&0!==Object.keys(token.data).length){for(key in token[1]=new String(token[1]),ref1=null==(ref=token.data)?{}:ref,ref1)hasProp.call(ref1,key)&&(val=ref1[key],token[1][key]=val);token.generated&&(token[1].generated=!0)}return 1})}},{key:"indentation",value:function indentation(origin){var indent,outdent;return indent=["INDENT",2],outdent=["OUTDENT",2],origin?(indent.generated=outdent.generated=!0,indent.origin=outdent.origin=origin):indent.explicit=outdent.explicit=!0,[indent,outdent]}},{key:"tag",value:function tag(i){var ref;return null==(ref=this.tokens[i])?void 0:ref[0]}}]),Rewriter}();return Rewriter.prototype.generate=generate,Rewriter}.call(this),BALANCED_PAIRS=[["(",")"],["[","]"],["{","}"],["INDENT","OUTDENT"],["CALL_START","CALL_END"],["PARAM_START","PARAM_END"],["INDEX_START","INDEX_END"],["STRING_START","STRING_END"],["INTERPOLATION_START","INTERPOLATION_END"],["REGEX_START","REGEX_END"]],exports.INVERSES=INVERSES={},EXPRESSION_START=[],EXPRESSION_END=[],(k=0,len=BALANCED_PAIRS.length);k","=>","[","(","{","--","++"],IMPLICIT_UNSPACED_CALL=["+","-"],IMPLICIT_END=["POST_IF","FOR","WHILE","UNTIL","WHEN","BY","LOOP","TERMINATOR"],SINGLE_LINERS=["ELSE","->","=>","TRY","FINALLY","THEN"],SINGLE_CLOSERS=["TERMINATOR","CATCH","FINALLY","ELSE","OUTDENT","LEADING_WHEN"],LINEBREAKS=["TERMINATOR","INDENT","OUTDENT"],CALL_CLOSERS=[".","?.","::","?::"],CONTROL_IN_IMPLICIT=["IF","TRY","FINALLY","CATCH","CLASS","SWITCH"],DISCARDED=["(",")","[","]","{","}",":",".","..","...",",","=","++","--","?","AS","AWAIT","CALL_START","CALL_END","DEFAULT","DO","DO_IIFE","ELSE","EXTENDS","EXPORT","FORIN","FOROF","FORFROM","IMPORT","INDENT","INDEX_SOAK","INTERPOLATION_START","INTERPOLATION_END","LEADING_WHEN","OUTDENT","PARAM_END","REGEX_START","REGEX_END","RETURN","STRING_END","THROW","UNARY","YIELD"].concat(IMPLICIT_UNSPACED_CALL.concat(IMPLICIT_END.concat(CALL_CLOSERS.concat(CONTROL_IN_IMPLICIT)))),exports.UNFINISHED=UNFINISHED=["\\",".","?.","?::","UNARY","DO","DO_IIFE","MATH","UNARY_MATH","+","-","**","SHIFT","RELATION","COMPARE","&","^","|","&&","||","BIN?","EXTENDS"]}.call(this),{exports:exports}.exports}(),require["./lexer"]=function(){var exports={};return function(){var indexOf=[].indexOf,slice=[].slice,_require2=require("./rewriter"),BOM,BOOL,CALLABLE,CODE,COFFEE_ALIASES,COFFEE_ALIAS_MAP,COFFEE_KEYWORDS,COMMENT,COMPARABLE_LEFT_SIDE,COMPARE,COMPOUND_ASSIGN,HERECOMMENT_ILLEGAL,HEREDOC_DOUBLE,HEREDOC_INDENT,HEREDOC_SINGLE,HEREGEX,HEREGEX_COMMENT,HERE_JSTOKEN,IDENTIFIER,INDENTABLE_CLOSERS,INDEXABLE,INSIDE_JSX,INVERSES,JSTOKEN,JSX_ATTRIBUTE,JSX_FRAGMENT_IDENTIFIER,JSX_IDENTIFIER,JSX_IDENTIFIER_PART,JSX_INTERPOLATION,JS_KEYWORDS,LINE_BREAK,LINE_CONTINUER,Lexer,MATH,MULTI_DENT,NOT_REGEX,NUMBER,OPERATOR,POSSIBLY_DIVISION,REGEX,REGEX_FLAGS,REGEX_ILLEGAL,REGEX_INVALID_ESCAPE,RELATION,RESERVED,Rewriter,SHIFT,STRICT_PROSCRIBED,STRING_DOUBLE,STRING_INVALID_ESCAPE,STRING_SINGLE,STRING_START,TRAILING_SPACES,UNARY,UNARY_MATH,UNFINISHED,VALID_FLAGS,WHITESPACE,addTokenData,attachCommentsToNode,compact,count,flatten,invertLiterate,isForFrom,isUnassignable,key,locationDataToString,merge,parseNumber,repeat,replaceUnicodeCodePointEscapes,starts,throwSyntaxError;Rewriter=_require2.Rewriter,INVERSES=_require2.INVERSES,UNFINISHED=_require2.UNFINISHED;var _require3=require("./helpers");count=_require3.count,starts=_require3.starts,compact=_require3.compact,repeat=_require3.repeat,invertLiterate=_require3.invertLiterate,merge=_require3.merge,attachCommentsToNode=_require3.attachCommentsToNode,locationDataToString=_require3.locationDataToString,throwSyntaxError=_require3.throwSyntaxError,replaceUnicodeCodePointEscapes=_require3.replaceUnicodeCodePointEscapes,flatten=_require3.flatten,parseNumber=_require3.parseNumber,exports.Lexer=Lexer=function(){"use strict";function Lexer(){_classCallCheck(this,Lexer),this.error=this.error.bind(this)}return _createClass(Lexer,[{key:"tokenize",value:function tokenize(code){var opts=1this.indent,outdented:!noIndent&&indentSizethis.indent){if(noNewlines)return backslash||(this.continuationLineAdditionalIndent=size-this.indent),this.continuationLineAdditionalIndent&&(prev.continuationLineIndent=this.indent+this.continuationLineAdditionalIndent),this.suppressNewlines(),indent.length;if(!this.tokens.length)return this.baseIndent=this.indent=size,this.indentLiteral=newIndentLiteral,indent.length;diff=size-this.indent+this.outdebt,this.token("INDENT",diff,{offset:offset+indent.length-size,length:size}),this.indents.push(diff),this.ends.push({tag:"OUTDENT"}),this.outdebt=this.continuationLineAdditionalIndent=0,this.indent=size,this.indentLiteral=newIndentLiteral}else sizeindexOf.call(COMPARABLE_LEFT_SIDE,ref)))))return 0;var _match8=match,_match9=_slicedToArray(_match8,2);if(input=_match9[0],id=_match9[1],fullId=id,0<=indexOf.call(id,".")){var _id$split=id.split("."),_id$split2=_toArray(_id$split);id=_id$split2[0],properties=_id$split2.slice(1)}else properties=[];for(tagToken=this.token("JSX_TAG",id,{length:id.length+1,data:{openingBracketToken:this.makeToken("<","<"),tagNameToken:this.makeToken("IDENTIFIER",id,{offset:1})}}),offset=id.length+1,(j=0,len=properties.length);j",origin:tagToken,name:id,properties:properties}),this.jsxDepth++,fullId.length+1}if(jsxTag=this.atJSXTag()){if("/>"===this.chunk.slice(0,2))return this.pair("/>"),this.token("]","]",{length:2,generated:!0}),this.token("CALL_END",")",{length:2,generated:!0,data:{selfClosingSlashToken:this.makeToken("/","/"),closingBracketToken:this.makeToken(">",">",{offset:1})}}),this.jsxDepth--,2;if("{"===firstChar)return":"===prevChar?(token=this.token("(","{"),this.jsxObjAttribute[this.jsxDepth]=!1,addTokenData(this.tokens[this.tokens.length-3],{jsx:!0})):(token=this.token("{","{"),this.jsxObjAttribute[this.jsxDepth]=!0),this.ends.push({tag:"}",origin:token}),1;if(">"===firstChar){var _this$pair=this.pair("/>");openingTagToken=_this$pair.origin,this.token("]","]",{generated:!0,data:{closingBracketToken:this.makeToken(">",">")}}),this.token(",","JSX_COMMA",{generated:!0});var _this$matchWithInterp2=this.matchWithInterpolations(INSIDE_JSX,">",""})}),match=JSX_IDENTIFIER.exec(this.chunk.slice(end))||JSX_FRAGMENT_IDENTIFIER.exec(this.chunk.slice(end)),match&&match[1]==="".concat(jsxTag.name).concat(function(){var k,len1,ref1,results;for(ref1=jsxTag.properties,results=[],(k=0,len1=ref1.length);k"!==this.chunk[afterTag]&&this.error("missing closing > after tag name",{offset:afterTag,length:1}),endToken=this.token("CALL_END",")",{offset:end-2,length:fullTagName.length+3,generated:!0,data:{closingTagOpeningBracketToken:this.makeToken("<","<",{offset:end-2}),closingTagSlashToken:this.makeToken("/","/",{offset:end-1}),closingTagNameToken:this.makeToken("IDENTIFIER",fullTagName,{offset:end}),closingTagClosingBracketToken:this.makeToken(">",">",{offset:end+fullTagName.length})}}),addTokenData(openingTagToken,endToken.data),this.jsxDepth--,afterTag+1}return 0}return this.atJSXTag(1)?"}"===firstChar?(this.pair(firstChar),this.jsxObjAttribute[this.jsxDepth]?(this.token("}","}"),this.jsxObjAttribute[this.jsxDepth]=!1):this.token(")","}"),this.token(",",",",{generated:!0}),1):0:0}},{key:"atJSXTag",value:function atJSXTag(){var depth=0"===(null==last?void 0:last.tag)&&last}},{key:"literalToken",value:function literalToken(){var match,message,origin,prev,ref,ref1,ref2,ref3,ref4,ref5,skipToken,tag,token,value;if(match=OPERATOR.exec(this.chunk)){var _match12=match,_match13=_slicedToArray(_match12,1);value=_match13[0],CODE.test(value)&&this.tagParameters()}else value=this.chunk.charAt(0);if(tag=value,prev=this.prev(),prev&&0<=indexOf.call(["="].concat(_toConsumableArray(COMPOUND_ASSIGN)),value)&&(skipToken=!1,"="!==value||"||"!==(ref=prev[1])&&"&&"!==ref||prev.spaced||(prev[0]="COMPOUND_ASSIGN",prev[1]+="=",(null==(ref1=prev.data)?void 0:ref1.original)&&(prev.data.original+="="),prev[2].range=[prev[2].range[0],prev[2].range[1]+1],prev[2].last_column+=1,prev[2].last_column_exclusive+=1,prev=this.tokens[this.tokens.length-2],skipToken=!0),prev&&"PROPERTY"!==prev[0]&&(origin=null==(ref2=prev.origin)?prev:ref2,message=isUnassignable(prev[1],origin[1]),message&&this.error(message,origin[2])),skipToken))return value.length;if("("===value&&"IMPORT"===(null==prev?void 0:prev[0])&&(prev[0]="DYNAMIC_IMPORT"),"{"===value&&this.seenImport?this.importSpecifierList=!0:this.importSpecifierList&&"}"===value?this.importSpecifierList=!1:"{"===value&&"EXPORT"===(null==prev?void 0:prev[0])?this.exportSpecifierList=!0:this.exportSpecifierList&&"}"===value&&(this.exportSpecifierList=!1),";"===value)(ref3=null==prev?void 0:prev[0],0<=indexOf.call(["="].concat(_toConsumableArray(UNFINISHED)),ref3))&&this.error("unexpected ;"),this.seenFor=this.seenImport=this.seenExport=!1,tag="TERMINATOR";else if("*"===value&&"EXPORT"===(null==prev?void 0:prev[0]))tag="EXPORT_ALL";else if(0<=indexOf.call(MATH,value))tag="MATH";else if(0<=indexOf.call(COMPARE,value))tag="COMPARE";else if(0<=indexOf.call(COMPOUND_ASSIGN,value))tag="COMPOUND_ASSIGN";else if(0<=indexOf.call(UNARY,value))tag="UNARY";else if(0<=indexOf.call(UNARY_MATH,value))tag="UNARY_MATH";else if(0<=indexOf.call(SHIFT,value))tag="SHIFT";else if("?"===value&&(null==prev?void 0:prev.spaced))tag="BIN?";else if(prev)if("("===value&&!prev.spaced&&(ref4=prev[0],0<=indexOf.call(CALLABLE,ref4)))"?"===prev[0]&&(prev[0]="FUNC_EXIST"),tag="CALL_START";else if("["===value&&((ref5=prev[0],0<=indexOf.call(INDEXABLE,ref5))&&!prev.spaced||"::"===prev[0]))switch(tag="INDEX_START",prev[0]){case"?":prev[0]="INDEX_SOAK";}return token=this.makeToken(tag,value),"("===value||"{"===value||"["===value?this.ends.push({tag:INVERSES[value],origin:token}):")"===value||"}"===value||"]"===value?this.pair(value):void 0,(this.tokens.push(this.makeToken(tag,value)),value.length)}},{key:"tagParameters",value:function tagParameters(){var i,paramEndToken,stack,tok,tokens;if(")"!==this.tag())return this.tagDoIife();for(stack=[],tokens=this.tokens,i=tokens.length,paramEndToken=tokens[--i],paramEndToken[0]="PARAM_END";tok=tokens[--i];)switch(tok[0]){case")":stack.push(tok);break;case"(":case"CALL_START":if(stack.length)stack.pop();else return"("===tok[0]?(tok[0]="PARAM_START",this.tagDoIife(i-1)):(paramEndToken[0]="CALL_END",this);}return this}},{key:"tagDoIife",value:function tagDoIife(tokenIndex){var tok;return(tok=this.tokens[null==tokenIndex?this.tokens.length-1:tokenIndex],"DO"!==(null==tok?void 0:tok[0]))?this:(tok[0]="DO_IIFE",this)}},{key:"closeIndentation",value:function closeIndentation(){return this.outdentToken({moveOut:this.indent,indentSize:0})}},{key:"matchWithInterpolations",value:function matchWithInterpolations(regex,delimiter){var closingDelimiter=2=this.chunk.length?this.chunk:this.chunk.slice(0,+(offset-1)+1||9e9),lineCount=count(string,"\n"),column=this.chunkColumn,0previousLinesCompensation&&(previousLinesCompensation=0),columnCompensation=this.getLocationDataCompensation(this.chunkOffset+offset+previousLinesCompensation-column,this.chunkOffset+offset+previousLinesCompensation)}else column+=string.length,columnCompensation=compensation;return[this.chunkLine+lineCount,column+columnCompensation,this.chunkOffset+offset+compensation]}},{key:"makeLocationData",value:function makeLocationData(_ref16){var offsetInChunk=_ref16.offsetInChunk,length=_ref16.length,endOffset,lastCharacter,locationData;locationData={range:[]};var _this$getLineAndColum5=this.getLineAndColumnFromChunk(offsetInChunk),_this$getLineAndColum6=_slicedToArray(_this$getLineAndColum5,3);locationData.first_line=_this$getLineAndColum6[0],locationData.first_column=_this$getLineAndColum6[1],locationData.range[0]=_this$getLineAndColum6[2],lastCharacter=0indexOf.call([].concat(_toConsumableArray(JS_KEYWORDS),_toConsumableArray(COFFEE_KEYWORDS)),name):return"keyword '".concat(displayName,"' can't be assigned");case 0>indexOf.call(STRICT_PROSCRIBED,name):return"'".concat(displayName,"' can't be assigned");case 0>indexOf.call(RESERVED,name):return"reserved word '".concat(displayName,"' can't be assigned");default:return!1;}},exports.isUnassignable=isUnassignable,isForFrom=function(prev){var ref;return"IDENTIFIER"===prev[0]||"FOR"!==prev[0]&&"{"!==(ref=prev[1])&&"["!==ref&&","!==ref&&":"!==ref},addTokenData=function(token,data){return Object.assign(null==token.data?token.data={}:token.data,data)},JS_KEYWORDS=["true","false","null","this","new","delete","typeof","in","instanceof","return","throw","break","continue","debugger","yield","await","if","else","switch","for","while","do","try","catch","finally","class","extends","super","import","export","default"],COFFEE_KEYWORDS=["undefined","Infinity","NaN","then","unless","until","loop","of","by","when"],COFFEE_ALIAS_MAP={and:"&&",or:"||",is:"==",isnt:"!=",not:"!",yes:"true",no:"false",on:"true",off:"false"},COFFEE_ALIASES=function(){var results;for(key in results=[],COFFEE_ALIAS_MAP)results.push(key);return results}(),COFFEE_KEYWORDS=COFFEE_KEYWORDS.concat(COFFEE_ALIASES),RESERVED=["case","function","var","void","with","const","let","enum","native","implements","interface","package","private","protected","public","static"],STRICT_PROSCRIBED=["arguments","eval"],exports.JS_FORBIDDEN=JS_KEYWORDS.concat(RESERVED).concat(STRICT_PROSCRIBED),BOM=65279,IDENTIFIER=/^(?!\d)((?:(?!\s)[$\w\x7f-\uffff])+)([^\n\S]*:(?!:))?/,JSX_IDENTIFIER_PART=/(?:(?!\s)[\-$\w\x7f-\uffff])+/.source,JSX_IDENTIFIER=RegExp("^(?![\\d<])(".concat(JSX_IDENTIFIER_PART,"(?:\\s*:\\s*").concat(JSX_IDENTIFIER_PART,"|(?:\\s*\\.\\s*").concat(JSX_IDENTIFIER_PART,")+)?)")),JSX_FRAGMENT_IDENTIFIER=/^()>/,JSX_ATTRIBUTE=RegExp("^(?!\\d)(".concat(JSX_IDENTIFIER_PART,"(?:\\s*:\\s*").concat(JSX_IDENTIFIER_PART,")?)([^\\S]*=(?!=))?")),NUMBER=/^0b[01](?:_?[01])*n?|^0o[0-7](?:_?[0-7])*n?|^0x[\da-f](?:_?[\da-f])*n?|^\d+n|^(?:\d(?:_?\d)*)?\.?(?:\d(?:_?\d)*)+(?:e[+-]?(?:\d(?:_?\d)*)+)?/i,OPERATOR=/^(?:[-=]>|[-+*\/%<>&|^!?=]=|>>>=?|([-+:])\1|([&|<>*\/%])\2=?|\?(\.|::)|\.{2,3})/,WHITESPACE=/^[^\n\S]+/,COMMENT=/^(\s*)###([^#][\s\S]*?)(?:###([^\n\S]*)|###$)|^((?:\s*#(?!##[^#]).*)+)/,CODE=/^[-=]>/,MULTI_DENT=/^(?:\n[^\n\S]*)+/,JSTOKEN=/^`(?!``)((?:[^`\\]|\\[\s\S])*)`/,HERE_JSTOKEN=/^```((?:[^`\\]|\\[\s\S]|`(?!``))*)```/,STRING_START=/^(?:'''|"""|'|")/,STRING_SINGLE=/^(?:[^\\']|\\[\s\S])*/,STRING_DOUBLE=/^(?:[^\\"#]|\\[\s\S]|\#(?!\{))*/,HEREDOC_SINGLE=/^(?:[^\\']|\\[\s\S]|'(?!''))*/,HEREDOC_DOUBLE=/^(?:[^\\"#]|\\[\s\S]|"(?!"")|\#(?!\{))*/,INSIDE_JSX=/^(?:[^\{<])*/,JSX_INTERPOLATION=/^(?:\{|<(?!\/))/,HEREDOC_INDENT=/\n+([^\n\S]*)(?=\S)/g,REGEX=/^\/(?!\/)((?:[^[\/\n\\]|\\[^\n]|\[(?:\\[^\n]|[^\]\n\\])*\])*)(\/)?/,REGEX_FLAGS=/^\w*/,VALID_FLAGS=/^(?!.*(.).*\1)[gimsuy]*$/,HEREGEX=/^(?:[^\\\/#\s]|\\[\s\S]|\/(?!\/\/)|\#(?!\{)|\s+(?:#(?!\{).*)?)*/,HEREGEX_COMMENT=/(\s+)(#(?!{).*)/gm,REGEX_ILLEGAL=/^(\/|\/{3}\s*)(\*)/,POSSIBLY_DIVISION=/^\/=?\s/,HERECOMMENT_ILLEGAL=/\*\//,LINE_CONTINUER=/^\s*(?:,|\??\.(?![.\d])|\??::)/,STRING_INVALID_ESCAPE=/((?:^|[^\\])(?:\\\\)*)\\(?:(0\d|[1-7])|(x(?![\da-fA-F]{2}).{0,2})|(u\{(?![\da-fA-F]{1,}\})[^}]*\}?)|(u(?!\{|[\da-fA-F]{4}).{0,4}))/,REGEX_INVALID_ESCAPE=/((?:^|[^\\])(?:\\\\)*)\\(?:(0\d)|(x(?![\da-fA-F]{2}).{0,2})|(u\{(?![\da-fA-F]{1,}\})[^}]*\}?)|(u(?!\{|[\da-fA-F]{4}).{0,4}))/,TRAILING_SPACES=/\s+$/,COMPOUND_ASSIGN=["-=","+=","/=","*=","%=","||=","&&=","?=","<<=",">>=",">>>=","&=","^=","|=","**=","//=","%%="],UNARY=["NEW","TYPEOF","DELETE"],UNARY_MATH=["!","~"],SHIFT=["<<",">>",">>>"],COMPARE=["==","!=","<",">","<=",">="],MATH=["*","/","%","//","%%"],RELATION=["IN","OF","INSTANCEOF"],BOOL=["TRUE","FALSE"],CALLABLE=["IDENTIFIER","PROPERTY",")","]","?","@","THIS","SUPER","DYNAMIC_IMPORT"],INDEXABLE=CALLABLE.concat(["NUMBER","INFINITY","NAN","STRING","STRING_END","REGEX","REGEX_END","BOOL","NULL","UNDEFINED","}","::"]),COMPARABLE_LEFT_SIDE=["IDENTIFIER",")","]","NUMBER"],NOT_REGEX=INDEXABLE.concat(["++","--"]),LINE_BREAK=["INDENT","OUTDENT","TERMINATOR"],INDENTABLE_CLOSERS=[")","}","]"]}.call(this),{exports:exports}.exports}(),require["./parser"]=function(){var exports={},module={exports:exports},parser=function(){function Parser(){this.yy={}}var o=function(k,v,_o,l){for(_o=_o||{},l=k.length;l--;_o[k[l]]=v);return _o},$V0=[1,24],$V1=[1,59],$V2=[1,97],$V3=[1,98],$V4=[1,93],$V5=[1,99],$V6=[1,100],$V7=[1,95],$V8=[1,96],$V9=[1,68],$Va=[1,70],$Vb=[1,71],$Vc=[1,72],$Vd=[1,73],$Ve=[1,74],$Vf=[1,76],$Vg=[1,80],$Vh=[1,77],$Vi=[1,78],$Vj=[1,62],$Vk=[1,45],$Vl=[1,38],$Vm=[1,82],$Vn=[1,83],$Vo=[1,81],$Vp=[1,92],$Vq=[1,57],$Vr=[1,63],$Vs=[1,64],$Vt=[1,79],$Vu=[1,50],$Vv=[1,58],$Vw=[1,75],$Vx=[1,87],$Vy=[1,88],$Vz=[1,89],$VA=[1,90],$VB=[1,56],$VC=[1,86],$VD=[1,40],$VE=[1,41],$VF=[1,61],$VG=[1,42],$VH=[1,43],$VI=[1,44],$VJ=[1,46],$VK=[1,47],$VL=[1,101],$VM=[1,6,35,52,153],$VN=[1,6,33,35,52,74,76,96,135,142,153,156,164],$VO=[1,119],$VP=[1,120],$VQ=[1,121],$VR=[1,116],$VS=[1,104],$VT=[1,103],$VU=[1,102],$VV=[1,105],$VW=[1,106],$VX=[1,107],$VY=[1,108],$VZ=[1,109],$V_=[1,110],$V$=[1,111],$V01=[1,112],$V11=[1,113],$V21=[1,114],$V31=[1,115],$V41=[1,123],$V51=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$V61=[2,211],$V71=[1,129],$V81=[1,134],$V91=[1,130],$Va1=[1,131],$Vb1=[1,132],$Vc1=[1,135],$Vd1=[1,128],$Ve1=[1,6,33,35,52,74,76,96,135,142,153,155,156,157,163,164,181],$Vf1=[1,6,33,35,46,47,52,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vg1=[2,129],$Vh1=[2,133],$Vi1=[6,33,91,96],$Vj1=[2,106],$Vk1=[1,147],$Vl1=[1,146],$Vm1=[1,141],$Vn1=[1,150],$Vo1=[1,155],$Vp1=[1,153],$Vq1=[1,159],$Vr1=[1,165],$Vs1=[1,161],$Vt1=[1,162],$Vu1=[1,164],$Vv1=[1,169],$Vw1=[1,6,33,35,46,47,52,66,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vx1=[2,126],$Vy1=[1,6,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vz1=[2,31],$VA1=[1,194],$VB1=[1,195],$VC1=[2,93],$VD1=[1,201],$VE1=[1,207],$VF1=[1,222],$VG1=[1,217],$VH1=[1,226],$VI1=[1,223],$VJ1=[1,228],$VK1=[1,229],$VL1=[1,231],$VM1=[2,216],$VN1=[1,233],$VO1=[14,32,33,39,40,44,46,47,54,55,59,60,61,62,63,64,73,75,82,85,87,88,89,93,94,108,116,119,121,129,137,147,151,152,155,157,160,163,174,180,183,184,185,186,187,188,189,190],$VP1=[1,6,33,35,46,47,52,66,74,76,91,96,105,106,107,109,110,111,114,118,120,133,134,135,142,153,155,156,157,163,164,181,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],$VQ1=[1,245],$VR1=[1,246],$VS1=[2,155],$VT1=[1,262],$VU1=[1,263],$VV1=[1,265],$VW1=[1,275],$VX1=[1,276],$VY1=[1,6,33,35,46,47,52,70,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$VZ1=[1,6,33,35,36,46,47,52,66,70,74,76,91,96,105,106,107,109,110,111,114,118,120,126,133,134,135,142,153,155,156,157,163,164,171,172,173,181,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],$V_1=[1,6,33,35,46,47,49,51,52,57,70,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$V$1=[1,281],$V02=[46,47,134],$V12=[1,320],$V22=[1,319],$V32=[6,33],$V42=[2,104],$V52=[1,326],$V62=[6,33,35,91,96],$V72=[6,33,35,66,76,91,96],$V82=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,187,188,192,193,194,195,196,197,198,199,200,201,202],$V92=[2,366],$Va2=[2,367],$Vb2=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,187,188,192,194,195,196,197,198,199,200,201,202],$Vc2=[46,47,105,106,109,110,111,114,133,134],$Vd2=[1,355],$Ve2=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181],$Vf2=[2,91],$Vg2=[1,372],$Vh2=[1,374],$Vi2=[1,379],$Vj2=[1,381],$Vk2=[6,33,74,96],$Vl2=[2,236],$Vm2=[2,237],$Vn2=[1,6,33,35,46,47,52,66,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,171,172,173,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vo2=[1,395],$Vp2=[14,32,33,35,39,40,44,46,47,54,55,59,60,61,62,63,64,73,74,75,76,82,85,87,88,89,93,94,96,108,116,119,121,129,137,147,151,152,155,157,160,163,174,180,183,184,185,186,187,188,189,190],$Vq2=[1,397],$Vr2=[6,33,35,74,96],$Vs2=[6,14,32,33,35,39,40,44,46,47,54,55,59,60,61,62,63,64,73,74,75,76,82,85,87,88,89,93,94,96,108,116,119,121,129,137,147,151,152,155,157,160,163,174,180,183,184,185,186,187,188,189,190],$Vt2=[6,33,35,74,96,135],$Vu2=[1,6,33,35,46,47,52,57,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vv2=[1,408],$Vw2=[1,6,33,35,46,47,52,66,70,74,76,91,96,105,106,107,109,110,111,114,118,120,133,134,135,142,153,155,156,157,163,164,171,172,173,181,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],$Vx2=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,164,181],$Vy2=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,156,164,181],$Vz2=[2,289],$VA2=[171,172,173],$VB2=[96,171,172,173],$VC2=[6,33,118],$VD2=[1,427],$VE2=[6,33,35,96,118],$VF2=[6,33,35,70,96,118],$VG2=[6,33,35,66,70,76,96,105,106,109,110,111,114,118,133,134],$VH2=[6,33,35,76,96,105,106,109,110,111,114,118,133,134],$VI2=[46,47,49,51],$VJ2=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,187,188,194,195,196,197,198,199,200,201,202],$VK2=[2,356],$VL2=[2,355],$VM2=[35,107],$VN2=[14,32,35,39,40,44,46,47,54,55,59,60,61,62,63,64,73,75,82,85,87,88,89,93,94,107,108,116,119,121,129,137,147,151,152,155,157,160,163,174,180,183,184,185,186,187,188,189,190],$VO2=[2,222],$VP2=[6,33,35],$VQ2=[2,105],$VR2=[1,466],$VS2=[1,467],$VT2=[1,6,33,35,46,47,52,74,76,91,96,105,106,107,109,110,111,114,118,133,134,135,142,149,150,153,155,156,157,163,164,176,178,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$VU2=[1,335],$VV2=[35,176,178],$VW2=[1,6,35,52,74,76,91,96,107,118,135,142,153,156,164,181],$VX2=[1,504],$VY2=[1,511],$VZ2=[1,6,33,35,52,74,76,96,135,142,153,156,164,181],$V_2=[2,120],$V$2=[1,524],$V03=[33,35,74],$V13=[1,532],$V23=[6,33,35,96,135],$V33=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,176,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$V43=[1,6,33,35,52,74,76,96,135,142,153,156,164,176],$V53=[2,303],$V63=[2,304],$V73=[2,319],$V83=[1,552],$V93=[1,553],$Va3=[6,33,35,118],$Vb3=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,157,163,164,181],$Vc3=[6,33,35,96],$Vd3=[1,6,33,35,52,74,76,91,96,107,118,135,142,149,153,155,156,157,163,164,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Ve3=[33,96],$Vf3=[1,604],$Vg3=[1,605],$Vh3=[1,612],$Vi3=[1,613],$Vj3=[1,630],$Vk3=[1,631],$Vl3=[2,274],$Vm3=[2,277],$Vn3=[2,290],$Vo3=[2,305],$Vp3=[2,309],$Vq3=[2,306],$Vr3=[2,310],$Vs3=[2,307],$Vt3=[2,308],$Vu3=[2,320],$Vv3=[2,321],$Vw3=[1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,181],$Vx3=[2,311],$Vy3=[2,313],$Vz3=[2,315],$VA3=[2,317],$VB3=[2,312],$VC3=[2,314],$VD3=[2,316],$VE3=[2,318],parser={trace:function(){},yy:{},symbols_:{error:2,Root:3,Body:4,Line:5,TERMINATOR:6,Expression:7,ExpressionLine:8,Statement:9,FuncDirective:10,YieldReturn:11,AwaitReturn:12,Return:13,STATEMENT:14,Import:15,Export:16,Value:17,Code:18,Operation:19,Assign:20,If:21,Try:22,While:23,For:24,Switch:25,Class:26,Throw:27,Yield:28,CodeLine:29,IfLine:30,OperationLine:31,YIELD:32,INDENT:33,Object:34,OUTDENT:35,FROM:36,Block:37,Identifier:38,IDENTIFIER:39,JSX_TAG:40,Property:41,PROPERTY:42,AlphaNumeric:43,NUMBER:44,String:45,STRING:46,STRING_START:47,Interpolations:48,STRING_END:49,InterpolationChunk:50,INTERPOLATION_START:51,INTERPOLATION_END:52,Regex:53,REGEX:54,REGEX_START:55,Invocation:56,REGEX_END:57,Literal:58,JS:59,UNDEFINED:60,NULL:61,BOOL:62,INFINITY:63,NAN:64,Assignable:65,"=":66,AssignObj:67,ObjAssignable:68,ObjRestValue:69,":":70,SimpleObjAssignable:71,ThisProperty:72,"[":73,"]":74,"@":75,"...":76,ObjSpreadExpr:77,ObjSpreadIdentifier:78,Parenthetical:79,Super:80,This:81,SUPER:82,OptFuncExist:83,Arguments:84,DYNAMIC_IMPORT:85,Accessor:86,RETURN:87,AWAIT:88,PARAM_START:89,ParamList:90,PARAM_END:91,FuncGlyph:92,"->":93,"=>":94,OptComma:95,",":96,Param:97,ParamVar:98,Array:99,Splat:100,SimpleAssignable:101,Range:102,DoIife:103,MetaProperty:104,".":105,INDEX_START:106,INDEX_END:107,NEW_TARGET:108,"?.":109,"::":110,"?::":111,Index:112,IndexValue:113,INDEX_SOAK:114,Slice:115,"{":116,AssignList:117,"}":118,CLASS:119,EXTENDS:120,IMPORT:121,ImportDefaultSpecifier:122,ImportNamespaceSpecifier:123,ImportSpecifierList:124,ImportSpecifier:125,AS:126,DEFAULT:127,IMPORT_ALL:128,EXPORT:129,ExportSpecifierList:130,EXPORT_ALL:131,ExportSpecifier:132,FUNC_EXIST:133,CALL_START:134,CALL_END:135,ArgList:136,THIS:137,Elisions:138,ArgElisionList:139,OptElisions:140,RangeDots:141,"..":142,Arg:143,ArgElision:144,Elision:145,SimpleArgs:146,TRY:147,Catch:148,FINALLY:149,CATCH:150,THROW:151,"(":152,")":153,WhileLineSource:154,WHILE:155,WHEN:156,UNTIL:157,WhileSource:158,Loop:159,LOOP:160,ForBody:161,ForLineBody:162,FOR:163,BY:164,ForStart:165,ForSource:166,ForLineSource:167,ForVariables:168,OWN:169,ForValue:170,FORIN:171,FOROF:172,FORFROM:173,SWITCH:174,Whens:175,ELSE:176,When:177,LEADING_WHEN:178,IfBlock:179,IF:180,POST_IF:181,IfBlockLine:182,UNARY:183,DO:184,DO_IIFE:185,UNARY_MATH:186,"-":187,"+":188,"--":189,"++":190,"?":191,MATH:192,"**":193,SHIFT:194,COMPARE:195,"&":196,"^":197,"|":198,"&&":199,"||":200,"BIN?":201,RELATION:202,COMPOUND_ASSIGN:203,$accept:0,$end:1},terminals_:{2:"error",6:"TERMINATOR",14:"STATEMENT",32:"YIELD",33:"INDENT",35:"OUTDENT",36:"FROM",39:"IDENTIFIER",40:"JSX_TAG",42:"PROPERTY",44:"NUMBER",46:"STRING",47:"STRING_START",49:"STRING_END",51:"INTERPOLATION_START",52:"INTERPOLATION_END",54:"REGEX",55:"REGEX_START",57:"REGEX_END",59:"JS",60:"UNDEFINED",61:"NULL",62:"BOOL",63:"INFINITY",64:"NAN",66:"=",70:":",73:"[",74:"]",75:"@",76:"...",82:"SUPER",85:"DYNAMIC_IMPORT",87:"RETURN",88:"AWAIT",89:"PARAM_START",91:"PARAM_END",93:"->",94:"=>",96:",",105:".",106:"INDEX_START",107:"INDEX_END",108:"NEW_TARGET",109:"?.",110:"::",111:"?::",114:"INDEX_SOAK",116:"{",118:"}",119:"CLASS",120:"EXTENDS",121:"IMPORT",126:"AS",127:"DEFAULT",128:"IMPORT_ALL",129:"EXPORT",131:"EXPORT_ALL",133:"FUNC_EXIST",134:"CALL_START",135:"CALL_END",137:"THIS",142:"..",147:"TRY",149:"FINALLY",150:"CATCH",151:"THROW",152:"(",153:")",155:"WHILE",156:"WHEN",157:"UNTIL",160:"LOOP",163:"FOR",164:"BY",169:"OWN",171:"FORIN",172:"FOROF",173:"FORFROM",174:"SWITCH",176:"ELSE",178:"LEADING_WHEN",180:"IF",181:"POST_IF",183:"UNARY",184:"DO",185:"DO_IIFE",186:"UNARY_MATH",187:"-",188:"+",189:"--",190:"++",191:"?",192:"MATH",193:"**",194:"SHIFT",195:"COMPARE",196:"&",197:"^",198:"|",199:"&&",200:"||",201:"BIN?",202:"RELATION",203:"COMPOUND_ASSIGN"},productions_:[0,[3,0],[3,1],[4,1],[4,3],[4,2],[5,1],[5,1],[5,1],[5,1],[10,1],[10,1],[9,1],[9,1],[9,1],[9,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[8,1],[8,1],[8,1],[28,1],[28,2],[28,4],[28,3],[37,2],[37,3],[38,1],[38,1],[41,1],[43,1],[43,1],[45,1],[45,3],[48,1],[48,2],[50,3],[50,5],[50,2],[50,1],[53,1],[53,3],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[58,1],[20,3],[20,4],[20,5],[67,1],[67,1],[67,3],[67,5],[67,3],[67,5],[71,1],[71,1],[71,1],[68,1],[68,3],[68,4],[68,1],[69,2],[69,2],[69,2],[69,2],[77,1],[77,1],[77,1],[77,1],[77,1],[77,3],[77,2],[77,3],[77,3],[78,2],[78,2],[13,2],[13,4],[13,1],[11,3],[11,2],[12,3],[12,2],[18,5],[18,2],[29,5],[29,2],[92,1],[92,1],[95,0],[95,1],[90,0],[90,1],[90,3],[90,4],[90,6],[97,1],[97,2],[97,2],[97,3],[97,1],[98,1],[98,1],[98,1],[98,1],[100,2],[100,2],[101,1],[101,2],[101,2],[101,1],[65,1],[65,1],[65,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[80,3],[80,4],[80,6],[104,3],[86,2],[86,2],[86,2],[86,2],[86,1],[86,1],[86,1],[112,3],[112,5],[112,2],[113,1],[113,1],[34,4],[117,0],[117,1],[117,3],[117,4],[117,6],[26,1],[26,2],[26,3],[26,4],[26,2],[26,3],[26,4],[26,5],[15,2],[15,4],[15,4],[15,5],[15,7],[15,6],[15,9],[124,1],[124,3],[124,4],[124,4],[124,6],[125,1],[125,3],[125,1],[125,3],[122,1],[123,3],[16,3],[16,5],[16,2],[16,4],[16,5],[16,6],[16,3],[16,5],[16,4],[16,5],[16,7],[130,1],[130,3],[130,4],[130,4],[130,6],[132,1],[132,3],[132,3],[132,1],[132,3],[56,3],[56,3],[56,3],[56,2],[83,0],[83,1],[84,2],[84,4],[81,1],[81,1],[72,2],[99,2],[99,3],[99,4],[141,1],[141,1],[102,5],[102,5],[115,3],[115,2],[115,3],[115,2],[115,2],[115,1],[136,1],[136,3],[136,4],[136,4],[136,6],[143,1],[143,1],[143,1],[143,1],[139,1],[139,3],[139,4],[139,4],[139,6],[144,1],[144,2],[140,1],[140,2],[138,1],[138,2],[145,1],[145,2],[146,1],[146,1],[146,3],[146,3],[22,2],[22,3],[22,4],[22,5],[148,3],[148,3],[148,2],[27,2],[27,4],[79,3],[79,5],[154,2],[154,4],[154,2],[154,4],[158,2],[158,4],[158,4],[158,2],[158,4],[158,4],[23,2],[23,2],[23,2],[23,2],[23,1],[159,2],[159,2],[24,2],[24,2],[24,2],[24,2],[161,2],[161,4],[161,2],[162,4],[162,2],[165,2],[165,3],[165,3],[170,1],[170,1],[170,1],[170,1],[168,1],[168,3],[166,2],[166,2],[166,4],[166,4],[166,4],[166,4],[166,4],[166,4],[166,6],[166,6],[166,6],[166,6],[166,6],[166,6],[166,6],[166,6],[166,2],[166,4],[166,4],[167,2],[167,2],[167,4],[167,4],[167,4],[167,4],[167,4],[167,4],[167,6],[167,6],[167,6],[167,6],[167,6],[167,6],[167,6],[167,6],[167,2],[167,4],[167,4],[25,5],[25,5],[25,7],[25,7],[25,4],[25,6],[175,1],[175,2],[177,3],[177,4],[179,3],[179,5],[21,1],[21,3],[21,3],[21,3],[182,3],[182,5],[30,1],[30,3],[30,3],[30,3],[31,2],[31,2],[31,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,4],[19,2],[19,2],[19,2],[19,2],[19,2],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,5],[19,4],[103,2]],performAction:function(yytext,yyleng,yylineno,yy,yystate,$$,_$){var $0=$$.length-1;switch(yystate){case 1:return this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Root(new yy.Block()));break;case 2:return this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Root($$[$0]));break;case 3:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(yy.Block.wrap([$$[$0]]));break;case 4:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)($$[$0-2].push($$[$0]));break;case 5:this.$=$$[$0-1];break;case 6:case 7:case 8:case 9:case 10:case 11:case 12:case 14:case 15:case 16:case 17:case 18:case 19:case 20:case 21:case 22:case 23:case 24:case 25:case 26:case 27:case 28:case 29:case 30:case 41:case 52:case 54:case 64:case 69:case 70:case 71:case 72:case 75:case 80:case 81:case 82:case 83:case 84:case 104:case 105:case 116:case 117:case 118:case 119:case 125:case 126:case 129:case 135:case 148:case 236:case 237:case 238:case 240:case 253:case 254:case 297:case 298:case 353:case 359:this.$=$$[$0];break;case 13:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.StatementLiteral($$[$0]));break;case 31:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Op($$[$0],new yy.Value(new yy.Literal(""))));break;case 32:case 363:case 364:case 365:case 367:case 368:case 371:case 394:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op($$[$0-1],$$[$0]));break;case 33:case 372:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Op($$[$0-3],$$[$0-1]));break;case 34:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Op($$[$0-2].concat($$[$0-1]),$$[$0]));break;case 35:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Block);break;case 36:case 149:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)($$[$0-1]);break;case 37:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.IdentifierLiteral($$[$0]));break;case 38:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(function(){var ref,ref1,ref2,ref3;return new yy.JSXTag($$[$0].toString(),{tagNameLocationData:$$[$0].tagNameToken[2],closingTagOpeningBracketLocationData:null==(ref=$$[$0].closingTagOpeningBracketToken)?void 0:ref[2],closingTagSlashLocationData:null==(ref1=$$[$0].closingTagSlashToken)?void 0:ref1[2],closingTagNameLocationData:null==(ref2=$$[$0].closingTagNameToken)?void 0:ref2[2],closingTagClosingBracketLocationData:null==(ref3=$$[$0].closingTagClosingBracketToken)?void 0:ref3[2]})}());break;case 39:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.PropertyName($$[$0].toString()));break;case 40:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.NumberLiteral($$[$0].toString(),{parsedValue:$$[$0].parsedValue}));break;case 42:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.StringLiteral($$[$0].slice(1,-1),{quote:$$[$0].quote,initialChunk:$$[$0].initialChunk,finalChunk:$$[$0].finalChunk,indent:$$[$0].indent,double:$$[$0].double,heregex:$$[$0].heregex}));break;case 43:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.StringWithInterpolations(yy.Block.wrap($$[$0-1]),{quote:$$[$0-2].quote,startQuote:yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Literal($$[$0-2].toString()))}));break;case 44:case 107:case 156:case 175:case 197:case 231:case 245:case 249:case 301:case 347:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)([$$[$0]]);break;case 45:case 246:case 250:case 348:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)($$[$0-1].concat($$[$0]));break;case 46:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Interpolation($$[$0-1]));break;case 47:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Interpolation($$[$0-2]));break;case 48:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Interpolation);break;case 49:case 282:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)($$[$0]);break;case 50:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.RegexLiteral($$[$0].toString(),{delimiter:$$[$0].delimiter,heregexCommentTokens:$$[$0].heregexCommentTokens}));break;case 51:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.RegexWithInterpolations($$[$0-1],{heregexCommentTokens:$$[$0].heregexCommentTokens}));break;case 53:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.PassthroughLiteral($$[$0].toString(),{here:$$[$0].here,generated:$$[$0].generated}));break;case 55:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.UndefinedLiteral($$[$0]));break;case 56:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.NullLiteral($$[$0]));break;case 57:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.BooleanLiteral($$[$0].toString(),{originalValue:$$[$0].original}));break;case 58:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.InfinityLiteral($$[$0].toString(),{originalValue:$$[$0].original}));break;case 59:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.NaNLiteral($$[$0]));break;case 60:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-2],$$[$0]));break;case 61:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-3],$$[$0]));break;case 62:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-4],$$[$0-1]));break;case 63:case 122:case 127:case 128:case 130:case 131:case 132:case 133:case 134:case 136:case 137:case 299:case 300:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Value($$[$0]));break;case 65:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Assign(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Value($$[$0-2])),$$[$0],"object",{operatorToken:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))}));break;case 66:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Assign(yy.addDataToNode(yy,_$[$0-4],$$[$0-4],null,null,!0)(new yy.Value($$[$0-4])),$$[$0-1],"object",{operatorToken:yy.addDataToNode(yy,_$[$0-3],$$[$0-3],null,null,!0)(new yy.Literal($$[$0-3]))}));break;case 67:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Assign(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Value($$[$0-2])),$$[$0],null,{operatorToken:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))}));break;case 68:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Assign(yy.addDataToNode(yy,_$[$0-4],$$[$0-4],null,null,!0)(new yy.Value($$[$0-4])),$$[$0-1],null,{operatorToken:yy.addDataToNode(yy,_$[$0-3],$$[$0-3],null,null,!0)(new yy.Literal($$[$0-3]))}));break;case 73:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Value(new yy.ComputedPropertyName($$[$0-1])));break;case 74:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Value(yy.addDataToNode(yy,_$[$0-3],$$[$0-3],null,null,!0)(new yy.ThisLiteral($$[$0-3])),[yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.ComputedPropertyName($$[$0-1]))],"this"));break;case 76:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Splat(new yy.Value($$[$0-1])));break;case 77:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Splat(new yy.Value($$[$0]),{postfix:!1}));break;case 78:case 120:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Splat($$[$0-1]));break;case 79:case 121:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Splat($$[$0],{postfix:!1}));break;case 85:case 209:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.SuperCall(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Super),$$[$0],$$[$0-1].soak,$$[$0-2]));break;case 86:case 210:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.DynamicImportCall(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.DynamicImport),$$[$0]));break;case 87:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Call(new yy.Value($$[$0-2]),$$[$0],$$[$0-1].soak));break;case 88:case 208:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Call($$[$0-2],$$[$0],$$[$0-1].soak));break;case 89:case 90:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Value($$[$0-1]).add($$[$0]));break;case 91:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Return($$[$0]));break;case 92:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Return(new yy.Value($$[$0-1])));break;case 93:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Return);break;case 94:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.YieldReturn($$[$0],{returnKeyword:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))}));break;case 95:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.YieldReturn(null,{returnKeyword:yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Literal($$[$0]))}));break;case 96:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.AwaitReturn($$[$0],{returnKeyword:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))}));break;case 97:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.AwaitReturn(null,{returnKeyword:yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Literal($$[$0]))}));break;case 98:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Code($$[$0-3],$$[$0],$$[$0-1],yy.addDataToNode(yy,_$[$0-4],$$[$0-4],null,null,!0)(new yy.Literal($$[$0-4]))));break;case 99:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Code([],$$[$0],$$[$0-1]));break;case 100:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Code($$[$0-3],yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(yy.Block.wrap([$$[$0]])),$$[$0-1],yy.addDataToNode(yy,_$[$0-4],$$[$0-4],null,null,!0)(new yy.Literal($$[$0-4]))));break;case 101:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Code([],yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(yy.Block.wrap([$$[$0]])),$$[$0-1]));break;case 102:case 103:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.FuncGlyph($$[$0]));break;case 106:case 155:case 247:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)([]);break;case 108:case 157:case 176:case 198:case 232:case 241:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)($$[$0-2].concat($$[$0]));break;case 109:case 158:case 177:case 199:case 233:case 242:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)($$[$0-3].concat($$[$0]));break;case 110:case 159:case 179:case 201:case 235:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)($$[$0-5].concat($$[$0-2]));break;case 111:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Param($$[$0]));break;case 112:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Param($$[$0-1],null,!0));break;case 113:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Param($$[$0],null,{postfix:!1}));break;case 114:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Param($$[$0-2],$$[$0]));break;case 115:case 239:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Expansion);break;case 123:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)($$[$0-1].add($$[$0]));break;case 124:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Value($$[$0-1]).add($$[$0]));break;case 138:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Super(yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Access($$[$0])),yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Literal($$[$0-2]))));break;case 139:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Super(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Index($$[$0-1])),yy.addDataToNode(yy,_$[$0-3],$$[$0-3],null,null,!0)(new yy.Literal($$[$0-3]))));break;case 140:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)(new yy.Super(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Index($$[$0-2])),yy.addDataToNode(yy,_$[$0-5],$$[$0-5],null,null,!0)(new yy.Literal($$[$0-5]))));break;case 141:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.MetaProperty(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.IdentifierLiteral($$[$0-2])),yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Access($$[$0]))));break;case 142:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Access($$[$0]));break;case 143:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Access($$[$0],{soak:!0}));break;case 144:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)([yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Access(new yy.PropertyName("prototype"),{shorthand:!0})),yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Access($$[$0]))]);break;case 145:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)([yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Access(new yy.PropertyName("prototype"),{shorthand:!0,soak:!0})),yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Access($$[$0]))]);break;case 146:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Access(new yy.PropertyName("prototype"),{shorthand:!0}));break;case 147:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Access(new yy.PropertyName("prototype"),{shorthand:!0,soak:!0}));break;case 150:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)($$[$0-2]);break;case 151:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(yy.extend($$[$0],{soak:!0}));break;case 152:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Index($$[$0]));break;case 153:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Slice($$[$0]));break;case 154:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Obj($$[$0-2],$$[$0-3].generated));break;case 160:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Class);break;case 161:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Class(null,null,$$[$0]));break;case 162:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Class(null,$$[$0]));break;case 163:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Class(null,$$[$0-1],$$[$0]));break;case 164:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Class($$[$0]));break;case 165:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Class($$[$0-1],null,$$[$0]));break;case 166:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Class($$[$0-2],$$[$0]));break;case 167:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Class($$[$0-3],$$[$0-1],$$[$0]));break;case 168:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(null,$$[$0]));break;case 169:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause($$[$0-2],null),$$[$0]));break;case 170:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause(null,$$[$0-2]),$$[$0]));break;case 171:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause(null,new yy.ImportSpecifierList([])),$$[$0]));break;case 172:this.$=yy.addDataToNode(yy,_$[$0-6],$$[$0-6],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause(null,new yy.ImportSpecifierList($$[$0-4])),$$[$0]));break;case 173:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause($$[$0-4],$$[$0-2]),$$[$0]));break;case 174:this.$=yy.addDataToNode(yy,_$[$0-8],$$[$0-8],_$[$0],$$[$0],!0)(new yy.ImportDeclaration(new yy.ImportClause($$[$0-7],new yy.ImportSpecifierList($$[$0-4])),$$[$0]));break;case 178:case 200:case 234:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)($$[$0-2]);break;case 180:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.ImportSpecifier($$[$0]));break;case 181:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ImportSpecifier($$[$0-2],$$[$0]));break;case 182:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.ImportSpecifier(yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.DefaultLiteral($$[$0]))));break;case 183:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ImportSpecifier(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.DefaultLiteral($$[$0-2])),$$[$0]));break;case 184:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.ImportDefaultSpecifier($$[$0]));break;case 185:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ImportNamespaceSpecifier(new yy.Literal($$[$0-2]),$$[$0]));break;case 186:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(new yy.ExportSpecifierList([])));break;case 187:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(new yy.ExportSpecifierList($$[$0-2])));break;case 188:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration($$[$0]));break;case 189:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-2],$$[$0],null,{moduleDeclaration:"export"}))));break;case 190:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-3],$$[$0],null,{moduleDeclaration:"export"}))));break;case 191:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-4],$$[$0-1],null,{moduleDeclaration:"export"}))));break;case 192:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ExportDefaultDeclaration($$[$0]));break;case 193:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.ExportDefaultDeclaration(new yy.Value($$[$0-1])));break;case 194:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.ExportAllDeclaration(new yy.Literal($$[$0-2]),$$[$0]));break;case 195:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(new yy.ExportSpecifierList([]),$$[$0]));break;case 196:this.$=yy.addDataToNode(yy,_$[$0-6],$$[$0-6],_$[$0],$$[$0],!0)(new yy.ExportNamedDeclaration(new yy.ExportSpecifierList($$[$0-4]),$$[$0]));break;case 202:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.ExportSpecifier($$[$0]));break;case 203:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ExportSpecifier($$[$0-2],$$[$0]));break;case 204:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ExportSpecifier($$[$0-2],yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.DefaultLiteral($$[$0]))));break;case 205:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.ExportSpecifier(yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.DefaultLiteral($$[$0]))));break;case 206:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.ExportSpecifier(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.DefaultLiteral($$[$0-2])),$$[$0]));break;case 207:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.TaggedTemplateCall($$[$0-2],$$[$0],$$[$0-1].soak));break;case 211:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)({soak:!1});break;case 212:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)({soak:!0});break;case 213:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)([]);break;case 214:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(function(){return $$[$0-2].implicit=$$[$0-3].generated,$$[$0-2]}());break;case 215:case 216:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Value(new yy.ThisLiteral($$[$0])));break;case 217:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Value(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.ThisLiteral($$[$0-1])),[yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Access($$[$0]))],"this"));break;case 218:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Arr([]));break;case 219:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Arr($$[$0-1]));break;case 220:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Arr([].concat($$[$0-2],$$[$0-1])));break;case 221:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)({exclusive:!1});break;case 222:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)({exclusive:!0});break;case 223:case 224:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Range($$[$0-3],$$[$0-1],$$[$0-2].exclusive?"exclusive":"inclusive"));break;case 225:case 227:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Range($$[$0-2],$$[$0],$$[$0-1].exclusive?"exclusive":"inclusive"));break;case 226:case 228:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Range($$[$0-1],null,$$[$0].exclusive?"exclusive":"inclusive"));break;case 229:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Range(null,$$[$0],$$[$0-1].exclusive?"exclusive":"inclusive"));break;case 230:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Range(null,null,$$[$0].exclusive?"exclusive":"inclusive"));break;case 243:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)($$[$0-2].concat($$[$0-1]));break;case 244:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)($$[$0-5].concat($$[$0-4],$$[$0-2],$$[$0-1]));break;case 248:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)([].concat($$[$0]));break;case 251:this.$=yy.addDataToNode(yy,_$[$0],$$[$0],_$[$0],$$[$0],!0)(new yy.Elision);break;case 252:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)($$[$0-1]);break;case 255:case 256:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)([].concat($$[$0-2],$$[$0]));break;case 257:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Try($$[$0]));break;case 258:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Try($$[$0-1],$$[$0]));break;case 259:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Try($$[$0-2],null,$$[$0],yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))));break;case 260:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Try($$[$0-3],$$[$0-2],$$[$0],yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))));break;case 261:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Catch($$[$0],$$[$0-1]));break;case 262:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Catch($$[$0],yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Value($$[$0-1]))));break;case 263:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Catch($$[$0]));break;case 264:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Throw($$[$0]));break;case 265:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Throw(new yy.Value($$[$0-1])));break;case 266:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Parens($$[$0-1]));break;case 267:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Parens($$[$0-2]));break;case 268:case 272:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.While($$[$0]));break;case 269:case 273:case 274:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.While($$[$0-2],{guard:$$[$0]}));break;case 270:case 275:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.While($$[$0],{invert:!0}));break;case 271:case 276:case 277:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.While($$[$0-2],{invert:!0,guard:$$[$0]}));break;case 278:case 279:case 287:case 288:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)($$[$0-1].addBody($$[$0]));break;case 280:case 281:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(Object.assign($$[$0],{postfix:!0}).addBody(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(yy.Block.wrap([$$[$0-1]]))));break;case 283:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.While(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.BooleanLiteral("true")),{isLoop:!0}).addBody($$[$0]));break;case 284:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.While(yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.BooleanLiteral("true")),{isLoop:!0}).addBody(yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(yy.Block.wrap([$$[$0]]))));break;case 285:case 286:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(function(){return $$[$0].postfix=!0,$$[$0].addBody($$[$0-1])}());break;case 289:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.For([],{source:yy.addDataToNode(yy,_$[$0],$$[$0],null,null,!0)(new yy.Value($$[$0]))}));break;case 290:case 292:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.For([],{source:yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(new yy.Value($$[$0-2])),step:$$[$0]}));break;case 291:case 293:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)($$[$0-1].addSource($$[$0]));break;case 294:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.For([],{name:$$[$0][0],index:$$[$0][1]}));break;case 295:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(function(){var _$$$$=_slicedToArray($$[$0],2),index,name;return name=_$$$$[0],index=_$$$$[1],new yy.For([],{name:name,index:index,await:!0,awaitTag:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))})}());break;case 296:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(function(){var _$$$$2=_slicedToArray($$[$0],2),index,name;return name=_$$$$2[0],index=_$$$$2[1],new yy.For([],{name:name,index:index,own:!0,ownTag:yy.addDataToNode(yy,_$[$0-1],$$[$0-1],null,null,!0)(new yy.Literal($$[$0-1]))})}());break;case 302:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)([$$[$0-2],$$[$0]]);break;case 303:case 322:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)({source:$$[$0]});break;case 304:case 323:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)({source:$$[$0],object:!0});break;case 305:case 306:case 324:case 325:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)({source:$$[$0-2],guard:$$[$0]});break;case 307:case 308:case 326:case 327:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)({source:$$[$0-2],guard:$$[$0],object:!0});break;case 309:case 310:case 328:case 329:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)({source:$$[$0-2],step:$$[$0]});break;case 311:case 312:case 313:case 314:case 330:case 331:case 332:case 333:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)({source:$$[$0-4],guard:$$[$0-2],step:$$[$0]});break;case 315:case 316:case 317:case 318:case 334:case 335:case 336:case 337:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)({source:$$[$0-4],step:$$[$0-2],guard:$$[$0]});break;case 319:case 338:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)({source:$$[$0],from:!0});break;case 320:case 321:case 339:case 340:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)({source:$$[$0-2],guard:$$[$0],from:!0});break;case 341:case 342:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Switch($$[$0-3],$$[$0-1]));break;case 343:case 344:this.$=yy.addDataToNode(yy,_$[$0-6],$$[$0-6],_$[$0],$$[$0],!0)(new yy.Switch($$[$0-5],$$[$0-3],yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0-1],$$[$0-1],!0)($$[$0-1])));break;case 345:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Switch(null,$$[$0-1]));break;case 346:this.$=yy.addDataToNode(yy,_$[$0-5],$$[$0-5],_$[$0],$$[$0],!0)(new yy.Switch(null,$$[$0-3],yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0-1],$$[$0-1],!0)($$[$0-1])));break;case 349:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.SwitchWhen($$[$0-1],$$[$0]));break;case 350:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!1)(yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0-1],$$[$0-1],!0)(new yy.SwitchWhen($$[$0-2],$$[$0-1])));break;case 351:case 357:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.If($$[$0-1],$$[$0],{type:$$[$0-2]}));break;case 352:case 358:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)($$[$0-4].addElse(yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.If($$[$0-1],$$[$0],{type:$$[$0-2]}))));break;case 354:case 360:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)($$[$0-2].addElse($$[$0]));break;case 355:case 356:case 361:case 362:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.If($$[$0],yy.addDataToNode(yy,_$[$0-2],$$[$0-2],null,null,!0)(yy.Block.wrap([$$[$0-2]])),{type:$$[$0-1],postfix:!0}));break;case 366:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op($$[$0-1].toString(),$$[$0],void 0,void 0,{originalOperator:$$[$0-1].original}));break;case 369:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("-",$$[$0]));break;case 370:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("+",$$[$0]));break;case 373:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("--",$$[$0]));break;case 374:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("++",$$[$0]));break;case 375:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("--",$$[$0-1],null,!0));break;case 376:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Op("++",$$[$0-1],null,!0));break;case 377:this.$=yy.addDataToNode(yy,_$[$0-1],$$[$0-1],_$[$0],$$[$0],!0)(new yy.Existence($$[$0-1]));break;case 378:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Op("+",$$[$0-2],$$[$0]));break;case 379:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Op("-",$$[$0-2],$$[$0]));break;case 380:case 381:case 382:case 384:case 385:case 386:case 389:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Op($$[$0-1],$$[$0-2],$$[$0]));break;case 383:case 387:case 388:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Op($$[$0-1].toString(),$$[$0-2],$$[$0],void 0,{originalOperator:$$[$0-1].original}));break;case 390:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(function(){var ref,ref1;return new yy.Op($$[$0-1].toString(),$$[$0-2],$$[$0],void 0,{invertOperator:null==(ref=null==(ref1=$$[$0-1].invert)?void 0:ref1.original)?$$[$0-1].invert:ref})}());break;case 391:this.$=yy.addDataToNode(yy,_$[$0-2],$$[$0-2],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-2],$$[$0],$$[$0-1].toString(),{originalContext:$$[$0-1].original}));break;case 392:this.$=yy.addDataToNode(yy,_$[$0-4],$$[$0-4],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-4],$$[$0-1],$$[$0-3].toString(),{originalContext:$$[$0-3].original}));break;case 393:this.$=yy.addDataToNode(yy,_$[$0-3],$$[$0-3],_$[$0],$$[$0],!0)(new yy.Assign($$[$0-3],$$[$0],$$[$0-2].toString(),{originalContext:$$[$0-2].original}));}},table:[{1:[2,1],3:1,4:2,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{1:[3]},{1:[2,2],6:$VL},o($VM,[2,3]),o($VN,[2,6],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VN,[2,7]),o($VN,[2,8],{165:122,158:124,161:125,155:$VO,157:$VP,163:$VQ,181:$V41}),o($VN,[2,9]),o($V51,[2,16],{83:126,86:127,112:133,46:$V61,47:$V61,134:$V61,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1,133:$Vd1}),o($V51,[2,17],{112:133,86:136,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1}),o($V51,[2,18]),o($V51,[2,19]),o($V51,[2,20]),o($V51,[2,21]),o($V51,[2,22]),o($V51,[2,23]),o($V51,[2,24]),o($V51,[2,25]),o($V51,[2,26]),o($V51,[2,27]),o($VN,[2,28]),o($VN,[2,29]),o($VN,[2,30]),o($Ve1,[2,12]),o($Ve1,[2,13]),o($Ve1,[2,14]),o($Ve1,[2,15]),o($VN,[2,10]),o($VN,[2,11]),o($Vf1,$Vg1,{66:[1,137]}),o($Vf1,[2,130]),o($Vf1,[2,131]),o($Vf1,[2,132]),o($Vf1,$Vh1),o($Vf1,[2,134]),o($Vf1,[2,135]),o($Vf1,[2,136]),o($Vf1,[2,137]),o($Vi1,$Vj1,{90:138,97:139,98:140,38:142,72:143,99:144,34:145,39:$V2,40:$V3,73:$Vk1,75:$Vl1,76:$Vm1,116:$Vp}),{5:149,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,33:$Vn1,34:66,37:148,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:151,8:152,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:156,8:157,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:158,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:166,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:167,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:168,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:$Vv1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:[1,170],88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{17:172,18:173,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:174,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:171,102:32,103:34,104:37,108:$Vo,116:$Vp,137:$Vt,152:$Vw,185:$Vu1},{17:172,18:173,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:174,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:175,102:32,103:34,104:37,108:$Vo,116:$Vp,137:$Vt,152:$Vw,185:$Vu1},o($Vw1,$Vx1,{189:[1,176],190:[1,177],203:[1,178]}),o($V51,[2,353],{176:[1,179]}),{33:$Vn1,37:180},{33:$Vn1,37:181},{33:$Vn1,37:182},o($V51,[2,282]),{33:$Vn1,37:183},{33:$Vn1,37:184},{7:185,8:186,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:[1,187],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vy1,[2,160],{58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,99:65,34:66,43:67,53:69,38:84,72:85,45:94,92:160,17:172,18:173,65:174,37:188,101:190,33:$Vn1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,120:[1,189],137:$Vt,152:$Vw,185:$Vu1}),{7:191,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,192],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([1,6,35,52,74,76,96,135,142,153,155,156,157,163,164,181,191,192,193,194,195,196,197,198,199,200,201,202],$Vz1,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:193,14:$V0,32:$Vo1,33:$VA1,36:$VB1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:[1,196],88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,160:$Vz,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($VN,[2,359],{176:[1,197]}),{18:199,29:198,89:$Vl,92:39,93:$Vm,94:$Vn},o([1,6,35,52,74,76,96,135,142,153,155,156,157,163,164,181],$VC1,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:200,14:$V0,32:$Vo1,33:$VD1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,160:$Vz,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),{38:206,39:$V2,40:$V3,45:202,46:$V5,47:$V6,116:[1,205],122:203,123:204,128:$VE1},{26:209,38:210,39:$V2,40:$V3,116:[1,208],119:$Vq,127:[1,211],131:[1,212]},o($Vw1,[2,127]),o($Vw1,[2,128]),o($Vf1,[2,52]),o($Vf1,[2,53]),o($Vf1,[2,54]),o($Vf1,[2,55]),o($Vf1,[2,56]),o($Vf1,[2,57]),o($Vf1,[2,58]),o($Vf1,[2,59]),{4:213,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,33:[1,214],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:215,8:216,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$VF1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,74:$VG1,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,138:218,139:219,143:224,144:221,145:220,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{83:227,105:$VJ1,106:$VK1,133:$Vd1,134:$V61},{84:230,134:$VL1},o($Vf1,[2,215]),o($Vf1,$VM1,{41:232,42:$VN1}),{105:[1,234]},o($VO1,[2,102]),o($VO1,[2,103]),o($VP1,[2,122]),o($VP1,[2,125]),{7:235,8:236,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:237,8:238,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:239,8:240,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:242,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:$Vn1,34:66,37:241,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{34:251,38:248,39:$V2,40:$V3,72:249,73:$Vf,75:$Vl1,88:$VQ1,99:250,102:243,116:$Vp,168:244,169:$VR1,170:247},{166:252,167:253,171:[1,254],172:[1,255],173:[1,256]},o([6,33,96,118],$VS1,{45:94,117:257,67:258,68:259,69:260,71:261,43:264,77:266,38:267,41:268,72:269,78:270,34:271,79:272,80:273,81:274,39:$V2,40:$V3,42:$VN1,44:$V4,46:$V5,47:$V6,73:$VT1,75:$VU1,76:$VV1,82:$VW1,85:$VX1,116:$Vp,137:$Vt,152:$Vw}),o($VY1,[2,40]),o($VY1,[2,41]),o($Vf1,[2,50]),{17:172,18:173,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:277,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:174,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:278,102:32,103:34,104:37,108:$Vo,116:$Vp,137:$Vt,152:$Vw,185:$Vu1},o($VZ1,[2,37]),o($VZ1,[2,38]),o($V_1,[2,42]),{45:282,46:$V5,47:$V6,48:279,50:280,51:$V$1},o($VM,[2,5],{7:4,8:5,9:6,10:7,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,11:27,12:28,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,92:39,101:48,179:49,158:51,154:52,159:53,161:54,162:55,182:60,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,5:283,14:$V0,32:$V1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$VC,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($V51,[2,377]),{7:284,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:285,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:286,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:287,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:288,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:289,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:290,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:291,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:292,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:293,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:294,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:295,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:296,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:297,8:298,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V51,[2,281]),o($V51,[2,286]),{7:237,8:299,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:239,8:300,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{34:251,38:248,39:$V2,40:$V3,72:249,73:$Vf,75:$Vl1,88:$VQ1,99:250,102:301,116:$Vp,168:244,169:$VR1,170:247},{166:252,171:[1,302],172:[1,303],173:[1,304]},{7:305,8:306,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V51,[2,280]),o($V51,[2,285]),{45:307,46:$V5,47:$V6,84:308,134:$VL1},o($VP1,[2,123]),o($V02,[2,212]),{41:309,42:$VN1},{41:310,42:$VN1},o($VP1,[2,146],{41:311,42:$VN1}),o($VP1,[2,147],{41:312,42:$VN1}),o($VP1,[2,148]),{7:315,8:317,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:[1,314],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$V12,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,113:313,115:316,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,141:318,142:$V22,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{106:$V81,112:321,114:$Vc1},o($VP1,[2,124]),{6:[1,323],7:322,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,324],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V32,$V42,{95:327,91:[1,325],96:$V52}),o($V62,[2,107]),o($V62,[2,111],{66:[1,329],76:[1,328]}),o($V62,[2,115],{38:142,72:143,99:144,34:145,98:330,39:$V2,40:$V3,73:$Vk1,75:$Vl1,116:$Vp}),o($V72,[2,116]),o($V72,[2,117]),o($V72,[2,118]),o($V72,[2,119]),{41:232,42:$VN1},{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$VF1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,74:$VG1,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,138:218,139:219,143:224,144:221,145:220,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vf1,[2,99]),o($VN,[2,101]),{4:334,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,34:66,35:[1,333],38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V82,$V92,{158:117,161:118,165:122,191:$VU}),o($VN,[2,363]),{7:168,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:$Vv1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{155:$VO,157:$VP,158:124,161:125,163:$VQ,165:122,181:$V41},o([1,6,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,191,192,193,194,195,196,197,198,199,200,201,202],$Vz1,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:193,14:$V0,32:$Vo1,33:$VA1,36:$VB1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,160:$Vz,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($V82,$Va2,{158:117,161:118,165:122,191:$VU}),o($VN,[2,364]),o($Vb2,[2,368],{158:117,161:118,165:122,191:$VU,193:$VW}),o($Vi1,$Vj1,{97:139,98:140,38:142,72:143,99:144,34:145,90:336,39:$V2,40:$V3,73:$Vk1,75:$Vl1,76:$Vm1,116:$Vp}),{33:$Vn1,37:148},{7:337,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:338,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{155:$VO,157:$VP,158:124,161:125,163:$VQ,165:122,181:[1,339]},{18:199,89:$Vq1,92:160,93:$Vm,94:$Vn},{7:340,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vb2,[2,369],{158:117,161:118,165:122,191:$VU,193:$VW}),o($Vb2,[2,370],{158:117,161:118,165:122,191:$VU,193:$VW}),o($V82,[2,371],{158:117,161:118,165:122,191:$VU}),{34:341,116:$Vp},o($VN,[2,97],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:342,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$VC1,157:$VC1,163:$VC1,181:$VC1,160:$Vz,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($V51,[2,373],{46:$Vx1,47:$Vx1,105:$Vx1,106:$Vx1,109:$Vx1,110:$Vx1,111:$Vx1,114:$Vx1,133:$Vx1,134:$Vx1}),o($V02,$V61,{83:126,86:127,112:133,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1,133:$Vd1}),{86:136,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,112:133,114:$Vc1},o($Vc2,$Vg1),o($V51,[2,374],{46:$Vx1,47:$Vx1,105:$Vx1,106:$Vx1,109:$Vx1,110:$Vx1,111:$Vx1,114:$Vx1,133:$Vx1,134:$Vx1}),o($V51,[2,375]),o($V51,[2,376]),{6:[1,345],7:343,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,344],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{33:$Vn1,37:346,180:[1,347]},o($V51,[2,257],{148:348,149:[1,349],150:[1,350]}),o($V51,[2,278]),o($V51,[2,279]),o($V51,[2,287]),o($V51,[2,288]),{33:[1,351],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[1,352]},{175:353,177:354,178:$Vd2},o($V51,[2,161]),{7:356,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vy1,[2,164],{37:357,33:$Vn1,46:$Vx1,47:$Vx1,105:$Vx1,106:$Vx1,109:$Vx1,110:$Vx1,111:$Vx1,114:$Vx1,133:$Vx1,134:$Vx1,120:[1,358]}),o($Ve2,[2,264],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{34:359,116:$Vp},o($Ve2,[2,32],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{34:360,116:$Vp},{7:361,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([1,6,35,52,74,76,96,135,142,153,156,164],[2,95],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:362,14:$V0,32:$Vo1,33:$VD1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$VC1,157:$VC1,163:$VC1,181:$VC1,160:$Vz,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),{33:$Vn1,37:363,180:[1,364]},o($VN,[2,365]),o($Vf1,[2,394]),o($Ve1,$Vf2,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{34:365,116:$Vp},o($Ve1,[2,168]),{36:[1,366],96:[1,367]},{36:[1,368]},{33:$Vg2,38:373,39:$V2,40:$V3,118:[1,369],124:370,125:371,127:$Vh2},o([36,96],[2,184]),{126:[1,375]},{33:$Vi2,38:380,39:$V2,40:$V3,118:[1,376],127:$Vj2,130:377,132:378},o($Ve1,[2,188]),{66:[1,382]},{7:383,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,384],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{36:[1,385]},{6:$VL,153:[1,386]},{4:387,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vk2,$Vl2,{158:117,161:118,165:122,141:388,76:[1,389],142:$V22,155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vk2,$Vm2,{141:390,76:$V12,142:$V22}),o($Vn2,[2,218]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,74:[1,391],75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,143:393,145:392,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([6,33,74],$V42,{140:394,95:396,96:$Vo2}),o($Vp2,[2,249],{6:$Vq2}),o($Vr2,[2,240]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$VF1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,138:399,139:398,143:224,144:221,145:220,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vs2,[2,251]),o($Vr2,[2,245]),o($Vt2,[2,238]),o($Vt2,[2,239],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:400,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),{84:401,134:$VL1},{41:402,42:$VN1},{7:403,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,404],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vu2,[2,210]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$Vv2,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,135:[1,405],136:406,137:$Vt,143:407,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vw2,[2,217]),o($Vw2,[2,39]),{41:409,42:$VN1},{33:$Vn1,37:410,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:$Vn1,37:411},o($Vx2,[2,272],{158:117,161:118,165:122,155:$VO,156:[1,412],157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:[2,268],156:[1,413]},o($Vx2,[2,275],{158:117,161:118,165:122,155:$VO,156:[1,414],157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:[2,270],156:[1,415]},o($V51,[2,283]),o($Vy2,[2,284],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:$Vz2,164:[1,416]},o($VA2,[2,294]),{34:251,38:248,39:$V2,40:$V3,72:249,73:$Vk1,75:$Vl1,99:250,116:$Vp,168:417,170:247},{34:251,38:248,39:$V2,40:$V3,72:249,73:$Vk1,75:$Vl1,99:250,116:$Vp,168:418,170:247},o($VA2,[2,301],{96:[1,419]}),o($VB2,[2,297]),o($VB2,[2,298]),o($VB2,[2,299]),o($VB2,[2,300]),o($V51,[2,291]),{33:[2,293]},{7:420,8:421,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:422,8:423,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:424,8:425,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VC2,$V42,{95:426,96:$VD2}),o($VE2,[2,156]),o($VE2,[2,63],{70:[1,428]}),o($VE2,[2,64]),o($VF2,[2,72],{112:133,83:431,86:432,66:[1,429],76:[1,430],105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1,133:$Vd1,134:$V61}),{7:433,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([76,105,106,109,110,111,114,133,134],$VM1,{41:232,42:$VN1,73:[1,434]}),o($VF2,[2,75]),{34:271,38:267,39:$V2,40:$V3,41:268,42:$VN1,71:435,72:269,75:$Vg,77:436,78:270,79:272,80:273,81:274,82:$VW1,85:$VX1,116:$Vp,137:$Vt,152:$Vw},{76:[1,437],83:438,86:439,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,112:133,114:$Vc1,133:$Vd1,134:$V61},o($VG2,[2,69]),o($VG2,[2,70]),o($VG2,[2,71]),o($VH2,[2,80]),o($VH2,[2,81]),o($VH2,[2,82]),o($VH2,[2,83]),o($VH2,[2,84]),{83:440,105:$VJ1,106:$VK1,133:$Vd1,134:$V61},{84:441,134:$VL1},o($Vc2,$Vh1,{57:[1,442]}),o($Vc2,$Vx1),{45:282,46:$V5,47:$V6,49:[1,443],50:444,51:$V$1},o($VI2,[2,44]),{4:445,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,33:[1,446],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,52:[1,447],53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VI2,[2,49]),o($VM,[2,4]),o($VJ2,[2,378],{158:117,161:118,165:122,191:$VU,192:$VV,193:$VW}),o($VJ2,[2,379],{158:117,161:118,165:122,191:$VU,192:$VV,193:$VW}),o($Vb2,[2,380],{158:117,161:118,165:122,191:$VU,193:$VW}),o($Vb2,[2,381],{158:117,161:118,165:122,191:$VU,193:$VW}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,194,195,196,197,198,199,200,201,202],[2,382],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,195,196,197,198,199,200,201],[2,383],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,196,197,198,199,200,201],[2,384],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,197,198,199,200,201],[2,385],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,198,199,200,201],[2,386],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,199,200,201],[2,387],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,200,201],[2,388],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,201],[2,389],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,202:$V31}),o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,164,181,195,196,197,198,199,200,201,202],[2,390],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX}),o($Vy2,$VK2,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VN,[2,362]),{156:[1,448]},{156:[1,449]},o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,156,157,163,181,187,188,191,192,193,194,195,196,197,198,199,200,201,202],$Vz2,{164:[1,450]}),{7:451,8:452,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:453,8:454,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:455,8:456,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vy2,$VL2,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VN,[2,361]),o($Vu2,[2,207]),o($Vu2,[2,208]),o($VP1,[2,142]),o($VP1,[2,143]),o($VP1,[2,144]),o($VP1,[2,145]),{107:[1,457]},{7:315,8:317,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$V12,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,113:458,115:316,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,141:318,142:$V22,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VM2,[2,152],{158:117,161:118,165:122,141:459,76:$V12,142:$V22,155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VM2,[2,153]),{76:$V12,141:460,142:$V22},o($VM2,[2,230],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:461,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($VN2,[2,221]),o($VN2,$VO2),o($VP1,[2,151]),o($Ve2,[2,60],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:462,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:463,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{92:464,93:$Vm,94:$Vn},o($VP2,$VQ2,{98:140,38:142,72:143,99:144,34:145,97:465,39:$V2,40:$V3,73:$Vk1,75:$Vl1,76:$Vm1,116:$Vp}),{6:$VR2,33:$VS2},o($V62,[2,112]),{7:468,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V62,[2,113]),o($Vt2,$Vl2,{158:117,161:118,165:122,76:[1,469],155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vt2,$Vm2),o($VT2,[2,35]),{6:$VL,35:[1,470]},{7:471,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V32,$V42,{95:327,91:[1,472],96:$V52}),o($V82,$V92,{158:117,161:118,165:122,191:$VU}),o($V82,$Va2,{158:117,161:118,165:122,191:$VU}),{7:473,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{33:$Vn1,37:410,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{35:[1,474]},o($VN,[2,96],{158:117,161:118,165:122,155:$Vf2,157:$Vf2,163:$Vf2,181:$Vf2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,[2,391],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:475,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:476,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V51,[2,354]),{7:477,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V51,[2,258],{149:[1,478]}),{33:$Vn1,37:479},{33:$Vn1,34:481,37:482,38:480,39:$V2,40:$V3,116:$Vp},{175:483,177:354,178:$Vd2},{175:484,177:354,178:$Vd2},{35:[1,485],176:[1,486],177:487,178:$Vd2},o($VV2,[2,347]),{7:489,8:490,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,146:488,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VW2,[2,162],{158:117,161:118,165:122,37:491,33:$Vn1,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($V51,[2,165]),{7:492,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{35:[1,493]},{35:[1,494]},o($Ve2,[2,34],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VN,[2,94],{158:117,161:118,165:122,155:$Vf2,157:$Vf2,163:$Vf2,181:$Vf2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VN,[2,360]),{7:496,8:495,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{35:[1,497]},{45:498,46:$V5,47:$V6},{116:[1,500],123:499,128:$VE1},{45:501,46:$V5,47:$V6},{36:[1,502]},o($VC2,$V42,{95:503,96:$VX2}),o($VE2,[2,175]),{33:$Vg2,38:373,39:$V2,40:$V3,124:505,125:371,127:$Vh2},o($VE2,[2,180],{126:[1,506]}),o($VE2,[2,182],{126:[1,507]}),{38:508,39:$V2,40:$V3},o($Ve1,[2,186],{36:[1,509]}),o($VC2,$V42,{95:510,96:$VY2}),o($VE2,[2,197]),{33:$Vi2,38:380,39:$V2,40:$V3,127:$Vj2,130:512,132:378},o($VE2,[2,202],{126:[1,513]}),o($VE2,[2,205],{126:[1,514]}),{6:[1,516],7:515,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,517],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VZ2,[2,192],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{34:518,116:$Vp},{45:519,46:$V5,47:$V6},o($Vf1,[2,266]),{6:$VL,35:[1,520]},{7:521,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([14,32,39,40,44,46,47,54,55,59,60,61,62,63,64,73,75,82,85,87,88,89,93,94,108,116,119,121,129,137,147,151,152,155,157,160,163,174,180,183,184,185,186,187,188,189,190],$VO2,{6:$V_2,33:$V_2,74:$V_2,96:$V_2}),{7:522,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vn2,[2,219]),o($Vp2,[2,250],{6:$Vq2}),o($Vr2,[2,246]),{33:$V$2,74:[1,523]},o([6,33,35,74],$VQ2,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,92:39,101:48,179:49,158:51,154:52,159:53,161:54,162:55,182:60,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,9:154,145:220,143:224,100:225,7:331,8:332,144:525,138:526,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,76:$VH1,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,93:$Vm,94:$Vn,96:$VI1,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$VC,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($V03,[2,247],{6:[1,527]}),o($Vs2,[2,252]),o($VP2,$V42,{95:396,140:528,96:$Vo2}),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,143:393,145:392,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vt2,[2,121],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vu2,[2,209]),o($Vf1,[2,138]),{107:[1,529],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{7:530,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vu2,[2,213]),o([6,33,135],$V42,{95:531,96:$V13}),o($V23,[2,231]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$Vv2,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,136:533,137:$Vt,143:407,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vf1,[2,141]),o($V33,[2,351]),o($V43,[2,357]),{7:534,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:535,8:536,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:537,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:538,8:539,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:540,8:541,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VA2,[2,295]),o($VA2,[2,296]),{34:251,38:248,39:$V2,40:$V3,72:249,73:$Vk1,75:$Vl1,99:250,116:$Vp,170:542},{33:$V53,155:$VO,156:[1,543],157:$VP,158:117,161:118,163:$VQ,164:[1,544],165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,322],156:[1,545],164:[1,546]},{33:$V63,155:$VO,156:[1,547],157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,323],156:[1,548]},{33:$V73,155:$VO,156:[1,549],157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,338],156:[1,550]},{6:$V83,33:$V93,118:[1,551]},o($Va3,$VQ2,{45:94,68:259,69:260,71:261,43:264,77:266,38:267,41:268,72:269,78:270,34:271,79:272,80:273,81:274,67:554,39:$V2,40:$V3,42:$VN1,44:$V4,46:$V5,47:$V6,73:$VT1,75:$VU1,76:$VV1,82:$VW1,85:$VX1,116:$Vp,137:$Vt,152:$Vw}),{7:555,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,556],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:557,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,33:[1,558],34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VE2,[2,76]),{84:559,134:$VL1},o($VH2,[2,89]),{74:[1,560],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{7:561,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VE2,[2,77],{112:133,83:431,86:432,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1,133:$Vd1,134:$V61}),o($VE2,[2,79],{112:133,83:438,86:439,105:$V71,106:$V81,109:$V91,110:$Va1,111:$Vb1,114:$Vc1,133:$Vd1,134:$V61}),o($VE2,[2,78]),{84:562,134:$VL1},o($VH2,[2,90]),{84:563,134:$VL1},o($VH2,[2,86]),o($Vf1,[2,51]),o($V_1,[2,43]),o($VI2,[2,45]),{6:$VL,52:[1,564]},{4:565,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VI2,[2,48]),{7:566,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:567,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:568,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o([1,6,33,35,52,74,76,91,96,107,118,135,142,153,155,157,163,181],$V53,{158:117,161:118,165:122,156:[1,569],164:[1,570],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{156:[1,571],164:[1,572]},o($Vb3,$V63,{158:117,161:118,165:122,156:[1,573],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{156:[1,574]},o($Vb3,$V73,{158:117,161:118,165:122,156:[1,575],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{156:[1,576]},o($VP1,[2,149]),{35:[1,577]},o($VM2,[2,226],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:578,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($VM2,[2,228],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,101:48,179:49,158:51,154:52,159:53,161:54,162:55,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,92:160,9:163,7:579,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($VM2,[2,229],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,[2,61],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{35:[1,580],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{5:582,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$V1,33:$Vn1,34:66,37:581,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vk,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V62,[2,108]),{34:145,38:142,39:$V2,40:$V3,72:143,73:$Vk1,75:$Vl1,76:$Vm1,97:583,98:140,99:144,116:$Vp},o($Vc3,$Vj1,{97:139,98:140,38:142,72:143,99:144,34:145,90:584,39:$V2,40:$V3,73:$Vk1,75:$Vl1,76:$Vm1,116:$Vp}),o($V62,[2,114],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vt2,$V_2),o($VT2,[2,36]),o($Vy2,$VK2,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{92:585,93:$Vm,94:$Vn},o($Vy2,$VL2,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($V51,[2,372]),{35:[1,586],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($Ve2,[2,393],{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:$Vn1,37:587,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:$Vn1,37:588},o($V51,[2,259]),{33:$Vn1,37:589},{33:$Vn1,37:590},o($Vd3,[2,263]),{35:[1,591],176:[1,592],177:487,178:$Vd2},{35:[1,593],176:[1,594],177:487,178:$Vd2},o($V51,[2,345]),{33:$Vn1,37:595},o($VV2,[2,348]),{33:$Vn1,37:596,96:[1,597]},o($Ve3,[2,253],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve3,[2,254]),o($V51,[2,163]),o($VW2,[2,166],{158:117,161:118,165:122,37:598,33:$Vn1,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($V51,[2,265]),o($V51,[2,33]),{33:$Vn1,37:599},{155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($Ve1,[2,92]),o($Ve1,[2,169]),{36:[1,600]},{33:$Vg2,38:373,39:$V2,40:$V3,124:601,125:371,127:$Vh2},o($Ve1,[2,170]),{45:602,46:$V5,47:$V6},{6:$Vf3,33:$Vg3,118:[1,603]},o($Va3,$VQ2,{38:373,125:606,39:$V2,40:$V3,127:$Vh2}),o($VP2,$V42,{95:607,96:$VX2}),{38:608,39:$V2,40:$V3},{38:609,39:$V2,40:$V3},{36:[2,185]},{45:610,46:$V5,47:$V6},{6:$Vh3,33:$Vi3,118:[1,611]},o($Va3,$VQ2,{38:380,132:614,39:$V2,40:$V3,127:$Vj2}),o($VP2,$V42,{95:615,96:$VY2}),{38:616,39:$V2,40:$V3,127:[1,617]},{38:618,39:$V2,40:$V3},o($VZ2,[2,189],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:619,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:620,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{35:[1,621]},o($Ve1,[2,194]),{153:[1,622]},{74:[1,623],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{74:[1,624],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($Vn2,[2,220]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$VF1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,138:399,139:625,143:224,144:221,145:220,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vr2,[2,241]),o($V03,[2,248],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,92:39,101:48,179:49,158:51,154:52,159:53,161:54,162:55,182:60,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,9:154,100:225,7:331,8:332,145:392,143:393,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,76:$VH1,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,93:$Vm,94:$Vn,96:$VI1,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$VC,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,96:$VI1,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,138:399,143:224,144:626,145:220,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{33:$V$2,35:[1,627]},o($Vf1,[2,139]),{35:[1,628],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{6:$Vj3,33:$Vk3,135:[1,629]},o([6,33,35,135],$VQ2,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,65:29,58:30,79:31,102:32,56:33,103:34,81:35,80:36,104:37,92:39,101:48,179:49,158:51,154:52,159:53,161:54,162:55,182:60,99:65,34:66,43:67,53:69,38:84,72:85,165:91,45:94,9:154,100:225,7:331,8:332,143:632,14:$V0,32:$Vo1,39:$V2,40:$V3,44:$V4,46:$V5,47:$V6,54:$V7,55:$V8,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,73:$Vf,75:$Vg,76:$VH1,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,93:$Vm,94:$Vn,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,155:$Vx,157:$Vy,160:$Vz,163:$VA,174:$VB,180:$VC,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK}),o($VP2,$V42,{95:633,96:$V13}),o($Vy2,[2,273],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:$Vl3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,269]},o($Vy2,[2,276],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{33:$Vm3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,271]},{33:$Vn3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,292]},o($VA2,[2,302]),{7:634,8:635,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:636,8:637,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:638,8:639,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:640,8:641,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:642,8:643,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:644,8:645,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:646,8:647,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:648,8:649,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($Vn2,[2,154]),{34:271,38:267,39:$V2,40:$V3,41:268,42:$VN1,43:264,44:$V4,45:94,46:$V5,47:$V6,67:650,68:259,69:260,71:261,72:269,73:$VT1,75:$VU1,76:$VV1,77:266,78:270,79:272,80:273,81:274,82:$VW1,85:$VX1,116:$Vp,137:$Vt,152:$Vw},o($Vc3,$VS1,{45:94,67:258,68:259,69:260,71:261,43:264,77:266,38:267,41:268,72:269,78:270,34:271,79:272,80:273,81:274,117:651,39:$V2,40:$V3,42:$VN1,44:$V4,46:$V5,47:$V6,73:$VT1,75:$VU1,76:$VV1,82:$VW1,85:$VX1,116:$Vp,137:$Vt,152:$Vw}),o($VE2,[2,157]),o($VE2,[2,65],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:652,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VE2,[2,67],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:653,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($VH2,[2,87]),o($VF2,[2,73]),{74:[1,654],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($VH2,[2,88]),o($VH2,[2,85]),o($VI2,[2,46]),{6:$VL,35:[1,655]},o($Vy2,$Vl3,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vy2,$Vm3,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Vy2,$Vn3,{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{7:656,8:657,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:658,8:659,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:660,8:661,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:662,8:663,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:664,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:665,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:666,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:667,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{107:[1,668]},o($VM2,[2,225],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VM2,[2,227],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($V51,[2,62]),o($Vf1,[2,98]),o($VN,[2,100]),o($V62,[2,109]),o($VP2,$V42,{95:669,96:$V52}),{33:$Vn1,37:581},o($V51,[2,392]),o($V33,[2,352]),o($V51,[2,260]),o($Vd3,[2,261]),o($Vd3,[2,262]),o($V51,[2,341]),{33:$Vn1,37:670},o($V51,[2,342]),{33:$Vn1,37:671},{35:[1,672]},o($VV2,[2,349],{6:[1,673]}),{7:674,8:675,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V51,[2,167]),o($V43,[2,358]),{45:676,46:$V5,47:$V6},o($VC2,$V42,{95:677,96:$VX2}),o($Ve1,[2,171]),{36:[1,678]},{38:373,39:$V2,40:$V3,125:679,127:$Vh2},{33:$Vg2,38:373,39:$V2,40:$V3,124:680,125:371,127:$Vh2},o($VE2,[2,176]),{6:$Vf3,33:$Vg3,35:[1,681]},o($VE2,[2,181]),o($VE2,[2,183]),o($Ve1,[2,195]),o($Ve1,[2,187],{36:[1,682]}),{38:380,39:$V2,40:$V3,127:$Vj2,132:683},{33:$Vi2,38:380,39:$V2,40:$V3,127:$Vj2,130:684,132:378},o($VE2,[2,198]),{6:$Vh3,33:$Vi3,35:[1,685]},o($VE2,[2,203]),o($VE2,[2,204]),o($VE2,[2,206]),o($VZ2,[2,190],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{35:[1,686],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($Ve1,[2,193]),o($Vf1,[2,267]),o($Vf1,[2,223]),o($Vf1,[2,224]),o($VP2,$V42,{95:396,140:687,96:$Vo2}),o($Vr2,[2,242]),o($Vr2,[2,243]),{107:[1,688]},o($Vu2,[2,214]),{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,143:689,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:331,8:332,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,33:$Vv2,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,76:$VH1,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,100:225,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,136:690,137:$Vt,143:407,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V23,[2,232]),{6:$Vj3,33:$Vk3,35:[1,691]},{33:$Vo3,155:$VO,157:$VP,158:117,161:118,163:$VQ,164:[1,692],165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,324],164:[1,693]},{33:$Vp3,155:$VO,156:[1,694],157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,328],156:[1,695]},{33:$Vq3,155:$VO,157:$VP,158:117,161:118,163:$VQ,164:[1,696],165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,325],164:[1,697]},{33:$Vr3,155:$VO,156:[1,698],157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,329],156:[1,699]},{33:$Vs3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,326]},{33:$Vt3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,327]},{33:$Vu3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,339]},{33:$Vv3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,340]},o($VE2,[2,158]),o($VP2,$V42,{95:700,96:$VD2}),{35:[1,701],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{35:[1,702],155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VU2,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},o($VF2,[2,74]),{52:[1,703]},o($Vw3,$Vo3,{158:117,161:118,165:122,164:[1,704],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{164:[1,705]},o($Vb3,$Vp3,{158:117,161:118,165:122,156:[1,706],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{156:[1,707]},o($Vw3,$Vq3,{158:117,161:118,165:122,164:[1,708],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{164:[1,709]},o($Vb3,$Vr3,{158:117,161:118,165:122,156:[1,710],187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{156:[1,711]},o($Ve2,$Vs3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$Vt3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$Vu3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$Vv3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($VP1,[2,150]),{6:$VR2,33:$VS2,35:[1,712]},{35:[1,713]},{35:[1,714]},o($V51,[2,346]),o($VV2,[2,350]),o($Ve3,[2,255],{158:117,161:118,165:122,155:$VO,157:$VP,163:$VQ,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve3,[2,256]),o($Ve1,[2,173]),{6:$Vf3,33:$Vg3,118:[1,715]},{45:716,46:$V5,47:$V6},o($VE2,[2,177]),o($VP2,$V42,{95:717,96:$VX2}),o($VE2,[2,178]),{45:718,46:$V5,47:$V6},o($VE2,[2,199]),o($VP2,$V42,{95:719,96:$VY2}),o($VE2,[2,200]),o($Ve1,[2,191]),{33:$V$2,35:[1,720]},o($Vf1,[2,140]),o($V23,[2,233]),o($VP2,$V42,{95:721,96:$V13}),o($V23,[2,234]),{7:722,8:723,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:724,8:725,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:726,8:727,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:728,8:729,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:730,8:731,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:732,8:733,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:734,8:735,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:736,8:737,9:154,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vl,92:39,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$VC,182:60,183:$VD,184:$VE,185:$VF,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{6:$V83,33:$V93,35:[1,738]},o($VE2,[2,66]),o($VE2,[2,68]),o($VI2,[2,47]),{7:739,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:740,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:741,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:742,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:743,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:744,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:745,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},{7:746,9:163,13:23,14:$V0,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:$Vo1,34:66,38:84,39:$V2,40:$V3,43:67,44:$V4,45:94,46:$V5,47:$V6,53:69,54:$V7,55:$V8,56:33,58:30,59:$V9,60:$Va,61:$Vb,62:$Vc,63:$Vd,64:$Ve,65:29,72:85,73:$Vf,75:$Vg,79:31,80:36,81:35,82:$Vh,85:$Vi,87:$Vj,88:$Vp1,89:$Vq1,92:160,93:$Vm,94:$Vn,99:65,101:48,102:32,103:34,104:37,108:$Vo,116:$Vp,119:$Vq,121:$Vr,129:$Vs,137:$Vt,147:$Vu,151:$Vv,152:$Vw,154:52,155:$Vx,157:$Vy,158:51,159:53,160:$Vz,161:54,162:55,163:$VA,165:91,174:$VB,179:49,180:$Vr1,183:$Vs1,184:$Vt1,185:$Vu1,186:$VG,187:$VH,188:$VI,189:$VJ,190:$VK},o($V62,[2,110]),o($V51,[2,343]),o($V51,[2,344]),{36:[1,747]},o($Ve1,[2,172]),{6:$Vf3,33:$Vg3,35:[1,748]},o($Ve1,[2,196]),{6:$Vh3,33:$Vi3,35:[1,749]},o($Vr2,[2,244]),{6:$Vj3,33:$Vk3,35:[1,750]},{33:$Vx3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,330]},{33:$Vy3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,332]},{33:$Vz3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,334]},{33:$VA3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,336]},{33:$VB3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,331]},{33:$VC3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,333]},{33:$VD3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,335]},{33:$VE3,155:$VO,157:$VP,158:117,161:118,163:$VQ,165:122,181:$VR,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31},{33:[2,337]},o($VE2,[2,159]),o($Ve2,$Vx3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$Vy3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$Vz3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$VA3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$VB3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$VC3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$VD3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),o($Ve2,$VE3,{158:117,161:118,165:122,187:$VS,188:$VT,191:$VU,192:$VV,193:$VW,194:$VX,195:$VY,196:$VZ,197:$V_,198:$V$,199:$V01,200:$V11,201:$V21,202:$V31}),{45:751,46:$V5,47:$V6},o($VE2,[2,179]),o($VE2,[2,201]),o($V23,[2,235]),o($Ve1,[2,174])],defaultActions:{253:[2,293],508:[2,185],536:[2,269],539:[2,271],541:[2,292],643:[2,326],645:[2,327],647:[2,339],649:[2,340],723:[2,330],725:[2,332],727:[2,334],729:[2,336],731:[2,331],733:[2,333],735:[2,335],737:[2,337]},parseError:function(str,hash){if(hash.recoverable)this.trace(str);else{var error=new Error(str);throw error.hash=hash,error}},parse:function(input){var self=this,stack=[0],vstack=[null],lstack=[],table=this.table,yytext="",yylineno=0,yyleng=0,recovering=0,EOF=1,args=lstack.slice.call(arguments,1),lexer=Object.create(this.lexer),sharedState={yy:{}};for(var k in this.yy)Object.prototype.hasOwnProperty.call(this.yy,k)&&(sharedState.yy[k]=this.yy[k]);lexer.setInput(input,sharedState.yy),sharedState.yy.lexer=lexer,sharedState.yy.parser=this,"undefined"==typeof lexer.yylloc&&(lexer.yylloc={});var yyloc=lexer.yylloc;lstack.push(yyloc);var ranges=lexer.options&&lexer.options.ranges;this.parseError="function"==typeof sharedState.yy.parseError?sharedState.yy.parseError:Object.getPrototypeOf(this).parseError;_token_stack:var lex=function(){var token;return token=lexer.lex()||EOF,"number"!=typeof token&&(token=self.symbols_[token]||token),token};for(var yyval={},symbol,preErrorSymbol,state,action,r,p,len,newState,expected;;){if(state=stack[stack.length-1],this.defaultActions[state]?action=this.defaultActions[state]:((null===symbol||"undefined"==typeof symbol)&&(symbol=lex()),action=table[state]&&table[state][symbol]),"undefined"==typeof action||!action.length||!action[0]){var errStr="";for(p in expected=[],table[state])this.terminals_[p]&&p>2&&expected.push("'"+this.terminals_[p]+"'");errStr=lexer.showPosition?"Parse error on line "+(yylineno+1)+":\n"+lexer.showPosition()+"\nExpecting "+expected.join(", ")+", got '"+(this.terminals_[symbol]||symbol)+"'":"Parse error on line "+(yylineno+1)+": Unexpected "+(symbol==EOF?"end of input":"'"+(this.terminals_[symbol]||symbol)+"'"),this.parseError(errStr,{text:lexer.match,token:this.terminals_[symbol]||symbol,line:lexer.yylineno,loc:yyloc,expected:expected})}if(action[0]instanceof Array&&1indexOf.call(this.compiledComments,comment)))&&(this.compiledComments.push(comment),commentFragment=comment.here?new HereComment(comment).compileNode(o):new LineComment(comment).compileNode(o),commentFragment.isHereComment&&!commentFragment.newLine||node.includeCommentFragments()?unshiftCommentFragment(commentFragment):(0===fragments.length&&fragments.push(this.makeCode("")),commentFragment.unshift?(null==(base1=fragments[0]).precedingComments&&(base1.precedingComments=[]),fragments[0].precedingComments.push(commentFragment)):(null==(base2=fragments[fragments.length-1]).followingComments&&(base2.followingComments=[]),fragments[fragments.length-1].followingComments.push(commentFragment))));return fragments}},{key:"cache",value:function cache(o,level,shouldCache){var complex,ref,sub;return complex=null==shouldCache?this.shouldCache():shouldCache(this),complex?(ref=new IdentifierLiteral(o.scope.freeVariable("ref")),sub=new Assign(ref,this),level?[sub.compileToFragments(o,level),[this.makeCode(ref.value)]]:[sub,ref]):(ref=level?this.compileToFragments(o,level):this,[ref,ref])}},{key:"hoist",value:function hoist(){var compileNode,compileToFragments,target;return this.hoisted=!0,target=new HoistTarget(this),compileNode=this.compileNode,compileToFragments=this.compileToFragments,this.compileNode=function(o){return target.update(compileNode,o)},this.compileToFragments=function(o){return target.update(compileToFragments,o)},target}},{key:"cacheToCodeFragments",value:function cacheToCodeFragments(cacheValues){return[fragmentsToText(cacheValues[0]),fragmentsToText(cacheValues[1])]}},{key:"makeReturn",value:function makeReturn(results,mark){var node;return mark?void(this.canBeReturned=!0):(node=this.unwrapAll(),results?new Call(new Literal("".concat(results,".push")),[node]):new Return(node))}},{key:"contains",value:function contains(pred){var node;return node=void 0,this.traverseChildren(!1,function(n){if(pred(n))return node=n,!1}),node}},{key:"lastNode",value:function lastNode(list){return 0===list.length?null:list[list.length-1]}},{key:"toString",value:function toString(){var idt=0LEVEL_TOP&&this.checkForPureStatementInExpression(),this.isStatement(o)&&o.level!==LEVEL_TOP&&null!=o.scope&&this.makeReturn(null,!0),o}},{key:"astNode",value:function astNode(o){return Object.assign({},{type:this.astType(o)},this.astProperties(o),this.astLocationData())}},{key:"astProperties",value:function astProperties(){return{}}},{key:"astType",value:function astType(){return this.constructor.name}},{key:"astLocationData",value:function astLocationData(){return jisonLocationDataToAstLocationData(this.locationData)}},{key:"isStatementAst",value:function isStatementAst(o){return this.isStatement(o)}},{key:"eachChild",value:function eachChild(func){var attr,child,j,k,len1,len2,ref1,ref2;if(!this.children)return this;for(ref1=this.children,j=0,len1=ref1.length;j=LEVEL_LIST?this.wrapInParentheses(answer):answer)}},{key:"compileRoot",value:function compileRoot(o){var fragments;return this.spaced=!0,fragments=this.compileWithDeclarations(o),HoistTarget.expand(fragments),this.compileComments(fragments)}},{key:"compileWithDeclarations",value:function compileWithDeclarations(o){var assigns,declaredVariable,declaredVariables,declaredVariablesIndex,declars,exp,fragments,i,j,k,len1,len2,post,ref1,rest,scope,spaced;for(fragments=[],post=[],ref1=this.expressions,(i=j=0,len1=ref1.length);j=LEVEL_OP?this.wrapInParentheses(code):code}},{key:"astType",value:function astType(){return"Identifier"}},{key:"astProperties",value:function astProperties(){return{name:"NaN",declaration:!1}}}]),NaNLiteral}(NumberLiteral),exports.StringLiteral=StringLiteral=function(_Literal2){"use strict";function StringLiteral(originalValue){var _ref24=1=LEVEL_ACCESS?"(void 0)":"void 0")]}},{key:"astType",value:function astType(){return"Identifier"}},{key:"astProperties",value:function astProperties(){return{name:this.value,declaration:!1}}}]),UndefinedLiteral}(Literal),exports.NullLiteral=NullLiteral=function(_Literal10){"use strict";function NullLiteral(){return _classCallCheck(this,NullLiteral),_possibleConstructorReturn(this,_getPrototypeOf(NullLiteral).call(this,"null"))}return _inherits(NullLiteral,_Literal10),NullLiteral}(Literal),exports.BooleanLiteral=BooleanLiteral=function(_Literal11){"use strict";function BooleanLiteral(value){var _ref27=1this.properties.length&&!this.base.shouldCache()&&(null==name||!name.shouldCache()))?[this,this]:(base=new Value(this.base,this.properties.slice(0,-1)),base.shouldCache()&&(bref=new IdentifierLiteral(o.scope.freeVariable("base")),base=new Value(new Parens(new Assign(bref,base)))),!name)?[base,bref]:(name.shouldCache()&&(nref=new IdentifierLiteral(o.scope.freeVariable("name")),name=new Index(new Assign(nref,name.index)),nref=new Index(nref)),[base.add(name),new Value(bref||base.base,[nref||name])])}},{key:"compileNode",value:function compileNode(o){var fragments,j,len1,prop,props;for(this.base.front=this.front,props=this.properties,fragments=props.length&&null!=this.base.cached?this.base.cached:this.base.compileToFragments(o,props.length?LEVEL_ACCESS:null),props.length&&SIMPLENUM.test(fragmentsToText(fragments))&&fragments.push(this.makeCode(".")),(j=0,len1=props.length);j")),(_fragments8=fragments).push.apply(_fragments8,_toConsumableArray(this.content.compileNode(o,LEVEL_LIST))),(_fragments9=fragments).push.apply(_fragments9,[this.makeCode("")]))}else fragments.push(this.makeCode(" />"));return fragments}},{key:"isFragment",value:function isFragment(){return!this.tagName.base.value.length}},{key:"astNode",value:function astNode(o){var tagName;return this.openingElementLocationData=jisonLocationDataToAstLocationData(this.attributes.locationData),tagName=this.tagName.base,tagName.locationData=tagName.tagNameLocationData,null!=this.content&&(this.closingElementLocationData=mergeAstLocationData(jisonLocationDataToAstLocationData(tagName.closingTagOpeningBracketLocationData),jisonLocationDataToAstLocationData(tagName.closingTagClosingBracketLocationData))),_get(_getPrototypeOf(JSXElement.prototype),"astNode",this).call(this,o)}},{key:"astType",value:function astType(){return this.isFragment()?"JSXFragment":"JSXElement"}},{key:"elementAstProperties",value:function elementAstProperties(o){var _this34=this,closingElement,columnDiff,currentExpr,openingElement,rangeDiff,ref1,shiftAstLocationData,tagNameAst;if(tagNameAst=function(){var tag;return tag=_this34.tagName.unwrap(),(null==tag?void 0:tag.value)&&0<=indexOf.call(tag.value,":")&&(tag=new JSXNamespacedName(tag)),tag.ast(o)},openingElement=Object.assign({type:"JSXOpeningElement",name:tagNameAst(),selfClosing:null==this.closingElementLocationData,attributes:this.attributes.ast(o)},this.openingElementLocationData),closingElement=null,null!=this.closingElementLocationData&&(closingElement=Object.assign({type:"JSXClosingElement",name:Object.assign(tagNameAst(),jisonLocationDataToAstLocationData(this.tagName.base.closingTagNameLocationData))},this.closingElementLocationData),"JSXMemberExpression"===(ref1=closingElement.name.type)||"JSXNamespacedName"===ref1))if(rangeDiff=closingElement.range[0]-openingElement.range[0]+"/".length,columnDiff=closingElement.loc.start.column-openingElement.loc.start.column+"/".length,shiftAstLocationData=function(node){return node.range=[node.range[0]+rangeDiff,node.range[1]+rangeDiff],node.start+=rangeDiff,node.end+=rangeDiff,node.loc.start={line:_this34.closingElementLocationData.loc.start.line,column:node.loc.start.column+columnDiff},node.loc.end={line:_this34.closingElementLocationData.loc.start.line,column:node.loc.end.column+columnDiff}},"JSXMemberExpression"===closingElement.name.type){for(currentExpr=closingElement.name;"JSXMemberExpression"===currentExpr.type;)currentExpr!==closingElement.name&&shiftAstLocationData(currentExpr),shiftAstLocationData(currentExpr.property),currentExpr=currentExpr.object;shiftAstLocationData(currentExpr)}else shiftAstLocationData(closingElement.name.namespace),shiftAstLocationData(closingElement.name.name);return{openingElement:openingElement,closingElement:closingElement}}},{key:"fragmentAstProperties",value:function fragmentAstProperties(){var closingFragment,openingFragment;return openingFragment=Object.assign({type:"JSXOpeningFragment"},this.openingElementLocationData),closingFragment=Object.assign({type:"JSXClosingFragment"},this.closingElementLocationData),{openingFragment:openingFragment,closingFragment:closingFragment}}},{key:"contentAst",value:function contentAst(o){var base1,child,children,content,element,emptyExpression,expression,j,len1,results1,unwrapped;if(!this.content||("function"==typeof(base1=this.content.base).isEmpty?base1.isEmpty():void 0))return[];for(content=this.content.unwrapAll(),children=function(){var j,len1,ref1,results1;if(content instanceof StringLiteral)return[new JSXText(content)];for(ref1=this.content.unwrapAll().extractElements(o,{includeInterpolationWrappers:!0,isJsx:!0}),results1=[],(j=0,len1=ref1.length);jLEVEL_TOP){var _superCall$cache=superCall.cache(o,null,YES),_superCall$cache2=_slicedToArray(_superCall$cache,2);superCall=_superCall$cache2[0],ref=_superCall$cache2[1],replacement.push(ref)}return replacement.unshift(superCall),replacement.compileToFragments(o,o.level===LEVEL_TOP?o.level:LEVEL_LIST)}}]),SuperCall}(Call);return SuperCall.prototype.children=Call.prototype.children.concat(["expressions"]),SuperCall}.call(this),exports.Super=Super=function(){var Super=function(_Base19){"use strict";function Super(accessor,superLiteral){var _this36;return _classCallCheck(this,Super),_this36=_possibleConstructorReturn(this,_getPrototypeOf(Super).call(this)),_this36.accessor=accessor,_this36.superLiteral=superLiteral,_this36}return _inherits(Super,_Base19),_createClass(Super,[{key:"compileNode",value:function compileNode(o){var fragments,method,name,nref,ref1,ref2,salvagedComments,variable;if(this.checkInInstanceMethod(o),method=o.scope.namedMethod(),null==method.ctor&&null==this.accessor){var _method=method;name=_method.name,variable=_method.variable,(name.shouldCache()||name instanceof Index&&name.index.isAssignable())&&(nref=new IdentifierLiteral(o.scope.parent.freeVariable("name")),name.index=new Assign(nref,name.index)),this.accessor=null==nref?name:new Index(nref)}return(null==(ref1=this.accessor)||null==(ref2=ref1.name)?void 0:ref2.comments)&&(salvagedComments=this.accessor.name.comments,delete this.accessor.name.comments),fragments=new Value(new Literal("super"),this.accessor?[this.accessor]:[]).compileToFragments(o),salvagedComments&&attachCommentsToNode(salvagedComments,this.accessor.name),fragments}},{key:"checkInInstanceMethod",value:function checkInInstanceMethod(o){var method;if(method=o.scope.namedMethod(),null==method||!method.isMethod)return this.error("cannot use super outside of an instance method")}},{key:"astNode",value:function astNode(o){var ref1;return this.checkInInstanceMethod(o),null==this.accessor?_get(_getPrototypeOf(Super.prototype),"astNode",this).call(this,o):new Value(new Super().withLocationDataFrom(null==(ref1=this.superLiteral)?this:ref1),[this.accessor]).withLocationDataFrom(this).ast(o)}}]),Super}(Base);return Super.prototype.children=["accessor"],Super}.call(this),exports.RegexWithInterpolations=RegexWithInterpolations=function(){var RegexWithInterpolations=function(_Base20){"use strict";function RegexWithInterpolations(call1){var _ref37=1").concat(this.equals);var _ref39=[this.fromNum,this.toNum];return from=_ref39[0],to=_ref39[1],stepNotZero="".concat(null==(ref1=this.stepNum)?this.stepVar:ref1," !== 0"),stepCond="".concat(null==(ref2=this.stepNum)?this.stepVar:ref2," > 0"),lowerBound="".concat(lt," ").concat(known?to:this.toVar),upperBound="".concat(gt," ").concat(known?to:this.toVar),condPart=null==this.step?known?"".concat(from<=to?lt:gt," ").concat(to):"(".concat(this.fromVar," <= ").concat(this.toVar," ? ").concat(lowerBound," : ").concat(upperBound,")"):null!=this.stepNum&&0!==this.stepNum?0 0"):"".concat(this.fromVar," <= ").concat(this.toVar),stepPart=this.stepVar?"".concat(idx," += ").concat(this.stepVar):known?namedIndex?from<=to?"++".concat(idx):"--".concat(idx):from<=to?"".concat(idx,"++"):"".concat(idx,"--"):namedIndex?"".concat(cond," ? ++").concat(idx," : --").concat(idx):"".concat(cond," ? ").concat(idx,"++ : ").concat(idx,"--"),namedIndex&&(varPart="".concat(idxName," = ").concat(varPart)),namedIndex&&(stepPart="".concat(idxName," = ").concat(stepPart)),[this.makeCode("".concat(varPart,"; ").concat(condPart,"; ").concat(stepPart))]}},{key:"compileArray",value:function compileArray(o){var args,body,cond,hasArgs,i,idt,known,post,pre,range,ref1,result,vars;return(known=null!=this.fromNum&&null!=this.toNum,known&&20>=_Mathabs(this.fromNum-this.toNum))?(range=function(){for(var results1=[],j=ref1=this.fromNum,ref2=this.toNum;ref1<=ref2?j<=ref2:j>=ref2;ref1<=ref2?j++:j--)results1.push(j);return results1}.apply(this),this.exclusive&&range.pop(),[this.makeCode("[".concat(range.join(", "),"]"))]):(idt=this.tab+TAB,i=o.scope.freeVariable("i",{single:!0,reserve:!1}),result=o.scope.freeVariable("results",{reserve:!1}),pre="\n".concat(idt,"var ").concat(result," = [];"),known?(o.index=i,body=fragmentsToText(this.compileNode(o))):(vars="".concat(i," = ").concat(this.fromC)+(this.toC===this.toVar?"":", ".concat(this.toC)),cond="".concat(this.fromVar," <= ").concat(this.toVar),body="var ".concat(vars,"; ").concat(cond," ? ").concat(i," <").concat(this.equals," ").concat(this.toVar," : ").concat(i," >").concat(this.equals," ").concat(this.toVar,"; ").concat(cond," ? ").concat(i,"++ : ").concat(i,"--")),post="{ ".concat(result,".push(").concat(i,"); }\n").concat(idt,"return ").concat(result,";\n").concat(o.indent),hasArgs=function(node){return null==node?void 0:node.contains(isLiteralArguments)},(hasArgs(this.from)||hasArgs(this.to))&&(args=", arguments"),[this.makeCode("(function() {".concat(pre,"\n").concat(idt,"for (").concat(body,")").concat(post,"}).apply(this").concat(null==args?"":args,")"))])}},{key:"astProperties",value:function astProperties(o){var ref1,ref2,ref3,ref4;return{from:null==(ref1=null==(ref2=this.from)?void 0:ref2.ast(o))?null:ref1,to:null==(ref3=null==(ref4=this.to)?void 0:ref4.ast(o))?null:ref3,exclusive:this.exclusive}}}]),Range}(Base);return Range.prototype.children=["from","to"],Range}.call(this),exports.Slice=Slice=function(){var Slice=function(_Base25){"use strict";function Slice(range1){var _this42;return _classCallCheck(this,Slice),_this42=_possibleConstructorReturn(this,_getPrototypeOf(Slice).call(this)),_this42.range=range1,_this42}return _inherits(Slice,_Base25),_createClass(Slice,[{key:"compileNode",value:function compileNode(o){var _this$range=this.range,compiled,compiledText,from,fromCompiled,to,toStr;return to=_this$range.to,from=_this$range.from,(null==from?void 0:from.shouldCache())&&(from=new Value(new Parens(from))),(null==to?void 0:to.shouldCache())&&(to=new Value(new Parens(to))),fromCompiled=(null==from?void 0:from.compileToFragments(o,LEVEL_PAREN))||[this.makeCode("0")],to&&(compiled=to.compileToFragments(o,LEVEL_PAREN),compiledText=fragmentsToText(compiled),(this.range.exclusive||-1!=+compiledText)&&(toStr=", "+(this.range.exclusive?compiledText:to.isNumber()?"".concat(+compiledText+1):(compiled=to.compileToFragments(o,LEVEL_ACCESS),"+".concat(fragmentsToText(compiled)," + 1 || 9e9"))))),[this.makeCode(".slice(".concat(fragmentsToText(fromCompiled)).concat(toStr||"",")"))]}},{key:"astNode",value:function astNode(o){return this.range.ast(o)}}]),Slice}(Base);return Slice.prototype.children=["range"],Slice}.call(this),exports.Obj=Obj=function(){var Obj=function(_Base26){"use strict";function Obj(props){var generated=!!(1start)return exprs.push(new Value(new Obj(properties.slice(start,end),!0)))};assign=properties[end];)(initializerExpression=this.addInitializerExpression(assign,o))&&(pushSlice(),exprs.push(initializerExpression),initializer.push(initializerExpression),start=end+1),end++;pushSlice(),splice.apply(expressions,[i,i-i+1].concat(exprs)),exprs,i+=exprs.length}else(initializerExpression=this.addInitializerExpression(expression,o))&&(initializer.push(initializerExpression),expressions[i]=initializerExpression),i+=1;for(k=0,len2=initializer.length;kLEVEL_LIST||isValue&&this.variable.base instanceof Obj&&!this.nestedLhs&&!0!==this.param?this.wrapInParentheses(answer):answer)}},{key:"compileObjectDestruct",value:function compileObjectDestruct(o){var assigns,props,refVal,splat,splatProp;this.variable.base.reorderProperties(),props=this.variable.base.properties;var _slice1$call15=slice1.call(props,-1),_slice1$call16=_slicedToArray(_slice1$call15,1);return splat=_slice1$call16[0],splatProp=splat.name,assigns=[],refVal=new Value(new IdentifierLiteral(o.scope.freeVariable("ref"))),props.splice(-1,1,new Splat(refVal)),assigns.push(new Assign(new Value(new Obj(props)),this.value).compileToFragments(o,LEVEL_LIST)),assigns.push(new Assign(new Value(splatProp),refVal).compileToFragments(o,LEVEL_LIST)),this.joinFragmentArrays(assigns,", ")}},{key:"compileDestructuring",value:function compileDestructuring(o){var _this58=this,assignObjects,assigns,code,compSlice,compSplice,complexObjects,expIdx,expans,fragments,hasObjAssigns,isExpans,isSplat,leftObjs,loopObjects,obj,objIsUnassignable,objects,olen,processObjects,pushAssign,ref,refExp,restVar,rightObjs,slicer,splatVar,splatVarAssign,splatVarRef,splats,splatsAndExpans,top,value,vvar,vvarText;if(top=o.level===LEVEL_TOP,value=this.value,objects=this.variable.base.objects,olen=objects.length,0===olen)return code=value.compileToFragments(o),o.level>=LEVEL_OP?this.wrapInParentheses(code):code;var _objects=objects,_objects2=_slicedToArray(_objects,1);obj=_objects2[0],this.disallowLoneExpansion();var _this$getAndCheckSpla=this.getAndCheckSplatsAndExpansions();return splats=_this$getAndCheckSpla.splats,expans=_this$getAndCheckSpla.expans,splatsAndExpans=_this$getAndCheckSpla.splatsAndExpans,isSplat=0<(null==splats?void 0:splats.length),isExpans=0<(null==expans?void 0:expans.length),vvar=value.compileToFragments(o,LEVEL_LIST),vvarText=fragmentsToText(vvar),assigns=[],pushAssign=function(variable,val){return assigns.push(new Assign(variable,val,null,{param:_this58.param,subpattern:!0}).compileToFragments(o,LEVEL_LIST))},isSplat&&(splatVar=objects[splats[0]].name.unwrap(),(splatVar instanceof Arr||splatVar instanceof Obj)&&(splatVarRef=new IdentifierLiteral(o.scope.freeVariable("ref")),objects[splats[0]].name=splatVarRef,splatVarAssign=function(){return pushAssign(new Value(splatVar),splatVarRef)})),(!(value.unwrap()instanceof IdentifierLiteral)||this.variable.assigns(vvarText))&&(ref=o.scope.freeVariable("ref"),assigns.push([this.makeCode(ref+" = ")].concat(_toConsumableArray(vvar))),vvar=[this.makeCode(ref)],vvarText=ref),slicer=function(type){return function(vvar,start){var end=!!(2LEVEL_TOP?this.wrapInParentheses(answer):answer}},{key:"eachName",value:function eachName(iterator){return this.variable.unwrapAll().eachName(iterator)}},{key:"isDefaultAssignment",value:function isDefaultAssignment(){return this.param||this.nestedLhs}},{key:"propagateLhs",value:function propagateLhs(){var ref1,ref2;return(null==(ref1=this.variable)?void 0:"function"==typeof ref1.isArray?ref1.isArray():void 0)||(null==(ref2=this.variable)?void 0:"function"==typeof ref2.isObject?ref2.isObject():void 0)?this.variable.base.propagateLhs(!0):void 0}},{key:"throwUnassignableConditionalError",value:function throwUnassignableConditionalError(name){return this.variable.error("the variable \"".concat(name,"\" can't be assigned with ").concat(this.context," because it has not been declared before"))}},{key:"isConditional",value:function isConditional(){var ref1;return"||="===(ref1=this.context)||"&&="===ref1||"?="===ref1}},{key:"astNode",value:function astNode(o){var variable;return this.disallowLoneExpansion(),this.getAndCheckSplatsAndExpansions(),this.isConditional()&&(variable=this.variable.unwrap(),variable instanceof IdentifierLiteral&&!o.scope.check(variable.value)&&this.throwUnassignableConditionalError(variable.value)),this.addScopeVariables(o,{allowAssignmentToExpansion:!0,allowAssignmentToNontrailingSplat:!0,allowAssignmentToEmptyArray:!0,allowAssignmentToComplexSplat:!0}),_get(_getPrototypeOf(Assign.prototype),"astNode",this).call(this,o)}},{key:"astType",value:function astType(){return this.isDefaultAssignment()?"AssignmentPattern":"AssignmentExpression"}},{key:"astProperties",value:function astProperties(o){var ref1,ret;return ret={right:this.value.ast(o,LEVEL_LIST),left:this.variable.ast(o,LEVEL_LIST)},this.isDefaultAssignment()||(ret.operator=null==(ref1=this.originalContext)?"=":ref1),ret}}]),Assign}(Base);return Assign.prototype.children=["variable","value"],Assign.prototype.isAssignable=YES,Assign.prototype.isStatementAst=NO,Assign}.call(this),exports.FuncGlyph=FuncGlyph=function(_Base39){"use strict";function FuncGlyph(glyph){var _this59;return _classCallCheck(this,FuncGlyph),_this59=_possibleConstructorReturn(this,_getPrototypeOf(FuncGlyph).call(this)),_this59.glyph=glyph,_this59}return _inherits(FuncGlyph,_Base39),FuncGlyph}(Base),exports.Code=Code=function(){var Code=function(_Base40){"use strict";function Code(params,body,funcGlyph,paramStart){var _this60;_classCallCheck(this,Code);var ref1;return _this60=_possibleConstructorReturn(this,_getPrototypeOf(Code).call(this)),_this60.funcGlyph=funcGlyph,_this60.paramStart=paramStart,_this60.params=params||[],_this60.body=body||new Block,_this60.bound="=>"===(null==(ref1=_this60.funcGlyph)?void 0:ref1.glyph),_this60.isGenerator=!1,_this60.isAsync=!1,_this60.isMethod=!1,_this60.body.traverseChildren(!1,function(node){if((node instanceof Op&&node.isYield()||node instanceof YieldReturn)&&(_this60.isGenerator=!0),(node instanceof Op&&node.isAwait()||node instanceof AwaitReturn)&&(_this60.isAsync=!0),node instanceof For&&node.isAwait())return _this60.isAsync=!0}),_this60.propagateLhs(),_this60}return _inherits(Code,_Base40),_createClass(Code,[{key:"isStatement",value:function isStatement(){return this.isMethod}},{key:"makeScope",value:function makeScope(parentScope){return new Scope(parentScope,this.body,this)}},{key:"compileNode",value:function compileNode(o){var _this$body$expression3,_answer4,answer,body,boundMethodCheck,comment,condition,exprs,generatedVariables,haveBodyParam,haveSplatParam,i,ifTrue,j,k,l,len1,len2,len3,m,methodScope,modifiers,name,param,paramToAddToScope,params,paramsAfterSplat,ref,ref1,ref2,ref3,ref4,ref5,ref6,ref7,ref8,scopeVariablesCount,signature,splatParamName,thisAssignments,wasEmpty,yieldNode;for(this.checkForAsyncOrGeneratorConstructor(),this.bound&&((null==(ref1=o.scope.method)?void 0:ref1.bound)&&(this.context=o.scope.method.context),!this.context&&(this.context="this")),this.updateOptions(o),params=[],exprs=[],thisAssignments=null==(ref2=null==(ref3=this.thisAssignments)?void 0:ref3.slice())?[]:ref2,paramsAfterSplat=[],haveSplatParam=!1,haveBodyParam=!1,this.checkForDuplicateParams(),this.disallowLoneExpansionAndMultipleSplats(),this.eachParamName(function(name,node,param,obj){var replacement,target;if(node["this"])return name=node.properties[0].name.value,0<=indexOf.call(JS_FORBIDDEN,name)&&(name="_".concat(name)),target=new IdentifierLiteral(o.scope.freeVariable(name,{reserve:!1})),replacement=param.name instanceof Obj&&obj instanceof Assign&&"="===obj.operatorToken.value?new Assign(new IdentifierLiteral(name),target,"object"):target,param.renameParam(node,replacement),thisAssignments.push(new Assign(node,target))}),ref4=this.params,(i=j=0,len1=ref4.length);j")),answer.push(this.makeCode(" {")),null==body?void 0:body.length){var _answer5;(_answer5=answer).push.apply(_answer5,[this.makeCode("\n")].concat(_toConsumableArray(body),[this.makeCode("\n".concat(this.tab))]))}return answer.push(this.makeCode("}")),this.isMethod?indentInitial(answer,this):this.front||o.level>=LEVEL_ACCESS?this.wrapInParentheses(answer):answer}},{key:"updateOptions",value:function updateOptions(o){return o.scope=del(o,"classScope")||this.makeScope(o.scope),o.scope.shared=del(o,"sharedScope"),o.indent+=TAB,delete o.bare,delete o.isExistentialEquals}},{key:"checkForDuplicateParams",value:function checkForDuplicateParams(){var paramNames;return paramNames=[],this.eachParamName(function(name,node){return 0<=indexOf.call(paramNames,name)&&node.error("multiple parameters named '".concat(name,"'")),paramNames.push(name)})}},{key:"eachParamName",value:function eachParamName(iterator){var j,len1,param,ref1,results1;for(ref1=this.params,results1=[],(j=0,len1=ref1.length);j(null==(ref1=this.funcGlyph)?void 0:ref1.locationData.first_line)},this.isMethod?this.methodAstProperties(o):{})}},{key:"astLocationData",value:function(){var astLocationData,functionLocationData;return(functionLocationData=_get(_getPrototypeOf(Code.prototype),"astLocationData",this).call(this),!this.isMethod)?functionLocationData:(astLocationData=mergeAstLocationData(this.name.astLocationData(),functionLocationData),null!=this.isStatic.staticClassName&&(astLocationData=mergeAstLocationData(this.isStatic.staticClassName.astLocationData(),astLocationData)),astLocationData)}}]),Code}(Base);return Code.prototype.children=["params","body"],Code.prototype.jumps=NO,Code}.call(this),exports.Param=Param=function(){var Param=function(_Base41){"use strict";function Param(name1,value1,splat1){var _this65;_classCallCheck(this,Param);var message,token;return _this65=_possibleConstructorReturn(this,_getPrototypeOf(Param).call(this)),_this65.name=name1,_this65.value=value1,_this65.splat=splat1,message=isUnassignable(_this65.name.unwrapAll().value),message&&_this65.name.error(message),_this65.name instanceof Obj&&_this65.name.generated&&(token=_this65.name.objects[0].operatorToken,token.error("unexpected ".concat(token.value))),_this65}return _inherits(Param,_Base41),_createClass(Param,[{key:"compileToFragments",value:function compileToFragments(o){return this.name.compileToFragments(o,LEVEL_LIST)}},{key:"compileToFragmentsWithoutComments",value:function compileToFragmentsWithoutComments(o){return this.name.compileToFragmentsWithoutComments(o,LEVEL_LIST)}},{key:"asReference",value:function asReference(o){var name,node;return this.reference?this.reference:(node=this.name,node["this"]?(name=node.properties[0].name.value,0<=indexOf.call(JS_FORBIDDEN,name)&&(name="_".concat(name)),node=new IdentifierLiteral(o.scope.freeVariable(name))):node.shouldCache()&&(node=new IdentifierLiteral(o.scope.freeVariable("arg"))),node=new Value(node),node.updateLocationDataIfMissing(this.locationData),this.reference=node)}},{key:"shouldCache",value:function shouldCache(){return this.name.shouldCache()}},{key:"eachName",value:function eachName(iterator){var _this66=this,name=1"===ref1||">="===ref1||"<="===ref1||"==="===ref1||"!=="===ref1}},{key:"isChain",value:function isChain(){return this.isChainable()&&this.first.isChainable()}},{key:"invert",value:function invert(){var allInvertable,curr,fst,op,ref1;if(this.isInOperator())return this.invertOperator="!",this;if(this.isChain()){for(allInvertable=!0,curr=this;curr&&curr.operator;)allInvertable&&(allInvertable=curr.operator in INVERSIONS),curr=curr.first;if(!allInvertable)return new Parens(this).invert();for(curr=this;curr&&curr.operator;)curr.invert=!curr.invert,curr.operator=INVERSIONS[curr.operator],curr=curr.first;return this}return(op=INVERSIONS[this.operator])?(this.operator=op,this.first.unwrap()instanceof Op&&this.first.invert(),this):this.second?new Parens(this).invert():"!"===this.operator&&(fst=this.first.unwrap())instanceof Op&&("!"===(ref1=fst.operator)||"in"===ref1||"instanceof"===ref1)?fst:new Op("!",this)}},{key:"unfoldSoak",value:function unfoldSoak(o){var ref1;return("++"===(ref1=this.operator)||"--"===ref1||"delete"===ref1)&&_unfoldSoak(o,this,"first")}},{key:"generateDo",value:function generateDo(exp){var call,func,j,len1,param,passedParams,ref,ref1;for(passedParams=[],func=exp instanceof Assign&&(ref=exp.value.unwrap())instanceof Code?ref:exp,ref1=func.params||[],(j=0,len1=ref1.length);j=LEVEL_ACCESS?new Parens(this).compileToFragments(o):(plusMinus="+"===op||"-"===op,("typeof"===op||"delete"===op||plusMinus&&this.first instanceof Op&&this.first.operator===op)&&parts.push([this.makeCode(" ")]),plusMinus&&this.first instanceof Op&&(this.first=new Parens(this.first)),parts.push(this.first.compileToFragments(o,LEVEL_OP)),this.flip&&parts.reverse(),this.joinFragmentArrays(parts,""))}},{key:"compileContinuation",value:function compileContinuation(o){var op,parts,ref1;return parts=[],op=this.operator,this.checkContinuation(o),0<=indexOf.call(Object.keys(this.first),"expression")&&!(this.first instanceof Throw)?null!=this.first.expression&&parts.push(this.first.expression.compileToFragments(o,LEVEL_OP)):(o.level>=LEVEL_PAREN&&parts.push([this.makeCode("(")]),parts.push([this.makeCode(op)]),""!==(null==(ref1=this.first.base)?void 0:ref1.value)&&parts.push([this.makeCode(" ")]),parts.push(this.first.compileToFragments(o,LEVEL_OP)),o.level>=LEVEL_PAREN&&parts.push([this.makeCode(")")])),this.joinFragmentArrays(parts,"")}},{key:"checkContinuation",value:function checkContinuation(o){var ref1;if(null==o.scope.parent&&this.error("".concat(this.operator," can only occur inside functions")),(null==(ref1=o.scope.method)?void 0:ref1.bound)&&o.scope.method.isGenerator)return this.error("yield cannot occur inside bound (fat arrow) functions")}},{key:"compileFloorDivision",value:function compileFloorDivision(o){var div,floor,second;return floor=new Value(new IdentifierLiteral("Math"),[new Access(new PropertyName("floor"))]),second=this.second.shouldCache()?new Parens(this.second):this.second,div=new Op("/",this.first,second),new Call(floor,[div]).compileToFragments(o)}},{key:"compileModulo",value:function compileModulo(o){var mod;return mod=new Value(new Literal(utility("modulo",o))),new Call(mod,[this.first,this.second]).compileToFragments(o)}},{key:"toString",value:function toString(idt){return _get(_getPrototypeOf(Op.prototype),"toString",this).call(this,idt,this.constructor.name+" "+this.operator)}},{key:"checkDeleteOperand",value:function checkDeleteOperand(o){if("delete"===this.operator&&o.scope.check(this.first.unwrapAll().value))return this.error("delete operand may not be argument or var")}},{key:"astNode",value:function astNode(o){return(this.isYield()||this.isAwait())&&this.checkContinuation(o),this.checkDeleteOperand(o),_get(_getPrototypeOf(Op.prototype),"astNode",this).call(this,o)}},{key:"astType",value:function astType(){if(this.isAwait())return"AwaitExpression";if(this.isYield())return"YieldExpression";if(this.isChain())return"ChainedComparison";switch(this.operator){case"||":case"&&":case"?":return"LogicalExpression";case"++":case"--":return"UpdateExpression";default:return this.isUnary()?"UnaryExpression":"BinaryExpression";}}},{key:"operatorAst",value:function operatorAst(){return"".concat(this.invertOperator?"".concat(this.invertOperator," "):"").concat(this.originalOperator)}},{key:"chainAstProperties",value:function chainAstProperties(o){var currentOp,operand,operands,operators;for(operators=[this.operatorAst()],operands=[this.second],currentOp=this.first;;)if(operators.unshift(currentOp.operatorAst()),operands.unshift(currentOp.second),currentOp=currentOp.first,!currentOp.isChainable()){operands.unshift(currentOp);break}return{operators:operators,operands:function(){var j,len1,results1;for(results1=[],j=0,len1=operands.length;j= 0"))),fragmentsToText(sub)===fragmentsToText(ref))?fragments:(fragments=sub.concat(this.makeCode(", "),fragments),o.levelindexOf.call(salvagedComments,comment)&&salvagedComments.push(comment);return delete child.comments}}),attachCommentsToNode(salvagedComments,_assertThisInitialized(_this74)),moveComments(_this74.expression,_assertThisInitialized(_this74)),_this74}return _inherits(Existence,_Base51),_createClass(Existence,[{key:"compileNode",value:function compileNode(o){var cmp,cnj,code;if(this.expression.front=this.front,code=this.expression.compile(o,LEVEL_OP),this.expression.unwrap()instanceof IdentifierLiteral&&!o.scope.check(code)){var _ref58=this.negated?["===","||"]:["!==","&&"],_ref59=_slicedToArray(_ref58,2);cmp=_ref59[0],cnj=_ref59[1],code="typeof ".concat(code," ").concat(cmp," \"undefined\"")+("undefined"===this.comparisonTarget?"":" ".concat(cnj," ").concat(code," ").concat(cmp," ").concat(this.comparisonTarget))}else cmp="null"===this.comparisonTarget?this.negated?"==":"!=":this.negated?"===":"!==",code="".concat(code," ").concat(cmp," ").concat(this.comparisonTarget);return[this.makeCode(o.level<=LEVEL_COND?code:"(".concat(code,")"))]}},{key:"astType",value:function astType(){return"UnaryExpression"}},{key:"astProperties",value:function astProperties(o){return{argument:this.expression.ast(o),operator:"?",prefix:!1}}}]),Existence}(Base);return Existence.prototype.children=["expression"],Existence.prototype.invert=NEGATE,Existence}.call(this),exports.Parens=Parens=function(){var Parens=function(_Base52){"use strict";function Parens(body1){var _this75;return _classCallCheck(this,Parens),_this75=_possibleConstructorReturn(this,_getPrototypeOf(Parens).call(this)),_this75.body=body1,_this75}return _inherits(Parens,_Base52),_createClass(Parens,[{key:"unwrap",value:function unwrap(){return this.body}},{key:"shouldCache",value:function shouldCache(){return this.body.shouldCache()}},{key:"compileNode",value:function compileNode(o){var bare,expr,fragments,ref1,shouldWrapComment;return(expr=this.body.unwrap(),shouldWrapComment=null==(ref1=expr.comments)?void 0:ref1.some(function(comment){return comment.here&&!comment.unshift&&!comment.newLine}),expr instanceof Value&&expr.isAtomic()&&!this.jsxAttribute&&!shouldWrapComment)?(expr.front=this.front,expr.compileToFragments(o)):(fragments=expr.compileToFragments(o,LEVEL_PAREN),bare=o.level=fragments.length),this.jsxAttribute?this.wrapInBraces(fragments):bare?fragments:this.wrapInParentheses(fragments))}},{key:"astNode",value:function astNode(o){return this.body.unwrap().ast(o,LEVEL_PAREN)}}]),Parens}(Base);return Parens.prototype.children=["body"],Parens}.call(this),exports.StringWithInterpolations=StringWithInterpolations=function(){var StringWithInterpolations=function(_Base53){"use strict";function StringWithInterpolations(body1){var _ref60=1stepNum,!(this.step&&null!=stepNum&&down)&&(lvar=scope.freeVariable("len")),declare="".concat(kvarAssign).concat(ivar," = 0, ").concat(lvar," = ").concat(svar,".length"),declareDown="".concat(kvarAssign).concat(ivar," = ").concat(svar,".length - 1"),compare="".concat(ivar," < ").concat(lvar),compareDown="".concat(ivar," >= 0"),this.step?(null==stepNum?(compare="".concat(stepVar," > 0 ? ").concat(compare," : ").concat(compareDown),declare="(".concat(stepVar," > 0 ? (").concat(declare,") : ").concat(declareDown,")")):down&&(compare=compareDown,declare=declareDown),increment="".concat(ivar," += ").concat(stepVar)):increment="".concat(kvar===ivar?"".concat(ivar,"++"):"++".concat(ivar)),forPartFragments=[this.makeCode("".concat(declare,"; ").concat(compare,"; ").concat(kvarAssign).concat(increment))])),this.returns&&(resultPart="".concat(this.tab).concat(rvar," = [];\n"),returnResult="\n".concat(this.tab,"return ").concat(rvar,";"),body.makeReturn(rvar)),this.guard&&(1=LEVEL_COND?this.wrapInParentheses(fragments):fragments}},{key:"unfoldSoak",value:function unfoldSoak(){return this.soak&&this}},{key:"processedCondition",value:function processedCondition(){return null==this.processedConditionCache?this.processedConditionCache="unless"===this.type?this.condition.invert():this.condition:this.processedConditionCache}},{key:"isStatementAst",value:function isStatementAst(o){return o.level===LEVEL_TOP}},{key:"astType",value:function astType(o){return this.isStatementAst(o)?"IfStatement":"ConditionalExpression"}},{key:"astProperties",value:function astProperties(o){var isStatement,ref1,ref2,ref3,ref4;return isStatement=this.isStatementAst(o),{test:this.condition.ast(o,isStatement?LEVEL_PAREN:LEVEL_COND),consequent:isStatement?this.body.ast(o,LEVEL_TOP):this.bodyNode().ast(o,LEVEL_TOP),alternate:this.isChain?this.elseBody.unwrap().ast(o,isStatement?LEVEL_TOP:LEVEL_COND):isStatement||1!==(null==(ref1=this.elseBody)||null==(ref2=ref1.expressions)?void 0:ref2.length)?null==(ref3=null==(ref4=this.elseBody)?void 0:ref4.ast(o,LEVEL_TOP))?null:ref3:this.elseBody.expressions[0].ast(o,LEVEL_TOP),postfix:!!this.postfix,inverted:"unless"===this.type}}}]),If}(Base);return If.prototype.children=["condition","body","elseBody"],If}.call(this),exports.Sequence=Sequence=function(){var Sequence=function(_Base61){"use strict";function Sequence(expressions1){var _this85;return _classCallCheck(this,Sequence),_this85=_possibleConstructorReturn(this,_getPrototypeOf(Sequence).call(this)),_this85.expressions=expressions1,_this85}return _inherits(Sequence,_Base61),_createClass(Sequence,[{key:"astNode",value:function astNode(o){return 1===this.expressions.length?this.expressions[0].ast(o):_get(_getPrototypeOf(Sequence.prototype),"astNode",this).call(this,o)}},{key:"astType",value:function astType(){return"SequenceExpression"}},{key:"astProperties",value:function astProperties(o){var expression;return{expressions:function(){var j,len1,ref1,results1;for(ref1=this.expressions,results1=[],(j=0,len1=ref1.length);jb?a:b},isAstLocGreater=function(a,b){return!!(a.line>b.line)||a.line===b.line&&a.column>b.column},isLocationDataStartGreater=function(a,b){return!!(a.first_line>b.first_line)||a.first_line===b.first_line&&a.first_column>b.first_column},isLocationDataEndGreater=function(a,b){return!!(a.last_line>b.last_line)||a.last_line===b.last_line&&a.last_column>b.last_column},exports.mergeLocationData=mergeLocationData=function(locationDataA,locationDataB){var _ref69=2=column);)column--;return mapping&&[mapping.sourceLine,mapping.sourceColumn]}}]),LineMap}(),SourceMap=function(){var SourceMap=function(){"use strict";function SourceMap(){_classCallCheck(this,SourceMap),this.lines=[]}return _createClass(SourceMap,[{key:"add",value:function add(sourceLocation,generatedLocation){var options=2=line);)line--;return lineMap&&lineMap.sourceLocation(column)}},{key:"generate",value:function generate(){var options=0"],v3={version:3,file:options.generatedFile||"",sourceRoot:options.sourceRoot||"",sources:sources,names:[],mappings:buffer},(options.sourceMap||options.inlineMap)&&(v3.sourcesContent=[code]),v3}},{key:"encodeVlq",value:function encodeVlq(value){var answer,nextChunk,signBit,valueToEncode;for(answer="",signBit=0>value?1:0,valueToEncode=(_Mathabs(value)<<1)+signBit;valueToEncode||!answer;)nextChunk=valueToEncode&VLQ_VALUE_MASK,valueToEncode>>=VLQ_SHIFT,valueToEncode&&(nextChunk|=VLQ_CONTINUATION_BIT),answer+=this.encodeBase64(nextChunk);return answer}},{key:"encodeBase64",value:function encodeBase64(value){return BASE64_CHARS[value]||function(){throw new Error("Cannot Base64 encode value: ".concat(value))}()}}]),SourceMap}(),BASE64_CHARS,VLQ_CONTINUATION_BIT,VLQ_SHIFT,VLQ_VALUE_MASK;return VLQ_SHIFT=5,VLQ_CONTINUATION_BIT=1<",checkShebangLine(filename,code),generateSourceMap&&(map=new SourceMap),tokens=lexer.tokenize(code,options),options.referencedVars=function(){var i,len,results;for(results=[],i=0,len=tokens.length;i"),line=frame.getLineNumber(),column=frame.getColumnNumber(),source=getSourceMapping(filename,line,column),fileLocation=source?"".concat(filename,":").concat(source[0],":").concat(source[1]):"".concat(filename,":").concat(line,":").concat(column)),functionName=frame.getFunctionName(),isConstructor=frame.isConstructor(),isMethodCall=!(frame.isToplevel()||isConstructor),isMethodCall?(methodName=frame.getMethodName(),typeName=frame.getTypeName(),functionName?(tp=as="",typeName&&functionName.indexOf(typeName)&&(tp="".concat(typeName,".")),methodName&&functionName.indexOf(".".concat(methodName))!==functionName.length-methodName.length-1&&(as=" [as ".concat(methodName,"]")),"".concat(tp).concat(functionName).concat(as," (").concat(fileLocation,")")):"".concat(typeName,".").concat(methodName||""," (").concat(fileLocation,")")):isConstructor?"new ".concat(functionName||""," (").concat(fileLocation,")"):functionName?"".concat(functionName," (").concat(fileLocation,")"):fileLocation},getSourceMap=function(filename,line,column){var answer,i,map,ref,ref1,sourceLocation;if(!(""===filename||(ref=filename.slice(filename.lastIndexOf(".")),0<=indexOf.call(FILE_EXTENSIONS,ref))))return null;if(""!==filename&&null!=sourceMaps[filename])return sourceMaps[filename][sourceMaps[filename].length-1];if(null!=sourceMaps[""])for(ref1=sourceMaps[""],i=ref1.length-1;0<=i;i+=-1)if(map=ref1[i],sourceLocation=map.sourceLocation([line-1,column-1]),null!=(null==sourceLocation?void 0:sourceLocation[0])&&null!=sourceLocation[1])return map;return null==sources[filename]?null:(answer=compile(sources[filename][sources[filename].length-1],{filename:filename,sourceMap:!0,literate:helpers.isLiterate(filename)}),answer.sourceMap)},Error.prepareStackTrace=function(err,stack){var frame,frames,getSourceMapping;return getSourceMapping=function(filename,line,column){var answer,sourceMap;return sourceMap=getSourceMap(filename,line,column),null!=sourceMap&&(answer=sourceMap.sourceLocation([line-1,column-1])),null==answer?null:[answer[0]+1,answer[1]+1]},frames=function(){var i,len,results;for(results=[],i=0,len=stack.length;iEx*upA<*DhriDRc0wO3n03iX6Hf9n(edfqnsz%aQC=h@?IcY`e0HM z$c&8e@bK{P@ars@F5@DJvUru0>v)<(Z_lD%zKYn-lShy6-{?_vzDP^03HxJ~%+hIG zC9|l?qvR$j?y5zaT}4H*6i=%~BEG*`=973Cm3L*8tfDfhD%Q5-Z=c}5s(1dHLt#Kd zy}c`wLbj^z)(L}Vo@Qy4=9$(`|KvZDkL$dsj7Mo!CB+;@gbvTBzjM}|*6NA;J=j`< z(}7ikcfMIJagx?syYYYGgnlWjg7yE&dAmwhlcdP!VVEtr1#b5v>he#mp#4mMZdlvy zz^1cypk^BYX(Uk7*?vSFwgd92$T#b<9iYEN7il(2K8g|E3w%VMMuHxpdA4uSF8l;W zHYfSX{PSX6`paOP+MF1$F!(6j5ExV^18~`a#zpdD#oqdYd;@RZ|%3V z`$6-r=HEm=zC4T8akUs}yVSvM!4E$$a_ik9Kwc%;W;dF~Su{zac*b~n6mP106<3U> zFPC@Gm_h_##38T?f37F_nyaPIz47g9ss|1Ki)h6__@!wv3Ao>Z1L9dT00$w?W3Pg+HWDFZS(FqP1Z?V zMYjUteY?Tq=(4~zm%%rWKi0gv^S#UR$No{HDia?@t6<>`dle7nZQ!HKBgB$RCk*t!DHXruY ze*f9co3|hV3*y!;Lp77>Z{pf@5ld!+RV z&)u3o{B#l+Y0@BPKAsn8lFis@S0x`m3*azr2jV(dGY(S3*>o%lQysP^Gw(Oew05{D ziX^Kz<&1c{XqbZ!>i|M)dO2XXHvFQD;+r^K#uFlX;7vsM?IvOqMy+hrb5iBLLw_yg zBe68Mw(!tyVg@T6bxybIeUnkQS}Zw@feS|TG4e9qu1i6A`pSf_N9;6wop0FctaG*p z%aJxd>lS-Gflk}+{m^I4+y6v6(N}6dBk_Rd>3Ei+)5VE2IO4p}W-ulz>opDk83I28 zF6E5sMkBONcEvd!_L|- zp3}a0{pgb@DGDZOvg;88CVF@JYNXv%GXZN7@Pj~nARtp-bh$Tl3oX;xNDOk$Tj0YytB+0X4C zxL5fJ&(oN;O{?Z3qW$^`PJS=i9jwt%WNum~({!FrCB_62al4t8C;6$bx4J#=ffs&i zuo{M%Z|lzhZr!@Jp;H7H4}>zUawc@i(|ylwjCRRsp3T#%O@Y&r>Wj%;baC-IF0Pa6 zWXVpb_wVhGLBYY%6RqNm{lgefOPREBCxqoP-?s57nLKSj)w0=c8$ri!hs|&*KD+aX zzSv|WDyl(XE9f>wy2TwCTCh)T3=&mbRGYP7VPTTqj8S=UlTJrt#;kwuZ8OkZjNbB- z@mO+6_~<}{uhO!L*f<&n$$y~FiaUGC10wv?qO%!Rj^6FV*|?6)u&&cA1Djyb1UN3l zG+YSYPc3dhx<`lxsy5b5T<~+$GL!!))aQXlT#a4psM?RdPqL&)r*9|!NT$`d>=O4h zILeV}_zsW2EtvZrb7S2UERAvP40zjpzhWymil#0Ich4H_TUY2{hi5)FAy1z|&~Vrd z^-R>Fc`=N1C`SOfc$UoL&9WjRh;U63UmAC14#j+vO_4YX=$4PZ^Kd`9$SGPx92EFDgh8IsP@FSDCO{G(|og>q1iqYkCu517W{dUuf!KZ z2k_^!w{OT!Q^q%}P0sb8j722HUhO2K|3na@Umkrz3ClnCQb+v`v_qwZ#KNbqW?=_2 z^@!bX!tP#Y>1xepAY4U`*qv??mr1nq{K=Pz{ zD^!*nu(u%C@S*HGUb10lcTw_@9aJ=HHDkRyHVZW`Q2v7zpp2HuO|lHk%BK!vlv|e3 z(Q_{c5-*z-T?aHi(!1D#fVAH!TsMh)>mt2j%NY;_o1KcDTkot(G4)PhHp#DtNOZ7$ z=uQcz3l8Dj&IAYH;BhP{T=a&QZ5P((X37Np9qdlX4iB4!Z^j3?YLs*#Q(>8ee)fnq{WDgh;aU$U;@ zaOVA@U+Y}^#Et#va*fmZ`uEYno1dM~u9nH?0G@i8LeAoi^jP{AGmK6Zn9UDu>%+6KRj_tEAddp6?nq zJy0~F^JSU|s7iD>R=ah;K?8ksXP%#hn?!FD-A|r8iM}loChH|2 zo+EjD_uwCl*%fyWq9;%5ZsqO6zVxfNroYyrv7`#)C%EOZZK8j|x+B%aF6W(jm0QtV z=7seUTsV?K-f9it=IBJgu2m7-dxh}p1efUm1T_u^Tt}e61lnc>%0X5!MCsZ-;~IOA z-LVVstucx=8!oRWAFCvr>EGd8WYQ(D% zr|3TNb{UCoWG^i|!N3-`$d@zFd=XBi7Ean&`OQkhqQ~-=XdkkRAiwBqsxnSHT=gaO zYj#gUSB8q1Wqy@!Dx_u}9)mO`Py38b85)7xb5fQqPAVQ7;~rFDZV_BLYjxmrNe-WeaN!CSNo3goaL zHBIx?gyMwsks48Ps(59tYlvt0^t$B=vmvYaYL7vE#6CKY>+~_5R`{+2C}>jV2)(DJ z^C$4OA+G>;;d0$?Hd@D-u0Csnjn}O6@le6QR&iij_dQis*3gamE7afFHpkFMtmA{? zY6Bu-$vvc^xVS3KQ&Y4U2S2)AOpl7##gWmjW5Lv{Fgs>vm(7iNyoj^{fD;D!6Co3o zf#0eZebQ{dP8sjSuY}r)@mnBr#c0E92OBnN*v`!^qIbvgIAHsM9X>GV9Lz5;Sn@Gp zjKVV%YQ(geHVvyJMKFJiMD-v&n06)cCe|Eu|r$tHjA~^6s=qjfWFyO3K zhPTm-yVxQMsHNZ|M{i$8RgtvNTZfK>ZD2~B1Te=lgt#^4!1N#~noW}%5P)eclKAG1 z-SkU`?np$IpCOI0Eq8Ur*MKKJxa2r@t`^A+ULk3RO%f(oWUw^3PzIORyJ9t{lVld^ z1F0EA&2l01yYPMg72=FcTt4V_z2=GqQdUSMLyTi_yN@)zG+(4(WyTVP%+=rF(5c&# zb(zAU8>!+s=qTc7fufQ}Ftu2r{kiZ)BLg#&tc+dBx}4--aufpC;KdS0)iuJYpq{X4 z>}vJ`&SmHMa+%+HBK*jXu^(Mt9K1UJ_3Ve^m*>A8o}a$@_4SMMgZGdB^5XB8yWGuxbm3hE_RpB1yx#4f3u1);4;SbqNQGUasPxRsaN18=h-#7q{HH^@)=t%#;sv< zs!hap)Fs<(@DFadOK5uu8!ouHMDJ5nOJ8l4apBQD%jSxRkMi3LY4}r=aN1T=!~-R~ zs3Ic**DQm~$1q9foxlz-K9Z_DysFU#u#%uST4OjS2eRbL-UQmIz_v?(+Y%= z!Tw4a7Ml$_?TMh40F*WN#)SEv*{ztjekk6UUS3UjhYTzd%dKc<8&iVBE3Ike`Eujj zqCN-E69z|Xpnm|@sxJWO1%snC(68f<=_>sh#hM~PRj#uonTR@LG~`Q#0=FYHAAsZk zXPR%7UtKNR&-nYq(WpdKS}hxI(-QU_+K9hKFHufs+w_e1`&bhKXkb3vNy8ba*|saL z#Fk>nm~`?nb$q3wW6cW*Tks1mT1fC$uoyMyh=h&_FXUNX!JX$i1xV^~+?|^PT7@Ka zqXRrPAI>xAdxs6OAIU+7kX-8sNlA8|FvO7v4qyR#YYcSsv1)J)MJ={wcr+C=?paPV zLaj>-7j)};VVeqA`ly$;DE4} z1Bp{wK_-Z>9dz#4U~90*peDS$CJQATcIdH{>M|}p67Edo%4Y3sxKC>|MP>-Y#qGFK z!V-0!Pk1298ZL-M#zuf$RAMvzQ>kKqvffM>xh~jIKV8IGTCSQXlR%dg=A}fdO{)Z$ z9C$o8L?9;e4^TstL4s3i2a|J1YXVC29%kTVp>SA<&tJ^bQJvA$gC+}A@S|pKJCFH> zYc{H6@WGQ=T2ho32r>aU0&{N8wA^lDNk)@usrL^!2g$Kqx1f&j=w3O^{x(NG1nvs` ziP!7Kp-p!7BjuLDcOWgovO&w+|4=M&!r19xkU10l0xfbG&1u&(+lk2xKjxbSYEylm z+*EJS5*p+Y(gbet^iK->a|bH_8PY*<*>d-1JA49~F^v!Ho~%fDkmf% z!%E|LYre9L6?5t6-c~Hx#*)3uO0{T)3kINDtl>Rk`a(eP-h_wlz8eMZ%;C&G2_^HT z_zJ^mE+1X)B2!d6P>YVgJ-6jB!9Q_f;ASRZEU?+jvqU7Fm##P5%?BE3dxygY>e;=HWCuYXL zsl57!ktkbOIMlD|;e0&CscwwjLAhY_9WTeJI~eA{TecPuN;+d6(*$m*9 zgLN6fOEV=*VrLaLtD_eij?fK(2ul+NvC(fHh4{@lI24u+oslXXi4_=J_R| z=;7EnGKS&^YnnK~Q#bFX*;bOpNPE;h@)~MldK>uX*_)@l%g9v?=O}o-E+Z+HuX3ev z+_nAqOP=e@GQ}h9O zl~k{fk3i|8*Ge2QL|wPiifB5&1tgf~&M0nU#K#%JakyDnMt%vY_YfLla`~DGk~|$6 zTeJ|`16B*;TI2=QS_bInnQPDR0V!&3aUhc*NsI-Xzy5|};JS-)^s=#&cxXM<7EW;P zcP|(rT8=)mbdF?LfoFcQBwB1BngqHr_W%b8-{3~9rwxsA{c^ib+TTT5o()?(chUxH zo$!~CdL-PzX7X5gSZ<~Z$Y?T4<7FO5y~&#YM6JK$nLQjNqf3@%U~0b^Ric3x>Qv%` zTkqFHRvDMV!r+NhAtxNKGB%5ad1>bMmUqSL`|`P@151e1%#}QrTFl z$9Kn3BHS}}E-nsU{_Q-zdjI~R8oL4U9>>8)dg&jjJnXd+%17`+cg?Po&twX&l;9XB zZwY;71^=ZwMMI|)uhacVb=Pqs?AkcWL|8vVCvvq>6Jg!8p9qrH?}P+dzq!RV`3T$g z0-1)9&ceK_S}yd%`Ri9=i$upqf*IYIrRe*he*h0vs9)rzr|^kq9zw;zQ(OwiO@8n? z+y(SSV6_mUKIKoNZ@HTo{iT1yJ7uB>mI%c!>(|s(3$(|9$}HK2-gp`kv638AwuN}A zl1Z}6QL%0CW|(!0a|ejz1@+u(E(F7Vr1jH&51EAk1~3BN!$688aAc-2v+q{-0m>$( zNLHqg2iF`XGp`y{Ap?kN!nXCIk*tn9Du573koq&7dZ3h-{(cmL-QvjmN`FwR#e;~* z>}r`*Xpm|_+dOGTk4WPmw2q#j#g@~m4_@p%Cjg`&Ua_^F;I(sB zd-Vj~t6YnOb8eEk_Ol(7QqHbZn}C1#J{Sd%Jk86LN5^Xb45dH7J8&zv5&%hEM?@rQ z^Mypq=0o&JIdZxk*`Bo?c3`*9kmE2FnLSR(@$ZfYO=c~5rQlOaK=a0^)EL2fV1ju5 z&bloEUVKce7B^(CW{!$WNgbwCQS!6t4m>Tm6vWk^dU*Tf4r{`UjER44(rU-j-!-7% zwdAvCuHDru`j}y|`d7YaSrcjARK+br%R4A~Wb|yCh;mOQGo4gvOT(;cxDubhkh>on zQYBlcp-oC#73+m#A}&LLOBygS>7!g=O@m&0*PB&;HB)Iag%TR`-^ozB{lH*GM)gN} zSk5Cg|7Yr8dGf?r2zSCxCsT%AqYti{6`#R-89!?$rjmg0qHHBv5TO@-`{j>?V5N8L zNgnzr`V>ZhpL~ogi^F&xxNhyR^=e2aUt5;&P*ps$=Nqq6?qM27x5=c0w5^q>U>1%y zJacK5XV~V;q3b8vGA4`?8Be?|QtJ*(Zfj}Ai`$_S4Aq}8G8!s-{eO|A?5-_Y`q_g+ ztUo1_GhF_mBunePqfw{oI!L23GcmDge&qxCf=>M!)rt2k>UzTX^YYrKDde`Gi1c-y z$~>+22BbfUgzW$z5_Hu{J)^+mPr_xv^Fu2;#VGLjQ&rg>GNEKfM0p^^1;rl!R`SB` z$;;r)C)8($$q9=zLUoB5tm&%&p`7a*V%@4W=zbuoBF>c=+t<9KH~5%W2#mX`b@guC zUZ(&2c&HoIgMM6`4Mdq9mF5OE4MY~^Ref|B?WjQ6hwTt}F@IkdkhUvCn#)bbb30vb z562KsrXjga2wBi2_`YcJ5yRo^z26&n4D|S%ho80b9xi>MtD*o#ci-UO<_?xf7`T1k zf}d;LU;`GDG)=df#yOhFK7{`Rq`nr9>eZpXOY8+u+ zpAETva`L&j_W3j~ns?SPe%Hj&L_5&d8blZCqq^ZVYWE&imNToT2j}Gv={)YQq7M44N)& zgHg9kAH=kYwQIX6Y$QP_WCLq5nGl7Eetx8wF`OMRaK0$=TNEu3xVG+?lD=try`*9o z8Py!vM{8>)FK&bOE3zq~!znn!YF?&|fcM^*G-k7UhHCWa?giWln?V_Hh0u~DT*9gQ z7_tE{%4WhZ=%R%_Vrhr&cRxJSfD(16hnYIauzW1|&Pf|*8?Uo7th9~`3T|`?bCN6@ zvBwLCP|fxlme&SNr8&Sh@I-L#uzxgE(Hy?jMtM3;kYdN0vm%Nsg6>p~4|InrHkqJk zkl(Kgb_>O#d3p!%-EDl$BR-z-w~H8L{34cT#7}2~5#s zL5ZhMnOpr6^ph8be=9aTI=GO++lYiy6PY}$D^NT| zmqMuT%E7ovOK{|6cZCY)!{@xu?k^O+Ve|kwd3p9;O!tAQ5+T0ULILCS)ii_#WA&6% zo?J)FfmL8K65EF*&y-&z#G1%y#Bf@IgJfu5b*~4^!L)kmT?<$Q7xt(Fe9p~P@Oe6= z+Q_$=hh(e|?SASqeA+z1nY}eb_yJh_89+Ug0GB($hGu~K5@&=!ww~5G6gjqL^o2~O zVxYC2hZ~!qc!};g&W?S?#oP>Enw8guD=<_4Y1MbSvwQ`ImG?MrJ89q`1)U>|&80bb zZY-B~!rWX2lHO2nMumdgxSB5Bzi%vp8mcK5@a67{91)g^6YO0I*>f!UXSI#>CHK~D z3vBz<%NLKMBPLuw4Wu*fRH>Q6 z*se;mK#EUCY{7-_dSeK@aeoYAuIP|c z8L>F@nY9!5xwcRmB6b5Mig`iZCSG)=DxPk?!bcmNHh7N&kjt1?k(3Jqzq(-Tt-0Od zlWP?1!F$}Jw=ovKG|5spq(HxEF8 zrPGjAUY%4x8@#`0RM#L>=trfv>sgmO*0IB@QPOp@OxJIRa?1jTmS9eoyBkY5b&^eD zSO#zbX)E53PG%ihz?l16maeKVwAiY6Rb5_bO5-CFX6Ni+q3kkxLRuq>j8qd+W@RN{ zIO&^DUf1LulidJAPBDd$b=`{1a(w7?<1lqA&m1@?K(Cne>^uGYJ*$LR^sDohuTV{} za~h+Hm(sY?9wK2w=pHXFr1nuSvSLFi1FH}5X84_@smzkw=-YEwq4{(tcthKd&NZs2 zNsh#kJ`-uEb5YhK#$mNp!SHxd<&>hy^10qwWoNifGx(+qq)&wm(Cc)D<2HuELzH!~ z$=2NS32NfZ=(3>=A5Ji}aiG7CYc&Z#p3p??B2u#zbX1D;FdN1eZkJEMBjWjTxexgjLh6@?djwijS zCp{-M<~>pxQCXQ_S?*iAh13+!0=vKmUtK6Lk5bdLaw=;pnHRy%+$lGyC9JPQrq>2b zheQuU$n(3Cbhe{qCV8l3S`AL`FK`2jJ!{Z%23)hY?G&<55xHaXSehC8zrG`#<6@Le zDU*fN`gvMGxb$DV5ok~j!q9<0QXn6mnM`i9%(j-m!2WP#hJ%x1Lt3DWn-E})V#BWJ zs>14!kR}U;<%09U%fC?vw~LfrrzvCEzWC%ZRp!k%B~{|NPVOdoT+DQfsEWFiL#of+ z2q$=YxM8OVlgi_((#;9V-oMJ@*^^BM+C4D|Bl8}WUJ%As5t|NQo{_vS67xBo+aeO= z+6v1^h)6kSCe#e*PsujpcFKJt3AHM#dfB55neDlrk|F}10!jsr1I}f8@_VyfY1ws16y2DxOA*nW4 zRG8fOwXJ;^mnQs-V)~m zU(fcV=N(IikAd%doGC6r(==;SqQg&+$w)WASs*XsuEY%Sv*7LTHZQL6sBKJaam-U1 z8yStc{toZ9?Ce-B*|`K|n7|b=IHqdXoP^9x!O1fxmbxUdD=HEuZZs1B2Y2dQh~5y+ zT6@uf2*_E*+#*qKChpfJ>r?%jdBlITLTVM1quWlP_PSc}lf!1z{Q6jpzBexX@uV zw0#|E1e19|O0emvL6* z<%d~ZTwnV7@ai%k>QQ1>$Ex(OVPtV9f*C+r$_}e$k|31UCi-s|TUtb9>Bg$9aW7IN7q*x+6Ux+{Ex?yYA!+b_m~WC>o^V6RW+9LCnlJP zAP_jHnt^OsRmP=bHo(G`lelRFc}?soe&$p0fP{mBm7HM+@z2GnsTi7X5Yh*j8okQ6 z3jztv!{iA@POgYxU~xS%+@bgY7Ky?gd>VtEVx5;Id}AypDyu2FCd&|dHLg2oMumFax3&TT(CDuq zE1Zku01#lumlUA+~vxVhLHz_5C<;6q;oY!c=s99}gH`dN>z_Zx)w%r>q>$>AatLwR_ zevMiT5DjL@WOF6-emvCAPUec{kE6dtvrR$F=JBLpYY&bh+H%a28#c>zU4U#mL!W)O z>6_=;Ln{3(e<%yT!nH81e>ILEEi9**$G5^Uq0&`F|5z3Kbg<hvUb;{MZ+Gp?I zD_dACC24LcWx8S~KkoibhWpEj_7vbZVj4mD2F;8cS)xc0~>cVIYGr9s1pWzDly6keGQ4|*TV>cLF!fsy(& z3f&l`K-Sx{y|xr|l(WmLD{W}EKjUo5r@`z{VLV!niUDn~#e5zA5`kV%#0sTV*L@*< zH`Q(j6-<>7&#+nJcDWlaS<#reB)?+pP2gD>S%&EKD(v&6?5k0`cbcs7o5Uso!AIp; z;}U}*;WA|L!~(H)cZru}PEJF9x2gg3<6GCJ<4Y}R&3ZPL`KI`!SPC50!RCpB?Kfl2 z6OjeGyCpDsZ*nJ92Ja2nu!|%PP!ocV5(_~gTKcV^W|oYFno}Wc#^99$+7P^&fGV9| zDD99#sX>=6NBxhnYuz1)6zAj<E4TE0%{BeQSaq} zei(>5*Jf(X2G1a_m4DV+EzgZ>GqMYaWw~Xt`Z`{NYnY^ND&W>ocBf{!==;5&PR{5z zI^tM&+GxQ+JP49s?XcF6dEYlcGwG^O*_I_8+Zx#yt1=Po#|XRWX3pP^F&dUCx1y1%&CB+PTFZI zIATg}ybxs^R9sA`zKHbwj_ntX zr0);}wk$Ug>2GwU)*MqsS+9N!ZhLrp2x*}{R!%A^)n~;RZI$|!44A?}%-B}*6I<8w zhXJ-cu0}iuBB=Dfg5HHkIQ4!2R(M`zlUl+~`IG4F1qLT!Kjc!Vsete%iB6wP%!kHe zb=B(7UZvO2LU&E(9x@Cf`=RTfeue>#!afM@x7PV8TLz+<4Od&uH-}@J9D2=gC2jbV zxF{1-yF`${rkQdVsZ>^0CmpS@B+toucyaM#Qk0|(OL@K{9T4t)rdd;qWSU=P>Cc2p z?R)8K5Aw=>bouq(@Atlb9A5@e!7gk3<96uy@Zkoqp+0jkBK*QUIDu64O!|xd_!jRVY8e)cqqPp@+2ZWy8YlM*b{xDL18ZiKX~`{_Sh*Z zG;71?h64^=qGk;{uAw5K(7w2^T+kV}RCOH#!aRGr({e~v{{4OxdPaYW`GHloqKFUmw7-t7# zA-lJ&)`rWxE!Q8Rz15KF;gKuTpVGls@wAcHv-BY3dmF#h)j3_{{3B`k73dJd=%T(v z1HWEb?pQLfyQ=VL&)B$^;XB4)*2tsIElikKxbvqRD;H@tOFnAxGv_*7Jcqq9X7Et@ zz;O#&1NhFBcIfUe4VRku#ApCHIiH**={y3KOfn3JH%yK}k>sH!zQlIunOrq4u@KS% zXScqbJML*~6o%Jsuo5KYc}SJtl?dRw+7f4TVmTYCMzQk_bFM<^lyr+RR$d9jlg5cv%pKZ44Q- zcMLnXoFNSm+m$zO1Amp%%NB*s&y5?GxzW6_n)=855+Uv!yW)H8@`jt0FOyY70Yiki z_7HL%VFm0AdRRu6^m%hF@4>ioZ(ANLX|ftBUrBf}>CR@kH9$KFC%Xde)7N^yehpbD zy&y*MRSa7dEb_?}p4RMO0E4b&vXuh9%RhZvRE7JWCRZ;$t{*}gPyUP@@bzOU1kuL` zzOGs8gQ}It#A!peAK9ZcZfP$j8PS4j_J9Ak?bB*V3G4y+UB-2v{U~%Ws3A?T2h zHCA$Xd@*4sE&IjlhfG*s?|rlPhsTifBIW@lT5>1>BMzfM`n9JC46QZ!Mm0e&WJC7u z59*zM$`hCr^Sp#KhtXwm>CU?TKEap7bB_><6}&&7Jj@%_(_{-7-GIZQL1AcUA)lML z(ceCfzTS^6<4g8Syj(A0Z;;ujEM$?E=+Kkk3k}NFRUQ zhgNXicXCa97iij#)U3mVgIeA~? z@U4?pWwM-yrYHe4-HW;a$bF3rMSnoSq%OePbcbP>xHNdaS0Zne@y+3_C3IkrwC;yb|@% z01$N}Oq0|*Bn?lUnyok;<@9#8nf#Pyv;6k``(5KCJqaJ!IV7m}gkk14wrj zXEle{@@60m7Z(Rc2rAoR3>=C{2m&L%S1>7H>LXeu@_(W<>jV>n1L8wfHzLujIXd1p zY%IV96*Q9=Hto2wCrw*ZK#H zT`KoA^@QV_uwxZi{N!Rx3p)|?#~?u{Q~-)iEes);;!^ZN`Vlp68xpW*eL9ip%lMAXixd&ydXmlJVupbW`icVcgv?M+ zW*lq0ocgXnpN>IF$zooMn9_uJQejYEm7UN#y~?m0575BH#rpaR`eib( za;>+#Z9Vwm2x(cPJBTd{WAMYK{j7DJZr-uLOooovbme0GusKZ8wJ5_IG^a zc9~^u0{AZT6tGItYLVss@a!x~r;-Wf2K)I8YXz_%DDC$LWHB^SAWzApVHd%@FYvqX z>@*|8t#Mw}!TgK;-2P$5?*a@!K0rLplU1B9TeohkBH;P%(^v>*sM@!VSom?UOM@IB z9%{)N8~VPjqYn>c@KcNSCMbVb(mHGpyt-wMTCVG-Myl3Sd5>k5UhaOU1hYL-zPVvO zQzlbhCFQQ&t>HNgk=k&}EPW!bP*%>96;%orq!6Obqoo1Ut8(P&vPzl zP9HLpY{CrcA}`XbH2WZ%^1CvWgHpKk3k&p*!%3V6&BdH}3&FfTs5JZ%fiL6&WnNznnCl(pX4 z(upI`)pmK4F0hlwx5VR|M$~cXJCNEz*Oj-v7D>lTkqTX<)(~0FcRjAFnDf_PjS1~? z;ywgEw!nVTjsziCcm`uJQ{z|?k#3lGhW+L{kaOK>M?c_DtE^IUScP@(4ILb^ z9+zRI0^6lB4HRG%cI9k3h&ZL-@%x_~u9jzCi$m@or7P83IE?)Ps9pc__j_OO{rATc zhws1l^!r&@iH`jcN9kW5O}9LuqXSl8SuTZ1xm?7cm0PBh0?(g4%-*H<5Swj~Do}z& zdmD7J%PSv)v9-E0&EV8WpcMC>p1&W7P2M*_ucr3^M3_Muq)jQKyf{FHD0`ieA&(+x z^d2mJFqdq53e}-M|=~L)J0WaKzjjdYJaICo|6gtvd>@c zQWMTA>oX;CJ8_xBg{+LLdjpsTC976}X-V`IJH-_GhQ*tYBn@$TkHSe|omWc?aesFl zM5tZ@0FX(y8~7fgrf)NIN_Yfm<^z2Qy<0LO%x1`(6<&A*tREIl^GzCbvpwErP+o9`~5+agdfc z0L_WCsh_+(J7;wF&rMQRaucF~Y>)CJBp*qwV8*55v3seBicjFg3wpt}$g-}D9KAa| z_O*QkHLR$X6ZeY)CMx-Xj4@=>`19G@H-223HKSs?W)v@T(_GVOotM>)mYaJfvir3v z*VJ{HzJH-sNgM_dS>nOo3^*}Qqf3ktdcK*@lj1VknWV4{A9C4fPpfu_E*b2x{xP+t zZegSv&%-t=3pPv41YobLvnU$S{>6dzaBoup*00ipojW^v#RA_*16Sz`@`_NE#XQoD z%OhjUYB^IEA5q$jQ3pc|72B|DE&4Y=J@z(hkUuOccThP3p+l11CDj_V0Pl!C^a#YY z2<7N!Ok_eWrjWMMIB0w+JmZ@LiOBT+o3zX2nJh6suzqS#0d`z3E)-qD%&jnJ@)F?t z6o1z)gOw=a?#UTFVImbd?_u7aMH1iKp|@0bobppC`lqbv1i6#T1iVDqVPqsF@X)dN z$njhblurcb<9~|tZ8vINW~2j>lbMU-{q8u1{cd45;w9q1hMwG{RFp&ZVP6yEiqo(| zmIfVzSQb>EFv zZAn0$lNtFVX{Y5-iG(p>fmF9g=bMY_JLyyLUdR({8A^Ue!}Z+C;0tmSo3qiDT;<`7 zCtl)lME5w)H~KAaYF71TpM6~IMpS*+{qS$EUp>Lh!@lw8GO=DlUK{wmonUohpWTSP zWY*%;X7aXv=v2>!ojR?gD|u5y`6~ICOgAV?YGQ{e?&IMBUS|sFLx>FsO&tAg5NwG? z65w{H8iMN;jE3X&d+z@&P=u_Kv*EY|H*P87kk-Yzn_uST{*x!7P5ETNt)ifca_LQC z)T17NXDNcV!m}7?r|61l&#A`b%5;7wJ!|EBP(fjpfA`<<$&bwL-67vFTty5sFLP$TQQ~MN&l98)+s6$>xEqbc}BDla&Bb3q%JXpFWkK@%4jmSy6-Z3Z!I6RNr-AZJHgY7_KEQ`4!?fhjc< z)~dMzZKBAW<@fH3rr_7uXiw{j^LEom5ZX*XXoooy!6hmQxvDnPVb3?x(7Kj}8Uz;t zr_DqiulFckr&nwxZ{s^rdY2*sBJzdGg%AaSE*mDAtT-V&hWC13T*QX6m5HiK4@bn! zZ|!0zBU`3fwvub#H2-XF!+={`tX(Xz409z+3({`^bk4>cJE@;Jb9QUagKmjXL8jxG ztam2?K+k$Kz1$*yyqw3&GBIw~S^(?i>{7d0-xg`bM5k!RIQ0~4bo{WrO(tbNy-qMo zQNloDvNh;&`JKcx3f<ER3WRkvAX zABF6qhMFIX_CP49uu`@wD}@FZj9V2!qLx|Ld#k&+&<&RF-y`>&Y|`aS?}FnMub2km zXHmYXARPs5pfWLH{#>$amiBS>^q-s$?3t8S075{$zv>^) zq3$4-028I;1MbVIw4sE{GMcIk9--^eJUcqqOX`4zCgbX*VIZIRE#w~VSH%SgAoUf^ zT9XDx1_g~#l}Plxz4Y&k4u&L#saM#!K?tq2PCWa1#uJDW+uY}Yj2kRkr7t^VELUGo z^W~Cq+e_D-Xh+L;{*dlY$Rdk`977Fx0mck*#v0VBj5t=V#D@^@Of&IpKqo7C9bPMT zX}?WWEVE}YnX^2AT-Z>Qnc9r$W}@+WlE+2+iiZwS-Kb7zh#}e{MnZ?8x1E~~8Y8KW zl(1O3mChF$k_jyRcCdTDep}6@?Ji(<>D!duaT8Uo0c&c212SVXvVsF;(>Ev>{3YrA z@63?bSYVF{3=~>&uw2TfdLR5Ntm9E6(Q1Q{;mOD8a#N-^3DyNrc`bR42TwpLWyDCx z*QD4mMgzQ#(zE#5CeyU_K^w53yj%K0VGewy4y-=X{{@VoPX36BXBvI4CH z{0qTp4|E9+Kih+5>|2-zL}B1FRAhWd@Zwp6PcgENKXtm{pBUZnu3L6fBY)Qs^rNOd zClDf2xN0gj>D>us8EeWJs7K$wtBFd7JtWg8@t8`U+h0WSYpI05reL1!t9-@?@)kcY z!N-wjRkFOGc_D_@xDsO<4+%O6tMRl+$nTpKgSz*gxL27e zY0Axn>dbvkj;r}FX%|Xj7?k{hKUW>wx>icRtI)}+!5Jj?fkW>=i?&LLKOTU zcpg?Cz=u;E6w(W3mE+mCnLNJr4IY@yj#`pmMKw`I(+>wvkHFiH{QWmgH<0^N4((`V zy~3X&z#XJWZ|q0sndxaj4biW04PSgrD?z#~S1D9FydUWQ+}JsBYM?#N9B6kfsT2}h zTP39FThQLZ5^CvUR4+pL#p~__qL2#k&oAsx4Yy`5%HF8N4p@73g%wCZy~w&jGH6z7 zyBx9~z9mBhZrvL3ukB(xR5F_o!rh>{QPJr0fqFo#=cCo2;7m)|cue+Xf7xT7fY4)^ zTZXf0))CCs(|69km^l}LF!!UBnAoPG0j%~!RS71bx)B*joMBo;iS+`AZaO}61FA7pnHOg$-@+0fV%Kg^ue8JTi((V5fU1a5${7n5-38@f$M;_KAj3o z(8&v`1^$4zjaC@h423GEkmyrc7E{Q^tgjN@O_R9nmeFrQNT@G zq!x5mq%qdJEzW5aK8Lo^-r++-jM?tg;C#n>S~$A-8q$N3Kd`#*wH+8q-z81B8xy)J1{_ z3${yV=fb3vglmevTSy{QrPWf~U{9V1Z79C*ezJ@w$^Cperua5FK}+@{qK1`)01%o=jVYQ zXP_M&)(H@X)8TWTHY39sR(+W(*v5O0wFh%D$5yReDG;CSu?gY^{_O7*i z-o}yU4AOA2HB8qt8Jy7lY@A-O4cI$q^Se&&9+St(I!>h_goLS9^mTvxsomvKrNh&+ z;f-+iy~*kF2I8j>F$e9v<7}Rfyy;Yz+t_WY_l9j2nwbY~g#BLjS4W@*$%`fFXCPl_ zTCBdbgQ?v{GRgvIS{Qg9{J<=OV14DweagYpA`vJ31SL?oE{{|=L0Ug2rJU76uU=G{TD8XZLUs?^3Z4xhmyf&4Hr6!;5(ujwkj;Na^ z<;R!C3w)5!KjCcb`koG_VQ+U_UKhz5pHJ5kRxa4G|tMrU@>2go5TBa03u`9@cy8b+g1xZIJqq5ZjD97H-I zwr3krX0x7#z0lacp44%wBa^w-=Qc=O>%M`!gOl@sj^N+xd01z`9XgW%^pAxt8}y}E zu5pe|H@~qHvB>kvlyfmSJqHgINMkfN91GE%2jYnQ!!vMMUk{+wgI^!a(t`b$?f(bZ zFXcDowbdu;!18v5wI{S%YS_a{72sg-hoExT>jc~(DFujA*b+bS0`2qu;;))&qV=CKcLoE%KM>$u z%e-yl4C*+E0Y?ybpN{@t(d>@xHTIiQchbp3HJ+V}g7mrR6^;du>3Rnx)FF#Cmf}KH z1=f$ojh#>|kE7?n*kFv{6?v^@yn1u4-#H)pXZ=wx2KKoW%Lm)>d;bfOc%Y z_C=sL7>Tf39t4G$56Nm>-N{3-2ls{=f`zj>(PN-Z%A|xiyQC`PsBun{W zr)DhX)MT{(nACi%Xi6 zzNw+hK+#+fp=|NVDW7dKp>BNdFUj4H0Pe_K&+K+2o+nN@OasWX>DpQ>4+{8H+VQia z^oFyv28LFLI1gIjN3b&qdh0C~U}+`{4GgUZz@N#;*aOlqH>d&hU^a`gu-1c1$Uj%6{IlK3+i= zW))6tzJa#Q;W_6*M4lE2R=$jzB;dATfB~Q_z~KkR?^MiJ0v(8W**?f(U>D?IgqBGb zF_wJ>T?{$i8rcYWG9^s5Yvz#O<#Erz2bm~)o71KXB{i!jE1r4dkN{~xTkZ$V1jZZl zgpo?+6J3JPbh#T{Vpekah1X-gbgnm-n@qfeIHyanc6X|B+g#(;iv$Z1@WWTFLvdoB z)mbPO*pR5O;2pJ_MW?h49cM&2+v?Icgh)C}-4yI^rStby$gwICV1DVn=m69?>CDJe zElUv*3F)0o5~Z#Q)pzz3T()y{KfrXG5B62MLy>#)1AAj;?tVaXVvRBRxRL2uZ}`cA zpw~V%lGitEQKN11?mTu9Y+F^I5GU=3bVuOrSCK8FhDZZ*vgQRp2!UFZU%MOe^2wBr&7#t2%UGAo3H8fC5a^J_>e>o#Dy?T+$2kswe4ihs}++7h;M;6qgIYZfGBd|!7Hdkp??oOF5^4oc5!8NC+j6x z{hD9o4+?pz zUPh5T){^si7f5}^v$Zsy4$lR_!I{o${OT3kMEaN7oeFeul~k=ICSy>UUGyk&MA|bISbch!WvMTyu~FN)Z7H8A83)1-lhx>c6CFK}BlK zvDVEgx-3T`Zzdeilk=$S>eZc>bt{Kiq+u1P@K(DeTV0Q{U>#P7@A@a3jQ^(X22w({Sx7A{f_%B<>zIynWj7F z&S_y1P}X9MoqL+Z#@^zx0Jjj!c;@jYp^?G?gQ$!f9#AVXHWrELCqzJ$atji1HHx=Xw1Bx|xoGiO zkCM^i(~qlVkGj#~>u~L8KY|0rHnz6uE-v(K*S6RsP`l0fD$gEllPfiP4PGU&^oWi# zs)hm8cz6*d|6S9Mz;+Z`B31G#%wb+=eKo_cW(@6V7ON6T{n+TZ;;O1MO61v6?qR6k zDb*UzhV#**WSL+INy#C(XXWT?IQSs@5>}u{a1F*fz+{*MW9yTY3VLlrauAtV;}(Mc z0XXSC-^}Mpfu#iX8oI)TcY?3mpZb$!KJg+=AFQpkF3eSiwC=G`^{pz*(dZg4fTP56 z5CH}po1nsLG2QV&5G(&c87pndw`)-Ye=mbS+x~`j)7>LyVk3+#O16SAA zemrCx1aA-#J0q~)pNf=mUsN>x#~-641DS?L)uP*QKo}b)=<&5{E9mhRN1z0ROg!R1 zf37uvvb=^sGs0?&S9F>B8>jFx^)+tsWjdc`YrLZ&h z6=0v^6nKUo46`&fQ4b|Jo?YR=(Uap0K30%B+T8{&2NxHX)isnjE`;4p zwbwv1wZU_pCM;jNcd6eN{t<0J*v70zS`bK2F?2=lNk}4S z2T@*8;>Q1UYe{eOKGvG0q!rrbv@F96dOyTOX8(*gh{H?vh{0yL_Ec0p9#<-z*h zin)Wx1zhDc1_K0aXxRo+4WOS4+L45w-x2r|9sq zCVG2%^x`yn{&!51938zlJ9H4^B_`(y{4hRJ7sLC2-DMxtHGrQr5aidt4~O@{&lDPc z6KvuvH$CYxJ5Fj52D1Okbjr!D9$aPG_|NH9B$*&5mjmua>*ncQ#?R5r5P zp(?6#hyh#QiP(_jHc}O^(c6%XQ&T(Y)1SUlUb|=H#YkPrBN3eEGj?=A`XNz0Be!dA z@iR((a&FX53?!01UxG5S^Ov7SAul%G zGe?Yy!dVXhJwdEv8{cOf`|b>V@!D=6ZQDf&!~GT(=icFNOA>3)^Yp0z&RQNF!@7&k!} zRfaQRal#8zs}L(Nvr4hvSKE?_`ruu(HK_BVt;&y4#S<^yR^Kzd5W^3R=! zUia$S##!nrEg^I{R=}fwgbrd8UA6R)fc^3z>)!F zcSZo(h&Ky&?t)^CSiJhUA&{~lkr&E7o|_I*692zoqafZW-7!~g99@~Ti~lkEl10@Ww? zb188n#8B03#>i!+DH(us`2ttq1rs|kS5g&iAaB?*zT;7cxN%BwTU~&*xWEbnoGA^zQT(7+l$zniqGE$w)K6-7Mx9c3#l7 zGj(RQR3Lhad|$S|p}f>RJxU|B0HO!ZZFUN`PDo6miSQ-yHqpy#2WRV9dBWRY;)i7IQO=s?!Dy<=Uoy0TSy{2iJ zTU%aOq8`f|P&YMAqg8I~9+KpuakRsRfA2y4W{a|q;}G)MR6owOx?tk6<(77dgHv`m%y5!0dQ zL?Wu=7-0^=b4?TO+ft;B0dJ!&RUCTYh4GmaHX9>)s#A{4?-RH~?_-d<6p{p24B!zz zDD@AzFm#ELZEXYyrU0k_D6q?iwnVA7yXi+!A{Iwt0!7x26!hp*bfdeY)uYYps$ex9 zNK%I|2|x*WjPFObH$zMOoKgTdW;Wu*3aT<$&N~yzwr6ZRa`c=pxwY#z4uiRHPf@IA zrPr{kilqDA+1f26El(MMfQ7CXk>=^g;R;uucgjB?SbZi9Y;zHp3vNIV3v0~0%jHbY z)@$GxVX^=$Ow?!asF|m5@Ny=H{0=xEz+%Vyh35&kBTt<)@z%~IA=Ggun+@I)k=ul> ziP9s-+d!?rj&Qz{sr&SBmOF<^h^pxldAow8?+`amSaR!3$?6N>-&aP3^Ty z)L$GAC$I-_?^n4Vaj))WyikJ*r}TXcxnv;5vNKx5+UXZ5JH){RXmrfw8D3uXKnMex z))+js%r3Pr#KF=BdyLd6<7EiW!U6f<_OmanwP2ox;DIKE4YZ=hojgT|vt#*U*Y zDl>cc^@JDpLdiIaWVqb``i62X7|LiTSo2=0-m0Khud3F~Ok6uxmydcpB~|lY`FO;q zJ#+Gi&->@)5k1uB<`JzZjYjWn8i=#h7i;wW3HxbB6-KR%wuGO+?xb7-<^d{hF7Xsy z4LUIPn*DlPwAruQBH_yk$|0e{e}HJvjza8^5{pvg{CRBd=+r`q4}9W5U344#gl@T; z$>XL3ltKK|kjd(Li)1p3%FRSe2NF_de0l4)y6&7f1bzaG$MZLdT|dHMyc%=WzBugj z1Wv;d&y(S(L}*qd|TdzQ~*Pzw{#W{5&JDMof3Aw5E5IyR}?I zshv+Gh#qZiQ?5ZDzJLsj&$WVEUpLzs;8Vt?#q0*^EK6)kP!O_2iy6+l(W5 zr?1?K2_+qt=SeL&f=F_+Rgpx`R8|A@7sxU3P#jS#dBKwh*~{8?1L7L;Oa-%Kjim=g z_5j0&c{oi#c;fcA<>)KM(=+wnb)XG|e2(adh$*m^X?Cq!x_nIul_4J3k~#w(h!PHi2p=1~yr_S@ZH4u_r-Pc;?QXmy>$$Tg>=} zuvA8CvmEo*`AX(f5nK6jxlX1Kbu)&7QKgGxoUJIxDy1uP!p`~B9a1`wPn?TNRO%`Co8R?s4+~7Pq{8 zs8HH}Ez^)?T5l#JtdcCWVyKtvysdn_sI}0Fo5Er+fgACkw2t8NN6GS+_l|EFX$u%> zi*6GPZ^8x{o-C-8ms8NxtN1pQNg0$ilqZ9SI`ibY=yL@%bxRdbn95?cb|+%D$ZG67 zqd-%#dQX7-|K5S{!(V4fd0pk}U-RXbybrq!}Th8v^%fGaz=CX$dyM<8Ri&C03*FC%}T@Oo*qV5T~bz0%i zzo{;%F4@CwjPy zj+lE;DGsKvQI(2@%VlQ{fSz1iV|I&> zDi_@l_(c;|2PI6SR)7~Hl`^v~h3`N$4ii+!$A@lo42~p4S3swH7_ZGUjh9rKNYp;n z>QNUW>!5gNcOjbYMroxhdNNCQKs5q;s1DZGSNl(%oc!hc4{r`$zjy-o(I-{@#3hjy zo!KqUovexs7YPsaBy@xL5sA?iCiR4jvwRi1xXrN{RSClem?%`cu}t#<_^FX^gOA#z z{|KazBh>{bls0-1n`qi-Mx5@YYQ)i*3{;LdBem0xTwi@al!_I^Khn&bZjpB(H+%!` zJV-&r==u^qd_ZT?xXlmN>!rw@EU(8xn}-^59*RafLCO_scY>u6$qP7&wGN?D4&+IN zDyigBYUl!;ttT>wN);jNp~V&s=jD9xzZp3H?Exg-O!lt!064a}d9Awc`z$I;h%ZIz&v|ga( zvJPj3+19}tO6Mi3ND6&dwJ4Z8w;hE{yJc>n*6O#oee_z*tUH=uRtdv$V^lD^;aSTm zNP`!grj&M$_+W?_lw{Vj+-!qAvw<}B%>H7ODbgqR=FgODV>^Z#yYDS=XM32jn6vc- zhFFuqg#Gq7m@7{?uA*WSzi5&EqIMlTC`L2~`2Vg^LrIj61P|5j*5%J(BI<>V(M&|~ z%(OA+c`bDf`ES(N&wwIlO0D!zsys)gdK zQG9@W@8Ga9KsSE3oUVNA6Ja^(j;24#;Sd6d7)p}fi-Zgk~R zJK(&7M&6}Hr`%rmsG&F+=0NZ+i~bb}Wr!ESyDD9#Rmuc{t7Sd` z)iV!}DeXbMfe0!|n^06?zLGflIbBC_F#N3i?6`Nz>zE|^=Y&No(zH?`8tP;Bq?NI<;^@D(UA1I7D9mP|NcM! zFKYjP|DXRKglsq3l<@BBXmVF!#^h+q2qW701|O6UJtM}DsyYNO=CKCZ4nL1}C}(-e z-d49sl10Bqhl6ka`+xWKyh*d_e_;0^WWR$JIL01@Ruzoy(gJJqP4g8K*D&!7Pg@fL zo~w5PV`!wxi+sN9;yb_jfm3}Wu> zD;0+8xyHyeU$RgCSGwK-K$Lu;*Ynv`sBf1D*jHdXuC%ZLtd9%Z6@sib6_Y>g)# zqq_WXG)-8O#PV_oeT&P7YEcCl&N8{cVs_lj3d4V% z1vcwD^VvW*96|*u^3x#xJq48NHr59O%0jz_)&N*7_EEmR(>IaNX}dpesbhiMRyzmk z!fL4nz3_yY6`OKfDrOT$9#!geY*gMg`)x)g#cmkFmXN>3L+hugET&PJZ;EM+pS_18 zF{B!p?Q{d-34Ncgp<4lxbm0cO`gh`^+A^x!Fs z6?QVVCU@Bs|MMiqU$wqMd6`Bya#z=Ekb~vYVaEW&Gg<$qS`m#Ejd(h(cv4b-Ju{g+hy%a3cAsy5yYtIM`3(jB#+sh z9TS3rySphvQI#A}^^wD_c_euu9)2RNuB)}!$`*EaBh!^fqnyB8YmP4h=hIi8zM3V| zC8X{ENxWP`Y1X%A+;X8FegE!Qvu3F0ReWVxIlMl073}q8e8 zup3H3=_MR=qMl%$eq;o)VC?v3wlMJ$eDt9xRSFRh#9mvKtY`Nj7?f=Q%&BXPjQ-jc zL)m15NiLu)yxjv^o0J5*d3v?s$%!Fsc~j-97{OWI(WhKMwRF~_AJ2yt#>4ZrjN#|L;b*BVkh;Nte>S4}{#JlT!TbrtA=USib$tAsEllm;gf+I%@ ziP@nTb$QTGe2N}_JJ`JGj?Gtm^5999_Q={d_EcywV4Jy8F8n0R@Bs=xMKTXJ_;m5U zbFk76&-0J^4XU)RP@&yC=sp31*4`ux#J0Im@E+w=!n|O#y-`E~zd7D}!(GBVD-Xm7 zb+225IyfuuI72QHU7&Au7PcV1A6pP#lknA%^nM(j^nM(L^a7OkV=Kz@PRau?0{z8N zUKi*)Ql3&uJ$dpZ`W7SN6F@CSKYsV%AOGAW#odGG${2(nsyTkQ7 z8&LCrO7M>L%AZkd49VqcC2}5NQ!jnq)6nCl+~Bus6dN$@T^wCp7)1I0J@hGR5LFe1 zm{FpDJ2BK=^x|U-d0LxXug}Tp0;WZ?vU7eU)K8>*GPDtu-^67+|M(bh$-DLtpx9Np zPdQf59PPnN1Gtx$mmgP7)XcXqI9%4B+HdgZTLIhCy}i9}pUA($jX6f1Qe*Mgpw8)) z7swVq?X^ttl;9glxu<&TtJz~+$c>uo7e#V)z@_IqNF$~(1X=Wv`Q=e#Mj$`FJSc%5 zA-{e=I*2FBS&FTeoeaL%mmsYYLLh_6z(;pe@7&9sW zHRNWJg(`4to||7OrzY#@^{`D}cjacffT+8R3x19A2JPq)Fu&tmij z0k0#N{bW3$+-5S?8iZ~JuTVP2+*~=2!MPF_xplJkmQrBnmH4e%F?vsQ6ca|v=>jeA zb4F7*RkwMx&Uvv*qJogNeev@p`^T>bAt zT^p~Rw*58o9oJh^$Jd%$xDvjjwS{mH?MH`;WQux2Ol4PTLOeeZiBH3}hkJPj?(^(e zTNlYq%EauBntNeCOXqA|zhkV4t!>G=m{!!YI1A#^Js&s^;^6H@xky&zJ&mbTVq=Y< zf|@U$ff}{u9O3Rx;~pfif;3Z@KP)64#$CzMYqQ2anrK$US6BEO zcc|`c-V4igLnXFVe4Tud0Cu=aL^Nx~0LMVSwMV*@=7cep_f$#y4xgX7%y*wZlgS)_KN1 zbZNdxlUtCK*@0wzWcN|8epDZMCS7xe637C|t%{t7{^{#)L0I!gLx25Cl=jhAhq zMN9-bXs_Xb0Kv7ZsT1l^@EZZ6N!NlfJ@C@V(R*VC*0VK6Nby@O?hzBMs(1CCJxr$c z?0;Z4UC2W39PV_oL{~*R!=q-r+3)z`2cusj(#$@+c>i!)m|5Utd-GU83*_v7EF-+N z%3|}Rnl5B~#i)0i-t$G61}dYq!5g&EUBT?9jy`5&suL&=pTQgI_TF$$Q#*@C8OXKjRFiO4JWc=f5T8c;2x8U?;M+jAuF zIvXmx;Z&MrA-d!!=QhGV38?Ll&)1Xb{} zU0;WKZ{ULm8ceD^MWLtc{JyxrQ|JAA?F`N%^o|VmD3hlUxbn8$^%~WU2B(JIau}k) zfsoL4FZ4QHaJz2Ues?9C)ma2DCO;X!{lHSWEl(GW3IO=i0(yV9RPjM1-ah1XS2VZqX~KYO6)_N~u4=X$Deh zGINflBAFKn&)Ug*^>yL0c=G-ZooK#3I%;qFiAkgC8VBt$fTU4U!bZI%B}p52IT&fy zb|CzieGkJZKmr(b@8ThMt(cO2yB~D+&!qIvMSO*U5wjv+b5oEg^MQI0u07Ez?s=Jg z&a><@e3n(dVu!;bzDaW_BZMs7+qlcYoHCe?*G=arJHiKG*Z|CZd(JL8!T|Ye^om`H z;IHE>Yh>u!NC9X;HA`p09K6(A{sBhT3v1GX=jxv{ ztSJ+<(ReSCGEnYl_>d_>^?;ml^?8 zJv`x>P^AoH|7wVuO;FX}Bh-Mi2ku0@rD%ixZUgA9!$h==exfCXu zCGormM%zW;^+F@e>RESF0+0{P<98)bA}z$>BG0QHGi>E2+G~OU-m}h1-D3|);401x zD-u5kznIk&0M)JN1%$VQK1CqqJ-V!Q%w2UZcmr3xw&02;xY!nY0ez*^YewHmy{Dt* zgoYWLqM9?KF{^+gWq#R zbO=C+#oTH}=pB>t29aTT&yOKd`j3Z}`=ADU9t6QpKPUMUk1I4gAb`e~jMSI*A&I1e z?5{KH8!3gy2pFOXws#lj-_h15XF5vYHMuhpGumy$jLeaI!C)RuVL2lpD!J*TnzZs3 z^*b9iGtbs02wV`rQ}PrWt&=o>eDwZhfqqlf%RUTFy@Z7B;R;{gDigr{*4W1vFVVx` zQt2c(7Vva!)?i?^KC(iPgL`FNN~k+uM>?KM%Pi8><6Y`YFD~q}sfQPD|J6YpKcP01H3XS5T zgOl)EkvC_zCcY?I#A|jX_UFCsl;wMXuwexit?wz{Rmj7L)(CklqLpi&LmTJfBF~^3 zGBRr()h$68=9AC05?yRwQ^k*I3rPt7`BDOuV}e-*X>i+`IOKE zM+luHCHgUyn+Yyy3jt5oXDG$ed(@%4-~h8Um_HXCZ*?PDwHIHT$*!lFpp{2MH@$OzB}rO- zpxU_|lQL?=(qNeCfEtJ7$Lo5ixvL+IBIrK3!Dsj?9rO^LD~`jvWphe}#kmD1P% z7E8=H7G%Cn(#qT=6u$@c7GA}ZWa%lI(AuSl48ktFp6^AyCm;B2@*mb9#cz-vSPIG= zuR%NAgayycaCW^^(?<9PtRn4IZHsm&?J!oA&z=}io2Ys3)S%>8r}6F;2wS0H%kww6 z`4>{Mu#&!r+`DznC=biU#nB>7inw6697q)`3|nL+8^lpGlVO;Zbf|x>g)WX(BT2d? zkL!fdhC%WVoCB#KCO0?WW*_N+EaGh39s^-sZ$sX#?Ep{LZ18QjF?-NJUcAj8c?`~P|;vL)4d13_bSRCoUoMT6H zj&05j-<945=7v|gAS*q5TUVH_rpbHC5AWC`$C=JR3(?ksnrkre87sB+pY|xFT6rGV zCnAZfPZgp07`8-DIFGBZ{{abIyJ8Q0Nc9YG^-f@_X+KXe?I7;2DI7FeU6bd{c<1WM zx)*aEN6|OJJh>un8x!s0=gnPrz_SHXA?U(M*cll8^dXl!x~i#yTXtw{FKdKJP>QK|{_!!u{us`}$6&VEZVGsTKMFwLc(@m8g1NB)8`GJJ zcHJ|YzSAAVrBTJIN7?0C(tEzbRlT$LV7vVprXg-`2WMtT2-B@dtL>|(_26WJ@9#{w zObu-oA7$1u20u3SDb@&{vAYxP$G;pv?TDCjOO z6n(K$8+N9r?Wj-E@&ka>M<#8UE*!ErW$=#wa%KzA^p(Je+g1n4rTr65cSor{`P~c)*X8 zJkCH0I}76pRs)JtaCoavg=Bo__*^|QlETH4L(wby-OK`|VW9Sl=G1nMDas?#id`dT zX?0@v$;H_p&R@TJK|R@CVfsqf&C{AI{74}7BW(b4p&PSYDR??&0z6>N^yOAn8siFF zC8GrX18u;^8Vkuyp2vmHsh6T?Vy!ck=R4uuF?zONE6a)9-!xyX^AdHg5Oj~j|L{Ej z*v6w6lejRbv5XNwZccL=XK-WJ3XFi;e_F1W@f|d^lVL$0i@ZpGh8~vDPLba}1WE7) z0)@aiafeBtn^gu6XGyU~m-!{$=4Bgv)d2Tfpj?7hi|F0O>zx;cqM&LAt<=d=wCn(biw&=`Am z&|J7;U+k!zxlgU{+2QS}87>ldmw}V5N>);R6cEC~6Kzqm%>!z)RkR1%uqYry8d*d= zV|E|{TzES9d5s-#Qu%mq%P%#dFzQa)Js&{Ni?PkzLW!W5$aT4|3t{q$zz4(^**B6^ z)_pPJRoR}=y)7XxNcw=G>Ou5t^nft%AarY{x}(eu_IjJI#u_oVl7*ib_@9{AADzj_^EK>F-vNBPU_{5igl zDW#5#1$Lz!ya>Tn%J(($g?mFb1CGIl)9aHm#m3VjNv{@8g(8(`$cwHPh?30jo)JUy z>4TYr*$gr!B)2#%)Fe0?yQ`!?X}zRhCYLwnIjA^*|IG7Z6<2My|K;VSH$#Rmj`C3y zRqVDav^8D_f(S~LJ!@`)cj<<9ejSppsaFVMQ)?}8lT7`6!UjvHZ!xCeTPE~A{Y2gmc0h}N1Z9hQ$L*|w?I5YHVP;J zW4eu;T|PVI1+{Nixa{C-k1;BAkV>EN&QdgA1s7ecSAjBG(VQ|*!l+xgGg8NZJT{_( zmES;;n?X0ne(7z@l8~lq^IkZ9|GJQ0m?!L@#T!uK=gE^N(YJ-tYqHPE?;iZ)pPQt( zdk{T&dLK1_K<0p!JdH=pcgbW^RiNw7W+%PvNNQ!-S#O2%k8zQr z4=yN8DX9}pnp`TUT;s8QrRksl3JbpX8Y1uT&GWcyRGS8n>A@HLXbRIw)h&3MXRczf z6`f4KG+B>`Fy_1fAm33tP#G+NXix)p1Gb+6SZ4Y2QKbybsp0}|b407rI^FOodX=5~*SCgG=CO&A8?5dSKSL6pwuU?JA58yZD+}d#xDJFJxxDOy8%; zWAjok4*!|7iIe`4?rdMkRQsy|w9+@yg*Cn!Jl*yN|87$rX5go>wwyY!tLmfgnh#NW z0D2%sh8LbpqJyG{?=+83)ccn?#GXA;q6K7qrR=@zq8}Zc9DfyIN1Agfc7)HWWVK!b zZJmDw6S10nd;XNG3FKN?{$;V@FiL*e`q;bTD?==o`3+b@fFD~k$}M@RCZU(Z^unN4 zq0|Rj6k1y8X?niW$)Wj5tuHJ`g|?702GH`E|FV1^)us=kt0J96r}-^~Jd~KnQck{F z#E#yGt23eXRgrJjaNJ`j(`0E?TIi^X`kwW|AQ?#)rF!eFj5@N?t>MK!#%QKQX4-&h zkD`NVcpx22=cIM zb+me=1l;bdd&ycaR%^zvgSq?f?+ETa?Xfem&+??a2QjnveEZ9p_c_lF(r0f>v=Bra zQ!c+yCC-J&5;|HvMa~adtJ(tRFgIw_p}4t9st$ECG7X+xc0E8NL|1wDh9PfJ>827wNJfyH9I9o8LJp7 zPH0G(-2OChKNd8PQXS^36}$F*rEdA1l}v5#LoM!wea>L}Qq)U1uQWRbop2uvxOQye z7CdCO{WLx1MVN2a(mvdWZq-@|&6DHEb6E_fJ+i&V=S%P9xm$juVbWiZtHXh~yUC@n zOW~>Gir3i+^Ia{p!7OrETi~z}Y%-umqxNZ4eGN+ZVCZ`j@%@S4%KT{W@)^R^{u0Q};{>r`5B1ojB5{cAX}+ zl8F&4a9gPD+i#8|)u*#no%f*79Xj7$>igf|JcsD76RY^FB4TMs4Hw!B&%8sy!LIZE z;wlV&j~riFlov@1iYQFfsoPocWGM1mM^SvcNT-Wv5tF=BLXKdHZxp84GUD&#W4jA@ z$;TBr+y4Ks%g#)*G11obgC)|lAZ z)jR46@4(D%cpUiZ9eKf|Yb_?xf*?4x+UR8}YB*p`im{{IyRYM@cRb~`GtRs^y6Sw6 zszIe|dL6?U**&ZFmQ1cw?r4r_q{ruTRs2!+_^oaMm^ghxRuNi!e|t9Lk2nF(`Bp z?G?N>&a@u-NLBZyuTaG2cNp+_1S{J1dnH`F?~&9~uM^~I(88E%k;`+7cUs-x4%b;k zqBdM7Jdn8oLdy+QYy}hB#e<24&PW(^wQq@rZQkv5Y`{1I9mbfwnUmBK_GC?6zaPfF zVKhi~U-~(Pmsebg?*c5TQ&wCnCR_^$U$M(h`Z(yfP=`x5-2M`Kqs}g)d@a%`iqZNx z3w6b|21K)`klwgw#U8MLh+SJGW%@HFhmffUTFx0SYbpmxVwO3jM3mHh63yBDd{f+y z04HbEj7!zD2PTi$8dQn!Ea-CjiDZh3uj6&7Sy|rQ%cTqQW;h|(_WC){^#XgcDHmAM z>$aCORVdFS69TYLQOUc`Y0d971bMYp755^M*H9qi*^Ck%UZq(EM&-O<1npHKaBoUCpxD+NE8v__y$PB%kJZS>~E! zGgQwWSk%#7-p_{U9tH?UY$D}MT=EO$7<-~)jl;gPXFzu~@*f%rTDIgF+)vfq-@)iK zVc$+SOEE2!(ikjQ_DfUW?UFmHUjvWTu~b{?MC~9h`yscB_`!|u53V~Ij(JY=EEG(odm#!UUIz3ivwcv`=R5voelVPl5I4pLd(e$a^>;` zheI#5!Qt2-tBO1Jra3Mg4|Z};6aL$n8_$W`rnvEFg_D5p_w23?vODD^9}BuuA0U>@ z0P;$XZgpn&-7_p)$AzcM{t@AN$K$1?;oDT9Yz!XVGio=CIuCZ>r&qwPJ^f3KT!gCV zo~r8^8*6*m$upSZfN*%gQn{Htb}&VVy8IWy6lU=1>fB_z!Lcg>(2s^LxH)qLdY-jL z6d^;O&ge5oNcW8o`_CH-y?19NYMNV^A;3iQ>oB!|$B{mGgUeB8I0sjg+;-;79=mFg zw~z=?AB#Wtp9pzdC?4u{wlFzV|LoYnXrpnaY#W&b2O4pR!C2M!Z9lYLIo&*L?55Y^ zP%XP$TzFfvH$BO=r@&kfemM;1n1~>h;BR}$3&Iin8YP0#NeCJvUl`jdo(3>E&^=}O zEGhd~n_6KfE!8R8QC4q(qU~}2@&ka}2Q5LhLhYup9Zjhc4t&NsW9T(Q?}FD$>Wi04 zNwduO5;bX9Nz1x_(rwe%(}dr;@j#3&F5qkG(4S3XJF1WY3pqSNp?%oNOGOXYiSGyW zF_4AQHgE4|btS)P?aviTIt_KtFctA6E`^zgA4+}h@Y|OB`e_q?NN0(;wu8^iu~f>v z@0M&T0Chf}53_(p)oo7e9w@1dLZmLP3c)VV3>*fzr|d!#s;oZv1=m`Y5owPb*?8Td zL$F?=_!cs)jX|qid`$KuXV}iA{QQSTJo+B3&EawXCxld4sKuOR^~FN%N$IF` zK;OStdgHz5xH56?W(gH1F~;0iMgdt7$-QrX^O!B*#l;!>WV+yaM5Yx6iKFWoD9Vbc zh-Yc;|58gp0+Bswxn|(e4&r4|8>AcR=(1eL*`<+a-RSH(xtrv1F#}PgsHRHN@%3mA zV5Br@r^~L7cS{nzLs@IH>{2Oz3G;|5#?t83gP#OU4)^9voAL5kK2}0I;SdP zcsar46e6+0I?th6V!ysVAQB?F&5P?&C5XG^)O`su#3fGVQbWA2n{I0{G~XtlE$E;a z5#pY^Pbwhvv`Don8uoOaSLwyHBAZlqv{%W|0aG4Ydz7Yecy^{$A-!+-hZGIfCIQ7W z?-O*h#%Fh^T@n1gXCMadGmCc_h0;I_pwz&?jjrsZhoPIvBIe~a&9kKALDEG5f zbBaRVRd0vJcD`3SKSsq$IQ=rd1~KvVmKKm(;tF#1CNr8a*DbUl8;UZHTZhIIUMR!pn5&(F zeuuj4T>=T|+eqW{!K)XKobaUy~Lq9B_<_3le`UnPHT)h7J5aZrfGm8*&j>q@n%rvM^X+&po$XUhUKy3^ zWSY)X^67(<5^n3Tb9Vi=0x2qDAT7JCL9y0u#M{2LF;neE)H~x|FRErY&#UG{ak6Fi zOmQmNjde*;zEdF4ixdK(>zcDQ+M=gLb}O6OM-=X^A6dFGf3QdEf|=AOqTV2^&9O5_gmJ!}k8g$OG6iS8SmPDfS3 zZ;LpF+9VEUGsCM=aDFY-ld;u&ee~FCp3r7G`87y_X?%JiN@PWXQM`dWUGHQfy;%>B zRKkIwrli?B2e6j!%n9Zn4>vrs8KFi8s~0t8_2h(^!*pr!K1rub1}F;clf?w%*-R)i zJ=-HN5pCmdODhd&(LzM+W<~3zynZdX- zJ8CwKae(TLbMO;3(6xo8ao!T-7SK3GJAB$EwafN1w;V)2v3-px8rh`R;F6GmuX%Kn z7S$$(VsY@=pH1=+-YTJH=s{L7$TZ_diK4t>D`cYw@+a;`BrZ!n###tm2R9 zD*d^=SJ`LANLs#T5O-6==qB2-$_t)6i>Ij1=X2Dx&OI3NDKvXxrE_MdzB?#|Dc+5O zArmzNkA*J>MSKDu)_MD~eF4L+grLE++YQnId2RU4_B&8UkE2UuDVO`vJYJUG#b9k{ zlQlG2vHQS^a)mdvlsUy&J2tIQGbV9WX@#xcW%%3JX+^uz%a>`2?mLU$q%pehWXCl} z-)a(MOBC2C7kYHj7Yo3%aU8H9k+c@DAW^G_ot>Tn_#x?S7=k+WF$6<2P$P6pl&VARAB%43ABTjv+B zW9SI_0I*(l;TL?Ge0sF+c-*rV-JI&&!`DrpGim$S=*mX8+DYF*kO(G0?E~`4b&=ep z`GzyiUCuGRE@Hrc*k!(xd1|cWR{gM6VMzQ3n)&e5ezmv$AzZgx7NoumctF8`?OT=5 zzM{$jpsK1%C4lpIQds)AGimbd~vyUgB0#81U!45i@Jp%ahpag!Do}a_rOVv;7 z%#fSQ?1tlo91Wcr#86HUv>|i5-*_s0$2O^;hoGgKA7wxTEdglIKz9RlcxLr+4x-+8 z{-RX39rT@j=Q)nP^M$EhiE;B`6-Z()9lh>t1q&njXv*lfYj=IogYNWfpmr)1*|LX5 zg?uXM)ZwmV(%}uBPU7|k_y(Uh=&spMvLhYUd6Y49STag?k4Xk}$N5`Beu|Q%=__gb zNe0H~jT7!62_9A!Ed3mA`Bw6}68;8Aq=hqWUn()wk-#H*hWw!>uH*MZSPRAObxUbI zcDx@YlOY1S!+UcVvDdc2_$BFkK&2Q?nPZ|~`7c3K%5NTezUi#S8zw>zn7WdXVe%05 zp@;F9!sx^3yQej$Sc@r+5yseajx}+N<|KP4qd5cJdQ8V)Ijv_JDZ23Y_Ql?cwx=%& zdgZw08iZdysYdtfT3lkHC&6e+N|o*0b2_S5-khzmqmdkfweCjItw25#ioC^=x8rLU z0vB*Xa?{m2h&&H|;K!&~2h-`LkpP@vZciG#ldLh4lBxH^aV@*eItom?tdiEYm@Q5X z!076k5m2OPLpP{Wx&k>+nIce5JCR)>E`NWC2OUfv|Nh!%=^Jvob*Hf3s=lTFOb2UR z$h2b#GRgPq))%k8FQ-#Z zO6M*;uZ?~B7)H1_Qlsx4wd&!zw>B!Fd?E67e>%Tk`>KId{a1FRiBjqyPO$S=&mcI< zr`M<+34H8G((I9{&3>?6AF&Ql^~9#8wNi))wr-aHom`GOpKsSSV zW!yPh^W+mFkx3h54>CU-sK4#&fJP@lR9NVMA2z~%R5MJYG1@_lsg|{yV^qm4%FW$S z;lBj+ob@bUB};a0Q>W$}FCa1A8%El~L-0MG@AkD5e!4mmsG3Y#c}0pgE$>QD+&cSV z=mnEwWu*J1>aF+n@+K})v@OBCqI9-WLt-4v5d(6`_V1uA!jD48#dfv#Pd4R_Npy~7 zCOaW&0DX)%e{1_R9!7oV-YJ`=%Ux^*wN5;~4g_oFR=KU>Y)cpuYHk>2;1ySa&~U@; z2y4#^u2}?DBo!9r@I-2;{pj6#CZuhxK!88l9Fx}MWs)l`Aj8pE{s zR=4jx!(K{)b3P{$W_OwFfW?(o>*@}Cg{MIBKt~fMv5Rtqm@&}TnN02yZ>oI7K7@k> zQ`bPZj2PER5n?L$C-L`2@bId`6m0|uxe_@Mg}~PO{@xRNmy_kDpbx=vo}-VBk@h6-d}?+}w`tp* zTLa%6u-+u3Tc_ElpmV6XFEyB|p@WAVE?n?alfYA=3%x#i$c5c^==l3nmv21Vw0-6i zC<_-yS#s;WoWtD2kmQqpz7i6b})3uTA4A34Zbs*0g?OQ&=l-)#2 z?-uZNRlh6h1QvT0iDE(;m^R7gI<7Rs9UF>!4_VOk&BK??Jj*dJ@>SD<=!r+IrN-id zCSH7ffaLKpZ6Ci!t6=MJz;VZ}qk+zrMY76o7&OLYMqLjY0hT1LXJ~_KdHMAiHMrWc z@L8ku|9k-^RFImqLR=Tb2r|iLaRKp9j89r$dDJ;IYM?{j*GPIGt-C>~$DCt-7I&!e zK8h_ph#Al1;YTHriM!<3@yvCVXYDgVeD2vIu*2qimvnG&{mjz^SclCPH5NHKcaAsd zBldb*Qx=fJ7_Fyn7eAU&_^;+-C=|BiA;Hnq0>n+K+TLi%GnmsTkvbX-4eGb9&<>B* z*|MgnJNgHyiu?-0T_%cvR#0dM(`=i{LD1cCeSL@vjDnzH+QQ%k91+Ns6+QtZjH4EJ z$}R9Q{U&+D{USQCGFjv#$ileINxH&yLrd?Ok)Mv@LS6@I5pXfM|?7R*NFPxX>HD_nQ*Bq#@{gz;!>}YW<(azvuO* znF0Ck(vnFw74%({jTI zgr^{pm+c9btOdbsy}`XYW>OzK_d=bHfCVv&F%pV&Ioq~k{OZ5)zvy%#2hp4fY*n;O z%Zln3;cslhRIISJWOYi4A&j6V4dD)^Ov3#1MZSI*&Dp7K%U&IoMK1w9h~=!+7Kvcb zmMSB?Q>io3`e?5>3Jdq2&51mWF%LfAXDspkN8wF{`a`&glZRafLinAMTx~}@`kEiu zycCygY-z;fdF6Fz)~ouVcs5QB@gYc+cXpiq!0Wm`e#3peGpPM8?830@EUyxAbGfKN zdH5dJxj%yF(u30!QL%a-7zYbGW$Ps`(?ZLp1mZ5TZD7N6%J}hoo2xGwVX*@xzKPQ% zY}Jq%{|1UNv!(DR?PKp3d6E7MakSnR!PPFwk0YK!Arv@m;A$6F>@GCfw3co9717jv z^(qsSfJNV@8e;E<#u!wMWj3Kr_X3+oJckNW5j&b^`EAAv-Am0=01exiCx@Uu3rdTr zApJAaserH<8=I$Bnjuq%mne%;A#p%SFuYgGH}3Y%6e#e=-Vj zLrer1Y7cqCKnl=QKA->Qal+@(6D2Rj*{eGca1B$epBi3%SMt!mu`3-6KnLm?V;&ON z-~5k^Vk_#zE^4s>c<85cJlT|x;8}*ia133_qcHiHJPGWK1iUX8kypuy-cUxJkd ztVOac-^;&62Pel`EB%A|=s@hQMO>h4*CrxxhP*qm{L4cDY+i>2L*M1XXu%0Tg+G|p z1K{_J;bxx$#H-dIJ{Pg?_YC2rHG~Jt^&<%vs|IB|$@_OT+%_w5ZOan$G%H2_I@hLh`RI1czl z8GtmoMs%(WapA4G#a0e)hYjw(E(!$$mi(E_hdcx0v z0_1p|eV;rWt7kHz9&;g;zs6U*j!ufb_3?I6UQXNca2i6%{WK2GHz_y!(ekb1C8+Di zIAX>)D<%Nm2M$#0NjaH!z9h$lA!|IqH{r>XC(*ZB3T*aS`Q3wm{Bx5OcMqZ`PrpK3 z!vCTdD9a(jemH;q>IK&rsf+GyS}iC?>ZVGUX?3S;h*<*YdSqO=u~Y3nt#$ep%-8#d zi;!}K;kaRfVwv6~%e!bpX8c&D34<6^$X_h#sC}ictK(fuwODe-H8P6NV_zq7no{dn zZYFA%>x*d2KwC8e%X^xriHPn1KWIfYqsTGg8Ewc6uVrkM4Tjlfo^h$-lkTXPiUct; zQia7bpnVUeZP~C~>}2Umilq=NS_6GL*vR4Ob|cES4)_o)2ochS+l*sy8rpFK<9gmmzN112@t3T-jy-% zO_8?Q{_5@7-uLg0_rM_jn!$&9zZG3sbg%_17Z<#h@W^aKGQ20~=m(rWSQ5P8?nbNq z$OS1tW!kwV;1m1AtT#xt1vPT#9v#LC!y>NPCS{jxlony<1)xyw+LsM*RFIwS%R(OZ^4)NowfDaaVPXA~qq$t$+sA8*!XUvN~(330eJuyv0m zv7peooJxT58No0nymydgj2@;*0fhh=C!xeq`J_yW8&sm}x9v8|7tcSgmOD98q%lB< z9#06p2sFnV%zWqK0=s(u{vpgUBRK{h1A)L(3%4RWM`)|}oG|~Io4469F<-Kc4EgXO zmX%SKD)gFSJUBYGFsfMPC0)%0zqGP{v^qD^`JE4!yAeR~Oj+G)w~HK)ZVrz=wFh98 z|9qM-S)i<5ZkEflDQJJS%w=N^b(>7C(@Gny+~#PjGBnaBCGlAD$x%Mtc!U%2m`f%M zWrv`ISb8x=vwZO}^-po?|8flD2L=Zy+3@{)O>oI5yZ^IIi(xnT=nzz*N9zvI#?IZ&bW%(oW;FEjX<=A zTR)dB;ezuxon0ztJ!>|*_UGI$9Pfi7;V3(r(-~tRpwVaNlDsnJ#Z(W4gy^y=(0IU zHUq&R$uRE_-g`&jy{D>VLn?H}RIA&BlmbFY*N^ayvZFR^q=Dq@UivYPGT#)_9xT6Z zVZ!sXCIdf^7|h`pZ6L4W0xV#k5ArH+M^xuBU|t3+1vv_@vu+oadm4S`si*f;1`quy zI5s0=R0@gf&(Bm+XNuSL!SE`-GZzRxX+QMy7}Zqh&4g(VkEwI zZAM;X@wI`3c|yBpu}CNTK!}=6^eZIyX{T1#i?oh&bEW8&oom| zT52V6IV!+bvq_hZ8yN()&xC9BCHw3Wtdi@b0NWoLcS!zmgkG6)+0{!mAv<7xmCInd zl51pO`!01{6WuvvUfM3}`Z$e?#MQREPLt3j&oo`KkL)n8dr486JZ4h2O1h2*-Ek+> z+#@0C0|zru`r5@zD8)Pu>ZlhwK~>|h6)LMCO`v@i3zL{G$B&pK#f#U7aLMH zu}%xXUn!$r(;r7K{}Vh)~gWuEOF+RB4YY@m4#W<;LepWSly?N2W+ zFX2mPL5g3e%U`F}uhYrC0gmVUre)}eOfg(A)YL^`J(Vx>{8|(^2vE6?DUsC1D%KRS{V`eb&d&$Nix!Dky!c#qxqD9@%O`~Hy6Tkev5xku8OeywGz z#dU!UOp+oSuq(>4T{-<}J8f*zj?Q+$13JWOI^@mSFAa16E)NSUic>n*+D|wV{Jt;aND>Zu&MW)pY$sTI~CMS*q`2| z{X!`>u~~fz#*VWRj$vUhV;}K~6q`n-nws?U6cS94#N6?m%s5EC@85?$>mWY5cf20h zP=cep+Jzm^J%}OKCUBhYOvCp+u^P8r&&<3jwc;(!Ea<_iU)x3?eh*e!IekFhj0;Sa-+-y-Ir@utLn zM@tt&MUgyaNSN{KEME_gBA`E-`pvf?^tf?~Yz<0YUW4vNwL1bd*uovKlzx1&l$7#I zbOnu8s;36o*Vsn1ftxq6WB@|_W}70Ta-B@!Mm!TP0jkqcMBdf)Chbaj851`cMwwho zWhhXKpbV-WFCa#xPh>F+uEQ2HG&EbZ&X?eHcWGZLJJ74`O9=gWJqZ&FZsWcR(*)2& zJ&&eq&yA(p)i|tfZdAkEBklLZ$NXq=X5!O=G;At-%0fKx;G>sK4 z4Hb>6`Q@WI&vr(@>nT#353hkOG$LldNUYB1W1#g%P%Yk3xQ4@o7I8BZ`z&~^$EiF& zMph>?bO6K+Xm?c2L2KZF=~YiT^~8xR(oRYD+Fkuq_F0*@AF=hCZptb*(!P`^1aJ+P z-U(}1C>{PKeaRj6MSffA`Wg*U9dipDQB)83zjM)8mYE*eYza}jQM#8n>RHiJ7&%D$w~IoxOa~@3g(Q0`heEqE zsH>*#OHG?5kR?HLKf$OZFf^j<2hmg9(0Fk{MC@3uoDGNEvO%3HzWD_wfH$G&(#-S_(;h$WM{qeYMgjdO5_>kW$P83 z-6NR!sn@%@=B&>)yij8jb6qe&%&pW?NvG_N8h=DBUW12W{7I;K_=XeD~5aj-sAElJa*B2FjM9p&0_~%?^>S0G>~JKKrj&y z1c582={geGwX2)_k3v_cp#6&`VqtgK&C2p3w)*aU(L&1bCGeB$Jl+k<KmT%6Gn;fn&M}rXTjnA_>|dXB*i;9Wr?Nn3NSoRR;C^{iLpr)k zm^55cE~7b{(58^8^{&TkSS3ZGRvC$*+LFv5G=bJe4A`uhk}Z4crrZ;`r)sM2RPzk$ z6oxZ&+5&ZV(xJ|uZ1~A+IEjryCwgZQ7Rg$ME??V0q8PA+-dD67pv#=P63e|44HqQF zrx>;I^|SS}YzhQmn=_obLd0j8C_mpvo@!|>rjiCe(_%6JMxJ3n7mu-@c4U10BwMP! z`pGH7^zXr%!j#{mt~8}(+$R0|1|rGKd|S|yx0gfmibx@yrS=V!(&fzFRGjDuRL!0y zhI`4y1$<2%dW*I9SfrlWhled`ORsJC8Mlt6RSb=mkX9W`G`??jE6l}(UY0Bv2N8s$ zUj<7YY9TXpRtgQ~M*u}29Mdl|;0F(VAGBWOgX}JlO+e@o?Il-?ahS@&E*dyn^4C{9F>SK%>V$Rb4Eu7 z1c*0wE)D!*h*Z{ZVqdIzb>M9Jn^{kjd6AS0ZhIqzpWtA;$Q>k62{YoYjVuQ?RbU=ikA_l zm5^1-kwmEQiet29(u6z%W2iv0G^@NL%#ezj?aGwh!u*kE#vN@H-+^dy6Bntg#O-)= ziX&_!uU@UY-sWcA&MJ^JK%sk|=8hhw4wzm?1FH`~gEe2j0W@{BntAbL6jHt?L^(MX zZ4KEL5eE~_V6ubIHc;i*s)p8pNlJZW-$|NeL8&;AwSS4TMeqQ+F=x9Oe>aRa*G+HY z_01GxKflLOie+ip(FM8VQnc2L4_b_} z{e{|g8`RX>;~~M-;cgEPo!kXqC~w>~6OFMdjhpJ3?&7>ImtXf_F|j<`0v3Pa36m|7 z`V(d&w$)spwuaxV^*y%1>8HKJ&wZ%PRL)wiJA?e2oMUqh8pUUB%e;9{Dm2SRnX_4b zE;s-FGaptiS-9v_`PCJ>kBJ>GRRt71r4$JrwsF{9heY&JjRM}u{RZieLA1ni0P5X# zYCJiHU(W`?uU(hCo(;_xxo*=Ps@oViS*3dj`f-@|`;Ln_x;IYu={0%c44L29emDbs zaGWgup1DC*|9W3KxqbV`QMa7DbbH{ZU&U+N355eYDp6+l8)#J`4*Vv?V@6BlY%Z$p$i;m6j75_SL})JL$6N3kCpK^JSPjk6XC`C_F|!6Yu|G(!yY;>!FJC?7urs3i;R0y zjn#Wo`n+bP!zPta8;0(!`Rw#p9}Mz5QEQLFhZG5S%7;8VZCX&Jt=6g{og#S*K75Ug z3Y-}Y75TkvHW{&#&OT~||LB*Fo6T$V=psZzc0O=Ttl37}wRq?;OfUk_jID+3f)J6G zx!=NeN5@uJieYf@V8q8*>|ij5u-coEW;2WbKZLmV;at3<4L$JKPuL+FP81k0EXMa&EV=BTj%=q~k;ss#Yf-12A3JM%EB z(Fqn@8K_5rLxx`HZJri_R6+q&6LoC1KQP-nHFp=50G2llBRvF385q7U5_X&3l*T6P za_zr|Ii4^WJJ0c*2!HpBJUx_BTb-$h)*on9D>8n zo_ZVRx6QR7s5WHmF%;eV>WG6n?dD=yvo;><*O#+ITNQTFu8z7jSXAe`ZYKTLMqfvF z@VcOR%n;rcXJZBN^jD&ck=WKCBimH_g%HrTSy>m4=(9zB%MCDESWAms1S-}RV?1wd zeY^^k@%7cskFA||P;HvvEt77^&|meROlHq z$o_t)tba@>#{Xf`(|Zm4+k#VW$CMqPCp)i}vsOeB(wQtH-@Vnn5BNJRbPzLCVHukY z&2rIBz9#=Z%bwOX0uTloEBuf5HCF5&3N>6KKsH&{;BHJG`W;zr`6U)hX9RUd{xD7S z>P4FeGw>rloMAFUU7Y#AP5#YY;OpnyOcyvaVUX_hE8Sx%FBm;|OJD2{lPmQwdZb37 zS#T3q^qrVilzA%?7f#K+PE78^F0(yYX&}&Z{mWS2{$A^D!f@0XZqJu}=v4bl0K)6& z$CqajxPnMMJf1jkw6vXJzd4}$;Z(2W*gf0d;n`WFCE>Y$;BoMtGm!2blA-96XbHb< z*T;V30V$(|y0EDJ7=ghRGCYT=-&|X9)pqE!_CoDHVfDW-fwtei{-UMX1I8I|l7hh~ zO3=ju>+m<$@{5@|~D?vMx}Vr_2s1EhJA78O*2m?h;kv`RAeB+q~c??vb7QYMy? zr6+eTE`EHTe>{i!guBtj#Satyhb;gz=9mdTZjhbmPR*UX**P}NS8G%S@tz0C&u`FSJ zH+ofgsIIbNZN0_6F2DZ$@7EtMp{vXP@%#U0TmRsGaXJ#d&LULD#Q`A-2Wkw+p;p@t z$2rpwKzwS~`uhuBF#_;DmW)PfTr=LR`=T8hx@u9&8g=`q${3C9bkSP(<~#kgFD4F% zTYwsrlVKhxKOM%z7Uw!ZEgwn>KAP^V=QXDHYJb@mnW$W*sAR@S`RR2ui3_^VTov(p z0cEvO`CjBpweO%jJ7(##yNltfQD9;|U<VLXdrrhN zoO9Cojm{XsZZFZh1{ubi?zhM~VWY9edOvh@uCZQ&5!mVfLOAIpsRUA53jmr@S$6`o z-{n*l7B+J3h()Ab9Vj?_$@s+Oe#9i%zJ z+Fvs?4)OI=2lXY@FI^jSS3-oqI?i;bOLPIsA-@jFHr!ggZ-4$cI$P(}64j9q^g5j; zB_-rpua`i7DJ1uS>YnbGLZ>j#r)aI#J_&qrMxa(je1~P|A^NS@P(*E+6gMdwT|P*& z2xOG2f^iCq4mz5-Y1k7$&{*mxqsQJlC?f}UDHmd_ICAbLYDWKt99Et-d5zX#(Ss=X zQMdB4Q>A%bPvHx`OEhGGkFpB3UHF3pdZJE*0d5a5;LYA%IAW(k60I4j!3x6V5pNuE zc|G2gMaGFO&Y4f(0|4IsDB-h>vvfr)h7vJU=_=_E05Qr0IOac8d3%446V1tkc%STV z%5P&`>t41z@dr$FI_W<@ek`#=;qzxrAAkb}{|A77ps$MwL6b(YJGlMSircFj*9YOh zS^eLT$qrKj9#oL83yN2g^d!yne!Vc$H|R1jlqE2Q z6<;rgpgk6+>{PF?KXYU>(_RI3LNuj`Ze`iv;KcY7TlDR<@X*W*iP)V_5NNsGmIge?*VQ{Q2rIU*8qDvv;Nsqu1%Q z$jf|QMTdE@&PmYQiw;2Z3yr{$0FLKmw)fR5b`WQvN#4i`)(4FHvw!%T-RQ@pDB-mI zX7BgW4m5bcUp;vEr-+?a=*I{ZH8y4P72a#+5RR36oF;1weuns|Ws28w^ogug?|aeT zc?bCfl;~LVcrBzU0Uf(eM2o6g?>~8RdwaVVBY=B(arIhE9u<@n9fZuEk+esLPT_}j_pi!*F_{QBh8 z@eB6q_|4&~cSpx>zL#CTI(~h8egM5d52EE)bt9c0pTBys8@)U}e*^u$WDO3YlY`Uq zu>;Sa2rgXgb~&;Je`y?OiQ@$s9NrwoD@uV1`5-}~yT zvn0_MR9{DdSkxL(A(SZ-M6#<5JNBb1h}uJg0J|ov(h@!^zXA*2GF_z=XTXYL#A1Fm zDpkXtV?R%xJc+(7q}D#mA9H`K$LwVJ?m<;-k_S(o{vXsb{Db{Ke#?WCT$6#o(9u?~&U#Fi8AZB!T0+9za zac|eO0>TF3eMu1K3}??Q-wCWQcw;;^hfB)C$@B!|8a2kj@+vRb?p^VY)0_S1III50 zK>@d)U*Y$!|3mxZ58sGC-lbYI_(QdWzpRFb%XqbBhbVvck{ya#6a4c({wV&0N=1+b zhW(0o>JN5eoB z#I6ujk(Hw7ufbgL2`7Bf^o`5RlV!YS!W4{XLBk$zX88;933wL774Q0lod;l^YKDf} zVT}T2wy4H>^{wov~`Oq}pUQ z4K4G0ZJ*`v>_s;7v^)cwflY;+t^o2NiUB0HUm)AYaW>Cu2+c-Dn=UQfv#+x0-47{l z3ccMcdUMGBVZ7!}7G~%)rpsTZw4jG@+*|X|U%h4@J_A=-^O4c;7{*!`3CY8%wfWo! z7P4Nob;Lf~R5@*bKCc7gfglW&eSZWmJC{j%AE%k`aUIJ>7>gYIlGxj3CX{CDO+{2} zkTi|Nc6HrrL6bmPb!!Rl84q8rrNoAG;^Vbs^?(bf_15k6r@XjcCY4So4JVXf4aYEP zn=y!&Z*k7{Tf)Slj|2t#L~UZiK;%-@DdUI5jC&C6^2SejTUw%A@H4V!IG_b_y^mS(i3X+T5&axNsdf9BmdnM(6sd z>Kr0STI3Ev(z`RXDf-|27#DZJ4RIJ}H*t9i z+FqClKmEQr0A&B9;PKvA6G!W!+zMjw4%d~1w zUtuO`c8)9o_@FwwmmsWJx|dcG=OQi_?AD?s50iHo&YO$$D$Q)&%(11{sq*V2d!8aG zhKP^g_EAxWZ1i2mBgL1ALrk2gsSBWWn`f~%Yh_HYzZ!_9{3yXH{ls|vO>(p;1V=R_L6UWktHgS3$mpzVkMOa~r|~j;9b;$q732J+`_?-hb{xz> zAdr|Rgs~kUaL4u*hw^O!0^^@#L-_vfd|oD%2_ai5h6i)0a-*FA@rB6TDZY5GZ6c#R z`v-KwkhXZ{%qN?t#p;Z~d&bqxFVH>!+XHSH1@|zOOD5jxFZt4e?&R(Kh{?ujMvl~_ zBnyzE?2+;2@4JT4tb_aq{rlJ$&xv?XglHx{Pd+j#a#;Q>iI+7L&-*-j`&UzCloPMJ$Bx`%Cjr8d+pKC-hX7x@|W?HO%X0&L2Oy= zUa(#nZahzIJa+ofhVdp}-n2gUnlJqn+4%WOXf*D>3iAHO-$)rZzLnAm5JEqq&lJ94;v z-T(S)=gBwrlW&|h-#Bgl=(PFcH=*q+r)r$wegvfDH%B(pTz&lq2k1XKAUbWnaoYUB z0s0Tl#Qxy)^9QG&KRRvx_{W;bpX8}Q6SvmaAFaRbOViIaegBnRnzXLhFhhMvz8Svp zKmLRN@gJSX_OPc+V$z1C^jQ|zm|d&GRLwDxWqj9?bLG0r<_L z?Tw`=^YrvOm-6btbeb%=^rdy8P++k4JOAUK-N*H#)>|hukYJ6QK>m~S)iK^u*unRG z5#OZMUHe`T<{RTs#}gs1bgib-*{Sy4M~hAEtsAlj#gn88yt#^3E6*zr0B?&_q8qToy2TUyAJoUppolQV~CxvVV&B0UP+i3OtL}i#$v4&vKo_ z*Gcif1}2|wR@_zqrYB42#*23Cj&-C{w$ELycJT8e_UNo%=NtWQt8SFyO5Ey(e00Z< zl1@vweHFUywTXjaK*Y5*iR&zJF490@&gB}@zSvr|1-KmM%UK8yFQ#n`#<0+{!%cC+ zmivwT-Pc{S-MD>U$18{*9;dt6f^|sV4-FlX)Cdyh9oqryE4QyQZs-G)N&C?cq*9_c z$0&8qQ+E|y-2-h_K&h_ zr9$7~Gabs8L46%JZu_qzY56Rmx#6E3Nwv+$d`?|!&jBYXG0 ze6v~AeS0#%lhhHABE zhK|oU1{vQ-bX$#}AHNM}8JB|Gf``>hNNCYU3Cs>dCil(G{UzQEt73eO|7;em5~_pgYQ~IuU;i{|BG|<;&7k;WZkCfX7LukFeIw`1;tV}73h;s zn+UbxP>w0iW=^VFYJE6 zg`kq=SQCIM4%&*?cc*z?dHhtG_&-P=hnStO1w|*ft}il^9LvY zHp?mn&k#po*<|TIH(~jS^+=g8Fgc9VFZgjCXVXHsdKz6{gKIVd>lkqS#}^xn2X1uO z?feVBK7nm~`@KEp@o6WAk$IBL;KE`%Gr@BvU);vUOn+sL1(6cZ(`ps3Z4S81i!;c| z1%?(0@S*21XExB2rlw(ykF7_45~mfe{d&nrmJ~84)+2H8F4LbA@4-s1{nscu{Djewf*3qwjRU&`=iTRttO1sejq-Rj1iDTaadGJS`Eb{t764B`u)kZCuYlD!FdA#<84O%$ zJl;7)vQFYE$QD8_GtZiQX1w|{%SB{-&lmx&jQz0BT+x6OiI!GvRzo(PuWB5k>hWah z01vgs$Ie6TD+4Ap<#V2dl7!DEXQee_a^LyuSNdn(9+|9lw+7#@7LMv^#l7J)Dcd@c zsL6TF8HvL(48JBNVDq?KTe$CDKlmFMZQt(K<0LCuP`EmJRb6qlu#`R_h9X|ala!tO zDe4@}ukbI~;!ZHNSz5Bg3*F+BfUSL8It~~*s$4dUwPdZ`v<7(%RF+J1CTn20_cB3a zmA~^F@XzTw%Nk5tt@RLt%qO1|`D9a889DNWX#|}>K}p+!MB-|?a5coZ9csrotBNFE z)$b>2v#);;?n?SzDMx(hTtUY63pPK8N=RC3vBvCtK>~8lSzNU?{e(bksqGhobC8+&&hPb_BU8ZmX;r!yj)7}Jcm2r$tTORyJ4x&nG(G$PpSLFpwAgtcD^uN(b&XgTGkg5>_b^|ahXLu+dL z!g`n1bP08q*Y$l3F13F+W5q+g>1*$uoLc`-7m^ly6H@fx?cGBY{>d1m5rV`Z5+5`M zq4*jIVzJ*f5{wcS8^~#P18X-EEYWS~KYFp9t>iFBQVW)}&eFb~YurU`#kzRFhrcV6k6|>KUSLhi zk;$g29Q^}5v}1dxsA2q@_vzoQr>p!1FFJN>@!W3T#^#N4N2{sbD?R;taKD4z+YNja zs0oEcPT{$g0>kQ;bnYJYq|ExpD@W&1%+poQ!BMVA8Hy8%q@vm!(GGYvK=w~rs^cM~ z!Go-0P|!kswAzUDR9TYDpzBEzP(f(BMi0lORkm9*Lo_KB#RwVPlyue{HpU+>$P(~(1wI}f%de&oFg6ZAC zN=r#Pn4Qs!loEbP;_)td})LKHeez6fKOX)G|u0(ucJNQ$aE5fT;d(FEM zH!FEXT%_wY8(ZZq;_c6j7mnh{?A6#6LAafaMpa(LOJf4HqX^igx=W_LY($8Cf|f#` zLWyL`V2nS4_^dsQ@76Oc8QFvjVHa`G(Pk`oBanauxbLS+amr7UrKK}SMB0=Po5J1* zIa=D6UTF07Y%;on;=|dyq}g|zQm+eC4PejOU+4IH z%jnQ)9xvgdNscARv`~v>}dY zKg>nW=sh`2{z3P!78eHkVqbiU^&I6^q<|;ST5w-C^rcscsmyqldN(_^vqP_B_F(gV z=txGcJKm1rX!lSwto6+^Jnl_5J*T@G*S+SnIx6@Zv=5xe9;m<2h5ZiBgA-ZdfZ&h4 zxhbFRHzck6lhFT(M0t7+Vvb@;=4plrdZyBl+PO_$QO=q+6W%dN0p8J66ovGiSo_oZ ztY4sOQD{TMQ%IQU{TR|_iqD&t(m7v18gkKztU;K=jKw(@Z}ijJ3zkm{;I<;bn|*+5 zv8$Z4**<-H_97^64FuMk;R!Q|_aM9mdhSJ);S}T^V(OiJwT6I|1l6$AVJF{O3UA$i zZBY{w-`42mVxZl2&AND?p*by6b|}8hmf^r>81-y3q5fFce?EKrMhXTq6r*hQ;>UGL zXH7UQ<8^WeaRjLIxOZk?_||vSHtzRiLuI zx>Lq}ew|{n(NFA6@j5Q-oFgT<7Fa!i!@;-b_DrotehaRwz6^n9TIOBrV^#Wzoy_0} zIzup{TY!^EY{j)O+eG5uH#ruri>untSjX(-2BXmgO{nP%BMV}%(O?}Zw&;889#~fF z!7eYJmV$j4tUfo%ZuBO8vkPW8v?g<8?c$hBr~~UbTcx^rvEipNTRKk_PjVO4OGQ(; z;3B^@tyIR61w_5m^TUIzymeK%?8RFkE%WU!&ew;KuMe44@!U_}b%b zK4G%aGC9c^xnmUE`QdZz3FqEw)RNk0aL9Cw)8sH_ID^GIVKndYT4GITH}PJM#ot;V z^32siI(D85g;dZ}xu~Y=*PD-eFQ@t=7duDiuV0?$S<*I2vtn%nY#n-wtC(ALS|m52 zhWplswY};=5%zt9U7t?k>2*@QO6PV4eg6J5LAhs@x*713tDGG%m8-`9L$yb}u`W`O zKsc69_+Oe1zR0V5nlD3#Ak3>;mM_^GD7%nK&3G(C8=v~Sp*Kfhnyc|1{d^A>5055l4$~kqz;yeV`M9* z)%pI&oFLKHn5f5V2rJ*1p-z*U3-?N z(wkWC>+q(tN%71AjS=l@pjy;y_{BqLqKV;-%m(7@%ObuqiaYte9WD4y;#A1Q=7t{Qo?y3fGfZHha6NuJT|rD6mi-rR6jRpQN{p zK7FEU~8rV+7@J9i>tOhfd`=bsSVL5HtBch9G!5r4k0ln=&Zpr51*#*ZA^DTl+Bl+YWf;O#EW-wU0dO6l{33Ef z*IWzXHCGjne5?=oLt2lY3{zyBo}W;7pmSPSZ+>ay;&bk*_bPV`M*qMnG5)RZX&z=7 z_AKo9#`-f49G_k#H;J977{W~0#fHgB3>f=fW4?TmEkJ9(aP!J40Dak7phmH7tk` zQ68d2YYR%3Rw#0I4uy9txfU}>)pX}miNJ?9Ib%%V6AS6B+4U%KTuZ%Owbi2rLQQyebsNspG#LgqP7^Vr7|6 zLCr$)fqg;(vzR(hnQZD4n^VRI`0c{YJ#bFj*S=HYE7w^e!{ASMi1jk{JuU-}87r|m zZYQpQj_xH-MkYlFE>qYY*0|2_o*Z#x>Z{+L%r?_xW=HI~{jEK*^|(yszGwh{xrsR_ z*g)B`MDria=QX)5yxp71LpPi)r!ujY>W}Sw%2i_BpkJ;kRQ=SVlt6INIsypm_zrw0 z=!K<{Y7JZJDaTZV&2Qqnj1*O16d>D9gPc)RYk38;fW_}!pB1aA2MUxAO!)N!z&kxp zH<&}NV>fh2gDJ&kAX8dyxiS_WX4OZbDg8*QNO7=#^y?Sci7(RCAP$sIlZC5*%GyR6;|8W+Wa zyTXSQ+$a(pcYg-B^l9a0Ds84TP`I>*ZkAjX@l3?Lala$J6@9P%{{F6?qsAlLG2Z-kEvr;Ez84n zy>PB8@ZwBqg~7ILKq0J{)8tedppWSfzMD|FuN*HttfQZTo@?T3dWMtMM48h>gpn9p zZgQn?qFQ}T-45AC^&*lX?t94n;yzYMvHj-}6DYt0M$~hZ%;U|nf`>B5Qdq#dnU4MK2)aZR4FH609xBR5&^(S`p!oPr~Z%@flY&ZJJ^cX96 z<9!R5Z%?^rxaRQ1HPqnoH3k3W3|uRB;TD&oXMS`W-+|-RI)#{{s9L0@>|Z!Ufd|y) zYQef7*ZRCziB~(2HX^%&B)p)tk8U~qyQ-5bsI$p9(SMEj`Bc}qL8S{+o3f56ZUto@%l1V*}DW6mH?)23jq~R#_IjHfhnHWCX zVm|7jXI6CoD*0l<78C2b#8AE^LK$aN&Kq~dZT>igAX9u&x+tcro&_3z$iU(ws;uk= zJS5^>LH((8iUEgWCl(2*U3eA|CUmlOnz18V4DH|v$m0rbG$ttWv9*&7I7IGKXLi>~ zvW}PR=ruc)kL~NVkA|F1S14|qJ+6Erc%U~*3qeGh9wVqzt933pk|_ zB$Mn)2cIi;wYOj--!e{VD*Z#tjUynOLv;Nu3`Li?a+kaG!Wshcp;>|PG^jk!E@>Os z_kz{ZCpa(jY@ip>4t0^QV>TE&kjn+*s1KdViT36M#ZxuOQ~o48(c48{iY!rS>F(#< z=s`TmH`P969eaSF1IWp0UEM{(tKA_Iu3Rc?2&GM~$e_;(7j2)-bm_LPr#%N^_7Ik~PehrF|wcbC5EIu}|_ZL%~kn+CtQ+dfp4@wq=nR3)?I=i*jZxOYoeR`2BNUnMQ4I zp^I9k+?&J9WSTDBI+8KS+)lzg26%oQwnm@Ebo@fs*DRW&hh7GvE$zvAlwEcc zyZ$VO%kq47VcdCxWPeH~;M1Z7B64yI1|O2MPB09|9^V((Nu;Rx8CZ4MIv@tJ6R`!) zVIgey7kX=*UrVZGDypVlF~MvpqWHOnDqE5%Hqgccfi*_5h;LHNV?(c>^9SB<&+|5L zFWmx}l~Eeg>^YfkK+GpO<;OH%wyZ3Q=t*YpPLCaTjpb&QdBY55ymFKKQG!|9*v)|3 zAZ~nxi@kl4$Ou^Hl9%bw;FbI6js%5Y?H8dSk{d)!GV_6F;ZxHfw63XQrv(}#gR$xK zFWlS=_^@b&{KW6YbGC??^aq7Kb$F8{L>wk1)=zaePh>gpQm+RtCs9)@9AgXhqsbUI`M6%j8Bf;IXLfU5$iXRPfRC1;-2 zgIzN-E-Hao`F4JU1Uy$7;W$hN}bRldEfX#K0g9|lDPHZ5sLlx0YT%`G?CefG)XgF?9!)!O396BtFoAX$p(2Y#ej$q7pKq3Mb16v`?Ez}a z;~&eY+@Pm7`(k;=wQis*HS5V|AEF=Wr3iOM*;_05wm3aLrcDu{1}MC{+e)A8KeK1^(2du&s2 zB*2pJ;dh(&2;dG^$AdkcV3JPcqL8EP6T&18Or1l@0hzON6owyze{()97&|XM z5IgF0OwXkDCaS|R+84QFl#7&Y>}D5xa-Cpryz0-AvBl_^(=se`*JZFdBtoUF4>#Pc z>1HWTB5T#`ogj$d&n6MNQYtQq|bkV+8&J^8sX809)?ci_9 z4-Nu^LNDFNE+l$_r6s%RZf1!u4SD=?x?-Hpo1wfzjUFZ_ILW$GX%?`ZqplJsML2ur z)bWXD>87+>(o?5xPALL?^JrV=N8#P58KmKyJBpr*-)+2is4@xNum<>vUw}Usu0Bce z?Xhq~dTTl&&6k^UA=J6l_9Z+zWXuVodcJ+DQdJ@g;WN;Dt7!L8=$+OL77TE@k?u!k zWBIH6;Fy8>RBapo(C&0wDmKE`c9F;OjeC7(Uuuvx^9z;Piq06mCSv;%<2D;2J2x8&nlKw0WT6z~ zE=j?vyW@b*l^n-)xzZZr$tN7}#4M-cYG^m46U>Bby;=I2p0LLf0^zUcnJhLocY$c_ z&e)j6kEcA@eG5{ehWqLpxm_ur0lu^V<5^bmx3W&Y#^o7*) zLb-8<`J1@pyUI`ZKb|r)Ub*QC*lq{O={#qzQ6@UqxQmM#{L@@%(lCkG#-QtsgS1#jb89zXiLn7X5;-pO}xO9%lu4 z0MTXiz&8s>zYX3RM@4)KMqM;kx^`LCrCDbnh`e@bvp41IdL28vQ2H{+dDETGl4TXY zcI`O$+@@1}Xv-S-@P7rV7wsn&fwpoi^r)^q-l@)D?6TT*G@}nh&?~H0FS*f9awCMP zhx-s(s%IY`&TbMq#4zlnSJ2yl+rK_x7js21%yrt$u2rLIi~W6 zbL$2Iv95~7aS2((Opnr=w9E?{H3hp6 ze6zvn%;=qXVDtgPGP<_?_~P{Z#os<0oS&Z_KmTxWdV28p4@bv89-qBE{eZm+K#{6} zq7Fd+$*=UngBMj2oKWua4eAc?f}Lkr&u|4b3y?XgKQ4HicOWF$5qNp)`SL*#h z{Y+9=unSFmg>x^Jo&{9P+`F$-32wC+#5`sZ6;J4u%)7H{X2QcAoe#~D=@Pcu4cn9! zM)#$`BCm3yNvnl4MM0O&J76)^a?xZ-9}us3{|^wV2b@W2bW|Ga<)NWzzFKWE?r%&c z2aSlLoswNrk&>d9;G_MJ_!a4|E8sP}Uf>KBR6@UXXp^sx@Hj0QXDu(V8zw|vyb`Iv zTzq@rMJ(J?$)Oa1CM6dJ@{pzBHZ79?t@7o!6UAise4m{&0E9uxyHRo@4k|cq7|}g6 zgx+{IGY+_K|01VV3@2WHrZqp{aoP(vOdCdp_k>?IoQy+t<08$aRDox(oV&=>=!nsgJgZVTq; z{4*vHk%N%p(0VJ*q-B@AIkgY+dS2s#;qT?&jb(pEO#UW#w?^cWyE27{H0hy) z9yKW%*rjHVBxdxyp-T|vml77#O~%b{b?i3Oj-c`vx2Z zBtNot-ynT@$I%Jd`;~tv?`QV0sjZ6d)YM+9Lvu>%$o&Y)$m-R}b?zZPRqVp-%sOW? zaJIy)!u7)VAlbPVHRUkG3x7qGb+Ggt9g;dE+(qqI*#Qlv0^Sie{zxKLJ}Gzf_l_A_ zzOjV^GUGhZz7_S+xuk%t=4qCei<(yc!D?=$JPSF{gf@500TV+6v;nEoyJ;?wTMoek zQC1WNl%G8n_HWCvKBI|i;*I!%AB5hC`lTGGE&~9J(wUqTFFNd0<`u75SC~G<>RwB! zvgV_?nFwVs@XK8oZ79w`-?bTsM;$!cQ7o$mJ?5?B|Vpik!t3?rX9*#RQM0rY!OfKQg7dg zv={tn2&0Z#nD=M}e!o6<2u_`b1>+choA+jx!OwQ5ZhwXZ`QzQZ409RB6_ z&G!MB;ppv8Z(hAUI10BoJ^~*K@2j`Z&)&XzaUOd8?#j76HTlprexxM`CHw#;?{J4{w)bzLBMB7 zc+8T&l=N3Q&Z1RbR@j<+kjhJu(2qA9O|Q3KTKLBGl9{ma2(u8_OAAJ zBYyqa10|?vxATz91W>mb3>5QCHYG30nvX!yyYuiNdVewUK<_}z^N68j5WpNkTXcqV z?tbt>>@m$kAd!fS^X>FOz90imo1r;lN3ih+sb|;_y(!K%c2Futbo$R@Y*a4&ibk*8p~!W6#3 z1V-<7HOm)-GgjbGI7v{$NjW4>~TnBX}$;qz6b#WOKmtvd6TKcq1~ULW&L~M~fK2&I=Aa$Ohsiqk~PE%r{F+ zQvfs#y<#yd>WzQ_Z$fb3PNy4&sHMp4351M$k?izNctoPp@@^y?D53Wf17ygk zyxOqCh28w&tzb#hs94;A-5X866ghmItSiMS*rw(wVeu_)JKBc06PR`&NX=V8V$)-?m;BJ4>ofCWr;C`_y2W=WC1W!lM_NRkj8mV$@Vfk7$@k z>`~D6vjcw5&(yBT&Hb_~8H|4mHB0ybRJD>!eT%@w(}r&U&BXpM6v@B6yMPZF_1s;x z>*|?c_u)MW^zOAY0eS9Y?goQmEMyO7oF`q1^uNfJG5cy#LcYCgG;>^G7HYP>v3_)r ze4@Mb`1m28gd{$DcD8IXVeenX5LtE?U{K`x<86bnvmhx7(={v@*NKu?h6Pi&m`iBd zS!s_bWKwVRkQZ6ue-e3H%cpfMYF+dKje1q1hUe*W5F_-{?-erP;>Xn!o(xrdLSAf4r$K}I`qiE%`w;V_xy6wapH z7r8LZxqUom>>Iz!w7V&u6cnHYF>&aMN!f!`5;alwRD4PPnkb92?k7xSPT1x4_vA3j z-ml`1{3eACk-QK9712mUo;v`)h#4<%;_G|}2>E8pv%?xQ?2_;4J+!c1ZZ0$y-UfPf z>zZc@CfpW~y2VK3w#iZ`$FNR{l077{<~f%%r`ahZQu1nL_}Y~GZbt9cF-D~S%sp`r zmdl9pO#(2bdJii`z6~%u?;j^1V}{ke58m1PdrxdSrK9sLniYYp{PptUHZEp=b1xls zlfO4N`Cm0n1j_415^d^+5^d_n+N|qF*{tjO->f}7hipdd3|7Rm^HJT!?$ob8t6x99 zTWd}9KYmt!v@%vDl}L8oG-@sPd?gvSf0v2(?)Fk|lx7fpzuBE%k=`5=FmlnArvsx6 zq6x$#`R+w8KBD>xSQ%zZ-}jKQ!EijTtX?)_zj=*(<jq@wV5hhP^xfceYX-Nc zrRXH|oIY>*Iy|rLUkH%jD6)k8RIjnEVsn*Dv8;u`E-v0ongPBXn8Y`m#*aySyo zGyQKzkB4;;eB4GgR7%z(S8G34E$%t`jg^snnBTT;~W;V3)@ z5y0oNK`BJFaFRtdJa-KqUPWJXJ7KXfouj>^U_u$B2(y_Yj2i!0|EI!v*4wLR=hP_9 zW#D!;(_Kzdcww+RI&^`d#Tk&UTCMJB`aiV2z$2rTJZ38gOl%!8rE{pHLi)YHEq-}=1x{B80lZKe&ozqP$u z_g{3Z*IH+mk;53q<|p78SAk@k7Y9sAF7Q^(E5>S!L2D-8TGD5%Hv%WFeKU)O(HOIw zf&5(8Xv5(7fyboziaR=JubYf_5$Zm$m~ws7IbX38TRsyb%%Z zCpD<>HLgKMXpWRzAE@TfXK&whm|)vkHBTi3|MR$j%n~-lH))wpfHL(Yy*iluI}c#| zjRA^$W)JSS^@;-@aGy|0m%wT7IEI9E>)KYwv|Rg?zBcAl4WVuaz2nFh)80x<0LduZJww9+{Ck&>9V4B`rl4la&ZoM z1n*jo#JiqZ*dDBQ=iFB%?B1k4;KRR87@;Vj$g-i|IgNIKPR`a#s3fAg;kFM?KccDA z6W1838JJHz?Qby6GH*(M*sYEdNPU6Xg4i!cc?I?vK6F00W5;niEg?w1Kp7cEaG%=W zf$AGt3Kh8i?)dnWlgKJf?ta@r?B(zp}e~TTavE5_lU7sQ$9sk=Ys@ zgrou6c%Kw$K1-*NSAGX_Rn_QC(^Y&`^BTOMtAb4(7hUi8P`!C*zR^Lkw0}FK^MeFY znjOp_Qn7tJ?}_@H1`qdrN=5?;t-2(jP5;|&tCI0UOZAs(XNN_^;y2?M+!clIM0ou( zAWZo3%zQ2rRp6b?Y5hWfs`6FHq%?{jY|}%`&$9o^OY955=Wp)HWzWZXZF!gz7A!SHrcPlHZ>o>CDzUa;~OE8tM%k*LN^>i-HX5)=kfVsWu}l2gjP2{UT5r$68abQ6g2G!_#JxzafG-r^o0AvE8YvA5X&L2z??~ zp-d`8IJ$<@vtGB!tAbp3qw(4Zo<-3VpQZz3;Y;&(S|ul7QQ(qF0DRe!NVt zMMWA6x?HU`m{4?A1{&{0&)L~i>SPAt$4Gu@nfSA;akvHJpjU$0)*@A6)bd{X22QqA)QD;S2f0K`EDhmeg;!H>= z=~TcemCzCTFSGp#snYKlvs&3C4gFd~TZVJ!>T(+wmDROF4;#^LBOlJ_*=`8?S z{tC#F;_TJym;4!T@{f`tsl;n2IoOPL4G#sA3a9MoQkW{u z7PZ54EWiRKi1~+LLcs_Q9{JDR@kuSQnO1r6Fi>&8O&*bFd*rBsgf4#k$rM{J{9lW(_#Gii-&w0qa&I$ev8B$bdk@k6jFTmQcuef(bn! z4jkcyj#uW4Xn2AY~yDH&!iiioJ8{jUW-mQ|WJ0;vt5(=t9 z9g5_^ye$l63pT9RSJ>%asn0XfrJy70xqe_mWrwHsp}k12{{QU#+j1L8mM9AT3WmpQ zCwLB|s?4g>(_5J(ZHlBMbc&ZIAgQv;%49(x07NMefr*VwdB4@96e{*6J4((E` zuHLS!$Qo}ZYzx`aTyw?y2YX}jmLrlL*oO>KAN2lw^cH9}JLxcN!P>v9D8Q3As^XPX zPm&c}q42&#-nYJ5o|k#u`vJ-B|L6(u{onuB{})(jQ4Oo3gHTP$9t+@_!DC=r5&~pJ z4aqPPdzKCgVA+TlAa{LC4(|@|&8h)-o5j`x*e)=iz>s4d@N`P9h5MsXFKM1sYj{ym z%oUFEf*?was(25PHWB55f^D08QZHX|&t*9zXM!$YL)uI+)ET-=*^3{I_GOn)tN`FN zlfF{2?ie3fktk7ary)=|Rcvs1g*LA&%3p~mz$@{$J7;6AhQ{?Ory)o1*8$E{M$-0X zZuT6WxLL!Uw_T<~I$W7s%g2OrSk=tIR2a#DnGHTRnVT}u-IWb1pVT#cuAj*Ya05sc z5kwJ%Z!(={Ks+aACtfXBsX}llaU(P_WknHNZfCw>c$zg_c-mzi8Vr{}LAroqQKhp; zq&AGNz!4NQfNb;`EmAOCkT`@tL#x#j3a?d{yDK$Ij8GsfYp@+6k*kF)xG)#wZ4+jU zWhN6O1e3C=Q0y|Tjb{lX9Z(adKe7>h{9h^?io{olK5-KuX$hx|uyvV!0u9?`MgA2s!= z(;N-h0<~rt_v6)Z(Jf;C=dQCIPwF;AsU1v_XAgG%e<20xwd|gKN2`q($Pf(`s?=m{ z>xz&;96I8_A2kjf9Uct#V*8KO(%pM|n*Z2DW_@U@Uc-=9#V(YMg3Ywk0K5v)xz*_z zghBW1?=|d>;q095?MJDd%C+9*{DfkOI>gV8`5A((HDVaPRuvbz=K>rX^pa7%tu31 z9K|@PNa76yRqz45|7P!ObU4Nxk5qYeayH>?BwjNIfd5KIq+LW}1RhF}JK-bEyhw!C}*} z#){N{nHPvWaHGgb6?rx<_DSLC@X1gz6ws{$-$!Xa3w(wv7PR7&q{lAKoew(6S@1KO zFvrRe6xCg=FS6QA@yq#e2kfOVnGCgask{`4^G4mpE>cwC=yRN<#sg|l>(CebxhLSDO!&~&uOW^OY$k%1OS%|hQ^LW4tZPpq;KWUUG#V*cV4 zK4eoMevt|s$+@kxeF|8meG*tDK8>)tUjr6L z=P%}mx%DDt;kk#-gf2K)H+34^6)Xan`64oeE%G?0a-@D2$E@h0)>SxQnPAEr?D9OQUna(&%JH;^|ezrx04F`J+k?P|!imotN5Ta6_M+?DYUizQ2pM3}ke)Q8G zL`MyLC*$)#!4P$YcEKb;P5CHLP^FuH+(%?yC9qd#(+;0RItng zY?NP4_KdYxZM_V!P*easSm^uf#9a-34$hpvhv1|N18AcQ1L#48;$--%7T=={yu}9? z>IuLCsM4fLeg2F~&r#H$;3YL)RvL4+Eogkzj`E-DQ>sYQCcIU8A%CaiOP-tD;$?{?>@1_u|!>gx1Lg`-0_)79J*bvsY*CVKi#I z&E^P}cpt~>CHO2v%fn9-sPG~6@8r3Q3G@7FwJ;*?zJ~|+BykSJyvnBjmpySY1ir4D zaz8{>WTB7JvgEA1478!nV&6SZP#1Z`SQiDDHz*9YI15czd<>2(zQ;O=j5!u`Dfgb+ zW(mMK02f&t1-7iG7v zYQrVI+$Q%J;8t;4o`Q#3kaNrdB;r?q2Es~S0vF_eeiMKsC>H{hMtu%Ex>Q;CIIH5Z z=Q^-VDo=1h-@?y&qbz`sTpD09sU-6HG7F=<`fnBb9(X!Xfyb<4#K$W1Ei@zX`N$<( z^f@@i`jh_!q6)xqP>a9_Bu##mHKEU8(3K(9BOuButJNZL$yd2raGB4s$&x>ZKmX)^t|wKQ=P%Pma*>6`vCDDeH&vp| z-c&0vMZ1DC*;O)~deoRdhH02t7&yzaI6%d?C_=`p(s;){A>)DoCF2s0l!1c(W#lEU z%0jPkRTz4auOOVqiGMgctE3@4#|qve7jDnGAS5cs2)n^M9ZLc?I)3->^HqszA2i5! zTLkID-`8d1vd@q`)g?%kzc*Fst2wFw|5mNful7JcvGR2Z5_XY zZJB<6mNv<`f61V4>D%P0TstFxiF{zk)Ms!W4-^F`GJF?Yz`0oFyHx;(pd8}7gfw<` zSzs6K3U58yYL^G@9*i-v1P@~O?P``pMwZ2495!o2Mji@`b&orI{|{o;{etL20tj!&ykW41yzM1 zU_)7GuIhV0-E0&F^~t(iy5Gji+cdsd%YVMEiwt5Pz09VWQ&0=`+p;&M?-wk02%OrB zh%z~n$mcRW|CG@&4_-){n+0yG&5iu4ti4UxexO^Mz;1VJ7#1{kY#c(2RefVOUG^2$?VY-%B1A6b#)XhFPf%WOMhE!vzW?yGfE zix9`Ku}wgY+S=w-KqJ)NU^_U!3hR9006@l9=F#74-IPfam*mleN z>?kht-PrCrySeqPc@z~fZ)|q0P2civ4v3yw>z~HNO}Z z9p16=wVxaBA}{jGg`k0;DRlsUnN2-?@}-YPmvDYKZoKtfu(1JMDtr#AWud^o<1Z1qe&X(RXGw8}~`##MjiY>FQ%x^HDC*DLk?#~LC{Z z_ncW(E-|h$DUb#|?VT8b5_v94Fd3izVZ)=v`CTVaye!0Xd$S*973nCMnvU*eWyE$x zKp4NHp*x_TJBkXTkG<}CW29LN&Mnx%u{Z+gA)|C`;}OoGF*k)%*v=teIpVvX$Esl+ zIkw*!=hpNJ3>{sb`6j3Q0GN%I5kMO?JWyL@64<94!wX{+l@)k zt()HOdMbkt@6Ia8D$dgilbj@wM{j_QQcCyU!*GjLBeSiJ(h36fLPnXi>gCx?w7QzW z<{g&}huguefUfLVs^rp#VH+vjy7;@El;BJ)2Dwc09RJ0h>!-b+$~6R``ljhEk_(JK zxE2%7fWClH@!yy`q1~)$TCz3eAr%uT*YgFofyAye@fuft+I9;}6zgs@F5w^Y)b}d_ z<1-1*VKFO>Ae(Tqbk>EvJeLh>s|9BL2(%%35FEseGl!G<&vjZ|>CkerH;zHa9ezr$ zYT4b3YxQ@=v=Aeu{lFbO=kAvfwEafYRmk|?y>-F6V|H$U@OI`;!^s7#)=gykl?tFN z+xT1N9&MOL=s?4F`xw&~GXPXTtG`2mJhgD_2VeMbGx z^YR>&jjKgs-@{a(WI!jY)P2zX)9?SFN-k0SBX?N-?q?(vqH2Z+Y|xu3?m_&0733tY z-;MbD()fFE?e1%%``YNfHoC8k%vjf)P6Vdl2E-sePv=hES{H7+Cc>V}KP#25Gi&i3Si27`F9f#j>_Lv!`=gU6c4IIMYpS zHc!ayp{9m*3JAZmHgtjo(fG*w){Is&{A>u91U;h$ud8GV`Y83`l#-j6qhF^bC1wC6 zLsH3_{m;KQpkVy{`CH@rw+49Zk<6ZXu$D6|*!#4xgkw4@l{I1Okwv|O+7Xm{8|GbY zT!X07ww~|~f}5V+I7`F!PyL8lC4XNlZdvfylPWu>m&}~|mvKNTn~&fx&##cbl&@VH zP?;TZeuVE1o(4B>w}(7HYZC`<-uuKxoPS8M75>}%-yz;JMlA(7FR&gf;-GcJZz|zP zcygIN=If~nnfE>I{r>6iVeL>rpP(9~^AK~FF9zAep!aR4HvYn}oT814^WBsGju(*4 z1mdUcpfC<3;+Uyr$I437%VuV`Vi3sD1RZnsD7y|U@i`&|yAcx`~O2wl%_#NO<@Q^~T02y40QWVOs z{qUU&`3Pl|?}P1-5==3@o%-mvnx~C1)K=HN-7~3%MxPIO1?6)J{}fepz5ZYueAs!4=fsMtV6 zZ5Noc?|~%8${XT*Ngz2dnAKkjMqP(Ux1-xvlX2OPk@e5t8Q;H)&ByBSJpDOKtNnF# zk&2Edt8a}JiC{1WX_rQB*qJeF}a~p7iB}oKm29@Z<>%*o1zn?)6b%Q%YHyu#@P_?)8 zQ-cPq)=w-_uFL)djnZ{P_^nH=qt7q|YxTEet!}*tQ#1*Iv2+@`zx-9{UsPe8&X?r1 zAnTZG-prkF_Pl{kUd3<-k(fM0$@Kc$kFmi!g?7DS-tCG<5eFhuKH#fw&IJ@Tgkk68v zv?q98w}*dfF;@(wOqsqZYNq;-uwtO{RA7NyrP23*n6z?JrxAAp1n^h?EhYYyxe z%)sUM20@NuU=YVaj8F~?EJ&u0Wz{w0%3LR1tHd1GcpI+wc%BK7DJ>+|Z1$6KHIn;)Ve$qvO zD-SnBK@p_Mu6zS>f45zloP$G>3;5Y@483zq)+2p?!zo9XX(CQx>h&fn!MCGS{F>Az zmAQq1BdZIs1V%U*K78^6Q%)}^iQx;TyT%W?TnCKNRphtu^yKM~@?`U7+BGgD$t%@P z1%r=5FT{Rga)&l1fH&c0-p(2!(Y4PF2G4lx7_6xw2i)9qmunZndN*@X{zmNp32a%2 ze!&&;s+_Fr;p`Z*1NZr|dDdh4b5MiwJ~{sLRB$~64Dp-H@c9C>O80QVN2g-n#!1ksGJquv5N z?iV{OaCXNJvsoNN%v#sO5!r)>C3e>io>a+16rr#+ITzf5_!&yf0ODs{r5OfWC7PMY zevHio1n@c>09#e?E0{79fQ?L2Tp7ud(X`2$+B3F-QTA2z)TdXCwvB>p2IBF|Tz$D* zqTpU&$Z1tFIt^u}KR|ZOnQ$kf3frt^WUII*z7-${|4*$l793d4R97@w-;;_9Y`Pwgt6E>QcEB8 z`kcOYns3Y+*T$RBant4YJ#3dak0!OFCJy+*p&`Pq?iD4x_rdw0mq1(-{D7(Y$bvUV z18-ggT(#T+32^%Nb#@_GT|rXuZG%No?NV>&O_o+kHCbG-4NI$n2o3;9muh)Q7nt?F zN-0msMOI=wdPipjYv@0H`V^<~tk=iY|F_&lL%_Eg9_M88_^<&&i?|L%&d|PgEQI3L?bYW?;Sp1FAi>&H?C5(a* z?DEoLO)o@*RH03QjL#1FQ6)D^r{Rq2r_wNI5L-|zp@vlo}Ge9x8wz3`t;|`(=aaqZ~WDAS!d$BEL#jiefaem=_M9nejvB_Ymward-J; ziOipZM@M!yP^m>G>jtj7)fLHZS4rKZXcFv;Ze?Sffek)SFe&TO#R&f=S%$crVsBcj z`!)z+1q~)UD>Y6X#3BdT1dL(rRxB@ZyE2m4fVPsBl)?K@{3~ENL6m|w0|5L(dOj*A zpFlH%+7>2C1?Q>(ph7QG&7KO*D7(O%Hf$>*b7zBhLN+nANvd<^QNIyHuE73!Nh8*H zzHYp9xq8l_O|hstSl-mmK*ro@Ac!F&^$2QWUzMbk9r}V0piiU#w5>6 zaxZ~(B^ODSgIxun@Hy_5b`YRf_eGX^dE2N9t=+L+IQ}D+s)wLPB^qQvcuiM2Rl$66 z3ihF=R7qt)r^0w<5}hMjSWYJEsyAJy@{B^vq@K)RB|rl&LDH#WCUAG1_8@Y>?}kD8 zXur{XC|I3^!C_VDj7m;BiBMj5&ZQ|xP|}==y<65=7?IDxp>ZLF@rnFB6!+UZ(fHrd zn}DXaNb1E4!|+ixW}Bm=YOdaaIlSK#%ic%ID#2woDHOg4l&;V7Y!WE^r?WWBKuCs~ zzPx1wo<8e5of;J)B44bJVB%Nvlx~=}Ozwa9QFZ+(y%LvlYyfO^l&qffe*QR6SBBtO z#kmH5J8#~w-_JJo`IjI6y4(BHbC83Wf*mGius6=EwT#EGMsn&nc&8_8_f*+G@rJwp zBBo`7vqU2WER<>w$V2Bn29UK0WS}KZ!oF%mItR$0RXn#@W zYvP0pm6jaayTXBRA)P4dg+ss{1~Zh&}C zfKe~0EYKLD(3%P7$}sy0NqF&{iPL*#&egIHFM##WFi) zdh#nOl>>~_#Ge^Xj07) zp+M6y@v1-(A3_63tJxdG9>wSkRVmJFB?xA@t=GXkPHCjAak5`BO^ z%qd&fV3~-e@8D0cAr1mgREWY(lm){;o#j%GZb=M$&}SP6p*##mDsjmF zT2RR)+w`2JbHS-r5{1b1xnCHb&I5h_gXy5vdS92A+zXc;KxdhKXJ}R&ZimA5s1|%Z zm91CcvX%C$vTVqn$7%{($pJZOyIpJ$6o-}`f^4Xs4dHN&Af(~$64dWcu)gPAMTwwI zpJ00wYLLVMWMs-r9^_C@d*Wm=u~(MFHRk_n1cI}?IV^9Rrs7h{k>J61*eYYf_$=D1 z<^~!h#mn`%pceR*2?lG~2HjX}j^my@Iu;eg5jGy~6^Q1AlA$%2WcAwds z@!Wdoq@WZF8$~3t6!6SB^Poh-GKc&YUVP@J9O18iT;(l03&24ZSqP{<8VgCz>D|KE z(g(y4NCAtG+P+=3m_V^yP4rC=%XN-c8_^E*|c8@vMcCq04z$k z=;|*#dA2HAib1@PlPxe+MSCw#&c+`P&(0zpAMB0yKJLFgIX-NwbaFHrpAC;+e;f_} ztF7Xj;o;fd+5VfKKAs)^=exsE+sMP?gTp^>>Tr1cZglu@Z!AWC`EJ}^^Znl2;lanf z{r$tys6)m5H+yG$`{Tp24t0-C4u-FW`+MWz$#IA3$0rAeAICqPcA4*Jyw|#}+mjEQYFd!n+~Pmqors_R-MA^e1D@ zfzw7H$I&&Kk%Qgd=d8vE4A@l1R~_`OjK6<2{zi{H(^)at@2jd@zQ?GtEgi=iV-xY` zpN&@H=TG*}|7z(6odf?c#g6cAqiKop*8l8%`N{jTaRlAJ*&TlP$^GzOw?Bonp`R3D zTe%jJNv6r8TCF~%mw%>-e{SnsRQrjlwQZPkJjAMvxzCM>LCw#RPJEh5C1F}>4lNaI zFRV)nMnID7)P_*arZAsG^*{p5uPyCZ>QC+d?T^naT|l@U{qAxgf$F2D%jo@Urr3Wn z%S{leD$h`^Ue3&l)XRtT{Ku@>AB{HkfzylGQ3_znkDE7~%h* z0@1?`Mo#)&eKE&xv61y!cReqfqqc&KPPi2L zBoVx|bV<=0LUYbYkxpS0OJ?L#F=`Q}UR36adE{45yn`gz6wlxXhrzzIIiSz>&nx@q z&uvN&>^(AZeHp;KyD%n~&V68X0py0RAA|CRuOIXAL*V$6QR+N>cmevI!qoy$jlEJF zXsYj@Bj2wg-+#8hQ^-FZ5{Q0>NxpgU+V^*4%i3>DtI92Gp?`~Y+DhHbL-YS!CsTJH zR^Pg?&_&ZAZG7>`h)-Jk3mT4 z-U06L%LF_8j@8BBL`Gfs?bh`+27RUt@&mt}gA;O>zVsu7#;KAI+=wf*wL@(fd}&2Y z8}JkzRMuT>hK}~LmXrtq^Cw;A&>>oZCPP%ohwY7AwB0aMP|+Fqx9V)+(KA510!?!z8?u^ntao&vDEtGkbHfXy$ z7OZT6*lJJ%{gD=ErA`b%#p^8$8n2p*gMkX#2^^28sVA+=WeOH#QU|Ne?$8gbM@N+S zz#cP#wVQ1~)iBl@@sg%3fo_fH8vJL(N-}ijTRfpaQNL_N6Hyl z89z!W^cN5s{y)ARgDY%F-PumJT98O>Lj-$Nxra7JiNu$8wN|Es32dD z9{cc&P}bgLC<{*zHk?(}YVfNh4>b8^iXqWavf{b_#k4v6s{tF8Au0}oBM9>y2f>jH z`|Uyi3yc((6le_<{!e7kGgyW=T(vYp=yARY^I)-I@>4Ojx(2Wg@QwX8D?Z7hD$RAl zUNKpeRk%nTg-{yMLo8N8$>9h*Xl%|hky`f555Q(>beARBY|KT-;5~0yST2)Nru~o z=|&_)@SfHCBrOq@2I!Q7$%fr7bf^kzVh(wyd(am|In$&xEb!v5=4%opti)I#%Aj{T zWG{pVd=3l0>hUpai8j=l+5|l|$zMYc$jMmJ<*K=gLB`6!B9@v>Rk(v~hB9oruX=l< z{o#<3LgVT3va5hC3E_Z*Ut2UNCmaT}gQYRVwxRymc1z+<NInuHZ$V)!0*?<4u{E_jXvM03>1{x0^virYHV?}{K_(cO zu*-R6f6EZT{YDUODQQ#}u5V7z$2wUgI3sUo$}yY)k3Il`-9$2Q_kmkTJO+k144JyIW#ca3?#*p(*n#BMA9jR-XuA&h5oFFTRqZ4Zqa08hv*91ZHwItzFJ96p40%HHq+ z!OzOPV_|?OhN#cz6Lg+TKFvhazQs5Uz*kZ~WGOfLGmCq|@EdTZK--bkd)52}KD4cq zw#AEK!*etG%ygcY2CFBY0Q+kl_W{B;jRnjTW+ zDiqoz)cCg*Fy_mH@4-cb;U$O80+rauKz_3x%;M>=5I3WGHLHMx=P7Fas$@Rb`oRQ0 zAWfWB<;uuZ1TVFvcz9uFcx6|;C4_v%PJx?*6z33byPWyuFl%u?zLFo!Sc=IxWJa{c zg=plg1wN494`4n4??N-=Ve4D&Q$`se)tZdhj2KS=q8FsO*f|I(IGjZqWi>>WR!j># zh-5z)gFy=^D3;A0e^l4Gp%~V^qJDIiWce2FKsi}IpOkUs2!_0@>kOhtT#%v`uxqCf z3jmEdM5Kg&^Q`!^Lzm$W9D*JDhJj5v#N|BWwgQ!@G5mq8;SX%u`ZfW8))quLE*wmY zl)wze7D)8^jIW$tX^uJR$jf!tdoJ?^=mD<}CiwR)feQaVg7s?f;lJ|RlK&OsOUSMZ zbb!Y|Lergr1!42h2%O5zB1%EZZ+6?#uW&r=%!$-F%>AlMG^eqcq0fe&*Qq))! z10Q{Y)J7yC*y5S$sAVkk01pKjp>dglsywhr9)OfY#zO-1EZAAg*t4qqSsX>Q2142{ zaf+xDW9B6UwMU^^5kfdYD+*+O0kl$t;y=`3CpQz{x6Rycj*(`b8kohve zfXL$%;X-7w$BO6z$&Z{A#yQ3l`?Pmp@g0gpGb@1~DR#jEBNI%`+g=49h$@Th(Q29J zM*J<$axTTj9_e5j)WU9HtyY%99v|<%0iS(A;R$2liU48}JLu48bKqTnFjTIE&W1%o zHug-Hfg;FE4FU@TC_+{5AnrkCKs4LNo+844O5~GNlYb_OIAT&;1ZmTpFhZ6; zCzgiGp~U1kT@DrO%PA<2NF&@#dj2VEUPCX3MN?fxmCFvUY&bzsC3=deP-}veIy8*6 zwbp`>Oh#b8eGzRsdO$!9H=aB)BTO3oC3u$L8s2b_w$a7Va*W%UwjG1LT~9;98R!Mz zA^dQ4rE+%?xu!Qv85~c(6bSR`o}k$>WgpaT)*cg&r;FfgTZxjZ)qZ+a( zQsQc(8~=>8AL5vBD$0094s%dgm5RbDot~!EG83}f2P;+qro6D46;e!2#94egPj6%xNO#?Rw<$zcv^F-Pyn@R9&ng(6B zhMCo#aZq)f0WO-stUU;Ghe3#PnTBAeP_o!g3!aQ_Jii2AN`v59Lc~*q)?^|WStU#n zXH&4KB(qOHi|Zgu3u0gM68{fm1(U~o_JT>U(#GMOsI%!U)%uzWWFY;!iP&`zvl<2AO9b?|ta9Sn;}z6Mp|>ngcGx87@X zh)cPEfWKjLRLgb{wGS@N<*P-~KAfN_8*0px<IwYaJwFsFIw zq!^B`&1zl9ESlJ_;5j_YweWP>59fIeLHVOWeeV{K{*iHKA3Zm2#qAD{+uAxo;jXW7 zj5_d3V58XsF)~W2Y&MDL5HLp-xVLoSk?!wI_*;2qkxO)rE+vqD#CGoD4O^fqoK&NQIPI5bWhq7sY%3-| z<~~l*?uSM&|Nir7(ku?i!?>*A$?41QMv%O(gd776E$H3ZTg8;h7lVqT7Z%-#CQ&K1 z*FQ#4!?!8eF;Bqwy9Y{9EyW5B7Kt&DK+}CYFq<<2Ehn#1%$Pn=iOnXEhI}F~dgYwW zdJ1hPz>0=06EY~hU~SPHKhO8oIHB29kYESX2UycV_$X;Hibxg-X5uN(u&$W?4y+QV zMts5(u8fcbvkBc{f;JsiumXJWZMi7)I;d%3dQ~U0A3UFgkdCu;sVniyZPa?NgA96_ z*jIF#SQ?$C4g&a8VQ*zj9Urc2QNlSZ39~^PF()p8ko-JdWbDPi1qPkZ+wpnCx10TF{W3 zAAVX+(^<048&FL>>-9efdRbnI*YoGA-v5v;_;X}NA&cE^OiyVseH#d{bysl!qI8;h z)=T2~p3RF^+Pc+k4NC^llh~Ut%@B2;X7Rh2ZWt9*+EVFT3quVvJh!ZhQU49`xC_Om|d$wjD#2aBl&+pEL-Cq$k6JgPM3EKSD zMNpkK65GO;rpt5S0J^ZHI(jCwiLsxDP#EPty_E{aBW13#51PVV{es$>L7r`3EyIu) zpwGSWW*A7=fG}-K&|pH+2xMM~G7m7VjJ_5^bnv@mCnI$x7t&5i2X>og^$L{F>M5uP zAU7oaGc(-Fki2)xnXY>{EFkQ{w41}|LbR8&iu4Rs2(WL&U)Isob+YMn1FSkDK(?H3 zx%X)37~6cbg^V7H*YY?xvH6+sma}aLXy(L{KM048k8Fj0v#2O+^5H@e@}=Mig-?N5|p<@qVEB>i6saf`}eVF%Ie;k>$5`qbyv}^|jXO3b?P)iNaFx z5KSxD>{-mP5a=6lvNkeHh!7K`Zbd#G2kpmWm9NDU`+989Sr-;wo{7NbMW%$CgW5q2 z$uspWPFO)G&i%{tMiZ*o9uAAvH5t&Db3+wzY%Qy za}BB|KrOOqnql|3Q@bh_}7)q7GxdnieWCh8Bkl59> z`Rhbn+s!GPOubU!Gb1iE`(|zTW(bd5VNUFMy0LGp)!vzJfo&dwyhQWYf-P48RnlZh z&khI_ARoRmY?gkmxQ5;(#o!MQgDfhJqr+G5g@=NO#Bg516speEhsq}o@J6haJUDKD z5MRRRfM9II)qYR%RdHw9J<(dQ+v(Ewcove3%Z~8OL5# z$s9*8LORQDZD=S6e*+nb6|cd!iqyDhXf(;(1%~(p+l|~9VkVi02VcrGUB0xuXa|No zYfPO|xC8ndBOZA9vT+renJqim%U^!{Ydc}+Ix(%9yqzhA`csp&W~B#_HeK6|6hDC4 z)skW*$@8uMg2)E7Q6T0#%RVbzi(rtdE5RHKQgEJvw5+%DY^T?M_kaBU_kTFt1-{6l z3~<*2!JuA|{1D~@`b%c;%-`6Z^&xaODN`fCv2{(M zVGSSVSqZKqu%<~_kRx<0ShP?2Y7uz@6Zoq2hhkRJMxhv(sNO__kBDH^zJRjsYpF?Y6p8NMf+U5jsE~|T9)ff z)j9nJx104Vj=U=2@S6~Hpm)B`^5#j_g@&5fF-q@u7EQBy_PgI*US2-E{KM0-n*Z+G z|M@@vCuMrriC@tkp>T%rXyWMo>j16ZIGOK$|NGxVf(d^rKZ;p|It^39E(?#3rIxJ+ z>@r3dcBd0r?l$K31FHI4jSNhEpACfBdQQM|ugI3#_;&}`IP1$cU7QLQ8EkX>uB?(S zU7{nHa$nOO2EKRb?j>GV?+TC&tG>LC9Xi_2v(M(hbre-Glzwp|R__vlDdZ>DZ0o-=O>PTsk^*=+F?a zbk$P->e5uT+NMFhO^a9JsZgtN^slZ>kCTgRZi6`Vy+e1e1zlSiC(-=fq4}GnUhJc^ zR`uX~>d?vX;N|%+Dk)Ys|ZWHtl+1N+^B#^0JyOL3RZFT|hX zjjg*gKXmBeRO}(fpRhTpz~@e#U6F1JrS$JGf|b!_q_9iJZr}%lro_s+bnB40Es5M| zxx!n-Xm5Pz(m_?uD{+o=2j+)v9e@+!S^75;`Ck6w+-B6V1Sa7o85 zAq1&tRHV7ppYyq6XH8xsYJy%Vc*k$7)NLS}o?9QfbugTy`$;j)0Mk#CtP0GttxD%X zUMFZxUpXCHpF4N95wxv!x(#!hrqzBa_8oC^$nrmPkd_+P9ip}O?j4WnY9iVSqCIKM zKE3Z9yAu$st$x&pZXMXSyY-<%2c!3||Eo0Kzvk~Po7dNA&jz)pr2yO2`>f3E+q$j1 zQ}-1-dq0%br?hezm}p^_j#p_qS)8Sla$e94X(4b+@wGaS_q$b>5Tt&Q)>$2zZJ_WP z9mo3Y+Fest)*czZJ2Z#z->R+p(WPOzo-A}r^{Y!$>-=qX_yT;__B_|Sp=!*3c5hT~ z*XsS*0jd7gi1wGQyXg6S^g49%Aw7TnmP1&nsdyi|bhJnfjzs_3+*C=^jru`7Hdvhu z8*;gqDt9zsxGLAE7(wrz67sVP&b`K%%A$HY#ZZnI5gW_{&{)W{giAc_xKvJ~kHuIz zTSzr0sB_T0u_QMrIUqWt6mB1vVus^#v?wpJC-fr;&IFv>Rx5}g#gK&rCq5n4)G^ zEk-0-_CG8HLase)60y;9O8UlsVIY0e#00$;sqF5Q#4resszUMZym-EILzS}$`XC_s zw6178=3pZa+Lp-xs)8$wAa5RJFwHwJn+3%ng}>L}-OFJebZ{+<_V4&lx0)Q%>d?lk z?-_gfv<8EVvOY`&7}AC;Xwe$B>oEcQm@eUOzoA_g6_!$oRyVr6fiD#tJ@2s6@S7cSiEaN0uKLn4 zRKRvC5M^JwdT~iM1`H4wnyy z6{m%!Q`e~x;yC1Bf4(A7C3(e6J&&;TbJo04P0h$_U}?wUZRHrjJr*P%Ga;hOfRprCM!@F*V(_b9UhT^f`g$w}ke07XyPK%%EF(Q+ ztYEkniX8799Ri>_pb9eLcQ8xUDwqDJ7B37b|?$j?mhp$`|x3#!Y-pn3#Ww(jt;FCcH^OKn_bUJSN?k< zo%jd0K9=69I0WKnW^0Svkb6zr>1n~)Esb6~jjT`3HUq0%k6ngnqm5FW5DVYpF}$8b zd(6F`dt{!Aq6~3J0B@H^viCmfLgY~G0bS@~VSiW*xn;!D;n8)ZA&`sAz$(rjTzp1b zxqb_msaX_AXeS@kBuPrsl};8+T>0t>)1`=+L5y%ib^)$Q>Z}CmjPJonL6jn{h#OoQ zon-15r8ek?NJWAYV`!oA0GDOGDm|E-tkOcdMqOfzBtF*3)SAA&PX$|*Foy*m{JlK^ zBe0$J`ay(R%UopZD(~T?n>HM>RNc1vGZ^v{#?$7L`ygZLWtBCGN0c4l$GqUr?)?sf z>gzq}9SsHBg3=TftUe;eY2gfTSX?4M?IiU>Uj&ZCLP#w~8SkCFJ{+5Fg&;wqm@~-K zQZ!1J<4{tWGy!wKTDuqPv}2T?NVBTvSM;E?5|B;ABSng{fJm%Z@;a5rZ(#QT%n#h_ zqGRz2>_HYfnZ03P#>@TFRa!&TyD~pdD)_OpON_R5(lIhzsvt9-$c(b88}K$sfOv;d zvc%NNmZVTKGm_Nv<3j98Q&yB_(LOzZr+tAIFEs6i?K6H#U>l#fdrLqg{Q_I4%u7zh z+Zr^?bW(L>1oe6X!ejvVm6igmQD$ho#Rq&Eqj3acIBv)@j5FekBWwu%9jqC7Xb$}2 zO9MJl;ZE?enRzui^^Sz}OAT0Sp`Z)by{+74yEPAaz`IyOq1c%Gy^k>WN_aI7pMsv3KMJY%t)b z{?n&VDOVM(_b-3F!7>JXw@FTD0vWv^{uDj01~*&gchGf{`dILY)J>Z6mCW4lBTn7%yhGPonSr&!S{5sL~G1~XMe zrovMw3z&l+p}UI(u{z-`xDsP5jYK{LxMP(M{a! z@6k>C(M|l(P5jYK{LxMP(M|l(P5jYKJbkck;xbWqZ<&FZH+K^;wDUwSS6ZCyjs zq)!l|S7xf!mPx4i{*+$zrrAt-$YksWWu~iCW6d}myQl>@U02{z$#xi=iCY`CR%xo| zHsC}!b#IwWwHuD?ZdyWjiI@c2AR0bnIEyNUCk|!7EW{0go?I)jH{fE4(_XF;33M>z zDko429g*b7pe2RTBbnA^sCg&j`lc-DtYxSo*>Y^X>ouKzB5Gba;}&(V9Y5bu`|855 z`q#`M?=F+JyET(bdp<|s*KBjbyH0syR@!-Ni|IwYT zP2~0$Sw0O>v%+wW_X)%i8gaX=CDdVvyX( z05-35_~-G*^IYuBNAV6=CZFAXIokX4M^Wcl@AcbM0M3EQ(eT(VXr>!+5}e<44qv`|_3H5K?@#_`< zjYOaS{&DZ^>6^WO-%yQeZK~u#+gSpx{3D==c(i=X%PB3?+!I+yu|_^7MOK%MIO&2u zcHN`TD@@haT$bn~)FhZG8hw&*pegUv^UFAJZR@oSvq`LNZvGX}*5!+i?71O0u2Rctth~MqDNwUV|MQh|5GQ72bsS5;eIRqmubD9pz<%-2`q3a)T4^2Jm^s zwql>W*U%mq+7mvCw{^B!=ZSm{@#@9%ji4?K=(UR-1#(Cc^Tl>FsT5SZ?k$sGHVOhh=^ zNe&iQZ&0Qaxhtv4+jQ1mVO*|S%Rgk(W?|Rp4uouaZ3txXEZ*jz+DAQ>{o3`uZtc!< zws(4K$#q2iw&k2QSUzPe3<5_#$S_H72z{x<$6ERx zM^-BDhO8PtEuZadMi$EGdNni4M9n38eeZyi=?+!GfRd#Q!Vr_BDB;$#o+0SkAi|2A zr&^HRYo91+-02Vi-aJ{a#2q!kuq!GGNZUDcGB0`q=%9TDV3GXGATHtL!JMBL9v%yV zUmsq_CNTMtq(8K-j-oR4F;XACryCu12*Ux?AYle68i>T{0gn+b)0$oVO0a+5gaDY| zw(gw3Q}(Q5w}fJ~SZEU)Asivb9v~76CfNU>>R<8{f0BQh-D=gvCgj%mOnag4bqYyh z;~ShhD-MkT`wSW1igO$GNMfNK@xwa<;k{I1-&lm30QG8JiMxjF!>ZiovRX6bh2oKP zTP_?Qdvj_TU?u>Gn&=YC413cx$$A1Iw)DKA%l@wRcKqJ20#QQSk||h4)9P!jLETncLeh^$B}&=QcRyKy z%&gDK6;M1W^`X@yE9$gr_NIRmODrS?_NA{Gc(_2hRGbdDek#2!)q60a)3mz>6zyLE zU*UHQ$JT(P_Pn&a0NbZn7iO4(-AD`ucPEgqhHX`hbuXDi5TwRnDDa_hm8JPqFWz6`_t6ENZa&l&XSo#$5P3OuHYZ15J z%d4%r71cX-JS>{>eU@JK1#@oswU4ag_)z0=tC@-F8)s%l0VlJipj7Kx6cJD`5b(O* z__*iL<(tT4+k|gUFgwitI$7@HE34fnv`0oQ&cUrNCbO}@b+1T4~J^P*Bmry>P8s$Z7D%Y2<3| z=?m6oa%{B4$z00GbYNr%3>%Re=W0bUw78th^!!uS91&AAVxDL-bF?wei=&Qh3n^mj zF6?%{t@tco3TW4v?7fDTQtuki5Qj@F>pS($F_xjv`=imY04qi`Uv>4=XyE#+Cn{m_ z0ZsxLkFdP~KMfA2nW^@k*k5hsM+$xXm|nff3PBhP{@JXr*re1ZoBhPq`b z?ZL^B3*Zd~i*R9x?V;;nnyyk5GlQHLvPJQ5DBuP2&^-GY*z~cKYGCoaOtskqm;zE# zGhkX+qlL&&rIZm1{U^$53OwA#n@H`)`T88pznr^b0wd%vv8(tV=X4+=_|kGI zR3u8=l}T-d?GEU*)8BRCSG(pW*iCYWFtZValmoRQ>|jC$+_$Nmrfg;$Grp1O&Nx{e zA=EbLGQsdk>9kw?RhcgbIcu7;oGX~sBzX=&u3%<5a6F|BV!cOf7F2u8N&fIG(vOX5 zF9x8uv8J-c3h0bx(2Q)n!6YQ>4m5r&pVF9Jfrpg^m{yCV#_VN)#u-OFo%N1Sjt>XD z{k_xiyE8C}Jbkk_5+C-)A1R7CP4MNrmoML{;>i4Pq|*gj<8CqzvJlWdPH=iuPAe2P zYy+gM7RX)u&><4>o?b&P+`^G?C0|fYv~YC`6w!za@mvk+ky)$l>l3saHKf=cL5-bn zGI3ir$#Ny5)zjv{?k}@koTOAREmJT^OzJhri;!6WlLvN}gAN3d$>v!Ro1v&Nf+0GY zg~5p{OSJ5i^R!5pV`jp%^;9gSziVNQ)Skm-K;EV{+rziGnbb{R zM%GI*_H38559Oz*L{{w$842eAQE%;H$`Vitdrv+s66Usd24ziKLBhHVW!}V(amZc( zSqx+<6Lp2NcP9G3vJ*}Tn`j(Ey4%D>m!{L2i{*W8!`G$xF<@v0Ad|+vvTe&3&l>FMNSPW2INTy#IEC0a&qURIV$I zuwwWDIOhHMjh~M@q2OX<&uO{?1c$L7#C$8$kfmp%tDAK&^;K`%XmfMYv0h*m*PB7) z{xmXFWVHneI&j~hZ97N0L01QO7NJFv5}H#gC2iTJ)6lTI;?Hi|@+S!KB zg==tM&nW&D*gG#PP}db#$``zrkK9?>px??|Fn7&jNx7;a&nn)y!Cj^~)>0LsH_Eu) z#hUito{SC;0`{*F%1iZQMCRo9_;7zLs7$27$?4&-U9?$B?Gubvp=a z;KP$%>qW+{b1K!Bx=8cDG@4ydSUy@*jfbV5`%S&!e zg-8((?G%`I=JJ4^ER!p`DKxvwT>mm8Ftu)5lh&z{y3*)f z=e5zSy@H^T=Q|9)Z)!uZ6xuOIHbwKGOSDgBGg7s>JJ93era_szaoq-W_}-_z!werI zm&uhoh%rDm>)5^G&9{QGd=;A+#*)UySha3?+!}al3a#BYE~h?}F{D6?g#O-EC?uH3 zGW(eWKxjr!AmOk7zutFG|Gjr|UPCB6NN8t2Zns)yiE)=Ut&!9c8ur+V-q2bS<4_5? zUv!Ox53ADz=pRxY0*lhEIMvYPofDv;ZbG&pdxQl`=4vzq5hO?>5iwlOq5Iu!^9st0 z1~( zQ(g6E>jEEiwlPgsk3gLR!R-y{D17DYg2q>T{ZlHxpyd^Y5y&R5c%XiTzPaL*LAZ}+ z#Qv%*xn^ckxtGJ~i=YV=cRac(CX1>p%5|;AkgL+hSHUrM?I$sJ_#r(%TNfbY-xo6w zv+Xw}&lB!%HRUTv>JnLUbEx;Ezw7G!N$UC92FyM$m$L`;C-!eJ?xc#&8^G%96v7(< z`ZhP~&W3^6&mzzstsUG$;p1@VaQLSYFj_FxL9N!9%2uLE4GO_U5XXHj-aK}4=zCUEwsN5eKnx(KoW4qcx2%zXEMe#w4#meoesYjlSy0SfKAgT$?}>a zrXj;CuqS{e7&gR3jO-qqM0dk{fkxOuWI{zno_25G2SWO(cjx|wC*`e-=%iF86`P^GT zV?d?E3S(F6yOib9oS_-JguF7-_CJiViU#{TBA26mO zHi+g(ZD0P(IG0Z-7uVGfw-Vm2)cU`;6*_i z(?~c`IXIv1ltEgn^dWWzC_L@M(-<`c}uY^vDx`u#LF)2YU^CHNssudqtdP}S5 z@aS~>Q>5(e$=-n{Q{AYM@QHGpJl)-Ozx8iR9r4AX_uzC9dW{kGfeJka!u)*eCqwe5 zn9}fxv{GjwF~*OdLCK(Zp0BF`{m2Tm3&X#~8^FBy#aZ&HuFyxgsSfl z2%Xf9n=LeS3s&QpT{s+DAmwAbNxt?A6&qNC>-e$r#n~G&@M{eqM^#z^$WeuOOfD)9 z#N?7LoUqL3OELt6*hU1?V|LsUr>(g;Ubo&GH31y}g4(pskKVp%nic0Mdn!t&+Uy)` zGuCx#h@9zJ4MAFA^viOcPoaj?3CZh{9*vg}he+BkECoxDf#Lk`py?A}Pj|c%SuNq3 z=A9zZcfW|cDT?Dq*R*``hOgt-G0ic&2km5e;ig>9(-vfN!?xAZiFon@GN9}^= zjEW4oh4}J>WJtvCS4&0&e!N)N$TXnh&G+TUr$yl^)y)Ctn<{c=!6qT z5sDy81Y2$<SruhopiQGn1 z3vwc1j5Dm)HBDz(fx+1j=5y0RCie(ySA5$_)2UZt z#2@fB9I^u;%R5o)gCXHf2{{b^q)VyRm%GQ0f)8So%gd+yRrdpj-Y%PFwNYGQoKG@G zpd>k95mSaYrvraIm)NQiF$nG$m+EI<-@u*PO_(XQd+D$-M&gl0QcW*mwwZ;sIpz@o zUkchCvSCe`6!m6lIwjkuQoCvOAyTe91-k=^mQIn(0WGt0cEpfFhM{hgF&E$#*zBsB zDy`Oeo%XGBFaQtE#7rS!gn;35^gOnE_BiovwCjZqk6UBAy`sb{HK$VekeU1?WVgeWiqdtF<|V`oqI(mlU@rY;jLY}wZg9(x-n&<7F<%Qf z?ioD^4lpm1<`3WDwH3Y~xY>K2PM0QvDLc`Nir=yIsfwQ#t^&U1+s~L+UI!Zas&lQrw9x_Tmnj%)2XokeJz_yZa7wo2fy zYYyxdm&LrTyk4c+njuPFf)HwlzELr@5muGxo~TTL&W22&b=^MZHct?L#P$WsTCvsX z@{LQwL*cJ4x@ler6sz>~@a$+f8Vyg5KOP(&52G#srzfM~7;3#c-h00{e7pDZZA`E~ z9v&T@yc=%=yhBp?c7Y&P-2_IX(wAMSy?J?go>2Z?wgIbSb`B3x_znLO~H8JYCBjAUjg@!EkXui{^;IA4P)h^znDQHyjw zLL|=cSB_HS7KYL{MJJ11W^QG4iO)1h_w|QJJqfJMHP@@Dpfzn(QL45~i*<0m>omB) z>3JSqBbYVqcu55DGp#RNA}}RZ_Bm_Z@x^DsnOvliCJ@#$QY2yLmzAr~XMUaq!H_Nm zE09jzuV6dxev^K_PIRXoR1}5~l(mV`q7w1lE1Q=MM>1rqe6TN~4`wxaUhHq;X_~n+ z|CC-$%S)KYkLlHUDc;CV>58qGBE{=fq>Qbv+)wEg)ij}kW!fZ>LbLe(o;fzH8!LV%#bCvhpeUnQuRFa{vSRTx(B z3KCxN8WLvl8Vt911%h2m`Nf7gAPhsr5z9O-hBOgDY5?L87YD^R@fh>&T8c^Q)U8v& za*Mb6suZO4>LM$1d3BDs|uRl}t$ zBLxahz0NS{DFlQhix)6L%0N%Fu24-#R@~xrZ*#)ktw@cV>+*JIj>HfT345HRvxbu0E7h-w=HYo${qXE>>HI-YD3Jd$V5q=) z&xV84?qTvV(1Ru*aZL+pD#q{A9z0MZ``ZR5{kpv!XvydBokDC{uEp7ZVgSw#8rFUN z@|k`Yq?$3fHskN$c4fty{82bIZ9FgCU71dnO}R2p%55X zm8$b*3+u*4Tyt&g!7fwEI2ZZSAU~y7kv;gt()=L8vc90hBrT=D%_b|*IbR7Pv|fTuP|MVV=p&UF zUu4dTvAhX{*Ih1%>&!Kiv6I0RM8$MIugXi9J8D`szes{WwjH8xk<`-dfc_JhvJ5mu zidSbtX+?vj4s_d@lUC}^t_po4LpX?RNkLSUjD>ILoZq?zXm-Xm_%f zArQhs+|7rdS9w{1m@1uvrFC9X>^2Bup*L*X*>`2JTB)e77Q7W2-(3tM`BU)3;b>x} zOl13KzEWV`ijYHVJa4bNu1}lm3yi}LH<{h@x&joX!Ts`cXB36UXPr&yaduv=i)m72 zsUs7;=EBNOEXf_M3!~%Qdwk5jLM?K2RYL1|=)%>90 zP0174K;6`?W8)H)aV*J#(ZWh_OrNEWQGQ7(Tl=~VJgASG0wiMS)uG!qL$Iy!8LY#M zJXGLKx)m(Y;_S|D+UV0APM#eByW?bUeABj=DoBTHrB9$!y(K`Q@y(ITGUU6R?r!1X z-6s9uJAm0KjGnm_;K&B?#!E$`#oJybN2$T}>B9yqMNv+MHZI~5`VcOXd`oVZjVf<@ z*5-|UYl1Xw>Uq$i{0TtzNP*gqu4H;+6Jtf zd+vtWTX$QnyIi(gciWXpcIvo=UXsNxrW7X2Hw-yvzU!CkhPcvofq!muN=yR~!# zQV(PhLnYzL3Q)?=An-dIT;MBPT(zXxm-#7VFo$iH#kSBlr5R{E-Juh0TpjLdW5mrC zKfbo$k8PVbXfFIXd9JH~NW=GB!Xl!a#7gK&S^~nm>S`Tmz8Zf(0*Q8$BK< zb_>{BfqkzYPG#Us7zmt7d9|)&G#MlF?)MyQ603@@6i|lq0#Lw8(uv4A%DBniTqv6k zC&GR!B&W>0dNC?Vr4 z6a>h+*FP785Tkc0Fhe{ajBta)%9S(LXaXS9SwVOK;9*_Zc=2cH3%fwc3WKY zC5Iv8P(doP2?ooPb9aJ};JU@@wXEbcB>gs~HozYW4*d091IZCQnlu987ev5M#a^dU z9VIxNDw%*P3XI8g>M)3E5D*XjPWBo~JOX{8q%4xMH8KMumPb&Z*FGjkmoSHvFX=5O zl0$eS$U}l_Z<)%XN@q}c%l_*{vTE%&vP3&s37($J9UNo0RcS>cu`MTtQI_GpTVyN2 zh&Gq0ZIZ?@ZXx7Y0~=)o<^i;GFRwfj??RMNW{iWAqjC8uEp#%BFFVBuoGajCzQ~SZ zyDi7M#K3tNRl6d>E|cV`L~Sx(jx~jbV`s-d+KUFzk@xXA;WxkmG%Gt$pDlspjhe>yTZdNNUt zYkXCMK4tqy^$#FkdEWZ078UO9QN862yxmp1#e4Zi592vz+FPV(md!@n8E0FBY^$K! zM|DLK5MRa!d-+DZQl0R=+r4D(=54w0rn>Lv+MQfL`Vc%`Klcj6hk5zvmB+3gUBkb4 z%rZYclNAcuxO|YhgXys*?*ouaT&8&r|H_L=v{W|+3Ne=$bb2Z-6?CkWY6h6f5m;M# zH&p1>fPq8ThSkGAx*u4xU1x+dCZRDd)YEV8?A|jxALcPO)*m~^Miu`cTZKAt6y~Ca z*!#V6anzN9rq}=Byn4P%X{3nBZ$5!dhxqV;Q6?;7=q zU{*odsZ=c5sq_=S>J4!!c{%x{=ml^^b&8G;%9CeWPS(rL0s@FEfA_b&0^s9ae~%!1 zkR(E_J3=2+xkns~5=j~MWzHe=<4bA~tqp(uh4RO%gF|T^l-iZ)1gPqnNsl~81q&ef zhe?&4Qw||{$9K8jK}xq3k$KHTM(IpoIY{zQS}5rZDXuO^4MkMu-1Lvo8pVIH2ZjOA zN1}7DKzx{FN3T3acytY)^q6H`rB)%;!O79v z?+z40v0vt8bxI4m>TLYM_Ur&u9DSB7v;3+P=Q2Zy`c@;?^1%`>WA!Zr%%~M4Vph4YU4B_kuN;VmsD&&WaQel=keRN`i((`|bHi!> za~nbmN&%*Z;utHTODlB^l1#D2c5y4q);|8sjc2($8;?Sl=fwA11-p3yl$L zUBf5TW|_xrZq%OMF~><+uUiQyR@waeon|!*?dCQPS`#KZt+15jgSCsYomS8Lx|a%` zZaT#$d&Cc7D?6E!i?pf`@))XQ;>7suU!wZ}O6nk58Whsh#8hgei|iP`N{~6mGKQW# zKPcH_v-Suh{Em&EN}d#l#GI5E>Y)!k92OHmGd;y!x>skJPFUGK2ks#{2^%8h;49pU*sQ{QPE|7}RK7)FD* z12o40@r;o}@;uE2!9FghDNwhQ*$;3i-oj@-70)}q#R~Q=j6K7GW>}W&3m=eqQr7}g zCPv&o@seEUf-d%YJRlbiL6>*XG$JFq z$4D&>P(Iyxiq4pnh88L)0!Y(L#eNuvf;+AiJ|~ck8l2)8)jjiTGqXJRauiBC8Gvlk z>mf>K&D99P2CF#eFhwV`^#xa?0K=$@1!#uQ*q#xlUABhlh@ldZ%$U@shm%aMZ4b_Q z#W$>6nzraA2!Q8#j}zw3*0}~~s&fYeB3av2t#iKCC*b&8B^lhXVQ9brn<Aqw9GXPTBMUta!Y`TaWZbN%BqPLyZe@Kw&l+?TPR+wGfWNRXcy`csSJXwAy|Eza-XicrMlvmRwj_YB5|`A{*}9($^o zb^OPQUE1}zvb7ne;JYr8+I)A6Ssk~JCH^}HZ(XJCYti#D{qL&Uv&Xxha!;GtCp}u3 zx;T)j3oHGljeW#$-Wvst&$k_fE!H>qh$n@0yDKMIr8_0hSqW~~ZowO0qK`Cy-rV|Z zi7X0yXPZ`L+nq^g)}(uTDvyy;?N0JFOd>0Qax)Kk4k$GNFh*^QyAsXtZ6N;U#i=*M(?Fc( z|A~|HzkmCCaVM?dUhPqS`QCR=4iq>b!|hy7QE>nJ^u53H-E?R7``+;I+i%7B6tA=N zk`4*?Rrmhz1YPJqr01{SZtgDqEVdWIYBx##<=c0QHmyFs9HqUx650iY+fjWbv z3_u6D#dind&IbGd0v4-cJ=!CqooCH55%dJwrj<4F5HRm0mb-l$gSXV`GCo1Z92Vir zRrl0Wb(agSJ;rxi4D#JIMv>Q)9s|U^&w8z0HRa2^Jnv7$qXUH7&wB84pMMSTG`!GV z|9y=8^z)MsG5Tj;HV zPr}pV*Ro6O-+2X>2T7B>JA2#T09?z*7NRH3(rTX`LF4jdHme0;N(;E?)eky{cgNCN zck3fdd(U8ekSwjW_6SRB)$v$br&ODv&S46IKQN=;BvqAMJ;}3AO59Or%M7INAYQEI z$gI@6R=l3R;AA8p!?ALR3xVXLtvnRRp@f_dQUMAO4soe!j-dDLYQdp{3rRaxWV&u4 zvXGSHE4~pIAT|wT#Kr)QxC5gGS>a)JpKTvQCI%Xdd*1{xQyD?~U?fj<)&)NaRim(r zhRktS7sByP0dQKP-?*V~Vz4=x{V-PWk<#GJ01Ix|*xIV-%E#?HI=+U*Kua8+ThfS$ z`x%p^32cI+*z5l=&7beK>BkO$nss_VhJC=7s{|aCEiu|%T*l@+AMfJ(h2n#}ip`}* z2$fmIBUN_c*JO7Is@_%|II!TGk9a`4a3=>@Pv-F)-zyLw<}ubQkDX#&!#~7k*|ulc zJThL~ylsxK?Zb)Z7XYcxunhT?Rm#sHe5$)$-ikBk4RCocR<#rKZC(3aQGmzW{A&W_ zgQWx=?sU6WkRo_DyK~UeMx5skN)|yiiZ8(mTl0B5KKBjBhk1Ie#m5ehRmnd)PI2Jq zi0ibRU+d(MaQeN^lumN-mhKzHFM>u6^`gXy+Fy>!X_EI_QT$d=%Ut*43B6}9KFkAZ zu03`>%{u<^v`a&$vl7!St2PgluSWjk%=Ph5-9IEB=()0&A3a)jwZQ3eD|}Tlq3ohv zB$QojWi;e#XvAge_&Q)bS2kA{C+KftEbzY-{dWw^>V<>78$xpNNJ72>7(P(qaj}VP zT*L{+g-0r++2Daxz^VlWp*MLWpSK^4!_F*D4M=uX#-hve>55vV8%LXuJUx_XA)%}P6gX?4&Q?bw@?yY zjo!buc@YYn_+#otO=Z!xDo2MghmBY_gbld zA(EwGgHhlH-`;I9FT_VmFwh`RM z1`Ji)`&NlauR}5ne0n6j_Y1{`Nqvo_$4IbI#izqo;q}uy+$mw+wY*~@a8=Dq&G$xp2L#?^gAj^3+5XzP_29tqu)cS#&wLE&`?Ub^ zVUnVap?urI_7zeA*l0$c#HrQpglL0QEcubC|HO&~h2(K8-+m$PJ=l`?#tB(@XE3W2dk z1OrHpfJ)_qDd%9aE~685OSA|1?=B9SVTeX|J5)Ka@!@J32Y!GZe{RN0LEZGp(f9PG z&dW@qD~DOv5DB#8m=iFeGi@x@TPBSeMiAV&B&0Y`+~Qe%4OU7v^Jih*EEAk z$k7sFsHjB2G6p8ONoU1Mu=E&@6WQLSU|``b3iDkxTCymfco(9v*bi8T6d%Acove!3 zZeNU6x8y#LC;Jru;$#}~F)!m*aF9@(wVsAMIw4PNSdOk~Jbys>Rsu)TP{fGUD$gih zCA{5O8AypG@fGZhXEg7S=-qS=9}q%eObv8wA0QeDY+*XY4(0Pq(98g!BXX0r6S8pw zFerzLkt!`V{IO+~E%#UTY{mTuc7F{S^&L6nM{LVVK*p)YQaVAUaaQc%mhG`x?;up@ zL0V^XN>-W}Vljc_5JyG6_4#cZdC?XfBCp~wC4=WoBR9lFNKs_# zqr;sgy;mn^M@X$OVwV$;*O5u!=et*P8<*81qkpeJ{Q4Pvm_$4X36`3a?XMVxDat%< zdLO77K{m0)0pS%8uB{lbGdql~BiWEC)Ih{2>0+lhy}GKHVrr|iphh)1A$uMw)cCdL zK<1y%*bMZvDnDPvCgEQYl6niu#WGew)XtF$(riIz@LQ@VvH>ylQe1w5X(7{tT2OTX45b#5JU8;9$l7!V5q13L zIwlQyIwSpHg%%S$MG6dg>ofe|n-OfzZB@xf^Ih0lC{&d8x zTX#;%9G%w50X7A$0${8|J`1S2}Sv#-y&AneG4O2=kW*;e#Z>YTXgytI9pHYm`WWyH9Fhnf-|cAs4Bc z9s1;Efa$nDI@;onyZ~&}K=gSJ>2<20KT)+^tfJyh)P|9wT>hX!XdC z$M#-<_%IKyUU}^3>KgvxHOovt{b@EsOZY~-QSkmXn3th(Bx4cNrMbyA=TD4sWBUZk z)xhq+Q!uDdDI9@YL#D z$rUW(EdBdBt=(vlw`jfbMa?w+?&Ts?8#H%XFAvtt{iVgPE z;562bQ%~Mc|~!=U$;)K|r1M>OA2e}JRZ&aHESon3ak`-XQ47+$ei za<8`J1{d`Ty{$V>!`w7Vcbrj*Oz;|}` z&nd~>Yw_V)?xNr`Defe`NZ@#U5-*HTbW@>hxc|Swe(w%oMkldo6{B<68h#X-< znxjH!5O;v)xIJ3LZORwGUtL@w%dGI%q+^LddIxdxWe6nBU5r^D_#i%ys^u)v62yZ7 zk&?i(CltkQ+LNi6F~$jT5@ga-Ff9tgNlz{V?Wf5lL}qeeM9o_!pR?t9$rnG~W@NG# z8kp{MK#xD|5bSoIet?h_h)+}qeS*?RFg}8lTN%hKxFXmu!5FDfTxh)1;~c^89WmKZYeW-aSX@+Fj|hpsEy`7{`DOMN~prt-vg9#lL+Dmzqj-`2~O=(D*@Qzl(}#{faTOo~Qxd0Ul?q zkQ?9P46ez#s!O=SrPaHnkoMpgzJMgS@&jYNYN?qK?^BY6Z))mu0N8?puL z%d8e96?Y4C_Gxcl@=*<*6u~PO^HeVm5Te4kt3_{TSRjxPE{A|xJ7A%8_!-z-zz0TY zNushEu1$DuK0y{CTc%GitwI0@d-VZ6;c%sK(Ton#Yj6y-3wXYXz6JX~#-cBv#A%C+ z_?UX)2C*BDl21|ql&T=le-{Ktis$5E3)6Dx{5 zjWUiUnjy8oR9TvJyPT@pM=_m_9YWPj-AyI`&t9UHUYL%vY^=BLt1a@d!)XpVP9-~g~T@QAZ4x-ISITth%P&~k+g-SALQ!BpGKBA<0*$vXGt0;@&I5d za;7!1$^#%oNS>y0bmKzM1EZXT24o39rj2q{uX2X&4i&xk#p)^l8{4DM=X`L|3Cf!`rq=rEp$vaFqh`NgwtA@A3P9_bZC-XI4_Ub{!NfJQT z8+%l9=;uvoL__SMVK&2VUw8&g_tsgylF~R*Jw-SXs?@P{>lyT zb|-|(*q%q)b-z%2nB>b?dW?b@ReU056`J9Yur!^Eol$g#H7b(6pt^#ENlf!>cOE!) zKjhd)jM&9YKer90WY2VK=BM2x^40IFTY>vsWmEM?{@0R1>Po8vMh#e5CYdjv(B&7$ZVD%<^|;(6qIchUEN*A?vi zyh7dNcBXJ>1_39?&3h)kx5sDLY8>mlNNWh=?vm%q+!}@&gf((6v)s4g!P`xgyhU@# zEyF_G`V?c~QpQ?|uKGS{)q#SDbon{nI;tD&jhBcpMzKzx{NhF*D$ z$E7FCUF;2`NwF!e4<1TRF6av#Kh)JV6gt9#ARWmU>eXroenc z)J0KJ=!4OC>rATKTlC%q3DYorq+s_6!v{&g^ui9Hu=0FAn5-jIcdAXjJJgOu(%T}=NjQ*4x$0E0ENCyqS+fqC30pdFxP$V1?Yg4$ zaNmRychfhUz1)7+6bx=}Dd6G<3yC*45YLUPPW78=osL#%=#{%gD2k5xQetxk=y|4b z;hN>@8hMMu#AP#;_jfSf+i&mE{3@XOK(A4Atn{+q0-UqTUb2SZ10)fhre)}+Hh|LYQQ`Qp1(Q=4!E(u> z(~OBqVlas70OH>XI4JlbA67`PV}i!lY{F~3Y0lS}-eZcE?PSXrGsc!xpY_I~E}ClA zn;iCLc`}c#6Xdh#%K|$}>{HTXzbn?b*XnIW0O)6h*uk0u2Z&cu4ye$ZmZEJ@!YGq` zJx%@QXqa5>I!4`GYs-*z?sA)`7nd~Vj`(sZ$4~JD9=eDX3$qsqlh@|srW`l~5Wq54 znI#XvT(?dI9H!2$a}(HUH(V2j#W-3wZ9;8t3fxRjp;AWq$~7mWJzUoS@L5u0&A2b}A=N~A3_1E+mMpZ4~8$H}qu`>okM zg&d@GZ?rrm{y+z*A+nUsmGnDtFa?mL5qrOkdm+jGqf5iRFf~WXIfzosW2kloIyCi`gor9W-9E)Ng z#KP`;$u;jp0Wt`U8rAG2)2jed2c01eFtoUUR$OBqVo3#HLFn5*AhfOL0>D7WOLKS{>Opd+!fF?!P-bJ3JnLJlGrWMIzQ>y~E>^ zcdy@UtoG{N_}$sz#%f20X|;k3oy|^cxhN-Y+~KrqI+_X-s5lRPhC-Ug0A# zxlLjc5XR9D zR~VssnKlW<_&KM@Z#q%$u=(|uEljhSOD>;l&Zeak)PKHri?wJ1VL6JUjtl>Q)YEgYv&=6WLbe!v(h+N=x&yCpyKxpi83RC&Pm z_p7b#er+4e`nu~4-!FQ}@e5{=&0~pcx&+()o+Un) zb{`n(+4_(2X@7s)UG{QP{=(z$87=(;yNG z!k{*bs$9<(aklgp2-UKjLf{IbOp+W8l&ax}DTK0s8U7%6@aG{qRd#dCjx%0W&@YrY z`xq-V$+pf2gW(g=w=7#qzSdkkdwd6TsEDRyLUQLkTKVX_{WZYwVUo3SgWI;Q;FGk{ zci8Sm(9HN)92Wi#V`O1oQkjdZg?%~!xZSeAjcvDDj2y-bBNBTk0In4ilA3=RZ%q>( zkEG>(q4*$)i@Ed&c`>Va1ja7Bq045AsP0aEG=CuOKt0?Bwnd;H$09_Tu#0PxrtS0l z8NnkA0|!SPpMg0bjxH8o^-4_8Jz0RTb+#_h&RUFY7{_fP;Np(DIdrur_>LwakkUX* zKW8L&A<^M-B|cAk{~_?9C(ydCJIxzHN?d;?Fe+FAc8tm)#(J65+m1H`)GAVGO@)yG zltCIq#85(IBeBIc!9qkI%6AXAhi5(cS0v3k zRsVo78J_j%UqMYiUu_pm4mON!*7y~oUJFTUT18Rb&FhfpXsea+R~l%qdm^~&J4v?B z;6{m`LbOoDdN1t^AeRfE8`{uYfSA+AcN5`5mXGsoW3^l}n8*F*WO+=!@*7XS^2M{V zZ-B>RLXUVtk9pdR-oKVNDHKO;)vkFz{*`lc+{v@sWcDB5-S-T}hxza}*B*O$n|1uB zw_SSuw|7{wcMs}Q0oQp|u2-!ZQ~}%9P-*j1yHnEhuaHT%Jg~3WMjp-MgAaNNkKO$_ zkM+NRXwu%NM=E*mfP9#A(q4UxQrfkATIrTcYWV}r(XdgWWS@qmAxf5R7D|@Zc|(ON zKYg0DWcX?7L9g-=`|dlW@1ase9Ig`YcDT+|CR_sul(7u8N9X0|$Rr?_{pT%SGhdz# zw@%0OebTGOJC)Z>Pg)($z|ZYchw)+~@XgfL+A5N>W$|R1#CZ)vqib1-lKqz%selns zywWcO1XN%KGcjk&b0Lrf^p0*keaav2yL$%XL%r?v+T(Yft`oZH%u;#J>7rUk_4Kks zSZXgf7!R6s@>y56C4{`u>H$#l?BYdPLNuOuUK}8cRRVf<^)3J!mIx{bZl2;_8VIFr zNiODxB0{iv7c{MA-%}K_nq;CDaEDkxM3;7WM|QMDHv}X=5*WRtP4Ji(wf@WomlmL( z2P3sAktrvJ6r(G^Df{=_O<^hj#oXl(a0q?Y>!pB&=tJfKZ7Olmp!Clkz}+Abw;CpCT-mc)(QqcKLB<9t1_iEFoTG; zUShQyVcNUMtQx-m-1QdkK2=raZ}W3FT*LRlS0U?AD4y!ItJ_ZYUC5 z2%g3k#i1Rcvc=Z52!BbZqwSw+51pFk%oreMjc6G;DpmS5NrxV2H>w!$-Yju5Bi4GEKJ<%bd` zL74r?1TB`fH2yP#2$)89Dr%e9J3-TuM$4-SQYzv=x3pe2$+W&500R7D7caQPTK;v` zh;4kc;Jdm2mXE~$tAOHzCH%|HM1R>v@RuI3-xH)an>6bxeNN(TMJ0y~hH)>xX$;k$ z$`5a*P*xtmA<{~nZzisHa^|eTA5YzV!|`FBJ8SW=lV?@(&z@5(Pv0R%2dRU{YGb0m zJMbDydgpmbu|UODNj~gwU7|9)|AYAUd^dE+yBzSqjXw9XZ)~ydBYJy2B)la-qn1hu=D0M52g3`0wko!5G~F6xjRkL`!W47YpIFF$wo%(?Y&LfT{@Y>bY{;R0m?|vSVDW`& z;j(yAr1Jy=D6&>iX5aq3O1cfu!j{3O=H1hM3oRds|Gfk9f!+Yt>Z8|yRV#28IOSjI zg@7avq7Nt`V4i(Sdp{sg3WX_0aQgf6K~K;uOy2}^`T?RSwF&tC6B^%8z;`>*o$i9z zn5%oFH1`X|2T5kkrAKItS;ZqTcA;s2+53TF9mgYLj404w;12fi4Kc|zm zVlKUDnKVwDp9HB~=m~5uqeaYBUlo&WZPAUuCuyT1od{Y4CU)Bf!VrC-Es#l-w#cx! z$x8!&Auv2Q4M6Gb7M=nk}g9CgXxbhhJ!rT$}XQ~7FuX5 zY=kuSF{c1HG_TOC#{68AN9A;#yY@181665tTISg#9;4yRj|+m4u2oPU3@u}tt@0j{ z_6U(mzycI38xk@F2Q?EZq1?!Fj3*@>b#i0h2_1JrN`QpF`u#t?i#{;^*rH%xQBL0x-u%mn~D5 zRQE0*q|+AOgXGND;Wk}2rAz>7pXRUF@9$=UsEFl(_J+W@*5n=-vvJ z)ulXyKwqVsp2}K@9xFNrBKswvDQ{v~ugg5A)NWhuVEdp-3iNz3TP?GV@zFBFC~#LB`?T+wt)9?P1JZq{VXjF+|jF zC`42{Hh(eK-3JvcYHvEVi6cQn@DE8nkn2Aqw>lPW z=fps5y&M~m%FUwK1jkVxFUeWFzAs{G3+h6FTh{pTN98q$~Bj zK?a{0NVKP4Ce37lF~E`664mV#4^^t>DYl8sawnFzwW5mRDqFJmWC5Awsc%#}Cezdf zC(XY5k#AqP2~QbtEj&#doq&<`JOM*I{as_$bO_Fjdo5_>Z_rg722Vv-H`*r6VB^gC zCaWEC%Z~$#{59KsbHm87Ju(=Sl%D#Xy+H$Ff{2GGRd@_Tct-*?Q!wx-P`hU^e*FS9 zn8aU*IMF%%YiDLBER8b(7n8=Bb$n@@UFth{kMgpEE7dMNq@h(hHM26PY_;%(=HZBQp~R+5Aj_+xG7S(vi9?8%e`0ha z^+dwMDAzX0w@}m(5LslHMrnhhQhe}q-fio)0@}NixEDpDxtWjT@Sef=FbSf$_83Vt z>-a>`E;SX2t3(GBMKORll^Hzj)B`K1`Xe(wDcw=t9_WfvTmdR(cwm zv*ObTdJi2!_}+2~2fB4v*Lux>Y-Bc~YQp`|sFx?jd<_y17440bXE2p|k)~T4mVKf7 z-+<^Nb-79nB9;$$}4(lnnfLd4A1%R*WD(K&JL zYU>4B%7GBUvF0dqc-U-}z(V2xA3p*hj>xV=miu1Yd7vKRV$1918jU%Kgj0~lM>Dfy zoP#|j*wn0>5|%bWi#$Ov$>8gfpBL0oxfsh>MYJH5g-5b9xl3hMh?5_rp z513$=o#=JBfn1k1wGL3h1Mv`!y=uKD@7-zYLUVaMKwk$mAMPn~K+txSoT}mT@^AsVMTqc8myh z(oqVfv>5EEFq02zM<7GhqVn7Af`%kZu`V1;uyT`B1#vS#AeAhbB9CDpW1kyk-6Efe zil<;wQp~s9oY+KN=|ksfj6^rvPvbJVGGQ|V7akKi2(L}6{!SCZey+`@FUl(W8N!I< zB>j<@@TQV;5237*S3;ABgE6AlS$WB*)y2h_BtO$kkVha%IYw;kXGH-K0ugBSF8VBO z2O#v3+)6Mls53<$0eMp~{TT?x^a8sZK{qiBG|y)RDm?wrUs6qr!f>;I?l-^oG019`?#*UG^N_O$tFF zlejC_`zPPZFo5LV&b$XNL`GuMKKGINvM(=AM4`hA10MqH#vM!U9;FUn1r#5yw4sBP zp;fxDNmTa+mET{Bu+E#!Yk#Zgv|BHJ2}!7F7X$)s*^# zjnu9)fq3K&70(V!&tijKLuDL(BcYViX4qk=0|>u%i4shMpLZ?$ZsVzBN=pMVPBfaj zF|OD&ZaQG{P&d>`%nA`?jQIGN249$>dbc;1{W>v+G@)m{PUPBd3c}F)#2UZa`b}a^ z%?tzQ?Sy9MC_5i?=D8fn^Fz~)ei7TTFRzojH6G$$U(Wg{k^Cwpk~Up=y!pQh zU_RX2--bXN2N2SJxm7bf#0e@!(!btckDmYnZAJH`*JW0$ z#Hqrp50r;%krf!0TAa=03gaRJJit|2ZFzzfWGp<>ky6yS5~M&TqZ8nJ3OqAT1i0g* zssrP$izdr8=tTk0fC(gz<1`6S&4vR8++UP=n>}k=iU#?>omxJ#jvcASXu!rNfQ~*s zpNOyV^Yb;OiMi=(7$3nVHd8EfvGE6DIukMj-VxYvnN-sqahi9|lgTIbqky#7?Kmr+ zN?Lpk)15(zL$W_cj8213C-wQTm_`qsH(D(&4!mP-G~@_+iR8|K4mOa2aO#>Mxp_=O zqo?_phNd;iA|GWjMs>xMR$8+%D-@o?L(eu7Q7MB+x0vRsihQs_G>+4|OAL9?6%1cI zb4mA%0&lYUB8Ny4lAnaD7x-nOa5(WGCJ=p#8WR31XDSeNF(DDW8u|j%z;4i+=o*y= zbj?WmKY%+<|4_Hck>GH}`)y?YZiT(Nz$lxsad8rn(Onx{ti?=8pi?hEZTapKr?Awd zgs6wq<5OiT-CRKM3e)M>p&=cOb~lwQ21#MnFFR;sYN(?*)JXsf6ohft`qt*~BgEPx z^-T@?Vk4t-=Xo!j_w1w0=iUMNKxIDG>Z39rt5!hfw5*_!#vV@<+0c%WKB-_)f2;Idkn8Q?RUiy zr90(^j#^^`&uX)!Blun9p}(6`-#mJOd?iqPpy$5X=mla_37q^U5YTzdhjUyB9#z``?9umi}` z5`qdl88E)9^#iES>a2jMSmE9gfa&K12-=``BIxAlqAbLpR<)Y+o?@rKs36Jn@{&w| zFyt`xPX_#4uW_Q%r)X&fI^%j$K^V1VIc4=JbOG8G(epejYR?MjsvctharLKT6~(zk z!3JrG+Qd>S5(oBb^XwC*8x@#_4yRzvL{cs=4uge?!idKPXO$=9+)+uD;DzsUF|MccnYk0QN_AqU(S z-0j8uX>YGbF*Rzb3PQn7VdjV8Uql3hZ)f2DwwayLagf?!a~;R6YxANzTQ63UMn~ z)dz5~=pU2<_nCwP-UQIy071T2&BZYhH$#-v$_!Hek)#rR6alwhsPFQu$y!Qwfk)}r zU-T;nonn6d1?Y{;0p-vg?SGDs05qDt$ZAZOrk!p9ZHcv2cDGEGun9EJ%Y@xL93)}- z=6J^C0W)a9@RxahmO_JsOvp#>Cr8v zFHot}2j2V{-R`LA)_cFM@)r(9I`=x7{@tV-7hMRDA#|Y<`yQ6x>Kl~s{&=yjZJQqX!(;(Xz7$=<`ymUynVcQJmnN#pP-u8l6I3oynqLW3^+ZmFS5fS7NY)^N32Pa2| zpCL6NS}mFl@qIYGNQ#LBYAtxEBC8j!Nu!!JQYvFp+Z_XDGg!~XJJjfdYT#ZK-c0szfinCqjnxQvt>+8& z{YPgph!1bzdj$-VlU|cL>SNtaK@x(amU=)MDl!uIl4Qj??Tf8`VZr&9h9iE0H$9nw zI0vwb+%@F}YqTm9UhSc~Knr4Vv~lFh8*&{Jn-X5$sT!*99)&>+(b^;OvN90Yx+;N4 zO?wF{`AkH^z;qb%!E)E?$$y7-P-tdozp15f3yQ_g)84vZHDoB922gl0?=x!rgR1L$ zKfYT{DZlG&%w1Cgh&k1=QJS8}B%XMX)-@*ic!EMku`9L8+5iYbu1E`Ucc|yyb%Cc> z`wa>MY#6Q)CX%%y4$Xk3c@uiKu(|>Q_pmCnZeruB^%(l1x9U)_cr`ve6z!y`iRT?| zAv1%Gd^?$Lk}M9tie1qk1ooh_v0^Mb-rlrEu~Cwx4Ei~0XQ;Jg_+ne5X41Ats#18f zjAD<2I$*F$DG-mclbn}Tv%_*4>UL+6mv!oVLst{$8*Xh`5aRC;RiaP!bGicpt)xN( zB2yLxb4G$-YlQe7-`nucT*HI8FjuAA*GjxG!B<3(^*Z5zKLs?cR8O#j1;?%*X#EPy z_=#Gn>=MWbb1)x)XBs`nBr0|nfCic9?FG3_N_Z2JDkdr5)xj`RcB647QmxIB5RH=x zdTd2b(+OMkACUvK`D1HmLA3PX9_bA(ewbuZ1rFUXUa46WaOW2fNkNK7I6MgZXbNS4 zSSenzEZ{VtL9$H*g_L6MTCZz?kAS|{ZOkrJ*K2GYh?Y)*2PNETWQ%#Ej=RjYqiTkI zfLJYE$mQvSl;bFusn$h-f+u~ZYP$2nyfJP-$N2r$U8|Cq&&4%dXn7M0h*|0-krJBQ zTyM+e-{Bbm{29nm*ngcI{nx8`l}uA}?V%JH#v~lsjTUa(b3FyOuoOZ!?7Bq}UamHc zy`uoT4;T>1jKLtDmc!ghlVCf`LTze)N1`*miQ(5}C0GjaBnG^|eAg`5)Cx|{acjbi zs3Us*CLl$CGlVqFF`C!&>DLCmQgRRa<1c?5;QVNR$GQ=FKiVHVD%Aq_b({VtL|@$Y zzb!4=eE{&msm+WT;Xh&)&L3y~kfc{1Lbl2meGBTbNeV2Y`1ReOCkwu_3ce*c{9e9F>BT8_OaLy)ulKr5Gcw~q$9XA;AUA*i zp*dNu`m?O68y5c7;&BG<4fN!UFc5nU1fy#(Ufom+9)PS)%@>``tqA4W ztg93kjQFA15!S+r8{nIUI1CitNPQYU6)gUXw0{GBR}DX&_$&4MeoYi+aLqx@BiIv5mpC4q=Y-y!G>O6kOgscNdY6)hV^%^4K+cl_T)21&(H(P zUY_@H{5GUffkbd}4hc6P_LskIf)lbe*E}zG4IyOU0`L(~sBZ~IM(a+ny5B?h3Di$F zI&vY6R@1%n71GT(e;vpm}EgsLZnrTH;F8m>q!UH&wtbUyCPyg-tP8FM#*zG|vlM<6 zpYuzz&yl=niuC0EjKYZNF3cX^hSN|rmRU@9pZ3NE%MA#M*PIlj_9kfsQAlVG152G1 zke*OH!S$r6pLvYC!kefb$bgwqFyr>%Jx$<|b>x9=feb4h*=NDf?e#$H=I%acHUgrdyU| zHEL*|DoFeZ69!r8(gyo`RFZGvXT3^DcZBXmge?%0832T2Ky5$j`YX5#sTRwrf&jsm z3dp)8?Obb13u=f;eU0)1162lkYFffN(4*>)*9VRa-kUUJOak&U}GGwF%-;F_qU?)(SXwVKS%REL(lIsNt zWx*pLZIFAPW;2xDG-OcZs?P^>K+wuZvh?U=M_0gF>iQggCn+EC&i?fm@L8K8|56sL zvV&OWU_Q7mkbfAU@QS<$2+CQLE>XU?t^%4xXEf2Wlf3=cUjhR6Uw`Q=aW|zqaYF}# zV$+n-=>hkA4%&~T0sgH!(FT{!VId$&E<~FMcf=?H`A}^RQJZRMXF#kPw}NOf&|M|k z36SN42A|q;6K<02b&%WzR@7N?XZWK;b;)LcBUvM?MzyRxiNz!0#YoI*Vt4<*vO!7C26Ej#-v;&ouvcVq_%i_|v?l6cP` zIBFN^V2w1ZaGsKN(3IqcHn0;xOseiCu)h)cvTX~bbShEfmVu;To6UmoQZ!$hUNZu| z8MnPB^H~7L00}L`)m7u^R&&8iS)Lv>ReCmfRx$)hG-i{A%3B^9-{AbNESL~pj;=0# zT{w14*x0pb3VR>OL+2hice@##`5x8ZZV9*BP1U!NRkoaB({5`sa^K75(}MlYZ!y~X z7t{#hG#+(A4p<&_LXSG3yVVJ8ckbG?LRpB0MX#YRq&OmCe`ks#@{3{_h(-nn^pEPL zuXG>3!1mpP63W@Q$G7=!e0rOgU!H zE}@Fhp^!5!({KItpF016ygpdNqwK$R_$SVwinp7Y5jQ!9fWSod@g|TdM^-7twxP(u z=qhNoI~SJ(hH8=lA_tgh5o4TTOpVHnRnF)m9qU^=>Y1S`%xJ_jX&fvGVOG=_!`vsB zk}i&We}WZ1@8)9rfwJ@&=J7Ji_H>}+k7yo(cX2%^xzKjlIu%HP%szA>?hm1;% zh1OznmlS#q74h8Wx{+(>PcuA4d>MvzFg#t7iLycBn+RhQXK4(4?-YxKNo{*Ll7Ger z**<)RaYDbTqpoc_*4lZ%S=Q*91r`7BO0L&I`=ouz#56)4^tTd|#NJR06u@>&VfwBTx&t}?l0i<4#dnEw z!bjrK#6$1$k^KYdq{lNJiD=UJua74Of%5ZQ)*ia~J&mLGmHq^kb7Z z4c+#h4W7R7t)fmr<1#@OCJEU`u>KYBik=z+sZD1%sE zG~i1pgAv-zKreG((=hccU=*8{m%~-iMHUS#C#r2=riM4$d4CTasQ%ylNGTY5T z{sWS!6iU}%x~rl*^u_SIzy8vj;S|27n;I4j!_!CUrUZ%>Olc=a5I@M;tEtMoH%%|H z31`U>c(M|+p%5F{&k%M*;MirF=NN=ASLtSyfs@v~2K9SrQGE)kY)LuR7zXjZb8Ed~oDZ?VP_#2xjXdi~$jC~>OtD`2$F2__ix!5YB{ z%;s*b?k}{ly3{89=J)6Zoux26F*)A$4be4|;v&)6xOMz?ZY-SuPnawCo6BT#>#+z&gryR{XgK%Yqoq>U9e8ea%1=-v{%COZEfZWM|)y`5&8N$q2 zY9Kh7nBprj3j@mibKX7kXtYOYZ`q@EByelTkixHLW@a{^i${WhOLw}MBK_I>fuQtU z=k=o4u=0&c$tF+|2m`}YyuYg*D8as`qRKjFq0~MQ61cPc?m%Z%S3V2;T9LTLcC*Ha zc$uV)@d;;&xiLWPYg|j9sZZcWX&g*AzvAVr)^{IJiMIc~pC`*zI>pv&09VJx&OSb`6_Axn=I6MX}BOzZ(Yme*$$N%ZuUWCHfkB`H6LT4T0oJIP)z& zyJ|wQg>Lr>P%R|uZ*(E)vk{Y-V;P&_uu#rbr{uN=agQx=gd0#mBb%i2>IqxTtwqb(-XpV9n90j}X>h zB*xy7u6yfZQ?DLM`8@`a%dcke^_+JoTyLLCEpL%PJ%xm!p&VI)fm>>`ZMlL#*-4e1 zE58e)#d+FXrm0L3WFaM*-luy7XJ?Nn1q7I~3?0U3>k7PmzO%ZfORh z(%9V?17b%6#kv|xvse{Cyp|qX@RCQ6$oXS>bzUYF$t_jvc!`Muh1NAj;DihaPK@JE z-1Pfinh3_91XUV`Rk#(iv5CjnGs?-)dbAI$Zn-?qibNA&69wig2m!_lC;dXN>}355i6}1*(|UP;us$B##3@HF~hxT z9!o%{x)aCzK9UttS z9YpDeg}DKmVU>4fnyf}l8Uh_XMCe(}uUHf2%{#<|I9d)_WMq@a-wCJ_Iz6C;+?Riz zNaH|u%xU=NzOFm;zB!GY%fq^1$ax6oh`bT>u@(nWev~XxZPxoF|9aNb^+dO)oFay` z6so}nxrq&=Fp3!!3>*tC42|WlGe48HQu+sbY%NZW%}H8f+2w%-Hln=Eich2FDo@?J zpkAb~#Qo6-i%0NN?chJ{EW)U!^(e z)kN!;CG#2T$pgH?hpd>Emj=^}={)N7WPz3yIQCnf<$xm}XJCDMktM39r)nL#OZ^R$ zB9u@ock?gFp5wx+#5S3bYs=a12A5l9;(?|_HR>^mNkb`$8jA8{Y#r9%00i7B(xO1W zI^7zvm@z!)3C(4jI4%kXv^4R&6}a$CtrJW4RX!_mGot~;&i}T<@m-!^x?bPCb)VEs z7_LmLsYouedD1A03CyDf`JAOBlQ7gAb6%jKi!tP`z4k>?FFFN#i7jwZvQG;<<;93* zY$UZ&({z@Ab{FfY8~~GrpqaO}YHK3SB1^D$yWt{lbDsY6ItSeePI240k!POKkS8LD zkUfc}B>eC1-UxnlxMTKJSa_rUA%fCv?T^_PJHm-CH`^bWqJfn+o}!20E3`ek!Sv`b z-qr-|-hQX=-$|L@Xqp@yz^A1z?ueGk0bN4+!X>12npBfGDLv-#>J3LQ5f}5k=&!4M zbLbApcdhals!Z7KDT7*`y=Hpdaw2XmlNz zrBP~4)cWqu^<`e3zg%beREfxw71(E*>AuNavwji8C-HWHKKiW3hIyM6p)9ZtW7yzI zjB;l!R*AcsSHpu74MV*TO6L^cnZ>Z&2Fhs%dRc`p}+c(t`}Lesu5VJQP#S?t#HPex<5+m8a8jBU$t#jZQGZL2X~@X zV9OeQ;h8-b|Kl^x{56=TzlezespSbqyWO_^KkZ4q7UxG}Q&2IGOsA)qBodYeK(*QB~KUd~E6B(5gZ6clOGJN&%L z#r;o$`J-%7m3282pQm$~qtHm1jDkkCf-NT#$W*%~KBI&O`J5(FKP6E}t;}7lY(Fw{ znwt0sq6-gO@#yB_diM)s_Um{uKOr80_9b6|2lRVa9jI=Yf$x5RSvq z_}$sz$5(InUVnUf_>Nk;gG8O92ol^_fUXp>|d zs+B$QCcFYO6#w!v$M$Y3oJfWW_dS$jN42iv$gS%Ze%2Z%j1y)J7b)yAm*GRxts^vQ zW#d)XuU0%X#Z8_;_${J^Zvwh8bQ!B7Sj`? zo>8^Gs*2o6sB&3Mua#@fpZ2}np}`7)($7XNNS^Q-+f?YwKMYj43$h?#f?6bZKt5k-!Bf+ zwjO_5UX))MY#*FoWoWg*JHW5zTm+#C?rnh9(?6zH=uGXC)~HodeI*vNY%yCp8ht!E zJQ(hQEy>~8*~k62!^7j4&52w2;N)npg zXLNY>ez@PY>vzXL9-n+TZejT>pa=KXs^M&FpzIOq0jNhX{V1*Lq?50%U>O@Wi+p$X z))4##?#m_h%3c)g#1h?ja}KThZ&r+;fn6oG>SJ^u?XYNgS08A95Q=JT*y4m2WOU!U z9;04lIaZC>YDTQ{>A)Ux$O@Oz1vgP#U?Ze!FeuO40d%Ofp=)tibO|3{1W+e3#TXdsRshs`>E7IT0~NCx z^d_VAYK0+m{6+)Ru)T0jxX*rC-9QNHS1F3u>n*xek3MI6Sbtkq2jy|upg)r`nJi{m zwH#$)H&}Lz#iAP(_@pmzzXr=jud1q24|SMCcWFGthxGh|c?6$ot=NZgu4VzXUmFqeUOUX$qj;(@%?0{e67E*4U z%MuP$lj0b4XppQvt+HiOMeWc%9Zk5L{N4gOQ*p>@RMT8XoZe)4R89|NF+q30u^yhY z2EhC54ixsu0^eQ_eCS34Xdl{R#x?A}*fk%m#U9Pqos!%kkj;GkNr8~BUj$G8&ZppUch{=kx$RnWXD z*Q;o$xQnLG%n^PRADlV?tN5n;kI~6-6w>yDLjbpH*l>5t99%Irz!gaoC^%f88?yRT zIUb|kIfvFLNThFWhYaGAXP+Q`!ZNKAis-Whjr(d*7LZw$WBI_pL<9wyN&rGndqeT$ zsOwZvT1*^{k$xa8cX>|Hu+{hw7h5!%UIOIET>=cxX)+jSC5j1k%d4g=Oh6d2UZeR& z8E+~m3i!^X+yJ&lfN+`B=?~5psl-BJ3X1X7sUjTz`%n$l{9T<^Sha5?(0jqn={y?E z+$m9o=Uv6S0ZeKYJ$m2^_3#@LB5feAotiZoa88u&)T z=x1)eQB_xZ*hN@L@5ju2#*K z@nG?^)*U99b^_s zk`7|@y_Y9vcg2pz}ij`68X0je$+9123#5b%ZGf#fdB z>0013h1R6>Ym7SDt&YUEA*|d=y`oUkARJ+=9qY~2BZOTbIx1LN)hjLZBiz)aADc8X zwhY{T=RlYZvbh1a1JtKiJ9vy2k8P^A{-e+_=HAgSIWUuNilfb?J4sdF6{c6NtRh zBMmfO-Nw}{*uURF?hxyHD&G7pycQ|7~?XSkRj+f-|*g3?(( zmCsFHv{nK}lsCnkYS7DT|s5=%JUo37DlA!Z2gSd!S5BFrJM zr>{fU;A@E7K{sM0BMJivHu^Kn_0X@~FHu%Ob03jSY}>i;cGW@d9RtibsG6t6+*K7L zJjW=w=@RjR9IIi3^|HUje}W#>(-e~UY_69HOzUHkd&9LRV8ZqntIl8B1v9Yr7#MX3 z8xxH5H2}u{gun+->b`;0!zWNpy>Lb{!IDIZUsUkl6t`DGfr-jq zQ?1kBn@O#_%ae)H%-1pV3!IaUZ!-Iq^IB1(8vL8R2hrqCp_mVX;Z^LJ!7<)!#BRYR zfIqzBvAexVJWSunMQ@(gZ}UNNUyyv5uMxG*7{yi#p$R9BcmOzTxKvwRIL*n;XSJz3N7c@PP z*%m$4kofzjQVGceG1t!-iIN8Fapa}ybHI*$Sl&(p$-24IZR;fhPpsgmjw z4+!R!#!rpO({)HRC}5>`#kmONb8&OVYQ23o>jL)qdOc{f$5f}LK1=O{)cVQZ1z_SD zFbk|hvuih!qQ^85?Ztki=_jx{JOf_Bw%$s?9g|JBPEwI*WD-kyhT ziJLb5WRUMN9N>#^fRJvNxP8nw-aF=22HO7y@9r-Qz=wHdk2tb!_==-a|FSl}yUq^I zN!Af}0yh~QOXnsNSk{1bmwb>>Ej0KtFE0Y;hMNDBRxUMJg{pgrWm8Xe5mC2YRZ58h1~VwHbXNLDt_7naUuNxk*G?r$0^)Rv6ef{-~~nV>3l&&BgaqO z_m_mMdkf%zCgwYEjNL277TivkVuDzu&waX0t@9*q)gsj>X_(!DbvA4ewyB*e_)$85 zi<gg{MWW{L z?$NYv5$Ai&y%>eDsziB1hskXby>^g79B7Z*ZpL|mIktf$G)Oy`LM^&l=Dm2PC+-;I zwRNs-L1m^|y?i!4TS?;_ywT|PwYSXCOYo^b3S zuzZIIi5)%7+bY@7q~m~WHKa4D#Ha-qwy(B>kVtxIyKss*o`**0u#A9csMX&o*xr;6 z`F+dNi$BdEjc7lOc6jJLRN9B}X>WX4%E*pV;fm*9rh;Bn~{8Ss0fT8UkHIAImhH+v0wb+F--!R3k z`0h}PYcbz$M?nreJetFe(ep{%Q)o)W_EHwl172i{WGY3C;sBDa3!{qy{!ER`6VwDa zv-Nz@g9{#QM_5lsrJ$VS6!Pd;CoX^H^3XMym1ahF(vGCoiIS0j+;HJ{;PE12tc{4- zfy;Bn!P~HUx~nQkaViVuM-1p;UH}mT<_;P-2SnE1mya>Z3zI zMx6Lz-1`$;2+xCfAAt>SGkccu@DZp`j+1dKr1J#qvvAbmfkJlBu#@HD6FlK`;v>UA z7li%}`y3gP(pfo6h>eNp4e12xC(;6rn?OK=@PxL=mt|sDg7Lm^Y?Z9onq6!fG)F!) znSa+krt!RWz7zyUaJiqaBmkw{jKkx!O_Xd0-F2U*xCS|)Ai}(xU8%m*gC5flyCsV|pNlqS60pSvRIDs=TG~ zoY96o?VWHIb=(QEK7#BB;EoQ5LjI`Wj230n`x^vt$Jgx?VooIm3BhTjuCR@s^STD1 ziAZi0DgQN~-y91te`!E0s2zMacr-}rJaSY`Al;7@jy~>FN=tKma%^? zQ%t=&&FU3c16rp_UHuGOKldQo@ofFT_h?T0TQrRRX8YgTi~h?4@Bu#I)gt3}tmf8j zc9_}h@0}o4!C+&_IovAZk{TWzl3Kv<@nN^@l{h8Y1k$YZR{0vzp=t-MQ~XdrU1m#k zoQGqla%B+XW_x+LR}{BvXRX!jzNtAf8iFszUh5j2cuiV^mDwX(uE_ATrn##LM22M1 zH}&+4du(TLjU}-ZU+{7{OHa`L7CAmJVOlN|!Fr2rz+C}MjB#`8*)02<*4A48X`xe4ZF0xTmeUx~47QhpQ4bqkhB0ho9l_(<-O9+X7{Y7GNEv?fiZ+0pX79}Lw z(J+%(O7FrrGDnb=0uVbwkdUWV&{aw;(&TwSuR0w+0@tFEi<%p9O*$6LS#l&SSDF{Szgx?fpuGg0_X$0p5@n?6R_VxvqLl6h*zBRMl zL~t^n2EFNd&VOMa>lObYURz!a5gp`qLuxn*CK}U3QLNBNTnH+xTeHetFXtSGJ&k)h zU|7>=vAEfmEn~~_*yuM&M+X^oV=bX9n#RtIz-onGjl{9ILGC&kD>eqd&yjXlp1=B0 zIR%5z3e{!cf^OIVctO9#BUhv4V>I4tM&osz=UnoqARMB7s<4x6`Gwg+N|cQ*Jcf$| zG)8VPQVUdes?H@Mjo~2*g!Dj)h=`#S<4n`M*B9@+-QGfA7-a0`jMSn8ggdscqNw=C z-e1K3|7v*kvy>X%wOPGn8Y@`8HN_h~IVUNfL2>EM6;BHYQq0M+!N+@&)N(mXZU9(7 zr@t*JcU|TeDH$6e_p&U-dIbRRwg#COJgO_Wk0GuCQg{gs>PJVub-SLSu7o50k!-I7 zJ`EV^8ig%+I!`8o5~mAsrI!^=LxDxlp9M8?<#ZFMWxJP$RjXAIk~B@V&sG6JngJC| zODxyAD!qJ90VsmSVjUN4<$O{|gQm4&NNUVQ+?d)J17X2222xbhv$~dRvOY>UcpnLR z8`C!K9UKhD!;@%EnUjOztKt4$OO><3qm%c0Mm9p1a+m-M5f8K6W}N(zJDs;nb}&39 z8b@3KIk^PE2uYt=>qm0sWinNKn;;auMqC6>dqd=oMK{^JV9$mgC$mR-BxALen7Lgp zRdR(hN?XBn<5IMSx1&66Vw69~n%0?*95_Xgytm;9-Q7!BPC`@sMNy)8H56VlpmH_uiUs5^m+a~#xo?+YCJgxKzoHQbYK+dm)7RV}wF#@BJ zuCvcyc0^eUhfQ8qXYA#CNbCwYCHqR zQWtV>;s?kc(h5{0R)?l~UiJrTZ|N$_F~*4M29_C9ZRb;qGyD4XO%B&-?{4R8bJcB5 zH|_{3_~o6G%x0KyVZiuQqYop%Mx@y{OK@^ghM zLRRBei~`179q8&Zy5B%@s#c^g0cSa80}WMl69}ztPi(QVx@c>JzhD^wKjj-VxIpWM zq`M?6skExJ+_F?5$a2dfeUDDcJm;8n;O`{Br3@mJUNAPL~9g%ETs1M3JvQat_8+qV*@0-y3@}+Vos#w+qrkGS#%IG3;a1& z(qo97k50+Qwip>#?s&DTR>z}$5xIBlapA2-H3m@9{F39wkLGSI;H!E=f3tb-?(Z z6jsp?zYU2njbd*!tnpky?2SOtw8A@32GLZz;0)oxCcKUyoWfNdn8hlYS(zx%nl!r- z=U==M8+F^7p=E~ZO+;!%6w*-?wv0@48puR32hA=S=hSI_L1sM@alj#yMz1cHDcPrF z0RvB^fzoODMz69w9VHh)X@W@{2fEeXx+zH&W@G_0%3r3*#QLyb7M$Jh4d)WF3n65} zJMn6+t2Fa-Nnzfk^B8TK{mh zEy?F`xt=U!%EL%fg{hJI<;eKuR;&ebXR9?iB)!kl%lfe03kzCwnL#bHueEo#N-J@+ zYcj1r)j!;7ojOAS&Lkxp#%H~e`P11RL84v@+PF&S72oF{QXOD~WeDbnvTVT(_aMxc z0T=eZdblfGRUM7&Dg$ydZEJC8RH*BB;;7JpjQd3Pfi z{7cXUsZ6w|YEG^!eL=WWb$P1ph&4C`L=f*0K85{yB3K1O*=T`ZFeACiLKzvri)(af z>PLgK#=G5*9sr+xq8;vJc;H>*tJS{XU0W1hqDFh^`?RV(J1%{#hzrbk5m9AaBq(4pJ4fgI6837TMDht!(fw)llRo)?@`ZZD)x9Is{K4R95H3?U?qOt zxW&xCd671xy;RVi$k;7xEzRSMDt}8Z5=OKB=7Sqy8f*GYnX$zmn(Zg9ALU&c3(#e! zs5)Xbw~=lR#Oh$`FU9C+*_aiJw92d(L4&d$DkdxbrlJ&ib+*jJrI25JkE)dPa{{XB zf$T)aMX5oK&7s!Wn-49rNk<1!o^`xStb6Ip3rwF&-@HE{PXc+(H}sDRUk#R((&zwG zOTBkzZzCcdD1LV~>||sp#bA-Hu-K6gp3HvOm!I36ZphaS`-t?9HLy3q>&s3ziubE^ z3UaT45k}{Hg~#4ZycN=o($);#6V%G#MB4nl+Li(pHmxKaui6ORf|3(s?>cEZ4AFEK zoj_+eCvp;k&R6BC0;6N4V3r|@P%0T2HF&o~R?)FPvS~G+MDTSB(Y_%FmgniIK6oIg z#{>yn6qA~km*S-(jewqMbD$1GQ(h7&`Hm?Au#%O0QbyYCJVa~P+6JZfKYFL?Q>Wgg zUZfr8JbgwO@4)+;nX=#pQg#Gv`@>j~QKUV6!JzYr8}GLHYl4mT>Plf(Z#e5s({zPe z0YOU!?6$W8^U}JMcB~px*s5KOoOmdKE;ulqK6I%a3U)W>43ge?)-03ylk`fLH_oc8 zGbskpSv?XRZqXnYZP2%;mdd9!;i;a4pal2k{?TY`v-gDy%Fp6 zT5fc#_i=Q%4+eFeJ1>`b5w`Vva&&ZfJnq_~q@AzCvt(1(2PgaQu1|@>B$JK96#=#9FO;g$A3w|oXBSwm2s|9Y$qv(G@lTI8K^w9^-UN>~!Q)NvcoRH?n?M@g6*{Ra*`3d_ zoXum@lLaj9#GgZO7sdl#^~U0ueMs_8YKBOI1g4plBvJN@29J+RO94n~+w`FRH9WoK%Wgg`Ff)m+Oe>%mU`p zZ5kU4S3xG)^nVqS)fmb+0_e+40Y@+@7@QSEd}}&Ez20nHP;+uZ$1AJutyg5r4>Ok@fb~-t0&`t)E>LR8a$udOGk3|CC-`g3lQxj-R1VdTbh~ zZjrr0jF)BBpu5OgKzxR2NR*prt%pDxWqY4^)qOq4v!1kNCNbuxR2cvbSka~R));~c z2*N;4=LJSKv&e*JE>2`8Km#KARb`QP_Cq;U4VC&B5zdm*TEC1#7{u3cP}}i{sb3wY zjys^L#E0kC!`ZPyS`*a@Dck@Zx>m-v5_VEo=!dWLfRlc!`pvebhazjUm2!9s?KaIx zzi@A5PLc!IG%pvXTyAL4JHS(Uy-~UlU&YKmYQqCq57!<#h9~n>0uhtusal3f;fBfU z%=d0|R*c)^1nDvztAv;<_}PC)21A;CVT{iWE_dX>pX@?-_F0denogBF4t4 zm`$Q)m)Wx2F44_LiQBD1!kVLZNO9t1Ro=3-6OMMv);03}*J^A$KoF;*@uk4VUhKh8 zhD`&oNBkqQ9LadNv`OZXJ%OvQZj$9H@^-Y0jh!+!hIjFn`q7zO+!(tX;B)?FkPeQ~QVJ z3aAdm5}hX1^dt0rfwpe-Rttd7uiuW|_H+k|s~3#btLf(f{Qrv0)-JPYvk1&JI1g6@ zER}tuH+u(%XCK9X!}ojR;rqjnZv?zPihiDnxugP-zIWFN5EFdO#~Jv}bX{Qjc~wF* zH*6#z{{%&By;b%(&3SjwCYSnlJy-o$hQs^8Ml2`0&pk z_s-7te){-wcnpf$C?1J%DB~6)#mQ_2o5U%&Fi4{xXR&8QwMxCP!ZKYI+|;b~L}f+c zbdL7~np(pR21b-q64A=wkQ|584e1>V_t-Y|*5Hp7-d*XGToXC}82#`#l9oXN3`$FF zgI{UOiq+Bs$6IS1!IC%}7HDc)fin)ru9la!lTR*!hto2xL1RtGK#`m9 zRInt017J(f((f_SxxgTdA~XkH7Oj9Y7(tN6gz~bAvIz#)1sj!hvsyPY2420+Q7oAh zCcd?zG)*+NQC%X=h&MTJpMDz$#-Jxg%l5_|&h>g33r&J4I~12_Rx*|^>#l3??dbEr z<7}B40_{NO8y~GLnBVs9>IfUFzu(qN_G<#{gL~cv7Q68h!CLzA;G~%+GD&8jvYte1 zPjtRcW}NP-)=CJQk_^DEP7s4L6fUV#8SLA;ekf}Beo|Z{bvM`7F=fYAanxALO*B~$ z2Fkc0xm$M#;v~PR$){=+3Z!}^^QqUV*iwuLg#HoOA2pLViU1QQOJZNW^Bf}0awVBP zPASuj>Ge|#hDU(`1)a=(h8r%^pX1}dG*x6* zO4fa*;$o%%iL1ukLz)Oqk-XID0mF6{KpuG%^>1BDBgdSsKQTYp!$} z5uU-{R_T0a7u_uh=CUF!4&le9B)lmV#AfXM{^{=lF5ilOv{RzvHVGlIA=9GlG8Y_n zuDq3r5kmxAdU-#^7Qwr8Tmt$SPK86LdI(!)I2B5^1nS1U-xE7sk(A*87bsp|=wVzX zmqw_}2=?`u@DJUsm&+C1J?rg!H{BWZcIZ&@GpB+tm+ARD-@$+d^!Il=PZjQEknk8H zlb|IL&QtUjK=?ok0MLfhL||+=OM$sLndW%%@rj z5GuSw*f3Z=WnaIwr&RNts9#z(9tpW@IgWTk{N=;p%hzxJ>aNrB0q5huqvN^Cf#rsf zk!gVu`!jUXlS#M=GQC!-fz#7ZpU$5G^}IqPEkR`q*#XUECo?dmn{y!VM9rPccRigi zU%GvT7;^hH-VzGAqT25cMl=eu2qwDub=_E$pUFVvz5yF^bv^x9xCh4or3*(aM{{IfyHg0_@=lGoUYtl}g{+_*Cs~oIB)ps!s^%MJmXj|5Y z(XuSjGGBf*dxpOc=q|FmKEt;U{XJSF)AG_T$M~Z1#~5FB`tM+mlyy`v4PG28-m>5h zL3+K+$lcJs?>_W5V}jqtGT!S@+tSC?6R}xfGtAiNdUKLzVPN7Sw6 z?APHfRTI#u4aMu`l%f1VtggQ@eqb<6^=muRh}fz+Nkl9_kuYRaf4?nJ(^m)GhbM2c zpb(;eRs~PW^vn}Fn{(2Q4T+P}p>sis*OiLxnocp;s+J1juYbsg7zcWd<~0rV6A(zc!c3`3+s*!@GCh!o2T(g@xd3iE^6Y1j3$=UF~ zz_&K$JO+Bh;eJbQEoYP1(3|PX&{M%tdBsF>5fk1&$Mh4ch4%3MhCV zgdV4q9qWSrb}qG0w;>Iq!E3)_c?0Cm1lvT?^9_13_Yp-*;@9O0S?8MBa%)n38TcH2 zvx1a_USdtVPkSfQoLP4bA)LI&yE&f)BvI%xpLvOI(aYpY$xkr)9hfObhlYHSNulhp z`xu{({6XQIt;D?1jA)sBO7&>#qE7M)@fXOAcJ=oqu;AppW{RgU?0Z3RCLvK8h$2yO zht>~sfBj>aKrLCJg4iKF4DmbGBxLljXKq(Sd|^E^jQaDzpfU~FYM9+L9v?Y?^Z^PG zsMSf+{UX?uRouZ&b*hk4%uGovZ!VCNIQ|L#VX}{?ImwgtC)$(_Z#E$(*dnAdQ2_4Vbv} zS?|F7sX6Fn@>!O|(hK8dhBCN6xA5;qwV%3G`!By5!$FWt z)(Om~N@o%1fWORa_9~g6kEo;D2n7KZPn8qB_WoxrjWE1~eh%i`jQ6NQ0e0=qBLxyO zgA_m(ZplAVLqni$bY$~io>Pq-mX^&<_sg}*O|`|km7?TWWKS6ekb-XRE4R`PE=kn? zjogs1Be^gN$hL)Nl#Wq*vspktTTNn!aS&_ibvu)hB#a5Ez>${=&{~l|5Z$-%o9^i2df;<$k$^je5k@a?y;oq@nDlnu$fV0>q`^Xleg|CQ4?ly0BAQ6DP+zB$Fn#LD zJs5F6D=~ep4IK(Z+JE}=Db7W_IoU;+-K{X|KrFqe0UaZqoryLN9zKEqT^B%c4>^U# zf!Ib=xP=wz&b;wR0gk4 z(X65=!ZSXF;3%y5_TK8v!qc?CNB@n!hsOUUzXDm|g@35z%#C5>;oJh#Df9}tXBN+R zR5p+SA->>m1W7$g#8!X)?!Zcw>@io+G{{&%fo7^;q!;qDrlz{0mV^lKpC(s`f=uS) zXaphK(q6sDRx30^05DTiu|%<_u#+m6jR$P3xyKb$XUrWd{6eN+C&=;Rn=ZRk7fVU@WvLF_UsSh72}$YsW{RI(3_xwyn5-h0Za>N$o} z9eN75RsOjR5|i6Owgf9HO5jO>hjg4}(S#V@JcU!A<)IAJe#_n)9Sn(tmA z`QTJ~_B!KqohxX%PMqBV2AkkIN9xmG{yM-|X<4qpdqBT|b+M&3SZa!G>;bpnLMXQ_ zJnDchOF{g4HHD~;WZZ~zpxAc~+07u14;@-cl1-^#Cvi4~TfW2o<60aV|ATm3_j!D# z6)tF~Be8)FEwPH9ciTy0QX4nbsM}rE9_c_y+@k|*$5pDBbR_%v|FidZ+i~PZq9}a7 zpQ4s7wy8Ok>{hq?c;t5X6v+}*(vrgwp*-3AOHk_Ktv!AA!db@AM$n)2zWWlGq|Aa3r(r; zKK4zcnDw^r2ruAvEER4okiZTaj*HO>>W9xOg46K?z>am9(HC)q#yMX4guhR8{>oQj zTkHFG!#np9Qd=Tr? zVG?fOL5Bp6^9FC;^cQDtuwyiX1;Buj6p@znvm=2n20;+|i_)&UsuX*aC|v5{AScnp z`a=H{=$BWQ!z)A!A{itz;^l_OK$%TDi-qmmJhS4ZfN}RmFfs4ba_)u=G;J+wJeCNy_%z$xJVzdpA-sz7H za5*>JV7X=Uz)=PjIeVGD&e6)&L@I6Ic5bje%BrR1JBEFxccC95TSRM69LV=hWoOXNI8?ZbWT9?t z^)pNdtHhD?axgT$$H)()m)4TvUTW`^&QNImz;13vqp-p8{z5Q?!IqZK87rYsBVUOU zi+L^-!{-BfH;b<`(`1oU%7#pFO4j&M+GM{Yx@>lUmS2D)Ju_?>W!` zkh?7pt>$Gc=GnwII(FzZn@hH|-ntN{q+2h+I=XE4d;6I6>cqrG+bU0o5@>ZdywnK9 zx86jdTy$Cqa`J!vLu4H~Lm!2O9%%-ry+t+|R$si*YzRXSqj5PrdpQv26)#o1Uchn+ z#NRAExr(%v_fo7TG(# z?>uFKLbsbWuG}$k4CI|VS*$zFr}0I!xN!^F?igUY=E6CCC}j`&2Q@VXt)xby-0rU_ z?L>wyXQm`QH@pUL8EJ*$VQE`qIiTnLugq8Az^KvbmV6*=J*Yt;FlbG3h$rlsX9l(Q zEk0bt%<)4er>d2++#xPDS(`9n*3NME`_ng*>HFby&x4f{YYpFx_lMpLKm;=#9ZZHn zEYs0!G<~P%Li4Z3BTYdIElFErYp+Th;xnVb?=7uf`pBS0tfgI1t`zLGg52s#3PNZX zzle&Zls*~;qPB&$bNGqCOM0^*#FuT$r$)*~jV}-f)r)B-u280+GzuWgRM7|S9X&s2 z9wKPz2YW1cu~!_N%T$wE;z_>RRUycnWG4u+XCBa#7m{g5Ui+dGe1@Wmzk-U`edX%} zQlz6{1rlnkKNrwQ+xA)KDeCBu2IS~cZ!yiDO;C>Tj^{Tym9e|DU%a_)I#YZV$VrEf#Qzj&z z@W7w9AV?KZ2f6ke!Y6v;Ypq*%vAKomB% zfnW)KZYThPCqax6oR&NJ@?P$1%6o?KY_Ay^qMCO~N1 zj&X69y*h>C;~Mx#Nmu#670wb0c807-#I`F9 z;grHPqXpYmSy=-zZ=x`MTVAVJ&+NXBEJ?+}Gy1dNd$4{?khBvl!w=UP0(U+Y<4^{2Hj8NkM9^PdK_%h;%eMRJi; z6>FMKucy9RRn2qMK-f}VM3x)d&3+G)H^SygM>h-Y)lLf@vA z@BZjL>{i2>_CT)J@$AKH8_3ZwagWk#cnS}bW#TD1uFFeTk^Z8`>iM?;+JwpCqe$tv z6=>gyMbgYaSf}+x(t4CYAH!K4M@UPyb4LJR;^*sQyBu%8Qo*{Gb0& zsy|E2^qGv|6h%`djy+ zcCI8b5xv%t1Gb3IVJ}{86)~!7&0%C5eXXUYR*7q&(RjS8jY=I$PJGw>7Dz~R|XgKa*{7x zYkYc_-iQ*!glgIc^x+x2ozIV@ft6i}9oL^SDr$3$OVLRiw93(!8~i3&U3|Me_=W;O z;vcvZ=#LVq{VgK=2J;?%+cMpWp3{)NnLEuOf6#w@8@3>^1c4U?brpIZ$Z=@BES~3i z?s-E4;!*1NCDTXbp8cl0_h!{A$<1mavh-Ni8mIApvSquE@l8Dk7aAw9qHkM9^{B)( z?c`FfCfx*R!}TJBr*1WRV8bSHNN+X-#HSwdf*W z2M=ouRE06FL9#cW1mj7aV!)h{%xXNPcgl1OYxS`25~Ac96Jell(Y!qz7scC9CcE*K zCnY|ZdlwhUId1!7p(Gn)R4;Me!AZ<__HZs*kL%a!RUtkq;3!#(7{dW)T6TC9y(TG^ zFYws~-rb-lOQ~xmlC7Og4>+wep2H>{oBaU5VU$G|%1;X>X;z;pqk|Ds1y6OYOmGLW zN7klIRd?vJ>IoBk?P1Basm< z?A_IKfdC=oNIxb)1QVid3$g&vELK*i#QAmBTCsy#QDktvdF`dG65bnf!~4H;O=hp7_BjVo8s5Q}OFrnI=?vZeC9fpr)c>mm_a9AMe2(o*~E(B;gg9K$jJjM2D?h*ygJ zK1?t2BB?G{e45E$V>(aHlenP%*dyPYAHJDUqzL==43qGv8#Dnqhi|*|&2^<_pz9O9 z4D=8VU5nK$K@qr@>OgbxW;DT9FYc~&y}|})nWkOmDT(UN7J`(G93YnU^@nY z?MLhHG~3t)nSPuz5W0Ty6Trmr%eu&WI5IxE`#WQpZVuFx+YCrAv2%979qvGi9tW0R zo^11Alzf!pO*2loLsEtXwSkCX)zsvR7S8slL9L~% zS*T~);zdYQpbNF26Q+&5SIp~0tl+8LvGyTwFzM}Va5QOy=)$*w|EG;W`OrPWrC!L{lHN9%xg41aZgpGG`|?yg3>zR{#~OPUGdHv_6p-oXr53M&Xyo>pt! z=J8ot3R~0M$#&W_YT@_=GVli>1B z@EaM9e>;@$%f_vS-S#=-P008n?!TAAG;SUcdKk!}TJK`Y-)^ksa*Y{_jtHa!6eh{t zczcR`3Cd+rGcowqzxmGj7lh$O538YXwQ11F}fO!U!mnmUbsqvO$? zd|7YUjk0Az$rjW&|NH;^zj{>3_wgBk;*B^IXram?JoiLhdXt>N$td5kUg4AZQHlOf zNqI?On6}2dqvz7|AGhwaP za42O;kJ^a=Kcf`Se^y1?vDf$cfYk+RGfGE0#YB$q8bi0Nv z-G^aaW8RO@JGU*|OWTWXb4f94ouc`(*De%oiC=?IbcD}%V3y(~TG3)IUgqI9!f5UE zxLq*E5=P`0rW-B4W*?SizM%URS*4jB`9+yyC=;NXv(hn-xUPXKM#YWh>QB`un>Pkd z(yBGz`pf=~WzZqD_94+PQT%^6N}s7%ufx#Zun6zI zgppfiGL}upsKZ>};;SuAZ}VNpK)t5*3#yB*n=U&#fpGq-c&R9W=bRhTV~h9X6=}aZ zMqwCaSPq6ow)zy4Q4Mm8u*i}uJ#oWWbV(`l?vhgo$1P=*$|=8YWd83ub`+o@UvtH( zO^9Z2&odXL?c=7utsni(z0-0hwD-}wMg-1NMU^T1?Y*eb(VO=a-3Q}l$Dz^D<{qSH z0}Q=c3o|iOhD7EO)XbEj{m$%7FACaI>A~|$JhmT>n2+@2?znPkUz{3eSLni}#S?CG z-{N2_;bHW=Z3$Kh4Ybc)3;R=7H=se_{j4%iCd;*HWibOfI0j}T@(jiX(+qk|liLI9 z&Aq#3Yc!^H$(BGCs>CmX;DIkZ9i9ce6rLrE*iuW)w#SRu2d?=TwCmVT2UxL3w*jn& zd?nrR62urU|&7hk65%fY7 zPE`_$YRZd>uW*PPRhSV6Q;d(R<^_)oF%J@+z{e?WwF=t&yq?ekyBmZ zv~A>@W|g2*Va!oCG7JrmuOS9ZySD6S&SuZc#(9w}KBTdJI+r?|bci|&J-(n|K4#mR zT+`Iz$TTFk?CDW(a28`DPEhj}&5eUaliMOm7V)lQ1mo7{cD?<85G=piwU%pfL2#aj zjhO&>kY6O(NzswrHoXN2VI8@)u_5@HbJ#6IuyTPkY;sBEN%G>Q+VakHc4qO zLAC7IfR$!-ODuxJc$q}A3Ocu<@7sfyFJG4QyEIDw{Fmo0*A~W?m1L1A80)0?KEar} zHg4#n6fp7n_&bSDL(tsbnBRrDz3sm)Ebv)*4Xrnd4j`DIn~fI7wON$yNyTQr)e&mU zddqmVu}wxPQPkW(Y4A>WSRFTY>|Xjx!Gg3)VEM9B|E3^YTTy>2tln=c^9R#i+C8S| z_rRYtBMC1A4TeAH5Xg+S*o2iA-#OPr#@V0sL1V3Hj9aMblC~PO7PYUkSyrEUm3#b0 z^d|}y35{FzHaYFelB)7zYfFg7MYCXxnYQ6w`hOX>+5fespIMDb0cTRTTsV$@NX^!_>Fq80Ey{30Q ztT#EKR=eSZd+~WxrxhIb95+ETPV)!nfl zwE|tChnVra$$TK?b`Wzb25qQbXjw#sNjR%3)NeRhSR=o+3-$Px_VrscR@?1G$(lVR z$=OY|xGeH4`H6$i*nM)Ay92Oj#CNY!4ZyxEXcZx?qIE=Bk}%ud2hyT+D?AcRgJ^b= z9q60FzKV29Y@e-)oRh%iXJn7%{BNa}8aJX0=*gmn0k-9ISnDE97>6N_v$na{xj4n+ z4{K>ItJOI#ohHbOTQ9%IHS7iMyOdoE5<7qE)hJ?#va*6qe;(|)SH9OewpM?-d+5c% z&6Qgr1AtG)QuFNH1@0IiR>9qNfW7iG-LQ3hu_=9zk{3x8$gHBuj76~QQ^Q(dt1d_0 zLa`7RTj=q?h_qOklH&q1#lSuV+TmVZlntMSUy5=!+GJAwDqnl^%e2Pno#U3l#+YcM zv^8Ib;mp1}?DhE9G`;n>|5-&Jg?XkUfCd1HcoFTaeSYh<(VyEq>NOC!ZdU@FtG}Y| zBz%Wb=@^<1(=Sd-e`tC>Mit!{shhnRAU1cg3Z*zSL5&DSo^uNMEoJEc{y+aOMiT|8 zg~P)dB`DmWG(@+~QvJvK=25h`^jrxn@YbiSIAF7$quaJGjqP;Oels##uA5hJ;rw^b zCOuQzf@|h?Y1$(j?agbi^dM{>I0c-cfW9*th3~kr>j#s5weMP6_4^+YCf{#+UiD)8 zzTtPVDtEU-7=L+3z-L6;M|m9BqxJ9&8%#6)cz4J)s<9Y;_t?~vB(mo7Hd9k(;`*3*n>yMFqTz85OTA?CbN${{fK|EQ2h>B3V|C-`rHBM+O`=)o9x1mkke}xT z3PM|$Ef({8pJRl)t0=AG*UW=HU=U|XY!GzftTnO3uyF5hlZ|>@p0)|qy2PrX*n_Dqic2)+XH3;d#l+4Q=e{;tQnY_V!D55->uTrX|{^t zXKGS6S|&Lr5k}6hsH;A3r^MRv-Tmk&T;tHo&51Wl?4D)Ie8q;{X0!6wci5p)OI|Y0 zs^4*bv;P{L0FK}7rqOC0FO6^V2LONZwO-Qvf}$^9=|$q#w_6cs8=FJ7=MEAyeRWcx zDYgip7c|L#&c#b^p{$79ID9vSxqK)ESdtC0d?^$TR9E;$2}r` z6@TR(`;sdHvhBfnUBC}m5)mei5V;{@)wgZ#9A}Kebl9a(c+T?ba!_C^psP_dU_wZp zM!gSzc=9tX^3^KOh633xj~VwCE*a%*l*J-G&iLD=BGq#u=~M z;3OFp*^?_Yf(Akn)(csUvSqk&8+wQfFN|=9)_4GhHsc1(5`0&~1k}-VT@<*C8oI>S z$3j4A0VB`A)sE}PX_FZp?VZjir|^%*Ekgjz=ELdS143nCEDFTJ(>|mwJg3t|>sY$5 z?br`I79YKhi+*uCX5I7~L42?wN*K#RAe~S*6+dI<9I$WVYQY(C$n3|N2tgf!qT~5myol3dDG;C70{fSN+$2MPGp^Aqb6bq3|ID!#aZ@;}ybO%CS#1&Z7Bntt07lwA|K%iaVj zPNruq0jZNBUh3CnX5f^zCwH9v6}lL2EiUT}^r5L)i00F+xI<42ceazztr{ld>VoY- zIk^QS)l_&K19%^;WXXboHOd;s0Uvr!LI+c+^i0^yWqbge+keCB?`vP8F|=c;mST~& zmRb)s5u&J%NG#ps@>(|3!u@g%^1a-@y|~)nHSXUqZZGc_DKtgax)uxOTy}E8caVn% zHKPT{tMOn(>Wqpn#D0N=Ozg?GNeLxWWA_5>stGT#*a3~3zE0AVdyfg8m4o3~kza#U zikDr~B8Z#W;2ejGX;eJQ6GFb0gWAPkUh$R2q7o67cNvkCgmrW@sjeDn4y8oZ^QQwotm-eGD9VlM@NXR=;` z&?+vFr_#i^Nh{QV>Pi_!h@NB`wCD z_efP&O&!5G-SRTVv7dnAI1O^sB%EzC8o(4(d2utyqO0VBFQvDlmmgk&FpH+&7w7qP zR4lb(Uoz~Ze9Neg6sRR;-dC65w96yCOWqz$3G!2Q2n}g@U8R`$6xYT@nx93;e&tf) zEaPnSSb947A%-=9D7yRBEM>|F%}?{Sb^C08G=GLGYsrVKr$w&UxtglGolKHutD!AZ>hsvbq84GZ6a^1V@aVznZDwDl2yt7zj zx?f^gZ^a`hUD?nCJLjQd^;CT57&)k+7^smBC&AY>hQ+zvTSp`s1mlmG zzB8%FF|op>olq2DL>sTx)r};Qp2scARg-L6d`AAquNP!Fd&VcT7^tY*Y#&(Nk_IBZ zn@H+rQ4?z|@j`V4A|KV~(Fi{MA5(IYEdE2B6b=9831IfUioCXCIf7pML{WI11G#Se zr)k%SL|BgYc$&R0+v@1|G4%u&ivBw|3VyTPXKQ4G;TgIsas?q=bTdpi1%dD}1&G6> ze!M!8s^kyiVGC~`-}tzbuk{WD2Zal{S@)Q7T5fDl1I8;QEFs%JD~E)`p;^&)rxqn@ z;CGIw4b!W>W5A5&nY8@IcW$aJOFb$<+n$_pCT-E+GAV_3o2hK)47SD3i(U^#Y0Nh* z+GAA%pUZQk&OB)RdZv!jNfaHRp^dz4wjp-K_vh`ZA>xccX}_^`#xqLPwv&HkqlI~Y zYt}~y`x;3_R4ViYOsFnKXom4z@fNB*|&4jx-4&KFO6_vrGl8_Lw^!P>v&X{ka zZwImDv2f5_$0?qsdJL^qlqKsrf_R=b(%dH+tq(rzM(%q`5vA7r#5H@FVIR225)?q zJM%12Q=D7*9WjAju6reP@Ms?KL4tKy>d-7)X-TvwDX#Zd||M7Tqx;NVQ-QXH< z`_rNKs@DMQ3wLt#{n6z8QBT;}@o0DaW<1*SiY{`RJqsC&TC2GE_&<+2hVa-NL5_2c zOE5BtDEr%|I-iU#Je^VxNyJBaRvAP0ZFC)`z2nVN-!3`K_5JXGd&TI;(~fy~Qa<8+ zV-O&?dkjd=9JQmF z&Z06|@at!(T=5lwQo7jq;L?k@#Hk+%UCS#eL$k3}?xoW*D4J^^9-7F)4oVOW%6^96LeTh-sS?ONYCHs1iA4C-abET&qM%t1pUZAq}pDI!reW&__E1WP`0l4j*Wp*pMt^u6N%g5op8Y z5I{assNxOCkjB|Xb-6JW4yam)r!Yi-sYn1nO&B6f61|x=MN}I-7>nu>y{NktJ+!xY z0h%;&DcjEM5N|bVw)-gyPIY3g~C7o;k*SG z{#-52VbO=Bx){SH0pbch&xwA|+MX3z8WyJSmrpCL zu8UP0fPuYl!TITB0EWrtXuC~4yJ0uycAHO4LyvV+u5{=Iko$nIeL05YJXw)zgDwSN zk(*#xNKK;!iDHdov z623G1ik3ghZz$D@*In|F$>JlYl)KTnC*Aok<1DXanz_7K;xic`U*RV}S17+)Zl=vX zcj>#!87IzHaaG)SILhLqR|#xjZn|L#FUb9K4r8oOY~ulG_!xPHF>*JVHIxX zakog5^>Kt|BEcxiTYKK^3RL~22idsreF<3yb@xm80zNGNe1dIm4)AHCKPVL+rfUH>Zu+LZPJi|T68z?RY=XJ)B+f@yRMz|~M%|*30qE`Q1 z9)XCTRQ1wtvs0k)M{cYek~)bwL%Km_+?p=9GR*^aMNQ>7OJfdy7Brh#j^MqR8vvcY z8SPFEk0(c?qxpO~Jes{3O;6dSZ9LnZj^?9)Yniw1{_yZ{c$on;F|HPm^8G~wB;dbky z%!~fVYY%P_`K9i zX13tF2gTh_$v&Cmqt^V>CVDUmKE^GijoZC}Gyr@17)9aDQ!av=r(ATNV4q^ssAiuw z&4W?!ac&wlZr`R+0PRhq6}7}Ui+WA?eDnMEV4tG5(C@b#z@uymWys}Ww$v-yfY5c} zA2Uo-l>+JAKKe^&W*+gfQ|)V!uP>!6n9>d`1C(L)G|DdO=mPx+3Jlhyf{$yPTA^>V z1Dh4771lAV9suI&?rb*ZAPLn?8as*U`S^BzcrYoNPHt-*9?M{}ydsdU|F%R=j|F*f zv|`_-QCS{Et61cEGObY8un-&6v~o1kI5QYsCGj<-v1#A08x`)KlRk0Lhos(PEWE6TvKhp9(gJob_N9SdZf6)Ps&)Y(fkaIRQ4@6VhQ9Kc~jg)0i1}QY$z4J)w*%Q zQzxn7)mD-%bl zu@Dv^ck?ta4kO?WAA^FV2KON1K*CBS;0PUgc-*A1&0 zE#@I?-T7pAaQwE*f5WQHe{WVttiKKW`Ll@*?N#$6Ks-DtAEy}6CV)?vXhXI|3Lnf9 zXV~oYu)O6u&JYXw=R8S14SRDB=!waFE(Cq7tjRgcFQYZPMhVk0Xk`O<>U1nSE12$(!*q{HcW{`PP*AMbX1 z;aWB4ljBY6jKd0yqsHVUtiiadfGW0Wo$hGE&T2o{CWB9QT4=lD>6CbALO$ZtK^uPX zRM6l&r$GziiP`*&%%V(LwL~06t41mqo=I@-n$fO6x3h0>;aW_^|)o zU$5i;LtJEW%ERwx{NWn-*qYr6e&}(eTUCDSal&JQC=<02+|UI4u?OH;yy3* zdmmz-`ba8kqSI^Rv)m?DX>>=VN83E+Y8ZsSDc0PW^C?b5D031Sl2K@zHe(C_w)a&RP};WCn|o3z%WAn7UnRr^dZ?2+xL=hlF%oqHxMelMOmf>smdPh|{;hj2TgINa zC+73ulzgPD#~#0z@z{V4w$la)%MfqUJP*I_B8YopPM=~U>iv7#gAYl>$GQFVq5F28 z4%6OrW@*QMtFy&0yx$PQvEMp_!hXUnrgiCQi#;R}AL$m;hVI>B8jNF$8KvD@Y^QUJ z?R7Hfr|diX8&6l3XgAmZcQV&RBOCX9QF z?QgKfrkz`C`uT0K>C+bb42bx6x7f7D7MljQ*tF*s+mGt9OrmTjt;281bifC>LjUEN zR~;mOVkn;hEgvUeaZtd=UL2rpF5?6WGn?@$x(GjPBZ#}Q7lJyOj;Apk{BaXTwe8of zXEoM1gg1%tr`YBCke{~qLlW_E?rVMMz74Izw0E*u8s5T(anZ4b3F0%pE7AM+wBH_* zh>vr>=|lJJHyx(E-^|h;`|T)S_Ska>)!(z}=MLduckyZKJv1R7@%Gb(AKZc(oM#&v z5FJ}FFV>fNnqS<6_o4!O5H)$jI0r?vOzN_SKFxqV-n>Bh>EUF0{C09M+5fS5jk`BK z2)})DRT@nvdz;qz*}TGAGyTNV9-NYol&RU{_i{BG(81Q+AfNI6471${Wzh|?Tn4#s zcKdTUkA4caWKiRYB|Rt=A16C9#_nT922h&~S;gT!ew-)R!>%_R4Oo9Yr^hDlv4?;9 zS)X;Z#`(01ADohpb0@dP@7v8S!1j)IfP{DTY#lFZ=ufXG0ygl2C{I6AQ~)v5{vi!y zjnPN;YUokpp&}1>=JAPxeJ1pLoP5kf1s^x_fVX*?7qE-7H$8+01HOj@k=3ioqKdAp3^DE~mt`C;`}lMw)#4I~Y~u7^Z*7px2F=y8 z`FOtjmJ&1^P54K^xUE5N0^1$3Z+Evp!@tQ-d6#ew{3>Xj4wy zJ@R?~oawxcS$JaO4@kpD$-woIdsw#)(qh_XVLQOorjl{r9S%}`omO7;_GjDFe{T)A zn&^mv#2z91hLG<$B(60Is9zk`E!T9quBo$OmL7TphNS3HmQAV(mrr-sF&ARE>FF zMX7*)ZfclGNuc8lB(!vkZXCaBFpNQMdah_|)c`pw{}A`8^9gpkN#v&u|DaTSl>6Qs zyJ!2GKrJp{7t2F)ei@7XzD#hVHw+>HnVjtS+PAulmxD91@*E^t92K&jG5zcWYp6^r=vFqquo%}JPZ7IH0%xiGuiH~Iey}Q4@$*H$^Xo;d-$IT)Z%}x;zzhg zCEEr_Wd#{rU*=^@Cgi99*{m+s_&XsjXqgl+4`hGJmT`exj|4kp>Nzm@iz2VrPR?w| ze;&>}kISlM5v%&LVi5RtcJhx~%^CstoxIMLu+X5OSsEa+vDHXa+npb7@n=q`28$}I z(^Qqu7DXIqL8wo{>2#Vsak>Yk;v?mB`q;gkP6u*uIhYn^B!-NEQ+f6k5?yN3bMPlFpB&Uym=&=WA2uU&&X?AgPklf#{0a&`^&IFylI zhZ{|IM@RGFe#pB-hYtzTI@}Na;M(GLYqv?Or)!_-XGF8ZoQKQPvUt?X!Ze=o3?s)L zEaUSe!`o~+2L^nQ367W(&o6x(lj>VsGZm}N*-QR7IUiT?%3_1jdJShO7Hq*n#DBG= z*j|M}ywi77+8%T?$wzRX z&J{6bH}sI9v!Op5<$p2CeT)GoF~l4i<=18qT(X>ncOL9=svYlYo8EAM2)XQNX|bTc9pR-~eiQZyZL&hfZ(ykay>b5WMYanq%lqE=#$_ z`+f$wyui`6U$N5{C+xicYpo(a|Dn4J0QI96s*I}%H=9$Jwj!;o@RzYlb>O3oqE1gcJW6-)z zhe!Jd8$h4TC%u7xrYmS;r#$ib2c+R+1}VbuyeaPw6mF$5mx)3{|rnc`4dZiFbY0ShOEZzW5)`h&5X68kd_VHBf?9r zfPQ@_Ksp)6C)hk@(@z`dL8+s zSXp6}M4Plz$dqXn((I{ucHT`4gyo5d)$( zX>_63*7l&hj^nlQ?YZ7nZh6zrPUG}}Itwjt)Y;uMFJt_B%fO^QZ-%TcuHq`+t!Lv`fb(~h3<|W3efB}9l9lj z{#Zv#)Im31U#{-x$nMmcP1jSfGk2v-c>M&MzSCNZ0g|KUIcW4EN)2Ee9$8wlo z^<7~K^cD^DnhgaSYye+B3#lOR{#lpy`@EONUi5u0eg8%WO*VZpI6N2yAEU8B8@F4p z(g1A5$|!1Gf{RV&icbKa+YaY0h+%mUR~3?@bOmHO9?sv+M*FA3>F()p$LCh7Lrq5q z9Z2O<};BbVt?bZsTzBt{-&- zU^m7d&iaBo_<0T#y7-Oy{KN#Fn7|VgcvMWlBO$OQQMaj@qJv=pAU5 z1-oXMcw4>G%Do*l&9VL|w21rBnxl`eyu_!U7WmDp9+PABEldiRS-DLR8>$akf-C!h z$Hxg(OUT=uzYi(eR|q~rn2>$Ra2Nh@A7tpcBHEW1on+W(HEhl=`W)ciRyG=P zPrl%S-)#7stcBYTf72Q7$p>8UzTvA&ntL6t!WtZ&bwSh`j#eJ-zHtZCYaksxHxTw1 zgX0p)Ga3uB@3{J|$KK=WT6*3qug-DxSZ?>dyA;+QL+TnxkM3*tXZ~UI@3)4oNB>)w zcb;(=aQ(&;oR-bU({Dan*MuG8>6o9kM;`Zj6Q?_Y%wZzj%hZhtw-xlf6Oc}i zILoLR^1ZV_-OhKt+6t@*pMRYO;GOw0a1W$zfA5u-D6GLwTQ|?Go@?dd?%y{nR9Jg- z-@oOw@(%w-7*`f{aYTp>9i;DmA-}9K$`s5(+kVJf>J_6d% zy{t-uaWE>Qw9RGFcji-j=*#Q^&+YUE8wd(!MVFZ1ZN)DlNVxW)ZDI(B2R5KXIOy9- z%P+qvcB~CKah_!%i(4zADcI~;={iquF7oUiUX~s+rta`c+d8YJj?2KxpMX~zoqFQc z4@tyF$*YZ_`!=Nx)83h8>E_$>o?@RJ3sj%q2Gx4?v_l`1ijQ@RYGe2BQ4PqoNsZ!w z;^&CmJ&0t|%*s?F@!r4H<3@1@B_W=dtN z7{l+((xma7wnVxahM^dZ=9B5{V7xn`zk7nxe|y4q$L2Vmj%K6jyU}oVJldV3uhHc6 zXmS*4z*XgT4gGL9{NYFV->s^RLkThh)i&?sc<)x7#A>(bBvrdbCy#E|$)nqK^2qF@ zWBa=T={s3~FQUH220DZ8KkcWd{q#R-KLre&W@@v5ozs~EZG-Teiyj8Ph2O%bV9tvk zFg@Bj@6ndOsr#3ao%DT@ls^MnK1O-jNdfnf=>)Y8O%Kp!dTwz)+0Lh)BFB}(ejy~ z!0*-fKjr!A8MTXliNe2c!pO?2i(BxqIV=$^`RoFHiINPOO3NInnB+AeNXiA^in17g zE%Mb0dB6+GR9ja`np8Kkk?lcQFD|K7&IgEnq#M|h64zqKqcg4o{lWH%Jf+W7!iI_> zUKY{yAkPL@Nm)nffYU0%3K}fqs{}~UX1@*1gDKSZ@@@k9dWa*QzTuuej*tl;$26WAEiU85hf%gj^Rh1Dtyr>P zeTkspr3T?dFvcBTLMgO#8yqqK1qTyZqXd~0tcbx@0=4q|Y%=W~u zw;+b4abv-|1*#T{=%e#(th6}fi6_PHp~(0cwZCSVZso5jw{<_e#ISGwX)-w+9_<|u zk52c-v*AuKY`+G4INU!PzxlBrus3GE!(I+mLH#2|Bw#CNO~s)l>An{Z58$e$rrf`U z$LQOWjpqSr_$c?eK61}i*Fjpl-7E~4(%~0_U|y;`kSAhgG^y)S-R%%3AS0& zy{Ap~U=)0mTdWzkXM;5Wt?i{3SrOqm1v&YPwM4Iky6(ns#uQ#wd%Pnm^sPYnm(ROLDfJ)57;pxm*6 z@Z#V&FB9xJ(BxAeNqRS)cF)6+@G)*4ec&VRQ;DOiemr-$4uZD{8 zZLQI1;k)J)`8Z3e_C>tB`k$*-T(|YvQlg!lV@q2L_zwVi-?C#RBuW*6Z~P_z{7Be% z5WIBsVVYM_umcwStcr?i^Ip&DGqJpx7*>_-L55#^H^1zXp>Xu5t#cikUU=G%Mb>7aaQLO#mlvNe3qq1l3K z9i1MC&tn&c6iYl0z70GK*4<_vP$<@qr5r2ypVQj3WD}t zvbnI^8$<1P_P6gT@`2vF0OI$BMoDMVzMOV?3C~AA%rR5M>EUSpcCt7B@pyDPJQ(l$ z-lMwUXY=W3zU#};;;IpTJ*;X7-pQRhnNK!>AN?@g^}VomR`?l3A8i>uF~bL?;$vlq z+SvU}Q3G-@##ZqYQ|M+2@(}4|;84+B#P_w3xA1B{xk{G!I*N=Q7if4Woi>jRO&QW` zVOcXg$5~tc3!ZBBA+~fqLvh%Qmaexb4!8n!`q<%7<$&$kbhzbD#NJzEed6+;12G>h zvu}|g!1G(MPS)>$3W~?*A`_C0vAolB@)PVft=*?R_HZP8lsiisxMx3U5UpKgl*zp_ z)1KwwNsgPR*(ey!EzjtYG!`uK73?zH9+j*kURqx#Fg+QN+dxRi7SycqdAM05JS+jF zv3H|Enc#y-t*Nc}<;BbGL5XjaxBmP8{QsU0pi}(9kbXW_jW@k&*i}(ZKIn7PgBr)3QSjVgN-@7#U1R-Wz06P zSS)8lw{RVu`&D+^MSKD5IZu-%ZrD%tk~@$a#e(!?M+uKAm?1^MI`fva_ChF2N(iJLv ze2j``Gi(owD}73*Ub0!3L<~E04`C9~^Lzsj^^GEO86lG9m_NO8dLrKcM%G64w38o< zf{$@4YvXqBWevdI%&nr&C`!c%3a7vjgltM2<)>yJYgr3W9!)UB;74-B#Y!xmHg35j z<+?A(Z~=v^OD*1^M$+^qBuxHEgK|i~4@czIC~4uTZFn-~-?oAqUx$JVLUDIsL14RA z=tLbtBw@O-;WVJz?u>%t5g2>%y61vM<=!b;+)Q(y=m9lN$}QlCTkaO|5(+^LwyBjY zUk`>w5#8+6=jW|4iiRy5s6n(lZvnXmV1bx}XcdMBGS1F(doT;Fb$4UU?A2#!viLp* zS$Ma&Sywsy**PX`v&Xm)EI2j>Xddlw)WmI2ck3ucvI8d}8+axXo{%M+<8px>kS+6T zcjj%AYLjqlb>ODQw&>*hHU}=lH0Jk2Yqa5L6}?Rtx#s1Yo8$AvqItoSmbG5 z?8R#@z-0)1UZ8?ccK+9*kCWz;J(C!0GSt+y+0WJ-^QLsnDi&Dt$e-+$X?0MZ<}xJi z;xfuE;wB#M--ERkew>-k6`QpQtF+m#G0Td!A z&Ejb+?V);^MvGY){KF`1 zv65t6!PY@7H7_vUq|HpCdYR;Fh5(i_#Gj%9Iw~j*Lnlj`=GT0|dVvEJ^R`yt+jy}V zWl?(b6NR8T9}s$Ra{N26dG686|1~hx(P1esXovMhT~>ov|2lZ}n=if^ypPYgPlMs{ zcz~IH#8E5SCSmqGj;b1{dKuv%1_#h8Dn0;K_}R3<=h-!U6IOBZ^dj8v^WsAaTyd+6 zW8(`F>^XM!*I}Zn4MCOZOFy;yjHIMl@{`4VJ@xWTpDu$n+g;-A zpS!yj!1s$|pPvn3A0rdB2kT~|Hk8ds+vUpZls!X%&438Ponu~7#FSl-6>Q)Eq&*6! z5M+Is_*Bw&^zK-SSo+8&uYtvY%6@$b{0gy)H@E-|k~xO@U+2K)ZcqXTy^x;W+S0aw zJSM<*1SC&PQ|hzjy)zV?;^oP7Y=^dL$fPmw8<*;x~yMc1nN3QPt%xtsrMFF9~>f?+a(4y+Vi}|1buvU73iUA$i=ts@(ZTUFG z(z=9Y4GUaXGL;jybi)ElRWAqgTxgfDH|$o~g7q<4!Nl|D;-CLm<;&z;9sUc@ZU^sK zAH`?G62sQ>)=rVQTZ+%(QgRJCww>w=L&?`Y&b4t4yP@pDLqI_^39P>~jn-u=hFY`C zk@&lLo%wJ$gq99sRIeEV$LJ%pStF2)X&4(>Y4ko9Cl!X?tzRB6U0iPBvLLMGFk56>;SEMaP^82vqDq7t*Ec(tx>tWU%mjb=k*#CPvV zuwm8mxS;R)!3YvEeY2vCb799Es8j;G7?=UJjn+fkgKa0m(B>RJqS~@o@wRitZrh7= z+qEF=mQ*N%4Od2$i|6;x16)$6t9Z;EIYlT*h>c^YEi zg=ldZFRAPhPW}j{=R>T{7b|=t@UY4Ux;#oCB57K=`*M_ zCG?`slE2m#eZ=w6IstSLhe>SPqNAW6xeiGJY6_Q*uD>0O1CF0e4+0`cY+;|_w`K*( z#kb;rU$ZRFZo?@1%*9_Ahx5;WF}9??dLxA&H!yvasWuWOy^0Wm0PEYQQ|x~xKKzUZSE>^v88cgvsfw?y9~aHJ>@6_oh2_?5Q;;`|NMu$ zEC2jQ(^;0PElA|$|NKY8!j)jHqJDgaQP13(^EmHEjogRFriA|lzpeuF8j_gY}ViLV2o~h_8T}cPJ_^lipFVwBp zK@IJ~FP&TI^&1w|ml_l=LJ+&$^a?A;ntGoS*35^o{(_I+&xOK|`(#$*?K+|rp#QAa zK$-_H9jc7V(wb!I(cd6C%j?QA)RKDRJ8~;JGDHekxn}UV0+tkk3N#QLS0F@OXwX1K znoirusjJ|LOJ^RLD9Ls#5xu0RJcemGk#47;EnOuM)x4wxWyRpU&KAfPy z#+^h{T~l1di#WN$ml0^-Zs~URUEMevtny`CWUTAa;a!<2an(g!Q|+Z3xs)-g{z zq>K!RRF~ueYn(w1(rq#b;#&?{eTy4b71{CaIzAH!NfP1vz_N97r_Y)gJbx zZMKd|_OxuWCOYlbo!Rk%!H;=8Xk=O&R!h-LPFJwhbC>`! zfCx{_OPmp9CH04NF-QZbtm0VCij*FO+As^YF4x
MR#FIcGk>`48%rCWW-U5BX->z8p&DCd zVNn`{ZefV$(Z@wh6dfez@^U~IY4KDRcXj#Vu_MvRZ`@1``M7AB|yH`+v>@4-4{l|-LDN#IF>na{IVG81Jd#FaZ7FF?yakeo6Xy@ z!s-1`b~&!qv~S|Fc6^#w6<&?CB<8YAF0y!u0IvtgAn`Bx>{8RGG+d;J@jI86SM3>W zN9!^`8v6BbEIc_s#<~`xeJ9IdOTQTo7MFGQ0rh^$wujv143!Qt6F{ePG;`p%4zXAd zT)0l78+4CFTS7FTVjkK*{~@nZNqZ8!YZWblfvvG6q281+T@{Fi%lN_>6kDTKK!xF$ zA?(vLLWQ9nP=pJ~sl?*}!(O%MLW5c7*&%~L_#_(=p5_$GGny|=JJCAZ!)|Ze*Eg%p z(|X71v7ubu21CgNy%mlM$PD#Y>!5QJwL?mg;lV?+w@lzPLEQKjn_u_`_sYTPwn}|H zK!=;Pv!QX_v8#hDy+tP%hF{jf_&_v#e21boO4p&N6`K;RQDB{LS{ZhubuulNY(Zou zX&o_4Avb_JY03oS@Jfq1uydpuS!Y+$3&`O1p1@L8NBh{dTnUPSd7DFW^Du0p2QO?B z;11|EVmA6@_1!E@FMODOxs2z5==u3GA?!pe6}81u{Cozn zPp0E7jR4^~i8B^ld${d6w+0>{sBhM77(ZeC^FECi`9+qvZgl9iTU!yL&z2sNtVE}gK(30cA+*9BGLZAZH|^x4(%l8`wn(06BzmKqqKYv63fQ#{G) zye=)V{DSAL^v*K1m#n5l5W997HA`NoUeU)P-f!S*j;pwA9pYlDwd2+vMUUgVSs8c3 zbLWoODxn)iU{(4Mi)DHX)M2p)C-I(<%1v-LN;Z4uj(Fr2yAL$?(Vx4baOllt`=w1; z1RRG&tEom${^ZMy)uXf) znfwao>?W%&<1#62^%BmUMO^ap4Ufwp#-Cv2R7YZmX(6L`v^$6Qe_ zD1AIhUd*vm`eg)%5Ix!u;l)I3;nq18J~ny?!EkI8ArTnM4;+$9Gy5DN1)V#5QF)`4 z&*!@bv+i6zJy*^h7ENHi_~q*MNNkDc42@|~aq}$HSz$&G0T@S}#C&fNo+3nqdZuoV&r1i!TbX%MBGQVcY z4RI@1TPEOC=qX9L29O1JpjIC#{PxvFwn__REY0Z+B$*|8+ z5jj#gS{R)(V}dl(vyd_CDE=TeBEr?_JWa2zy~=1IZL^aqFEAc~F9w~;wH3iA3s?^| zrea*?D-g?nRRU8e%Y@>D^2Wof?}9=ofb>pb7|LxGR1~IXn^+PYpyF=Tj4cXq6k0Oj zU&5sG1E7>^pu}F28@)trS-$;e1_Kt z7nHTOV77qE@~<^4T9Hc5zf=TH*AM`-b+gko0CIOGjAla)`g44c9)zXU5%oYwvsK!Q zSS7eMr^30EX0Zs^zzqrdQ+o+z$2m_p+zB=Zv?Z`@&KS%AS%9zEJ;fQqw@uVNkuetQ z%M?wiTI~b*Z}a-~k9A%}_}DdGx}U$s`a@Wbs&*~9zd+ML_Nxjnh)Rqzvo#ZeW2j_s z9woSbK<=f4@+#Ug%1XSf8?kc#?>;OQK62hOW&*FJ7cplxWb` z_Vs06%Dtm9K!v*kxZml^pih5tSi7I9KY)AV{>al>oN=U|po|xhpyq8#baeTi$!&a9(^a2<`U9#EMGqawNxmlfp%)`Npc zB%(;f2?6;X!#eq+j0k{u=>~DrLq&)2QN)P)V)7kTWRLSEjp>c7EqJ%Xu9KrK!q%%T zdK>%KIxh4RO=*O!?#o7;U6+Mcx0}yeCb$GMdqImg_}|MI&y?NSO#dJPaGlo$F+I{; zR?@ajk&8g-UU0_yC03@EW>~e6(pxN2fpGuj;pEeTIkUTC18c5iL=GBZ;}X(vforAD zG>^8M#5b49|udR`~)0*i4c0!rYyxX>E&OOgm*q&$cxtV7Y$k58B zO1(33CqE%SQCdzy254aDK5rlcz(az@=f_YaIRm3VmU$ywgHre+1=g2>M2K}RIKjJ$ zqgRsh=!&?CQ`iE!uld*1vlBsRY4fV5XA0@33Mw;FY*FJ zmKA9D^3So9axu8nw2UTEye7@RMB{B-?pB5I^K4=KTt&w3{l&^CK0o81+bn^o)Rr>d z{Wz1_9o3E4TOGv{gwQ=2i?G= zzS!R;?WlG}XkW!qvWyE*Kz5R<>?Y`FvAl%g?oky*nLWq1-8@@FmHPSi!}47HI6i}4 zuOubUqB8#8qNce4dvqUaeLlVCE-m5jxyJ5z3GJz}20JXe@d_=#w`d%W zR_6&tlYBk+Ui?YH?D*%QmSM{0h=)rxzLZy8<>p8e zH5~t5<{2DC&5CoND5C3U(1~a34~z15^jEq5kc6=I>6sMhdvwjDfC{IbVP;30!@xRu z8-c)xJ9$6O)Rd1F)(2uQ>cgEk>~WNI^b8iA)dgfQ)~8RwM11{maguwW0ys< zOOi?dG$)^UPB5}rFG1kAEVW@Q;e+$s|DSZS*V#3we0>-R{(;OD{#8*K3Jg@WByspN z9sIT!;Tk$@i|t%8d_W0N^o>Z^ryq}G!(D;SbKXNgyUUitO-)hmKjWqMSlEJTYQ6(Q zuqVm4^B#8Jc^RT@qth%=E(@JjY})6Hg5DWA^h{OeTRItpoGxs$C0RT1Zw%ia&H~j$ zc5jkC&Z7$>M-We*3Zt$fo>$R@W~;Y?o7<#n8gfy}4lpkXrGMAGn$T2;&H&QQJU>@f zZ6L?6s*0C`F=v<-pYe(_%PH}Fy_WZyT3YFCbq^}<1QwWOv@!Q1J?Chlq{}eF*P`X>VwxD*!4Y2~ohOUIDy}Z`%9p~k_Cq|V ztMeDXgY{JAFMjvC-~Q{1SHNoX1imcRU%dMIi|xV1*#}N3`p@H0zp48LyJc1j5RLb)HZR+c(sCz6M)FWY^zD=a3g7LPVOJ6;Xlbag3KNND4Y? z{`>#@f1%#)3+lddiH#a}GK4J2n!2Qyyg=aPAVPL*Gcly=o*0r`^xC)Ge6>=EtvySZ zg9>27MJ-$s1%Y8x3vzL$A)X!iNIA)_@(<9jpW-4{iA*Tit4O}X?tSQd$K=BWiXKcw z9dFA_eHkXp6&E!}GPa$4{^LLXL;i`oMVPz)FnIQCTP?mnkQ0VB zPg|1YFupS_rY9h|1~wOO@kgrou{x!2&Rfr)i-`rOfo$mi`h%J?{#R7p9{i0*{Tk{2 z_vZ@#-{l`(1kZmz`1P+bXzq*r{Ka4ExQ-oTmH!Iz(`y`xsEphA**UO-^cnA|*5Xne ziz;nX3SV-U!V3d(k}?^V=oU@VcV_Tk-PN=qZ{uj{xog#C!o%4_X~W=Px5w#sjRnKi zuIAxt;4r-gHrTEj?a-xa8?PwiVu5_ZbEL=`-V;S}f&#s2&fOEY%|QaLLB`>o;%SYb zt!sP_*HIonaPA`G*qI!9kTL+2n?4av0?v42OHR0tM%ZM*X^%l};NopB$&K`ttmjR| zUtCqlgGw5d2R8`l4E|pHCBXHy*%l029S<))hPjU=C^0Fq5{gEd?_ku17ST~6nJ1#eEvw!_j`?g+DRrJoZ7DFAhm-qkEbgw0(?7B z(oAqNLTm@uK9ILvm*pvToag7_S|44c1C>ADk{RseqSor@q!jB}%;red_XL~KU_E?M{6LgQTy@(8nQTqSp5-;9T^DJ$Kl$WgsM$ za7e;)lZ1etp}75}RoC|>ho|GCSog90j8nj^F4v+TUPsj7|(SF}5 zMs zHB`SecXE1jsYUd0uytxV5dFtPRXTGjstesLo7bIMfqYj$0Hl*54V%}>oM?KmmAs5! zirm%|hVm>v&qa!B`M?*`%$*_5bzX8(0yY(ba(|8{|D<}p%`fZKn0D)!UMmFOI&&8Q zw0zyJ+2dNrGum7AWpV3XjQ8XVF}{?&Wl$Wz+BJx~26qn<+}(l`+#LeJ-Q6uX0fM`` zyE_CO+y{3X+}XMB{l2Z;t=ih!Kd0^K>8Yu)KHcX$=lN*OC^MF>vJH3^W;)W5&Y2-m zUy+cFfL3f$6!32ML;)bF-mDo5dO z9WyaVKFh)p<~HCX$i~VVEK(i6?uFZE5efG92?&@hD4+MvNq`s z(Vt(Y^nDYn`KUV8WRv6tBFel?EOd5h?eV(tkzcy9;31SOGRxvkDh=he(#?(P3W>0i zRT!?|8iChf2+6oR6^9jdAmYavin@g_1tE)kVxa2F7&FnsK)g*M(sk~lrN|eKZ!VCT zy>iY@xc$xtAxB3&ZSX6J3bIVl!=d9$`P{>C<_{Mmv*QE4)a8|t&N-%mNN=G(j+?u~ z+`S%C(vt9R;pWpR4Ubn-yR-IGnNWnLiuvO*Rt%A90_wKrWb`bGyl)*lcARyrCs8}Z z8tF4}b70Y!ZQ~eqnS+Y$nNC;C8a{Zj6kJ0}ew93z*tuv2UmglT$2FUUDer%?ao2SV z&|w?$H=Gmds57>XB+dW(PnWX#=@iq_#A}_M$(c>S!R(FA>WF$NF&P!vwk?;__xjbx zH_R7zK3$&R_qbEhq}Fvg^8zfUH`(^Z@2?r^PfeRlS#Z?(Oq@Pw3>#52w41b5-z|W2 zZJoCw#!HV&uG4IQmk~15lj9URf3aK>)u?)BKZQHX`qQ$wbZr4~o_2j{w5a3PL7z~& zX%+Uwtz=GjA1?fnm21C~jPc`Ku@@EdeF;r)syGU z#^xH%iVTZ;ZkPJDh;OqcYPQ(Hm`q_9ai@VJFUg~qYMxeBdu3}K;;outALNt%3aoD_ z^xNvLTmu^pzJh?76)$#5Pa=@ZRzdXJNf~V{Y{$o16bO!!#zxWwMyHVtL8`g#aHP@U8?&ThJ0NKt%OioTofC1M3YfaU~OzuWBx88!Qv z^E@I@_DaKuh?<10aWU^|0c-H)z)-$bu<5S-V%Vu!vD5KQe5N`#J0|xNfMagyZ@)DB z@6C5IX2zvJ)zB)#Sf9SSrmq@xZnr~5Qzdbh1YeJO*)51$G+3gmOt4|)_lS*G?)2C5 zuknaJl7-!b*|YP4yE1^gp3s7;D4Tl+I-Bd(A}0S3rGy)Y&u4V2h!!sHW4bVk%Qi^| z#b2Zvbhbx!isqDQ)acg!yR$`0=gOI!M_UOgtJ?&>Ow(yZhHE@ie&4mgqHhAhlR$;V>i zt@c^Zu|T`DZT#Io#L)DF_k6}?L5PDri^aZa6c{L)0Mv@`f*@y=?Zf_)zUr1ZT`A;H z>+Tx4%A$%?5Qe}NDEYU)oTi%_0hCS=qHPCRaIuKDoC&NKRwK7_A-pk(!BCHR{p7MG z6E`JAH&K>J7 zgi{AIM@XvGpqN4h=Qqut(?5?~dKl{e%6qw4)xI|1dezC`GKM`X`ThDHQO0e_VnKz# zdqsMQwv>DcYrBEPk`rp`JKr2mgLs#9EWJWDoXx=181rrW(erY9r?((AjeWoEdM7-X zZZXlt#rIM7FtVh>^`hUfroN8tkk+D~^=2zRoQr3Xh_s_`F!1xs zc}McI5GqVa^_KvUz}C_~{~jjNic_AmDD6`|h_F9j*%0yg8eLSR1gL_68^7&9o>+8a z^2t63gDihEKW0nvNs;n7I;cHpssfNTchlT+)2wU0dOcXn%ec(iF7%A>fDO1%WfEb? z&`+&&t#Qo9FkF(=cFbLL>8-gD()eQp3|a#7hkl6Uo*f#GYtVbhzj8NE%-PJ; z5eC~tG5JWx$5va9#a3sE{3wime%Z|gZKGGgC_cqI_=xnR-TAw)xeKBK{&h7M1e1+B+H`m&#*6T)!~E?nZB=G;LDE1A+tVN z?iN}!+8-m*j=U~d%D2k9saXTYlulACx~<2u7iaxL%8@5*`?%W-x90*;dJfp%k2IgS zWhY*Va?&(gJ1r_ShWFL8`~C#Qrm;B^qYBV}aTqLiZ2GqXTRS|U@jF+Kleslphxgad z9IAjgsy<~F7tFB!PtWD^)cB%Jf{Slhllutn<1X;J?{(XeIQwI@10AM<#)6cI6wMQ%MeR=P*lE%CLb|WB_?*rJb0)pS%-%Pc5w-KRN-3+ct&G8Pwz1$g;S) zopsNQ%Y8A8f{9N{Kj_G2mKf!C1l#gOwIEdb8dI+kGkgQgjf~Mh?0$=n1ao@|?8-D; zcZx^H@gY#iz2uZZ>7Ns6=m1%0=R*QM2D9lDyEVY#d|CS5P^I#(`sE8u1#rf8Dn8!i zBhae%#p7Pgw++?-Ru(4nRCCdV@j4XemsX36BRdfuGhUY$X4O%iKiUBXd z^Yvp)sUz%hQNzWhSo&i@Ifhg;=4P@i!z^U34^Cg>PCnjCG`94sHv0~tsG5H}> zTyuGyLY#fYa5*`Kv5_Aeyw7m2L(+qun3E%uSR;`7+-?_rfLo|JAKk|^S(~$ircyw&fgY4z-<7oAQp*WKc!-3vO9SOqJR;_dp*S{vk4UK*>&vHf$_b>*C&AM&+zEbI`KeVT4*-Fl7V& zZ~&1qE{=}sQdL=*0Et`&MCa3ivC?5ERyf}&&%y18WFXtW$;;O#0b^3h=!t4rMta{q zXEa9t3H;TToLnotNDih$`Q->+L;p2aMrKC8!YKy}I1Ufc7Pm*L6=$!_(n;=T@D9u# zY}R++m|~R0JA)?$hh<@J4xGMggPLPkCS1dSIS(`)UMl*4HUn9^xLetn4o{KLeefVT z{%H(n2qNR2P|u?AEfdgZ4msxx|4CGxfi2iq4)jx6kl)IlGGG2_ATH}3&?RZbzn7`K z_j?0IAO;N=z|Su~2V-Q#)_D+tN({*dmBs#B21bUN=&w~ZB!D1slIUq4hroh(_@4kzPKBct zajY$Khll-4jLa;twcOa^j&V=kI`58AYn!iO;d~D~ zOMQ)_1sMLC?(}Uf%?*Tj|NY~DlA#n#G-G@kyN1VEjqx!4EWkbmQR(2n_7@VGG_u( z_YYPJe>FlENmb>-{@|_9>tEJ39h|zY56b@87b;Z65eaFZLMSSZjK48ty6sb14|ijG zM2R^7x@^{@F@HKQ3u3;!HJoK{@SXpXD2Nh-^AdO`ZLa>)Ky$NSF7!T^;Jjw5n9|G= zI3w0Hme?uofktIaM;4L^`E7gFC$J#UB>MXcwfzF~;_)hLH+|)H9{N-O6=H|E(cd)} zpfAwu5S5HDM~OEvfk!h+s6r84yU8xOstXgkC8Z3C&^PN48N)$)u%9u~3M;8@r)1`$ zIdC4}EIH0>O+Kys{bmhq^QvtOV{z+u&RuzMq9nINq>bI2V$Fo&=C%!ugxlbQj^Sw2 z1If3_RTOI#5bf`AaA z-J6A4dG55&2IF-SrKr@8Ic;dZR0CG53*936d(S@J4G*FVuWv#hc5z}4rI z$@Bo~BMB>9U710ZqJ@ys|qGO3*MscgqrP8}nx4D=9aH7pLC`@Iaq#rS(Sro0W#8(wx^EGlMXn>F{xrAcTFzaQb4Y$nDo>{d~ zf?2&M$?B)du8MR{z<>vQ3iOK~{uS{Ph|q`TzPZR zJ%FTfafhXyNrQXim>*pKBYk)=`S7j_z!)rPa9?)~uy{JCh?J(UxE&5WTCIwYkkZ7mf!S#2aX_?yR?wWg<|Ut?#b(Z)>k`}j{;ljF#V@wUakk!=NO|cM1a*Qat{+0l@w)fsJ0vK+$j>o~b=)Ur^ z%G(2`)3+865~Jl85)kjhd_x;AG6qCxx`me-JFoQvb$Fq<(x1rzPByJQcHv4E#b+_kOM}g(!?XQk zN8VS`)S+Wb2ToYPp9*hS3CMS}JX$90(X}1sdYV0)4D6)7tIdKp_jwhYr$V+U2v7( z%(K94?3(&4VFz)EVlb)l`vdH`P|nuiiBQH?2qKFrDr=W8SKsyA0>ohDjpNf`d3T&e zHW%j|lkuod;($&-$F{omZdIQWCEwCtHwNW~Da}>jFY5S5fCfs$IY09;q*bz^G!M=2 zVWf!EzE30tN5)+lHcd$l-M3~h){Mxa^h9ymS-i`W0(UBzZA+4L-8ZNx^7SxHE<1-JM9{1(E zCH91}NBeg_?ure^&qvq`-WGJ1p^bc3Uq>I2E}RFOKs>L{gC#w{X!SrcC1tkE*iX(= z2oZk)l$7ktn4^!HZnBSKrYyw>ktpb1c!VaGCTTu}%{*$Wy!+h?j3y7GLV>}}D?ds2 zyzz*C+9inM=TnEJ6j5Bt^Y7W@lgIJ2-={;?pv$B)k(w%ZR$W`+`9qOR_zA+6hNsPT zlVIwP?=~$THKd=x8#JTmf2B!}9NG##g*<~vAzsQ1ILPRaGWfe@+;{eQ*oyH)mayU4Tb@wwJp-gMrsc(HV=DbR4=mxN5u}l>p z2gC9PLLBQRqbzmP!De-RUcuiFFN?MD&`NiT1CV=TY8)?mb#_&aKa{1qRcjP zJdWJ9Zb5rE1izXer^s|n^Dv^@b#{}*hezxg%-su-*CC9j7e;t)LtS8CUE|+PjS~H! zxh%fS3>jzDc1Mbt@UW(b0M-{n_#WXx!=OpQV%SqUa`vR7J^s#N6o1Yyx>Dc?z0BrV zeSQR7zG34AI=F>>D^Qv-$2rJv@M(ZP_wpp(-6Nqxle&`Hax2t8traHuvWjuDPMWtz zg}5lpRCf5I~_3xUO+Pl1pQX_6fz zev7#A>e_a60fDPzqFTzq3sQ7HR8wvduOnf7Ei44M%D@PWq&&EvlK}lA;V+b=1BY81 z^IToA`89!Yk2~8)jto%Ok9INhagCE5P!ry>#X=NmcKS?pRwgOWBfljnWNBCf3(1qP zhlO$Jqx?{uePP(g@LkIbv2syp#qKUx`9_L&mJiIbdmJgm5R65=@38$v2%qV^F?5sR z$qQejMx@CzVUZ91u0UXaKI9G|5S^kU++$tw*89Q*yI}-Y(fJ2n4YJ?#@B2BT|7;I{ zCCeg?iw~DJ94Yx15{z%uPdwmMM6b2?U0Dr~wSPdSu8{M$L09xs(vyZ8K>+76?|H~3 zsGs571W;{Ab#9)0wR+?+coOef<>s-dJmL*uzht0NE^@FHD}4nr8;0IQ=2;`kC5B7Q zg8b?1sF3-(S?Bw~Eu#6W$%&)1ef`$fvO|_JCQWacH#jWJ0X}xe4yF_g)y7 zCaY-!91zJNerrR&83q5}SdA%I}3E%2@EPpFvV~KfYB>2BKAx zex+Npc-_S@kII>4EO-d>7l86wc$NDe0nUx65FZY2BDPQ#+z4o;nnRk$69#*je~LLc z1s00$1R0fs^fvPMTa7-sl|A|228>SEx3%}N!Y#gIzm%5N`ZD~55%r=(*j;DVXK?TL zg+hT_=>g6%_l3dB;+K&zAi5DISJ-VQcnYt>`Vm%xlF0bUq5jfw&xERf3l#+&8hbVc zi2FfBJ>f*JuKx~jC9w!(5XlabiD7VrV0D$qlObtAd1y(N6Kx{vqu=K0%W(8}sfF|q z%$kBxItSYs2M0Wqvy*h6Kug(Na2j85<#qlTL|O?5rB7g<=!Q9O*_0n6T{vfxc0`Et ze=>ldHFs%Sy>pwiv$j<#y2p)*!~{2zx~pLn_q8j-) zd#(6?79@kO4Iy1d?g_0S{3Jssc?$4W{B-kT_`PqmkfDZiWXgnj{Czwy0z!lr=;OKn zXuY3pp42r1Vnyz&odnZkdCpQQ0G(PDQd+fW5wB&4uPo%)+fQX=Eo`m>Le+6O~Q;$!_0j^9voT-P-;^0lyK~w!tPj{oj38V9X zo$-EOU*GG(gu20$A(zU)-oy{;N@VIHtTfS5BhcqP^as;>Zahg#V6X5!NVo%;!2P-M z`b^NlMCKbiV{hgYej7tvT(|)I)|s+a?APldxRf!$!_DLxLdcK^EaH!c4!(8i2YV$@uGIYR(lOT@p-sNDbN{PHwc!al>X8q?tcb!O6@*C=tQ8ay#2-EnPCx0= zkW$SRqbcw3Wjy9{oH7xUbL8VBnDrUlSEv_l>DTg~N_{;B=j($#Bowde)s?gpiUm18~gbm zGVY*7NMnt9`0Yjs)8e*Zzvb5+jw)JAYLN|IrX9~d*RLNn5>04rYWLiD zEZ?mQhJD8B%p$bsdl8cgToDW1chq2aQ>jd)U7nyGmveLRQU?IlA0$qtcrtY`V;ZPv_oR5nT!c0*eL1oHzg2a{(T^a~{3L zCY`g0n2aQM@-?VV^K3$Qzubj?lz7Sd$^QEZ*x?LV`R&WX`6~!SzuE0gvWAV{ zqk9htxL^u`lf1*#kBFJR9>Cv(ZiHM7%5=5m9klRI{|?Vb(nA!7J{x=r2`6+rbt3#> zaTE=F!rnf?GlGvA`6$40NH3hu$YYuq>^lTBx zdMV1ZCqnDRJW?cy}bRyyR}Y$ML6S+mTKEDQMQg}ajLo$!kcK_C}y zG7*Z>I2J|Z0WZ$89~XggVIW?5McV283zRpJ zJHU6Y&%MjG1gT&Cb)=cDErL4Dqxsut!4BhFaOXwELZu1f)+(e|FYdKbvlui$B7@dE zg4P8)YS4jlZCfIWdABfUF~S^%=cEAQRA*CpA7S5({)<#O0DaW7*O)Fpu=odz`X3FW zfL|faoc3frE!NXHu*D)Z#un4(p1J82 z4{jfUM#u&z0`H<2z6{KcDvdQ+-9w$qe*;D48hyHT!V@;XD7X69l!dWUP0a0F1H1jj zzhK9OoIFMNBXe1T{)h@meW{B=T*nZJLKA+$O323Lgp?j(6F&oz3B}s+8~1IDcuYZB zEw#mb?D9A$0vN+SZ;f=CFKd1J@7qy0tlu8)j7~nigFOrjyz)XCk{aW*0-eR-FPBlC zM2RtorahYN2i^GFA0F1sJmzBGWgbVaz($zgZ7QX-4T{&XeW8mz+LY+DFdc9bvxo6y zA4d6^?OPcBA=9(jp?^dfNgk^Qvko|`N&X86GD!dqfxckr+gC@MrKpc<_{u<56Qt^} zjsGQH$L$1I41|$c0H=2noaA} zu|b+eYZbQdT2(GdC=ENa=hZ-Cp{0s8pTG%hW1932?xmC5c@Qo7fq7uKq2=eO)&Nw6 zjT{|{kw`{ls=C^T0&)GZT|j^ZdmI1uZsg`o^PG`lWq1Jl$(Zx3{;UlB9J@yk7$7bI zNLne{q*U#8X}%tw)#hZL*T}AO#*4&h0VLlJ3~gMBKpI&Uaaf-d1Q-|^)mlqXc3{@ zE^_nzV)^QFtv;;iD>oNlOa7`Du_}UZjnlYsr=OY_^Mf3Pra0tCQC2j<78!CzVA{94 z#eYNOiubgAi(S!_FY0g8(HEq)U}9wlNNIJKEChec2+^iQh#_s)41KNu2TFvUei`zE zw7CtY-Ge1LEPEAJ`hVtDDwG&@1T+OpHK6Xr(6OYYL`qZ&X{)Z_?@Q|>ozPj-Vt-qP z*K2ElY+cXaZs-Tu(< zu4Qu?`SJ!U2F;}yiC)3Hn0_=1m2tJz*Fcn;g^oaEKWVgN#1gHNR&kV7DCj0{w&^hl zBtUPOVWxiJIGjS<;Z|bt@!!VZXm=u!$qP6~fNXQi5!X2rR5)REBP*Dtq*KCM2@1)Y z2Rx08LGL_!GQSiiU`X!$;y@M~UMd(|!JzrhyFqCYIbxp_WH9K${O?5}Rku{B&CO|v z^FCWz1s-i>n-EG*4N=36Ez3j233~o0^QX_BvSbek^Y0B-EgH z9VL3n}i27IwI#nh<71vRJGq!XC>459n)c1pTP#J>uWyXO40|SsD6G4ZTL(fLX;>0O@fb zOF)TvC46o*z}ocVT049$UPmwk5XvWgq#$~bnAkmVltSkKqvWM@)Gdd7bBgEIkaEaw zM`wa_Q?t;mURvwFcWxVUT)|R8gGuYlRj{hRDe>i^r(+6Y`-+7>L3qr#r|Zmk`$~%h zRdB4Yr(-6lA86#x`9K~*ZQu-#y%fk##QMxz7pf}|V_X^Fdk>np-3p=UX_%hSo>!zs zXTGV=Gm*LgT~DO%LZrK#?D(bw#(gHfL?Z|vS@puhb&ag(HTb2NRr zSNo;2VuImTjjF1RQwMo3CAQ(<7Ng9dQ$U?Zs3MbjQ6ZNoKQb^{Dl*hU`I!YIQ@ zhk%CUou}jeXaV~m92N^7hr_mBhA~)8s z5!kZ#h>O3?k*`0)i;^qtKt|$q^(A||-}BkvVX6E6MHsjs!i)F{&*6DoBg{Oox&ZH2bSdDK}8i>6j9+d00IJ?erCSl~r5XP7v8CFIk z!x}LYEOTY;F%t~qkrr)q6|fka#uV1gzS#4kYw~k+u0`93+|yw_?(I#RMQ`>OP&lQf zK0Ad9pdSf;@@ibzIlfvkYM-35>+ah2Au(f7zrqekQkD(p75yB*Gx0q~j+tWUwa-3S zq=Eg6knPKcK1R#wEcxNy_UTG8(I;X5=l3r6lzNb96z{&xr|?_i;BbeJXxPQW@DZv< zr1n%34Q^j{Lav0U^1gmqwjGvMxRFKu?AbN+H(O4l^cKGxt{e85!*uIJ9Uk&9!zpP@ zk`e{{Ms+~xSnZdUtFQ66`tA*J9C<62+@AM0JkV)NU`t85b=y==e$77eho|l;0(7;* zi??gzYgFYc28LdeA!6W`Ql?ZD>&c#6ee(tL+|}FLg6;Mow%xX`dNajBBITRuQ^u{? zW%mo7-*06ebd!(Q*T?OC^sep^TDcRu#+pI%dKLpjTLT_G? zIsU^X4+eg#MqDUVfL&X>w(VGlCJ_%~&5jX2`)R=rdbax1VsY)QcGL| z48}f47}4bdY|K!8ykZ=yGO`7{Ed*{Dyz58{Fkeg`>z%*0ftUGRbmlvFGux7s=)xKv1TO)He@sEzCMqxlBM9er3xWe?d6yF*;mk=KoIoAN zoMFX{V)5eRh_?Oi1FX!DbiC43(_Th<=Aj`Q4+gSrvaAbGPR*Lu5AHZc#(Th4A`0@H zd|GNpoO?#?|F)SQ|G(0}ue--F7976PO)8zV(v3-bdx%*-x30DS|Iomg-Q0r2WP5VR z60K|KpuG1Jgt{kp+z3x3;!20nSBDUAPToFXE1ROgH2WD6;~8k;X;y$apt-LkOyiJ< z7B`GKr4M3YdXYqUk)&pUU1IL|c!+jT7Q;{AN1T(@lN+B-DT}@g22@(&WBtfuVPbp% ze7>X?1bauVr7ui_PMxy-Z&Xo`!>4RaUH(U)vIr;+YXWp4`~S-Re(*F@2+~CosFY+_ z{CyfZ*dLn_Da#OK@`1ax9ySgp;mn0GRRi0o3>@>E`OXMWl!HU-bzs5!$|VDN?b+q91a>5h+t zgXHXMm*g!5vS3D5TmogzPZ2}9emrm_2_i!wG6`r$TcoRXd(glIy@Y(GSfa1w*(bKO z@G>5KYS10u3=`4TFfkV)E@PyvMLnb_xbi}-m{4Vqd^|V>5s(X{QsVkb4k;E$rWXRy zWf4&D({>@G!v>&xRrgxkzK=WfqDkyMUz~u??+8O?V4{4%5-O}oQU}Vx`r0=2^WbL~ ze3UxB-h6|=2r5&gJpVH41uNx>mZ0yu&$f7XR!t*HzE_Jh5`AB2e$vDL-??3w-G;90 zC+TG;xH4yy_JH93QoE6K+>jH-4)WzNMaPIw!A*Eszzv%|lR1=rtk;62itSv#iXYNF z2wHIX)y?yP&C7w8?5N+2KQT*0I~X6o)UCU-Q1~b}juNXdA_Oqfz^&P$@nrT~rX$MEBud2w40t&@~cYbH36j0kPl&2^WL` zr+Ryy>_iSr-!uw6YSm+F3`x))Rj?k6M333#y&+Xsnrb}lVfF>S9L=-I)cZ4u{T-CO zj4!7V6%RMUG%Xc~`Vy2#Eg&G(8^1Z8h*297M_sU+83F>G#QTxQms0)v>GZ!?U5T_* zFsn<-Uh@CJ>UKdJ2x2FF&BJM@T)Ja#{tvIq+GV1(Ptq-Q{ zE_vasfnZtg7hEdq(^~qZRCrQE@9de^=^J@rL4IELma*~IpHRL2=(fw>D8fO718 z20wo@dU^3+>B}b(RHlYgi_9F89N#)xKa7DuDCXE@IbK;sz-jb(-bVKHWh!)2%j~=l3nkt zvnb&t;NE^rMVb-j9re=1REYOfCj5D0oDi1!?H+F0P6VhsVpVm#bo*n6pC6S+SQ0;s zy5ctZPK$%iH+nC;{)s2IS5f}YF@JI-B&M`TE!%vv3mimf8_HqNgA+<{#_ri>b#7ds z)5+v@DbI^T<=WX5`$@3j^9E=Tw5>CypkyNrO+&@eb zm(wkJso*G7)_5m%iH5nO8@FZJJ(GfRXmwN#?bCsC9rxv{Ok%51#S0o)Ui;NP3Bye_ zk!}~;7d8IdIV+;>9Owv@$az|!tABk@{nM(n03A%fj}y!x!iB$h377}@+REPiZF(KkA{b&O9PQfw_z}hQtG?dNuJSlsVsGGuPFa<2|L7)OwO+xnjRw^(s@yx$BLUW|FX_ z{0aLHrz$CpXpw)fqu1-mKOwy*r*#Z%_^zU0H99QTa~jFTT>L?03z^Py><7NvC`mP{ z`TGPAQbY(Iq>)5Usx6T55S%N@a*O;DcJq$QH^ykMwRJgXk1Q`RRM$lAMx^Z%YEtvp zVN#sf-DO-!3tnp)rn!DVu4n&Og1C1(!n?zWyT7DjZNxL2cKFMeVQZKN|GqXeo{0M| zb*`}e#qEXVxCLVsC(0KywFSDa(nUZ!EBAV7!y(OaOqZVGJT)|?+NCB-pTRna$5CK1 ze;U{goMr|VwEn{RHBqLWQ-FHUAa0eHY-#W-(*!SwLQ(dCSF->6u6^p==p>JjZ1}rg zpEcFALbrSB-AI)LhC$@4>uCNL&i9*0d3@AyI@A(!>aSy zI%RlQv3K_Y{E0|s7<;an%>ZV5UAKjc`8y{}mM>Z7JZ3RpEUUDOzKl4$)y=jEOazJX z5dG>lJR<+ixOhYDloGUFz;(>hni+w{ML~=_6KnGwQUt?H$z*A9jp;0yl9RuibaeZy zf=RA}E^aMuT+Y{8&F=Np zE?vtP{BGS8Z{6-HZ_lN^^J z$6B5VcDIjl)XQZO;hZjWOO;p2d5E}0nZg%DKPW6R&CB9nBm=CoM>_c|WmbkX%rfV^qi&~R%AN0MDre;R*jkNY<_zJv`0Omm26nTxBsy-qK-%YV3822po|JPY+7 zQ9oY*n?yLx-c*8HbPJh}Qs>_sW(@5%8qG^PuKm15g$KSMK0Hnc+-Yq;j0E-c=0Kw( z$L&`75QJG4bLBYSt}|?JjkBM&9kSb4HelOg$;aK;!Z*&P7(`De%tfZ2SAQ_fmUsX% z5iS=#QiawZnJuwavtMo&nO=4c3cl_N+@JB%iVaHTOS-qzcClm2sM7Id<6obf(|0Nv zf&;|@HA3i_YMo|^V(XlwgS!f$cmEgs zCk`zE9ErQ}-x*3KB)J3p-qB!iU-AS$C+PokjrxFLaG>F}56amJ!J>-NXI$hHXx>m= zvKpRz?lCRPZ&{;WsBGeR0E=!W-W-w42>pqPOhj0f^wr?W{5~D4_+swdx(FvdHg^HY zx4UKzSTviVE5Pu$GWcTjD&XOezs&z?gufayriY$(uWJA!WVJqM$xi|6U&lstAQmfM z&zCD-&z4gkS8G|WYK@FGEqZ%8di_bHG!lI`jJYc*|NV0_%z%_1*4vBocQGaU0e-Kn z2VN5KEa8Tj-+{d#mGiz}_#f|unySB}?xcb!W25lvaHV3G#T9k&yiz!7XQRE0|HCR2 zltZD^zn=v>r}n?8J_H%<)6(=5SBpjxs5e;tm*)5l*#hqb1&r?35sVzdsuwft1LDiY z{It7Wzeo+qf7Yyz{M4l-m+3pv0KXpJ>M=1tP7bz>{5K1b9xb5@BDMBNGnC6isCPSy z#_BzuBxC+yNCgy$qtu3O5aNBu)N)H4p6DkCr%+OhdCSLGQN5IRsQYsiqM>haC@;cy z-bNk30c(%5Dv?F^SJ2Ryb!PC`w2ag0^yRm$8`TdNo=@KTJuC5Ff_QLEdns*>Cy${cBY9#;O8_kr2Z`Q?H(pu|N1IBV4!a zr;?veGrty49%m(;eC{gx#9sJr`1C;zyPjUSOv1KvWSupw7TkG-@pcKZtu)bjatnPye#4$Vrtu4~K;@H%wdee5qRd*7ocnc@JfVhQ-n~CZ#|5tQYU^n_yQi zE1`>&9B2#Edk3Wsu9Bj*sH2&ozC%Mk|7dv3JhbpBYN+t>Y-l2wAHAaH##mki&M+M> zU7J7ee%Ft!F`gokvH>hL!j541K6uwff2vaO+%b;G6e;Hg=mo8z>O=RC-WYjP)WuW< zeRi%u3_1NY+;4kGoKilv-)C>b)KtMWn2j$<%G$J-;xoP0lLRXBECo>xrM2Q0VZ# z;W+EN-)$wYrahFZY( zf!wtt~hA-ej&cb!i znB5E+N4e_0OEJTqJIL&Gb#~=k%YKFYI$B88NT$?z88LE6^_{fs+$YcfzoCIfERw4^Zv^Mnpimk|F>#%dfNCsNHDvo&hZB=|iWXe}e zNhJOu@bA%HAUDfr1IvcDKZYU9!`$E!Qj{$_WA?Chl+vrdkmF``*kCZEf;1W;?Z(MW z%3+)D&@d4L8YZ>{TMm-;N!g4|f z4j^WaNYb0M-1EEVs}~hEc9n^K3K5*iIk}=u)gZ@++E>h3uthr8_ZCghUO+^-A0HvU zbN0;aAzhr>>c9b--6?c(inriAmrFbakcNHk&L9GsgEZSMGxE_+EQlCczC2+Q)FmD2 z)rq@m9?~DjWaC61Lz!%oy>e8sI3O~jD-mR&Y1NmaeBT3~eSIx)TVbA9u9@Ld%5^~< z`ovz)_TUwWYg`ciCS0XBc3RLajf z*}~=L|2EvG+Zl&+;O(0F59fqgQfyo=4eLPYmsSw>@8nBL{<~@r+4O_hx2kB*<>nlX z6GOw?VvwNjD}+?KkW$65U5@vJc^th;Sk2)G`AyKvWeshx{^d{A-w&daC!{l_jkeS! z^E#g7=3q#Bo%mX9uz+pwye?2Lotv9$>goDwbNI4ytxsF1J1E!tl(gHut&Gu@FQ*1>92^1XA!W7@4tD4c2 zMOHGX*<13j`h&w7L8GR}qWmZ61B5hvoswCh1)Igpo10AA8LO0n{Ch&@t0Juti2YK0 zE9?INoj_v0a6Slmk~$05yvJaAK_C~WWC*a%dVul;rITpaQBoPpK-~8X2iLR)(STG% zNybVVNalkjbRP|wzb7S5{z5HdjoDBJ)Ui@3d3ucjpM+>hWfLH^U~6^Utm86gdoaur z_KKkF6yi#%*mjBhPElWe#GB4ktXlbPQoPTL4{^b`W(ydNESkZ-ghoXLTeH+|QFbxo z;p@TB`eLa!ATN_TrF=YI500X%Z$UTOc(lku&e)`#uo{!2a(W3 zTqALYYtvGy>8~gZlYi?JyW>-H^P{{1R*N_6ZaiX^K{S;sgaB|g{o4|6$?=A5*}l49 zU6r-={~FXFl%B)EvFus&((RGJDR-CZm!QPlr9SDNcR_I5;U}yx-M)Px04+$Vx(fzW zr0-InbnUw!Aa(pM2vB3cOMOu4?^ONjZsV^vUqK$RAkSI~<}EsAt7mQ$PL0invZb5c zqFaXka+mso1>XflqX*pyi#iVOf`#;{yC7)kT=#%X*URpNPS@QwN3`Y}O_kxWOPn^O z6D`lALtF)>(IN2?L`dRAL(UHq@lMGL@nZ)>L6W^wXa|k7L>G^M_{+lS>%olvbrv4P z=f2h%V4kmo<-U7GF7;h3vMnc27fQo*Vc4a2+;Ms?sW$lE^lTzOA6$_3JHM17e*?ab zfg8?lGEnMET!Az51A~_#MUx9dQ&HWd@nO77BD5*Vzb&8&RE7YK3a7%k7Os-Aj?#A` z@z3kQJL9(n%%+KM`a~&6FMh%S$F&0&(VEQFxR*<_273ruPiM39 zq*!SUD@P$irCMVCy^5}EwuFiXJ9|prMM_gsU(n|#xxiN%RHG@L&}X9u#B|M0UBuNc zC~&apmo$4@aoT9y+kCfwlh@JSe$hXKV?k|nVWP6hdIp}YaH7idtO~jJ# zvm^?imzLM#>XZ3a^>8Lh;X@7E-FZ6}_QK##(qqQ;lB)m3_&r{HhwrY7_&-_ZVJ5re zyXRF>0zVQZy>EGIi9{joz-C|R{=H+Rh!p}VoLVBb4s2cUb!yhynz|oUJfVa10Up{PYhIZfm?aeI$ST+$2?K8Jq>T&cXfbSP8 zK|VNPKYu~fak}fCH?|{9s+Fnj>cryk)v=K+(D4SHWAI;v%LFNI)>RH5^siM&@^QS} z+j%`0@9n&a7A~KUauzSpMU`FTE!&%JQ`ambZ3{K|0c99{>$v$LHb#}784v89n`q9e zJPMUBpgYAFsdp8nLaqMJsaF%^JXxWGZx|5Y{Kpg|Y$vH!(RwRc(S&KAIC_}AVzk0$ zl?cZ9jaK;W=8cq^?V-HU{=U}!)@(Jm?$mi)EiSjn`TX@jDDUXSg;DDgv`VRO^iW13 zn#ScCP{#rby_-Kw7NAN+O(ASpoT@_bjO{_i6Q{i(efjdG zd~sZoosJA|x`6@En)7{Utd5-;cAYDYQtzIpy{?o-$&rU=u+m{)TE&06tLFB18NMo^ zP$8oEl7e0|ozkQ93~&N3ioDL21DsU$ZWIq~>FhxCqa+0AF^Nxk z2{JEU0$-BRH3rwz2aJOdmH0Gnozg>PBOVliY(3XspL0~8b-YN$os4j7CY>!MXb9-bOlc3bKwthh6cUB2D!eYJ!&w$JVE0LvAZ>JNY2UFlzrMTi5 z#MxC+U`Mj*r7~vANkuO;oJ^d2JVf!KJwL4%j~&r|!bFx;3xF>oif{%H^dcOieTW|Z zy358cu!N22-s%m{J8ocHGJ{65A-;nv8@j-d^F>07*g+y=9O#mgWB|Gq6!Y5Rm9dqB z5|y?R%v!%Nf%NB~*rSj%4XY)M&tS3^T5(*wN+T%~DHqOh!-@HJKO zhG6*|=F2*TZAkwB%7zpsYN*tfJ#bLpI!BedAB=N}X^oZNns|(Ge9S6f@GJW;TZ`aM z|NIArg#hjt6~NpCYsc$RjL~#m&`SXv2cS^#nJBCi)U9yCQ(TP?S$>@{Z!DAS!%J>i zL`_=cz?nFB%2}PH)eAU)@bsgHco>Qfc{9pL(13joK?jiQ@ff~&KllSK*>4?c#D|v8 zJU!~&Qeidtn%*Ke!oi_Nx36?*Z#KBcw~t)>&3niE7~rmHG62+UsgZ1++zCdxS)7;PQ6<~-n_~Zlc_28%i0VBWW*eLXk!bbh` zA7&#MU~`ec2B*f+5ep<{3JB($g59QnNrvln zL5D5qP06}WsUv}f(?-G*MY6`0?ZgqB;})vUNpICK_iPtzkC{w35{=kydh}2e`%7)9 z)25?1S5i#HO~i=4p^cAH3qR;Fv49Lv)=eC>EFa_~;*_FqC@)cc74*TJ`93oxcbsRx z%QrG|H>(FE-&(3RFsTHjuo;E-7csw_??A}^(~qz(FHwFwjxynmZ~$bsZpCr1TZ_v& z1C{W7_nF`)Sl_kC&<<`?3O?52D1BI?Sg6Bn@WbJOdK*NsrjiU+2nyaRw%!Gv>B&Mp z9HRB8!m+_=iX9S)41jU)wi3gHh*xJxT(bHE6C2}A{w2`2EP-3%FA!Cu^dg5gFJVcZ z#T4jjnNX0ntRinO5zDK(&YJ+jveS0tR2Y!zsFcRkhrjicbR~Qr$xUldJmRn_|FT5h zpOX>mCz?ZyUMKfIkj zZ#3(i&p8lEdCPLdKG>f><~1EPaNHG1jJsRK?u;np9D?UH#jm8pDu>;Tp~ZpulaDdf zJO{DkQV6SYhRm(xP^Jt3Rrr8Tc)+f z+euVqVe!9FFzenXP$EB2RZ^Xy+TS+rUm>iZzrrx>OJ5jE31xb$yYNwrQVHG)COW?? z@@tBp{cOyELHMSU41V|~dGv7+uQ|5pxk7_6RB@v4(4nB5t95lF6+<{|o?)ZUI=Vim zn}8k>8f67Ka9Sg1;>K!WW82jR?>JUtgdw?Geclotlh3yY&nQeKM<#u?ErQCzzw(g7 zzyA{inrGW|_?kmiy(0OZeDUEwmDouQ4kTW3k>zOX0=h2h0uNYeE^6ZD(y1<;O!;%5 zscNIiw{skJbOXmfVFtT3k)&B*Fs_|D8uJ~9F|zPCB>H7xQt3+Iu_`O zlbI#kVwdxQfZt_AWqci-#ub8)0o$_->x_a;NAmiHAJ}t`D{S-(h2L_`ZuK1JbMQ=D z1-WLKYN90@7e>Yk-Zju^utli`?4ZieKlhy`=+f)h(v05bmONP_f06j@Si!IqE`+V0 zuNml`%gF0-jYN^bzx7K3El#>G>g}3+NL)Q?jb>idF*gRf{Sv5^L}{trPbAqQtwmIh z2w?KEe8D%?auL29yn!kL2@L8+s~vyrs!bEc?dSQ2BsSWXXGKOgUy3CS@Cr4d$h_y+ z^!*x7*OuvNoE$W)UO7L4g&a&j<8$GN~*f zh|LQ2i<)7YO78zQri3&%qo+x!6m_D6FZ!Q0Vr?~YQWU@jR(QHgV;P zCdUb*GSWE~s20-K8xk0o&uBV3osM=#<9FWp)CZH{UO4=;x9Z8!jM92<^t{S#_UbS; zwhS+BEWa#+?SoSCG1_mnak@>o8h~xZZ54fo_?6x7x*xY996>oJJKvO#UZCFjb zRk}qjj&ga6iZT@NhE=@*Njqx_S#qO_fA2MSfqYyTr7YLOKDjo$(Vw2#iEfR@e3Wq~ zG)6$LJ7Kb7W8E5;Tpjm-O4&~Ci0L-RugMbnpC5+9s^=&%asT4a=g)}LkNg1FhTM6U zYp{W1-GB<6qrybl_fGNW+>+e2r``CNsQkz`;)yVtckDskitgNg5n;j@eYBXET!1RzyWu9J9Y$QT-G@FVq zjh%{HP?hy}aSb>{r;$I@v|Bj2s-(BGLn6t~krwNwvya>4fnX#pEIB$8!B6RzH6H$G zzOgb~S0lMbmaTPRzN!+VLAO=(KbICi%p4}&1d%ql>evU?xO~IgCf_zQ=`NjvCG{MX zx)T}N%T=2m&w8~Mg|T3@GHrK?PL=Fw8HuE)Vo;oTxlM1p<4RQaWpcP7hbO+!M(Vmq zCkAXe=?V`1jxB}mcd{ad&lo+tU{eX-A~!4(TcC4V9C*a+P2qMFfN`fWPN6`9e|j7a zvS?ji=GB2CLc8X8fP3kkZVP3Iga#BJ0ReHITFpr8F!0ru5tqjWt=bzN{dhY6@z`h6 z!Qzvn$#ict9qpYSP4-41=$*;rU^F}mfxH<{XYoISTK?q71 zaNtH|J+m2i<8WLHj&BgR-bn!90+~j0t zi788qkcso%<2WvMo1EEF(r=gaG+4AM_EDidyLP9y&PolLxZd zSri8PqLx{50CHFV@;rb7x1j75w$@|lgFl!+t#K2Sv9+N^&>5v}yn>m)aLS5Jqr+=a z;V_mIne02wN$BOvmmJteMj5eU)z|^CYhZF|bQU+^kJ|uK;?x1CWqej&Yz3NLCdC%W z^Q-S#ffa174UivKX$TiTI1K?vXAVa&WT?h%M=6~&r3(SZBw2@AAb{OGO+f>Rmz|I! z^i0veqD~#EmF7We(i6fh_%FyG#U21jvNq59)R66}$tn)bB$i`$J3tPggCXxP_Lk@?CkX0hN6^jhvDAzEVU(h~jX&g&GzoWCgIl(c#w^}U31UV0LW z$Bl-i1<_L!89e9l@oZAbM1SQ#xzTG+Ersi0K_M*JP*Yb)np9DdL|KEG1V1?dCHP<$ z1rInE5sn6Nxro;BRem9vS9>HUhJU!(?vyaP|!wTW>xO`82ff-WFQLpPB!dO1%Z`xMMSNxHt z5cAW~AI`o@1fJf@Vzd7oqyw`PA#kC8iEw$dM4p>f zJOiV-antlr%%8hARA~0*?54ulfJ_CBBlo-w$$2(sEHRa0mGG)))=J66mU5^O`Okl8 zFp4GYM5Q{w%ex_uj(}HY2LfKNZ3J$@PHS@N2rOA0!b4;oq_uF{h3=lrQ5tY9T~}gE zTD2g|+4fQyLC>(6_FCfj|4JL9I$$ik#(8ehi^kz06qWh61{E7SL#q(t`b{0J-BnEj z)_2ya$o-^Ik+r&cRrq&T1NL^+8c6t=PMeOa=wq^~SKoP=h`q7xMXxpTAwh>KUepZs zJ$%t<*vd*8Xvf|g8?+-&3B9Ea+P9`wYdDt4X$iz^^gbx8NiTeW(L;eH^F3oW<=NRj zCe0(V)fj1zHt9fLd?qEZXRvRc@e3FFlT|_blh)|7-#2&^84v+T4v0f9SBsV!`0^ED zIsf`A`Zp236Zoyw;a*WqsHJUYAvFD$JURbM-*H;i5~@w(MP4kwk)o%D^V{FsWROki z4V#J72v}d0jwUo*?Is-X209tGR1Q|$ta?sA8E1x3c@Q_cluyrKaIJu+omi7* zIl6ikki;b3;Mxu~=RVCl+mkyZfV!bk6V0GarGw;yMydNADP5#`sA_3D4WHP7tss-p z2)3|=VFF%LiGA=HRgDznyIKHJMuXQCsPL{WOU2vy;en`RA>4y?y=0NW?vil%)gQaK zJH|7!)?h#0P7&b(9=PFj|%cW9f)P0i|qiAty zci=;OGsg2KtA0n)BG4E9{^D!x$Ct0#XzIFnSpb*yO_8=D@++gn34`&Av4B+ylNbE*E6>3hiX+y8X zcci)albO8PGg%hymCD6_0#G!Cp)ExK%)SV$FHX-Elkvkev>uFkg$_G3o@0!lK>jB- zy0t2K?Wy6$KFL~%S9)Eu0lL*uk8Q_oyG#{Ja>30uVoaLJP&>~Nb-!wPyTh2(E z!DvzAJJ-DfmXH`ID(4bi>xE9FfhB7N z%ESnO-^|T$f->aZ{JG)8q3Ox38>%}UPJm9tMwdE)gNVzf=(W3sh&AtN09Zt8R~9j+ zKb7TE`t89%=?*&=l?moxqb7j6t+~9kj*B;GU8?i)n@KZ8TAWP=ioR9(=OSnDJ&Q0(g7{3nCdwZ7No3r#OIzdMX#}~QpNg~w8aGa?DPMtep8b`}!SlXhS-fq!R zyXF@BgbnK%H^Rc2rl`!L3pDoXk5ZqpCNl)_4`c$V&v4n8oJrm%-Anf~CI=mVO;9jiaSj-Y)bI^HSe? zR*|gn*5Wpo)k-eGxA3P~=w^wDJ}+a(#3U=ZT_|^zRfuV;WHJ727t2lB+QT2t+}oZ! zU_{9Q{%sY<7aRqF%ISv%AcuJ{whOWkvIy_IjlxxwxOd4al2ZUjvt3kt@YE^(TF0@f zN53qPIICqj{Am{|mUtsqSOGvv>PJH4@5) zwz5#LG6zMw^tV->CTn~qCLqKwTM9ofxqJ`)vdhYaEGrk5Y?}hQQZzo|AC@c_@1%Un z1H_vV{jecG5y^|gs49|=5>ETnhF-1n3<)Gc;x=`x0%y&Vb*rWZerQ8xSNM|I?v(!3 zuCte%pVw$hxVRK+fGSy^+qFty1Pl6jNCJweWqfwj!uwr9s#Q_nZ1^{6o~t>aA1#PF zTMQKh{%}F;=ny+DhweLVd6y=SiwafPc5j>*B124ZLWe)E8SJO)IrA>F<_y87CLnL<*}2rhhV_#Zax) zlr%H%n0LH2<3i979A#0lUx0=eXH^5$d~0h5ax{nZw_RR-kfo)qjeyiI>?&9;e%S)A zml*Jk$Gea7g#a7!1M zhjESXCJOWy+9ppWnd6uJ+gerr;A!H24?rLL@Qte(^oFBI@ZazYK{pJSIgx++?eEQ( zFJy$4UbK{}vsmcwZQ6$FzyIDqFy@Tm4T9@rSzT&3>z6UINj=MX+je5%oUHYydWaNP z&v({y6z#W2z`}Z2ywo4Km91~jom#im1$soj5UwMOOBmtM`eMR!GM{l1{N#1x!C^yk zB0c3DW)$ikUgc}k<7*mUfOvuq{CX8RcHu!JJ!DOgt7H)$Cm-Wp*EKg0%D5!F0?h4Lp4qu9Gr23lv35cwO^VosK?}YumfbbCA^*MI2}B=?1Gw^YwAA z{X9eW*QhMBI9`^EC{51flUtRUoF*}tY|F&RD?jBqbYa;e0G8zXBV6VFelfKlG_LTZtW_ zPM&Gp`OZwmpRiI#Wd z0GlK1KCqpGw+R7zRqUpw}@lQcVAI8JD=|X66SA zI-rAdSzsQ}P)Bb#pb_=A2~&aESqYV6)TUz93iI>aVT@6gpl={C zzCpgbCA408E5x3^N7fh2V25cLUk|88Q#_&1{=N}o5A^*auJEF*#% zML~~cHeM%O4OYsvexyq)cXxe0pSGHSW;6OQ&+Tw_zM7kLmn*?2Z{6U=6elkmh=lL=2rc8@ej^@_) z@!9tYLq0ct^+t|p=Q(1$2jt?pur>OHc>VF(`KI`JTf$OUE0uVmk#;E2918;hO~5j7kJeiCj5vu}m(1O^rN-*Ug}sR z*G|atr54y`D7{9@TjJwb@Lp5;EwKh{hZ|z7KQ7V)_niyZA)2ZEwj{>_5g`as{N)uw zZs;siIu;3i_b(N{Nrq(FUL(APbyN&(vRKrG7#kUg@Vy;ubP!$2 z;jwSM+&xIaB&z{OdNWwo1!sX;!oiEv#K*-Z8wqQAE>WT6*4;EoE3_G=DibfN#5&7S zd^x}K7`$iihQkmNT`YVttR(`t^rb;54mf@il;vwt+tGI#T*m;s_g;Y^IPiQ-HnY(O zsNkGTv@z&2nb#uKPm2y4tj})x1g`V$HpRw{y1vAeWBv)p%eS6W9vqGT67L?j9Z7nW z)Pu+y4Ty6$hp#$`F*BBr*9C_WkR>-*w7KUdvYQmTm_<5;2xhP8SRi!OYYcC;k$fQ$ z-TsKNyS74upIUU#E6N0dlY=^+2;E5b^>~wx#;bLeYKF zyi$G|ba~*p2WOaGC`qTfgO(ujuHBc=Mfu~%#_}P)anKjOp5;-o^sYAm@Oz$oFKXYR zUwAFF1}0FiKqXsvdg)yS0KPVpY2Q!xlt6VCy7?SHHtANfBED9|aCS!Lm;nm=cvj@s z*iFhy9u}p&q%)JO-;S#>&&5|3$jm6;`cg@rb%7Vo4ZD*;!#3??yyS3$cW1!O=>?p4 znXK5;Rq4+>8q%20;u!Dr&^ZYmkvH$Me2a3|Zd1&|49>C9$90+)XuXIpFfT-!=O2)1 zpXY@(4V!lKu6}NyUEBi)?WauZ88n3PSJ$jJS0ky|&)oW}%7iGOUu=jeAc=2o^mD5e zSAvn;Rs*MEzu(?HbyKV?)POKl60^R%&Xy5|x--pQw;Y4lXYihf0RPSJp|@VG=9b;n z&N;(M)u?Iw8MyoXtQp^#*rWemlW&CEcoWV?HSXg;!EVUgBa-InW^BXGY-&~Z^o3%E zp~^|m?=uPD6PA}+NAPcbUTVM;Y?OR~;GuK-n^K!Y{ z;PUdITOjkXgI@B2*a4{FXG?r@7Y}5}8NtBh6(|Zyw-b^i!X6IN8*vR{UKjv(K&ikm zm3)a-B7B7>er(dsqQjH>HYY6VEww4eafe}-F)Wg#x>@HS@!nh|c^bHxo(bS%0)8ifH(Q1vvVLf6#%P_| z$N+=Y@5e6Y)f91WARpXlD`3AiJ-IyhtD;|xL6^7KhGa_b=G3oRzw@IH#$BDEE@Q-464oGS6wOY+@sI%^q5E}w4Vk7l@HyR3v@7d! zz3D?c|JinLMiq=P#U}eZ(7wtqF4DUps27(Z>2Qt!PE_U_aR*v2(eHrMFOb~uSirAt~BVtZz!Rwx?=II z&gjog_9J7zpPMk%CuGRT#uljS(jYRtoTNAh;yRi1L^$#IhBIO3$LK0b$c=K75nM+} zbvJD>@ZS187Ih%e9)aA!eYdzD_g5Uz0`K)OG6(+a^zB>}H|r_~2>RD7OEBwUyxiM) zJs9upyonZ$uoEQ-f$=VT{CK=fbHh`=_2^4x6){qbxL)p5`I(*c$41$_+^O=YH!x)n zCnNV&l!}S^u6w4a8U{!N&31!YpjcHL#%w34R?&JZ;jlE?Czn>i^(HoaL@WeC9lypB>>cD+pD>ewRo9S;Hc|d#DWg zR>^5$=E6-73Acv3V$09ZF$mlp1_m^`8v=YCe3>kL7DaqRvYEJr2+K=+0(xHvL0qZ4 zD#>xa#>iFu=v~DB$r>|nZO^I~oNOwA`)Qo=Er!!7!-c&N)v|M{v-jA`&}Q!|NJUHL z1^9XrU&Md&Jw@BfmZbY7ek$qF}4yf8hhc{R7|kS9XD%p!wm!q_E<`ikOwgr~hgPk0k`$ zT`Ca7_=5-Of3*UNi%&-SA9I-SYa%1eF_>speRWXKs_}D?QWq%{DR_^=Dew`~!wQh& zydZ*tjGQdu_c?~iwdcbK1}kW4e)}&+%vh1o+R{zbs?w)Pty%hrJ4lUVnMBZIv@aA; zRm(U^L%?4;3OOTf=TV#se{N5Cbcx!&yrP7pE9t0#OIHM-wt8JIRTsH(DYJ5vWG4qX zl*^q7fM&@QrCPhr9zBL}R^lROtsTKS|DZ8ZyO4MndajkNHYbPt99JKdfa-+~n|N_IJ)vF3_3@%ejg|Y{)2o&@+;^bCfqS zi&t2|xbMSkDN_W`;;Kqa#yPC3{QLOk8pJtCFCm@LMtVoj`GIWc+hGYyYyBD1CM>dRh2M`2Xpva!lA0#OR5MuU<1h*6{%(O#97%_piqE2{Nu88@Gu zVO*G`=qlJ;3ZRgreuyS@sY%LE&Lc%TcR1 zLEdLH+j0@&+i3cO-VM`VbeSa=fx4JDPNN&LhajT!BumQ6m{BAkw9p^y70KA@44)S( zENi@!KFpU?yNoZ$qRFkH+JZSJBq$u1B`;u#J92|3{BaSV<6a@2fQcV5Jpm7cjh-d< z057gpSq9`#SkY5a$i4?Kh-`7Qi>bhKI#HjUMJYBT#)CL1(4rWYxZiT&QWW9X>BiV; zbbK8jFPqA+%HjN6U|eb#YqYo&((XBq~{?uaYEPrZoedMXALy+9d;P<-G&)sc_eP_Y)={~Y0f*&ImN4dh?zXvs-J z6nvUuFl~l~9jty_!WuMwz#2=>d7b9hss#RS3bGs%LlCjz=!3TAfH&Zp#YTBkVABM+ zg5HX$E%GziN;g^^U`w2AL9p~B1Fn?tib^XUU{R%J4H#dFVaBim-dN_#rCfqP#YJuc zO`1d>!N6b~sv%5;6uZ6bV&}0wCamD8({lFgOb1zR0#>-f201c7?v+nZCpjl06 z*BqVX^~-PCcy(cHp4?af4ay2n2VA77L5 zEY1^0_zz1Aqii`j=hL1n6TIXoSv0M@hJ5JZ0sf%KHFVM6Cplu?$z$i@b@W`HA#JNlxqZS!!o$?_|zW5+;rU?o*%dzxF!YsWEdmW#F zw3nO<7Ou{9I@LHo$oEMm45rvC&95Bs7dzBqWg#v(azx+gv zz7P&ug3-gwm+=enq|N%4#n<9+Xufe>tIb(#5DOz?(}Jm9h>GG&gdJF523)&3#cvje zk~+AhBJhGd3g{CP-~~ESV-gzyD84p<(ZyD#A*sa-ExeFCj8zIst!s6qwB!nyt{1d~ zWLr)-Lr22L9OZgai;xv4CS;T8iZm%<+cw4XAH6_XM$U7AW9P>^FQGCCk`x8kS zIGz&Ky!>Hc zQ6C#5?JmmhZPt-Z+bb6!9O;4vXF%f(5nWfg6pS!|i>|t{td+n)-E5Ev94NC0MLvn` z6>B(OeQcf8#}U~N3~}@AbpD3V7ic40!-gsv@EhE2(gH>@K$Hm8rd}*!p*36FT2z}| zCWe>_r!JKSYs{*dk`p`m4XrBcDo>@ z^#%C?+8@iCOemOX9XEttKud)%R)Um60WDsjm}Grwq$bWW^&-j6b9vUHcJM+34&c3I zolO@vMP4p)vDiUw0{L1S)C!#p*OyYR1Kl>^85Fh_^Mqp2Pw{i%%Ohl(Qmh|VQ`?kn zq{ucWV7`O_t5rQ=rZTxuN~eHS6y>iM7>-t|D;dgYk|pzJiBg!hZFxuWHcjwBrRRlW zyY$PD;g8`|0M3@I)0-h$5uAFn;IXE+cR9&MEp}8x*}bR z{E0Cfbwn|AbjgQ`VK2411d;*#?*+N#EBl`MjL!LKt?N_5dOpolQ%~f0l0qmiu9_8W zo7F-wiCO%6l;kN-Y-j5Pz{?TED1{sKZm`~qkT{JGGit5y*SKk{h<%Vf*-i?ay$8+kw&h_MLd-33v; zRe};n>mw#3gc5nVgr9^5ar4_67JbV<#Mui&R8(I@Bq*NKMYT36mjH%QvtbeQsEz9z zbrmCteVGd>d0m{RAEoFN@ySxsHxq%(?@pREh?Qqi{R;xb-*PWgX_*0>(&y{FIj+$^6xUYs!B%Erl*65 z4z}}2*T-=j7p_Iwlh})KdO-p4Uo;rCj|Ou3jxMYqURluMs{sx=wWdI0PoM*( z&Pb1=q~QeGsyHw5pJHh!dLg4lH1d8dwPo={F4RVwS>p?Y_&kk2Hq#4ROd0~{oNvl4 z%t}*|=wGa13_?;Ygj^hp$y~-PFfYo2|Iklo9^C?UIFc-QuoQ^t1s(~!>~RiMTWSkL zFZg*OuY|fXYvBN2EYyCLE11@}_(79p;uRn5F39P&8=`v} z&59$NQRjTgT#ho@Gm4ckTj(P-YwyATl1$mg37QO#&0ly=11AnIcX2PobBH!tF)Hzi z?#P5}o+anf=E!kE#F+`=sg4rkj>zRkA}0T7-)~YvH*5KkMU=Tl1NgB_D{GMIrZz9c zO^|LW!zqvjenL%S_R=8Ro|2!>b7gCW0oReX1~3v^R)H#KnHTBotWl$u${8_qbM}ULuyLGCD>N z8yjn6DK0w{G4*w?8Fbf?yqn@b3qe_ld4_h3Wm|l0zBiDRQYnV>D&ZSOrRSA&ZDax- zfZ74vSNDB$T!P>=s9d+kg$N^oaicw?Wid6UpJDBb-^QA&a<<8(DO;!HoQ0Gr3ChtE z-J#vQo{6O3A$}?M1{p>~|0N68cs(xH-xA{nX7095C>qAQBvQOh%CrgE`K$Il>+CWD z<~)VTXxt^#A)vE<&IF0>e-|0QhQk%JEAM&F=;FR%N`^HI)l*>qt5qb-I^v-uX|tug z^%t|t_s){tQmf*ZY4$I9;4k#=MqgFdO0%cbyR*8y(K;*DY~COA^j^R5DC%{kev>l$ zLcX9i$5UsfZf=go>c8yX3r!4bKH8|z5)TS>4pO366<0Y9UxyRJM+Y0a?2s2%I2X!t z2*S`BJ>dllV4ki@WxQ7*`JGismBwWYvs^5Ox#TigE`b$r`?u}5jig}|yw_U&4shxFT1C59BB?{$ltgV>qHK2S^of++{rmT}P*o@rR#l-4 zphU5|z1F|)_FA*%X79O~x0w4`b2D$SU*Ug&d4-8n9sndzr~?m@!PRY%Kq4|TGBPqE zG7c`^Gl#p`TUh!Z@Gey>qAM}*AKr*}2l-u^Tc0ty5GkV6cRLycrAHL`LN!$o@zi_f z_r=_P!2amKK|X{rhU6-uaoi>)#@_Wqn1sC$S-)l=7Jfg3R2@h)rg)s!Xu!`oHCh}V zPmfJ2SAsf8HZz8Q<|A6>9-#&;4p-4&W_tYli|5~`=~N%S*~5mnmdk^$Af)`72v(86 zTj(wOh4llFTF4KkKpN--naWl zhesXn$HU|AU%fr{e%ycaX8+~!;lYvj>J5DR^6BC6;j5SM*E9I)A2) zZ@h!QzkYLYL@f_ryncRo0Iv>TK6(E3>EX-oG|1gDF) z%V%$31P3n;ULJRE+&BsXdqM4WREWit)Nlaxk{E`4HWe{Uc6A>QIT~TF!}(pYjY(3W zQk+}KP)sKeZv5`<{e?f(5y@}F?+KpikXqAn4+fe6f*z^16Sho55}zEtVQ=I1FbD>6 zr|+5xzUCYu`FAh@4FyYEKCr;QhQllxg#91=4?!EAj9j2mb#p!Mt7x|rgOY7fPt2Q* z?3)|{t$M~X?Vpa$$GvFO<;sFl{4-X*RDB=H!-w+SUJ+cr0`o#(b>MRrD(zE-;|~VF zu-kGF+caf`FYj4tUN9892oSxIF%;!#?4Oaf4hEeV3P!K2r+#wURPYZ4lwv@VW9X?0gwv(Uj)!kiX|2U(-dMU zD;xfN3A~hR)?$?t3b6wb1n}OG!nA0RP3XA9tNwFZ#dDRF7Sk(q1<>vJi@e;ps23Sk zQr>eZtz?L>vI8ch@-8X}tvIFpQeyZeFt#Un4c1?nZ%WLj3#fsJ=iK_Cz8XF})+ev} zVxex1T^%6CR3z$}#>|$Tbpn-S9!u@MEGu*GI0ech>jBl*j6e$YqyQ^EM#8>r??p5x z`j}Uf2^Gs8s8rC4Zp1YXQJ1<{Zn(?u-g+aHt-aD17d~eWpMHxxp=Y+Gll@GBGcPsH z{YFk^ z*gZZ=vU9b@)20v6DJt1D!NpoylBsuSoR4=MkqR66heb4T2A(4tVF6Q5NRU>TqP&y1 zPCTC+vT!OLTwe-9M$AZ3pGI> zPkot(NEtg&?_G3-_R};j0wa4Ya43c(dZ5P7c>?nGK6xp(->bh3G3px!*g?baL@W)q zc9(^eX=ZDct_}-hg*h+0D)`ZrO5sY?!huvD{VNLI86~Z{hZQ7m!KZU!P;|xLwfIVn z7n5DD&3YYwCJT1#TCvxo*-5yVN>s*<7}VnIjlau7EBLh;8xmeS_RXbC(k36JjKzvR zrgl&Ksn2&lC59#C6ZM9CGAd1-{^Y!1<2?ES(<7avrwcPA{bhdY@Zu#=#4;dXDq6~e zq_RoNSi0y#2f($Oy7;{2vwQJrTOSty)4la~d{e$SWczD3XzTi3(pN0rfdykF@VS`KuskZ~kX(p0!+Ahfbh~z&VntsITNkus55$NqaOV505! z`{;9lw>bo;*bhe8O9W{Ky8EMqBT=qQr^Zs4+Ct8P!Y3e-A^l59&`NO)V5vogZeM3Gn}-?$?`YOr z8f3@&sMqye|8^D*&|oDgJUiZLfbK#1L1r9e5ktH@ll%W4{20s5mZI^4yf31#g=}T5%8wpj#7z=n=!sqf-^9U|tQ-@UP8B6+Z@|E6quC(_%SK9mCEA9P-4|MWz z=i{AW?LkP?M?&-@>2DoFD`(1!j_vNX9owCcJJ)z@*B5VhuQA^4Ua!3XItxfl`;-~? z@Gh_lx{NZPm&hm;FlM!Y%ra1F$aI)K1ml&I?5+-$`pCS1CEZ?ux2}AsUFpnsu5jiH zY@iF6`JF4A`2sBW0%m^q3TG~d^>t#M+2ioqj_leT(?upv1!TBv<<^a&9i!u+f?x<|;AIRU3>Q0XR>8|OH>Pli4 z9dh8^k53+x4LsZNNsyXee*k`hm_!Fp)!@`m%7&HbZ#Ap=0UBX%(n7iDdT2$~WtabS z zxnZFvKf)=d@4{%`VvjIdyHx87L9;dF2if`9E-IO&Ut}Q*KrVhkYcAK1f&ZRHrG0WD zsTXQyT20UwM|JL@x~a=6%)onOrUJj?`nxEM>B=T6jgmQ}rP`@p+!Q9Qb{)gdQQA>J zC5>cG{$QY}={UO)D|n9eL4B@sEV$pHUlY82;-SP`<_`TX*iN z>$%O_sMttgy7wp%L2;bWxDl%xvAPkf=l-l9R+D>>#aM5D`Q@MTPG>l9cC(W(w_zA3 zsTW8*q`085TizMwjRg)63@F8-2Q-fTb}05qizm8^2y?-ng@6(L=zk$6HVecMGZG=A zPppR#&XD~5V8!%MWPCJ~4i3yu`dll*^oaS@&?hAgM_!l`bYOmypfGe5)P>`xP_AUw z#~3a%ar8KZIduq#?jamg^2am)R;XcMXqWnqaM|@q&2y|xCviySdbcIDtTXSEn%RWt&e6uWrP@F7j(hfa@*NA;0I-o^eiUDoSH z@&p(AIL`G^y+=5LaK$~cx&4`K4hDMLbKYiy2u z*QfRx+cb5^q0%BuBLBz^-d;7uPXKC|QqVZcb0R_H2ng5qM+&^wuB;~e4a{O5E#(wP zk_;VcqfKl&f?h>s4C835{{pe|y~+|$zy!5;jt%x5&5_FbRN9n&RS*k%2D$^`wXK2e z^04t&RP>2^I=4yb$V0j1xtMV)C}V#*oPfqM=Gu_na5mxXh~Hyg3HVhaSsbT#>B0Ad zlG1PClUqzX01^+j_pIVj&u%<+ytk#O?C^(pS`mACujvQRrnkjY>1_$(v*{^p+@q-m z$1XEY3bTZz87F|WTsxj1Wyn@?mI0kxMVW6jM5^g_y9AQYSVb$jZSa(ex;u?0id!=x zKvdL;3h*NUi2oEJK2vKwN9E#-8X`@~H(m2JCD-uKj)I1lO|rcBBn(bG$soZ+ItwR_ zHq_Yp7F^c}z?0^Uk*5x$90gP=*26N>UJsd-ti_$3P52WYVWn>9d&+S{O3Xq+ARvY1 z{s>DAuYwp9?%*SShT3(3>y7?-XQ%zqVrMnwp_qdiVFWTlDfSd<3D8T=B7s&U#*f}J zlJNO`{_VMUM0MP9uVu_3bk(-xyz|9JkL5xYaeO4fk;V-R0H-91%`iYXJoq@q(@LFN zn4<;P$T6W~UeFxE>A(+?G&ctvz%pp3q&3@H-Y7cpV>qqGYoGyuwY|0UV0P9$mZiv1 z$`fYCvh984eOv)4)73UcJNREedYj(%Mn^ILg`5`&tJRFv9^M=TSdSCWC^*dG=wryy zbwD>7JSK&vy3##L<1b4-T<6t` zqe$xq$&3yTenWZbP!v;@2Z~~hgpvQi|B&`Fp3c&s0Dl-+n7|)WV+~}IM6q~UK-a4J z7y;(|)mGt4DldocNDf52tRnJ8yuCI!+@YLj(} z1vp2T4Z!G)4wCKQVTzTbK9KQdf{GZYXoHUj;Yn!I%i)kEN|k*MUcrq!SI%-&v2N9x6?d$>83kCW@n zG5Q?a*Ma;+_u%!>;qzB7)rK8}Lv;(;3(~V7n1I-a$|-S`F(yh##ERvekR=AMM*&0T z@`KoEm{_ZaMj0Os2izxrZcC;biNWZ6R|DGV?(A&cy?cM_?l(L4w(e}-+4_3x>$`v1 zxqs)*o%`EgZ{G(bZg2h1|M7o^4GRC=zF(>?%Ova3WsDbBL*a<#B8ym##lqfB$a+MH zCPz^ZHeQ%Kqc$CdTlK&jL_spSMXb0V_FzET(u4xCN=rd@Ck#;H#FxoM5+O|x%sZTy2!Yx%txKMb`~Ux_My1W&>x||UwTPacd&;H zaLLj7-nZOJU4IbWvN{e(R@%64NIU4@Kgh|M|>u(iCS><7eFc=*6>s0vh?7N0LXF_lHrqd>4aAK zBvnK5CVXj1h@B97oPfT+O-SwmT?0pl<9Kvl;DNe}EHCUIQnL5>o42i0AIZOm%Cfve6#KC{IB=!prqn$mvX^8oJw|Bz=3A|RY;%#Tof7( zUlz~+{S`3LhKFr~j*X3SgybMrBIF5gNFq$CRgO7O zWZYC3j`9Vy8H}<3SBo)v;QRK#C#Cx<+feZ#XdRV{U#K6UM8j*QB!?ZMiaYmty6W1@ zVe?@c0B!`oaq_;5_)7O`wp>rQaI@)jM3-_Y4Vijy zyWU%J1p2f0wq##?o><+ckJyW8 z8RTZ6?eHS;oydCDisDuZ%eB3WZ=_QWX`r=(|Nqde-_@;O7Tg`4(P4;nc$byBrN zGgw8_i^t_a$#SUXTbyPj$0E)k4lw%YgP1i5Do-*`QZR*AXOq|5;W;NSP1=$2YT!@j zxHhQE`@}&cA`)3MLg5C~veRh5v^6PPYBQgV*hi|J6I>U_0>m6uwnL+ezQ=HczW6M0 z*^c02n9vQ~Q>nG7`opwxBd`7R)r*Z1e+tTH3P}3b?;A>bnTMmi=ElO3_AC?Q&O9BT zn%S%_rvcc_GCZtA+hdoGZCY*iqt5-Q(HtnM$}|C zeFae;o7cEC$;E?={JLw0yD)ZC(8bV)#Tu`SBZreDNMEZquZFS{I{cm5>?SCPH+W7u zRnb>XtU(iNaQ$Kp?C7@32s$YA*F+y&;C9i#o9Kh3q7Uj*Yng50O>lDXaazUmwJFT< zVk06R`6pV2ii4Bc$dBzCcOW9lOiq50#~e->j0SvbBrcIzV<4QCc*BXg$5lZ#=^BNP z1QVSD@ebIJ66hE(G$9E|cF-_VmEee0^(B+;1b#NX)=7(2mCg0JcOkz6i5bN1Cw>y- z-jDe`IU|l>RdcUr{CYMCu_#FH~m5>2$*s=6-_OaBP)CRfJW+jqCOcf9u2$L;Mc_}S2R$8?L1t3mc~-9bjae0%(C zbNfE1XxMOIHP3{#@H*3o)hS^IyTC6nK%>o{>iO{%8M*kQN-cJ9CLI&zK}K<>$y(fG zVB=c-()?8CdG`y4NQcfT9%VgO(@kb^9GxKDV&x3FITWXHtd_*kU7k3E9w0k4{i4_5 zAfS3W`)M0q7fjdnB^uEWxv+&G)1OY^&xE}Il37nyM4u4KZ#9QyBVZJ;jal9^MjD0H zMBjJnuQQGccxeAN^G66wee=M`OdTyK@MbQUVC-p0@eZC%LD*6>hGK>K-CpL7w?)^T zNdihc-eW{0WJC(AWvn`Ka&?KFNZR(G%q4{C)V_yU^lnz2teLQlD7U(@YV7l?7APO* z#bIZP7-LxTX+%}aQ9fKw1;H5|IAI{UWl%E?+Ss*p1pJ43;(!099zaJMwZxfb1(sd`TPUa{IA-vy zj`T4Wla-?s6h$;mlht!du5`G?Psrhhv?Xo=Uu_vZFfZe>wt#&)j35la1UX4>$VaHd zf?x*cQ`)AltgT&#u0BC#sSbwPjFEs;vBqVO8aR*NJ@oh9QL%RTtAC2evyzwa#!8uI zDW=Y+1i<9v%v%!^_qqeyv3>r!gTQBM6+741qU3iEd*O*1o*I{e2d~;S0Dvy|z7zz$ ztOKMJKr|ZE_&!a`01U&AK^+LgXi|WYS)hJ2!rKVFLcIHRH}E;NXw!e|<9}|yn8&NK zTWrv_vwdB1r?qB^`yeb^qc8<#+)w7MQf4nXhkY6c!_r|BDbC_i{k0*Nu(CnZ%Nm4* zuipoyQ0Q$PFtgG<0FaoAY>KHShCR#MMcx< z(~6z18j2ET{Ij;|c30z;QJd_u86WTX?GDUMzfI*$7QZHoUz5de?$5$m{BkYnb&%X^ zdHCA>a%XG%9-EjkGq-OSfThjt_RdTN8ME3&mA+4L?gb#acR>j>yIUXq?5cO-NdcBpizjGAKoo z`=s9sM;Ngj#Bs#8(bS;se5bOCOb3!rEmNB zWt|Vx(>OY72kM%CZhL3NcWXTg7%i$ox^-2mB%Q&F?lSc!<$1eKQ2tfr(@mf@DFUh= zzmM##APduNsYbn$adn>$u6A^bjST%D^4aq8*#Ytw&D`Gd@o?*<6?v=5Am>t0<>Bso zX6LI+FaM~U2a7SQ@j9*Q!cgk(yC!EKztW7)TM{{$D~9HA&qX_ zNR5ruSm$S*QlqWqWel+Ne9kGbFToXjAsJiDM&)Kzau4CtM00pg$PS6OynM+w_9toB zSN@H<1Ndq)8nROvvcgi{qWV!mDa8{`iE95quSg}Y(I2M1P&5f1@A7q>Fg+z9Qp0kf z%x4u;5dm$myL73U1Iq0bREj$&6)2_p4E*Dq$R5bQm4kWU9(bV#TMrNs{u7t-AG4VM zcyT%ZaXWZiOVW2y1=dD1(H%}bz$`)q5UY_xBdgIt7Dh>G<7^;`?m%y}1;AI{Oq+zl zLyVK^=tLD^oUrpZ=lPwa@L$_gKezFvfR=LUr?s^_J7*6;TVZ5PZOl1XJoRSDiCk#WLr0Vb4$2M@yLU z7R!Y?4?#?J@IhtZ(&$ctbg4tI=Gy-Bq4VMA0u?iDzx(jc9>pS*e5}sC{4kyd$rOEV zFxno?g(k`)H!vMlmsE_Ql)x901LpR#;8ExU~1EG$>?R8jX-1RLF=y zIM9N8B3c)&fX4DqC0nZo5}gw-!<&@B;ZJoh7KjT*PYm?q#!m(vnwD*pg_9w0)3~VH2xOn+8a)nPnVPl=nu_{oAnFtDn?fH4C=XW;LHTyY-sx*31&QR{zP!A5Vk9XSHiD zYu{e=&b8NW`3-DCp-DA6`P%N}+*%byukHKIPX4rZvRSlc1!noYIfJk1&dn^5gO7h^ zd-ig6?3JFpt87^7`)0>p(;b^#qawq;v(xO@PiM!P1zYxnmCu{~dQJChW{Dj9y4kOv z(tfp8Z0QrW*|FDq$7a_kM*vhHt=Y4m(w?=KY^hCa188>bHQlwjMRL)={kzS!{lvDd zEZOqgRsb~H_BwA{vq(+ka})X8L_XK~Svc}}QHRD=6B{VkEQxxlV82d(FvYxrk3oNi zL)<6U*Yo@DEyfk5A!U+Q!y^!?yq&a$-=+F@dKQ^f61qqW72qI;w_*?Kg#}&}?T~5_ zyv8Qow?E-hztY+ym_`Ee#f{F@k(A&o^rKz$09{GM6$UU&*p(RsJ?9j{fE&x`tztd} zCpxZdMdh$~2=p0tBrICJH^1b(?y45{Q*njW!&u1=cDv&p@4)}>!2j>U|L?*7@5BH9 z0{{OS{{Id9e|yXLHk$a4wLdME$%4nDn`e|i_6-pfC|hfnY4pWer( zf5|`n3qJii|MY8o`c3}nH+wX>!Zfz_ezpkarFzOM;r$iJrm%my1`AdI2m%YXUH;Y@nxL3WfbC$4KzVhX}yrrvHq-KHK3v>~S zQ?d-r5)_wUHS{|W-5|LnpjYF!?JynvWMeWL(|g-Xf?yZZD|T}^xx0gIn&?)aas2Sg zOOX$S&6M0;A$qv(+FWMvGNM5*%T(5GD8|)k)&g3H=V+c?rvDKi9eEJ*keEKp9V>`uj=_}3UpepT@m1epg+QW`@xUZTiwjM^LWr)H8xj`%~fNK zpVh7!Kc0UN10DsjE9;909nMnhQ}e0IDs#W7;v3thci_P;IX1Tc@1?;p~Hl@3w`u7NcwR&1@5w8 zS14uZqadvdz3??Oojag7=m#Oti#n1Fj^L|TXOrR}=Z~WJO|DYAfPby-eP0bNpc=!H z8A#fn`pKg650e8Vog~DhLzxb;?V_{E--7cb+hkw4t~|_jqx_quF`Vg>RJs6ys_G)C zu@rJ(5%K1ir2x&1I{=cyUgq0kj-rn)FDaN<)E9|5xB2X@PI-s!=JqR|um8gH`6Fzk z;|Bx{9e~>UGWdb_`vd#>dC5+Wc}BUD8+*-9tU0xtQ@c5}>-;QyYOCFcIqi}ur~IS( zc+PZZptsdeRBlPcoh_%WN~LD%nd{G4g_f_2HDI)VBk>s0|MH%aWxkMH z*cHDpo|(OXy>aZ(mX~GXu~4;KTiMq|W5p1_aFzd2l)+fR&r%oEL3v2CP9?8&GJ`jw zkr|17)S=sz76KgWr&y{?mQkpeaFO*WET;LOZ=Fc;**iEWy4>Bn5;fCWPaA;tR9*9O zSbY>AYq8NanjFDoW|kwI{0eJGj#aK)QcIG3oDpTq7J7d$NZ5;v1Ud0LR#{(RBI9U) zitL&yV8L#&|;eGCQ~__@;e8HjSvn{Z9#3Gl-Yf%jMc zgMUOarVLK^B|mL3d_{kd9&+m*Iq>^iZ*+i3D=PD6c6vwqet@jyE(X{EheSO^FzS=j!7^YQd|T5VZ434{waL1 z;^xxhWkaszdn_g1iOJ#_CLljj^&#I?{y1PBZ4J~f}mS%th}y=@8w z+R_Y0t|#(xmBAn!d1c?C5Hm6NAc|=YLM%TtqIFG;7=%YSZ8>D3r$HQ|O`LX=X>`k4 z_@(J-O&hSxva!fkoNME7@kUeM%WMKZHA@Z}OQ?w~$`pLSut`2My=E6H>G6?&0a{@e-{QA+(Aw8hbq{NuPfCb9A z1n^4h8vwOjK(q~B#YL_&58@bXn8IDnrYVjH6zp0oBh*5lDob}<-M|R_F`_C`SFQM` zo5%R6ULgvFKuz<)*i3fhrC1hoVG+UYyg{<03e#)09EwIX7=#RVm?x9PC}Zru4@m3@ zGz}E)+PoiyAT90|(l>5t`zMA5_>Y4o&u@ z8eXB>+~&e1LOzh46}l88GeZAxHmX8<`BB|rcynz0jjg+}bvL%|xj!r1P}i*PyIL&l zk*dU7C3YffnoYvrW@=C+=25NP;R-#qez#bh0B~C&+ZKSw*6pQ)>sy6`tA?BD!U%6C zqo{}eKKwQgPQnE9UXbUH;-n{Vq)bp0#UpMQ0d<&3zCylx7AAIC9h#Cr6t)1Y1HLcd z24Uj=VUd!+kNc-cwgm>1#v zTo=ij2Emn{N+&~&RvUjDa7BBW$N+Sx9uGAUMKLpO8Lv?<^WzqH^F}VsRvo*sssTL( zAL&FOzAvY0eu*^fBINuQDa=e{mpK#TR&(a1wNcs_1M4DKZUk~y;Fb%8G*Br@`s72d zK?4sBKWLr4U}H0*L@tdtkgK3SfpZwQrnYFNY9+$H+Sg3R*56!go|F5tLq3jP>xMq=A0I6$#7G@JC3?)M`E1U} zrEZ$dNQDT*ZbgJ(DI9XFskIqoRT78YGdm%=v)>H$g0orAT9Y)AWh$Q=H#qiBs^>OQ zHbah1$lRHc+Y_0kbC0xL8wA7AY+zfeZy^)7W$0}3A&jF5Ih^!DT2+1O`AHJ>LqDyt zV`h^CWJx?P>|K+uZpW&C%QZ_=TTVwKnqzqRzEv(ni%NcO1A9x$l_V2-r@z&!@U!}? zIBq&avjt>}x|ZH1yiS%O{nVG+d?wFZc)*(lAR98gJqPX#N<)u!2(AXbP&Dkzx^Ykn zu2va3td*ebkTPccL23U-Is)=8z4#-!99^$K#~8VvPX=Yr5Anoty~OJr*K-xKm3{Mj zaXFr1SWYz&QIiY_Id@|P3AKbnv^FfdxY!=~i={hcQ^+D6@)y`4|F+Z&*&v-pDT}@&0uT9QXk9js5N&4!v90 z{Vg(pvvnhhkZaS>=E6xyv$3?z-BTm$LA4Sx~tmbHQvcZx24ZhY&P zVu00k+*bmfEzP~c_)2OtuLSq6N3UM42tv6#x)|0|quriaH=|6Y>e`L2niF+?qrpet zw-0ji?mPG>H-@meyJQ=mp)0lcS-(TqtBY9a|pn6c>Ia5$#bQ7aenOz-=jCm1dsxA@htVZ1Dj3LutQ@m zorGvB#tB&7j3}smBoZWIjQljTfnKa78gBNdWEfhk6q~{zKP-9vg9J*?8(eN72`O|a zvtdIg4=))d|CpO-QGui3Tr}pERyxctZYMLJ!eRMGUg6j_trRRo(ufp6#KW?9$0V-W zNM_!4yIns%NmMv22IJLPnr9)N=5%=(CG4rx3r@lb(cdtPlhjz`gp_Fg99Uw8p&{2> z*^(7D!fb6;#El%hNDFV3%B2nuu?hGzk}uhC@z8z|IkF?~dF2nYkB3n$YVyB_Hd z7-Px`TN@dN!!m=e_G#+-Qy4qhh(J=9K=UL>FdPU(o4`k-S2*T?r3#~?vQ2g}XGS}m zpizUp1kcUIplYyDu=~5lLIMn0#roF8Wyx|U8S_%a#+|5|gchNjy0VE={;-EitP}RB+lV9Z+SV8L$}K6Gc)wqW?D7e$;%b7)imS1_ zykafbMF~C2NH`^{mtj<_%4=HS7D}^ot(f4N8@3fh8_)CP8{$tDvd$6RVi}X!1kYI` z>nL%}4k=0koM5VnkKACP$(RfuWtD2^fJ}>go9H<+h{C6Q#P5qBpe`BtDY>z+JrJ0Q z4o2otnTx3Gm=s#E+qN252CIvn=17zaob_}{d^;Or>a*4C5>Nfq{~-*{Rs?f6Nx#mN zyqW{2r9WsDfl-n7g`k-)%D~w*;}?Qzf9L>StTta`=JG|!SQmt6ec~Qpu7+TZ@yQn@ z<697(^@#(ZtIFX#i1s&SAafPiYJrq*93aa|gH?#u`A-;V#>l@I!0ZQka7RJ97`W^Q zd2kkkSz_9S51SB!#;LP$>a6**j8kX%&z}g;!IKyJlJjE!^q z&Cs-35{$BhV@xyexF6-nf^@9~YE4B5YA+xn6cA*`{M_FQLixY8PO8(c$xwBo>5S~Tc>-K(YN zW>(AYrQnSOzsM$ZBLKggnf%_`>?5|RKJaf8XZxoN_IlF#Zb+|Pviy{QP0XKEg}1JC zKuLFcRDRKOS{t{Ng4}i*J#%?!GVbK1NrbXRx?c_3wySR@IFMrBtyBTtBL|&YUcwna zn|z8LL4}>z>v7&+HK3Er`HBYn*iLeM7K1L}YD&42Gx?Ayh3^OD`9yhaU9Lg7A%m)~ zOUG*&>StH}pdvJJJGa*Vn8FvReyv%cg6q5OM;5A_E+DD;@xb`a3vfG+puT(PdqCMRuhiQZNsh>%b z=SYL`D^Q>*LEt}%- zb(TeCoilTp<0|tJNXkiI*$G|Ct7wzT1O*kezeKLHXz4U(x$I`qA1QTSv`p5#TIteC zv*bmR=4ZO*oOm2KwT3ifb<&IJ5v-nO%+5Sm7z%qzfz%8P5H#*!G)TO*?5+*!Oi72u z6x9`LTb-&byL7nNiP;s_Rb+8JbjhFW&FrZpq{{G3lMYF@A@7|!#H!O=`8Fb7_~*#~ zGuf4tNJ0Z^J5nE&CaYd}Dji8ijnqJqi2i7FZtz|>G{T^2&E`(Auq_P<74jPANPt4? zWAagRF`)uMlwhx8_37HaD7^leGB0C5&%Es57n(FWx|n>?7nLCTx}}BAWrKFJ@OinP z7o`OUmFCkL(w4hjP8)f`sN8b3NCP3%C61bTz!%-IwxprttONAOExeE?y&zf3!iV}C zSntlyB(&s}>>E9B-hwjQoz_c=S#R}0C4A3-bmtC7DykwGak-x3#V1x^TJ}_NN*qsn zHPai$LGVwigXix`?MJ&5b7JKdC=f1u|z;9%A%Zf>^CFyKbGvBOMigQ_F z=WaNy4^Rr8Icoq69HsQ0S~>~TpV-P(G4rx~qLVKhslIZ$uEfh>as*r?7#QKYR*vO5 zb2IccZtt{A!txR4EH5MUdezZo6Xy?G$WS(VXo{pXa zmlII33Jkg{u{=KzAwUz-)2PpG1k&G&Xb_CNHb^iVC0QLY6@*a>9FD5$isdyIUNy1K z{wPdQIU0|-a1vInE(k$M{xS<4O?Ys-MVnXlPA5}*)()FSc=f`&i}j{D?9m*iGo7Kg zkZ4$m;HL7FA_oJdSha{Fi`2Ke98dn!VzOc`&$LomDfW-t$14iEe$iruq@;cn^yH`> zm8+>aw>kx5-dEXq?Cp_Tf~+-JBTyOl%d(%>!P*=c7UD)&0%|Vi+)?saF>DUnI10g8 zjkJimXQXv-3IaoLeZ3ue7z&k(*3d=`wCnYvfv&fuLl2AecbugwMW{LO=$vGd5S3PI z;~i17t*FZ?!Z=#u9fjCrDXn0DNQpvfh`^@KqIf_Yk*va)<^b3cbL<>{SZ$G=&}6AG zJ<}SNy4LNP8AP4yGs`M(t^>5dKME!%>1i?e$jwVJPrp@2$7%$#`xciXJ=9W}imSzrTUj<~_f8<0);$&^VrNC>CnzBd>U_zx<_^IaVus zxdw3~SzGZ+k~tn8cf2=yLSXXGF=O81uB78W$bGi2@h%m+3vet--7mr6KutLyDWyNBPlcj>!&12JDLGNhg5hXudw z>=J}U2WY-sbf|aMFhB~5wjEy-W!{&;StAat zOB_(EhI&DpFn*j91jPHYN*2ff$pQkN zZ1vGj#8B&0S7t?ZuDi(SO`+q;gFV-Itus9{jLfNCe?XPTdg-8Qo#-XQ%be+p4Ycx5 zuQAwK=lR@WXHN9_6Zm_6jMb;PWso!HdD(Z4d<$kzDG&aTQ);sv?PuF8Rxq(CmKiwg zL=`Ey>e&V*J4#K*dgnctiExp!2sYD#Sr(mLqJ((VKZ7{h#OPLOXcGD-A%>J{z=Z<@ zUhJoBfKy0}GIz9ZCm}@}XRc!^rhqX4PIDp;d9is&w!JuDSKYa&>rm`xXj0F(F!2PY z1K7w=RLxw3?$}tu2$hZrCZ^KDS)|>LBm}r5XJ(Sg4~`dl(`jIi5&TuTMLQD{ao4!B z1V+Y~T639oib-`;QTC;%&o?=JRT@+!B`Qg@B%6xnqZ2n}io5Azs`So5={yRAz_j6~ z#yf-3Us@TP5Ri1K9F&1zqA{it!U%5eHA#Jnhh~Z~DKsmQN}azNw(WVDKx{S6l3462 zM34L`yk^m}G?rZ~WC6rx(MaQA(9}+&axP`!To2cYNLSWy*k^W#y;Z|l)j!EbD;1?c zn9h-vkzhO}FZM`Pv(1vKni>In!i~w5wO(3NcRp!XO0z|iNqbdEqyaoYrf}FeB(I7I z1tQE#aqP&nHpS{&@q|6-NB&9S>W9-ha*tMMEazujd!k0y5OG>+@7GA`S8E4dzpRTn z%w9|e#Y;x-1*AhPL({d+TPXYWc>WedD@@p@E$!TmlD4pXJJyqXf_^~;E=n_S&RPeI z$S=hM*Fr)S zFUO?*Dw|3sR7o2W3!Tu)S_FyQAyI^Y=rM`bWs4;+6?irZHpL9hoaTqE4WDXdD9wdi9o2KlUMofI8>8alf(y(uj zH&gNw{oBuixbG*qpnZ7w1Rj<|>}R@icVmMFocZrHkMaBcXf|Q$JdNOFw5smiO6H~# zFk|BuiCqD`Qq5fwLo-mm3mAHf4=XTKFc6%P(V`q*CZ9_t*MjbRtvEEJUl@nB@6agl zrSJfZHTJ_1PZSgfU^^)7a*jU?!6qe*&Vc;Zaahpea9kr*1e^I-0Lkh6g-H2wue-y8 zg0Ed6KHXNw4U;QpuzdgUp?H4sFbdp|@W3V?*z@Gto-@8ELs*UjW{hPlX4*{6Iw_HZ zAsa6qa*V~}%z2jG$0}}G0O~WY$lfzdtc}w$42(OP!^75=|0WCCWLC{vjdeq(F}PL| zh$968U+3N>_B)r`V&-E+*b}iwqV7!g&@_lSvOqCV zC$dSc#Sspwp1AoyQ*gGliUyDR4zY^pf|X!%bnKR6hj`lJaIA>CBkEJVBF$oH+zsS2RwGdISz5o6nx7<;YYw{=gKbX=B|Oyzmj;+!w-%huex%tfq= zZN4m6oJb%Up}9R#nPoj)n4%Ztw}6Ru>v{*j&0yL2)+~-b0xhQjbhq98%QpvK-P!uu zAs)Wi|NAdL>_2~d;4*&EQ2L`Nv4;|oG_~T8?sd1e4mR)X+;t7<@MZasG-d8*;yT&F zR49Jz9Zv8PL`Mk%HHQhTDc_9_qJY1nCKNe9Fgr$F#$u+yXb1-YM|rxk?pn7jFi!y7 zA7*&ZfhjKUYv&sOsB9ZqbBRf)h?5u@KSdPOPxWL6}TO{yFf(oRa7B~ExcJY7-%!daAo)*(n_b*A3NoZ`rzos5}2K7_t!rVoknJrOl-Hp_ISU`abG4IB824vmm3NQ~C-`VYciSig4nm1Xb8Ps-k})T6Y@k6i zipXzst9uUv;X2lVFgov0&YeMsVe4dLO^YA8uzmDjZ;rQrDZ_Y80FKX{rgOiSM59@1 z$xoU~QJoTgjACOnLuPh@ahen#%ZFh|rxIIkKG03NI*T?8BSw$f;G+**C+L*)x_M7$ zip3jwzif2(3Igg!D}}vvIf&|+3F6HGLZJaTPSFw#?b=Rns7f5hec1g8n*7@2+JiaR z19`Mzv&2EY z0c4Eo3+(@^895v|D~#L{XL#|g{qDaHCX&+Ka++~(H6@^C?Mn{&Fekz>H{i+}^FC9F z%AzwvRvquWg2F5l;WPVgb*~3NjT>7pzUMCgG+0VV%8BzUa;N0CI9+@UD@bX}W2;nH`(2w+fFNQ_ zv(wKQRHiBs7;H;;Wpwa-YA~dKrIb6YC8*Hv(tlN&5bt1u4ulGFlET(H36$4Y93rnG zOS!KSrw6vf+<;NBzb$$#laDNQ|zCrTKLvTxVDxB z=BYLd%>jiouLgAtEoy<12-Q3+HXBc44183qVhOL06%ezg5v+*QHI1U?axl$BxOZtd zACz16I2?^YGKCEVWC*Md4Qb(Eg0)aP-e3I*u(5M*yW?$t^Or5}?eUZ9D;L$Ru7ptD znE`YXq&SOeK<99pD7S6G1%b{0c{Ur3{sGPA0}?oICn2iz0PBfXwgw)K#cRVauOywr$(CZQHi4GP;Z|+jdPo_xFA?Yvx~^voiDK z%C$2xBTmE)xnsCT@YV|8&)QEEiLMBTa;zLZiB+q`fKv z;+{ONyZey-KRg#4TiK#ahk0S%mNVsjW6Lf;XVa|+ofY%cP!F8Dy<7X;xczy5AidUf zeCCuj5J%*|A6Jmxfdu)f*=3*J`UdZdA&@dlMIMC+sl2Ry}!Eqwr2Nu+HWz9fX z7EiUx$Z3qF;TG_+N#$HTeYadFX3$C#K6x!*j;FtEWe0`Aw5T6V;unGgCi?9+msc=5 zUyc=aIjkojK($j(601`?!nurFG<^R^*_~KMVoImtO(acWI7~_x-x1@qmRQ@=>pSBr7c5Wx%&EXnzvnyT)1y+ zJUlPvq>Gl**V&grp}Dv}NZNYXwBIy?Tx|@$ zAbmfcEJ;Z?hP8-<=nPbYboQA#nO?}DT#?`tdrA^tgwf%!U9;yGAeawv_E5VHJ9b$){PL9v6m4HQ~qV3y|6T~VhUNmI*z8}pU zmFTWoDgtO%u5IC@tB$2^p0v!P3^*B+kjK~pD?LG<2eTTn0 zr?qcw{jRri?`rIA?y-iTAe(rF)mmKOcR$NmeG)AGIV?D2zYU1HS(h-VYlB}&*ZM`C zhL0Tj?AoBg<>u|WWybCG<>je+Pz3Wl;i_bkYsK8(C@ZkY^rM)aZMNDgutuqKvhphq zE#_|RwuztuX|378m!qu22CZJCju@D%{X`CfP-N-CCPRXnOQXl+hv`k=_$X280|Dg( z^BE{+Nt0W4wpe?{oRYXnIfARb9izFrji9O^j~ks1*m^nIvdYFUk)-aMUFmT0j?3lD zPeo6Wqj(A2{c%4FOwimx8i9DE$Ql0SuLFU;oN0n`RBh~PwWBs=#iWT81F;?qsy4%9 z+R><#jKF}R$1eh#55jpG} zui@0drwC8znXn{lPatlE$9zk`VT!ZC;a1c`)gjR z1pq3xAgAqUPt3v{YvV`V< z7WO(V@6bHuxYnVr+QzKsr*nlJ0_+1l@$3skP+?QQdQ_x7Z8GBjp|=39vfS%nodIas zL_*2ax#bwm!iHgG$|Itdo?^=z_^a#`&W(4BU5bv#6#TpDB$r1@9f_$SlVzM<2}pzM zr`l}C?)1>FEeLX0{d1?6ynl9r6MPW&h-A{D1DZ->j!r?<>UcCU*-S++=Gmjg7=@!* z?{COce3EL#9}%h&5bymPlkGo;bfQP$0)QUd{L?s|Z8x<3!nhYGL z+^wtD;F#W@Oxw(WKZmh3Hb7m`Mlp1Gf!n+IRX#V*zW+0|+|1zyI3^$j>}5SaXO*h% z;IqD}L}8k^^&Fg+!gZftgY>rR;|5_KRU`9+y%oCLgVRlY5HoDeEIC&U5nAScfIf2V zA-05`J~MV69V436T1O-pYfZuQQ(Y~xctPPh$Z1iSX5ZW@&2Z(n>u1^Pd6^LXd0iz} zF6J^BBF5IRng5HE5J<6A;od)Fq4HjThiVUrrJzI+y7Gr)H#a~3&`tn9__E7IbvJHO zY8#~1nGfv-wUF4QRZ^KaN#&V(^yf41HU*?FiX$HLW=hBgwF~hgtCYzE4NYq^E?!Gc zfqK@?otseJK%>?n7b>+HwH$|mW_B8TkN|6jOL04RJ!Zg0=Vv zC*Q8Qu&S;G#R}{tb&Toq6~DjtGNCx7QY643m7TG3v)47QPwe1+(zX$T^syv8LIgV^I)3VC z>{q49tgK0>B;P9DaHs@Q5eG=+brjF41ArL}stYwn+$Y)o#XfZ13;O*@<+xJ7{nI6j z3t#I#0R-9~l{G+cfaT=jugo`|RzZxk@fwhU;_`4x>uBwsKOWJjg`vL(VQ2xK%J_7j{=ou6UV0Mo=V)b(U$v!Rfsv_GSE2_*C=~OMumVKr-V%nR zUE@Y!;r&dQyb=Rm4R$B`vkmC3W>7+{EH^G|!g>W%Ovc~aK>+nyQ@0WF+8e?6Vl*$Z z((?iE2~gP?r8T!NukvC9Brjn#*QUp>PL;i8Qitrtz&TLIjae6nW`LqAEZ19c45Sb( z>C`Krj++JQ@F+p(sLYkCFFANrbHQ*@Jpno`V!Z|xGU4u{QR&EG&4ZfK?BrlOQ~q5; zE-Fue4-~Q2PxdiU=V$ut>4kc_6b>X6RvB20Yo4p(^pEDVWfkvIJX>T>gBEh_kc#;5 z!tD93{ysgxT4=a>;cjz$6jf~%aQuLPzodzTbWXx90w_$EuwO=V z2n@7Zz~AFWz@?#0R&wn#Ks_VIH5Z(^*VS-sKPKziZvx(^o!tjjZMTgow#zs zf!Kxxx9cuQ7dqHaQ=%f@{X!u#{8~7@W8p#~<*{KU~`6SikY zgG~<&#zrBHD<|n#DABXM#05RAb(l9fvRRx~BsW1rh^&g0(~0CDTw7tyBsvcGHkq?x z$U?d9wN~t*8fpufC2e0^%`;736q%oJAwf@nA8PZWR-D)%%IMCis^q*RY&PB}_z8*8 zvF||1Mb~0U@Na>0sd;Y44key)Q_6=P6L3K%*=6Tg25_6-rI9#vfnS75^P)3$5X=`2 zzf>`3lkO(UXSH>#6NR>;D7~IZH~S!`CL8t>q%$n5!a+EK-A06<7JF2e zzIz!kaa{$_EZCZYO+#3*uA11@2M%WtzqU~)eQa<8`b07w2F3BbhQ=p&p`@Mf(Gcrn z7tHz)x8?nfntrLS!37UV@j23#tW5H_Wy-8t52mp0qT@+%T$kiIWAx>Dj2&<{G|^Io zR3^(FmpSgdw3Y^qg4n`z5Y9fL6JL+Cyhbmzx7l(JW85Nnp+*-W22}1FdmK6-P_~R& z3)!Y0*)lix3GRXKTX^O&ao@O&bC7g}*v2T#?3>5Cs4S5Nm9pDEOfAf5_o^$^;xIzb zz!5pg>dQJYGd(ep%XI3@=pJ>}Z%$|bWy~QhOHEpHaB(Tqq_uBWI}oR5Gh&Ayt)McN z5a%g7d5`#;Qo?8H`PYF zvmHWS|+wg6SkYb^AKZ+1W#Z9>#)=eo=>TX-x?LGj?Skh|vz!x2ccXeT?5L#xI)uPNM3(paz7{JTu_}$7EA&wxZveE18w?#K_-D znl&=maFNlGA}^4j1r^|846K5+0<=z;_>h=(k4jxZ$$^@rG31(4cx%CC@I^l=p>I}# zdjpj#%yg^H`s>P?BW-6@;^eRIoP$k=x6F|dj8qVA(UIoric(WUO|`D6y36K4Rtc3J zl~z4ZJvJkPx_h&%uR(0&FBR!`6pMcDDQYF#NOtF%Ivn-rD;BB{gyN$vDxM`%)YKBo z^YE(B;CSMLBi1X(B!10k)I3xEp)wR&M;(S)o!wHA^OFpG#LW1_QH}4#hX`GUV&eqy zL^A*40st%wfyJI^Ew})y12J`y5h^XC8KBOnT^yCvQGmn|m(nmwyec#mGu@crs|cv6_S?VZclNDJM$#g zbkZkM>*{V64{xwr9pUck4jf`An*x2-YXC}3)a5O8#F;wgm=+mKrR>uq|CDy`-u6iifi&lPr@5_dQ)~H-@u$ zysyjLSQa1f5ty#-`r-u}a5V?r58I~IP{=)h2Tqs4(J0i7t>t-!Ygegn>>e7ENYpuI zV7Lcq8ihiO2w4-KuWStZTibL;nL_UAeAWlL~J<3h&nREk%mv$&ca{~*BdeO0Fj-~i3%ILj&1Z7rR z9_5;joE6Dcjhq=hXircLQy#BM<$zjVx%qkEI3C!vYPajr z#f{4f&`!-4O`iXEOr)O_PWrGDFGt>k+`c(TSZi2Tyl@ns!@>th2W#Bvsfqe&r+;u?3cP5P96d@PC33)s!e@*t5G%(F5twlAz|aR$`L;BG z9VUpqpP*czKlXi$UMrhVP%Xuao}WcxFe!rWO4#m_aQrwtqHT4*0dG?4n!!#uuB)X> znnBd`mG<;Lkv6V?>#P-`^3_qn=$9H|&|shil{6G&D2cz`M~xNY-V(dC&Lm>{7z5>* z{0Z{9|C5)O>;thEVN&caM>Jm7V%q!xX|quE4IaHx*|klqO6Z3g&jZJ91$9H-b@3l9 zL|0MF*;6=m``EH^Hbj}@a*m+E1mjA5lQFZ*VASq)pPI}8em$XAmCxgls(?kmWS z0@{#yPoY#ni`T+uW^8@*CQ9q$-aKQ`S5=LVXwLuc^*A$_Tx&YA*g)3&k(+6ZqZTI2w!pxkf6QFiR1&ngM}hPWh_WQQ&a*( zy6m7?D~(X$Tu#ABLg~jKu*|ij6y9Qhq~TCbPP&Eoy_%Fm+~jtH_kmwr5no=FuqF`+ ztz*>IRYK)~P>qRMq~-eO(R?<=2mD9QXa=k2J0B#goVg=!*ZS$-H(2Q-wmq;(ev25j zjO)F;dFVF(af_G`o7C#**e{|iE@S3if9sYfvI`dG8lMU)fiJPZQUo9bV+4G%y zJ8cqG2tP3lU`A`r;)0go8uOq_Y2vNQ(Fh*ke}D8Bc-(k}d2E{$%pi#Wx{a#R;Ai|j ziY$iE<&F@=y%hMl5s>VtnW&RG>0ZDH0@)CyODlVe?XYPI-iOo ztEBy=&A_t3kyz9a!!QvuB|^65Of+}X0dr;ygg0~lE~YnyW|3^5a{WB*UVV_59VZL| zSjb4CtdX%Vl3E5I0SUy5xK*sZ=iVa;OUdpq6KCE zeuV|97b^Fi)w(@EkYU%*!__~J?W2G2Z~@K$A@O(a59v&d^e$8l%)xgHUVz(HxqU&} z22P&lFAnW#YiD^*_-NZ>eZw52>1WSffN8(YollfUaS`x&x7H1=P~N@8zz>13#3cOH z=HuTPS|?Q}la5Y}Y0fGQqWU@qmKB0ty`U0ibLxZvC-$nCtQ5H&EC1|snd8I4FVBi@ z4nJB0Qo64Pjj&J$c+~~{8fh8zNTV7Ni*|^Uj_qLGf|%-zh2NzvzpOg&YE>Nfk;}K+nNaH+uU> zrma$m)eEl#e;-I~*VIaC#?m?qBsL=Eq?{(#dA>E9J62r8u@e&=(PNI0K*NB>a5`)~ z7Xpc6QFq}=>GNkqmAn$Fy+&=@eLHyDKTMtnvGw6_^SL|R+__)*EK{jDs<^3Gb!BNi zpuD>eNOhidH4=Gq*+GFPODw?og>U~#x6g&)Syemfw4=l6SES<2m}afxq9A!Was^{a zd00KU6fz+3&>fYF$bDs-dZ7e#sk_)(F4PP7WF(z=K))*A8I|0 z7wyM!YhE)H;+VT&hB9#xO4K)JRD`UH})UwLnZcgg~MHzAU``go!gofxU>+pWp>0xRGQJcegsu{b0Kl5?nq zxgT?v)h$!zrgP|)K$d$a9qdC3h)~1hbo&hcKu`o`naSV10$6p8&yv$QeJeIBsge5u*P?g4m2YRz({rOwEB7S^5-3!qw@WiCFcA(oo{<(*sQ^okpIMb5Q4-8mUG25d zW;xt@aqSM;)GbGwvuTdoI&bu~S94abE=^T*Z|vH%Jr5(f5q5J7gwQA}qpNNkL?=N{ z+K;ys;w`_!#X<;Tg!0;N4kZHrQ9tuN0RuciB$2ct#>|XyWSB;Rz+K*Yd9Upzj+h$> zRNQS_eW?AIO|TC{R?o%9TIbDb(b@B&OC}y+$c0D$REE-4kJ)!wpkZn+Waq+-X_#el zAW=LbmOWj>nM%9}IPtXfjYy3)Mg2S94cF;{f7eGSdRs zn+lmTAZlrCep;;W!u=a=59&X&3K$X2cgS0xqWonq@ohjpqu$YnMYp|Zd|MXCb~sF2 zLIv0E`vkCCkn>1GZQA4YOv|!yRCam!V^W!wHGMi^7PM^mj-59|MYTcqt^Gq62U)lJ zFk;mF=cqG#pp|zm`G|{elFm8n?q$>-L~Vyj&bH63re5P;B6a9lqdkUJIi*-SwU?k7 zvgI1Q0e0e6m|@Q_99YXURX}b;g@d(pEO@k`SejqYbw2MjgVai6mZt0;tm*oi|JT~F zVHp%7ox-^S6^AZLH01Lqp7E69Urx)pj?HPTVan(X9Z#$ap9+sL?R2RFJ3>v22D@WM znk$R7<&)(}YL)MVeSKb&MHx;36pIo6MQlAhL_qZ2uW{{|2@=BVf3NBRC_qsmnb9x? zWJ|#!Ww$0`I#`{8yarpZXBUH+4VcP=Gy#EX6Kk&7A@NB|mL>857;k_W9&Alg7592& zHIo@p5`2~OLAgf38@()I={U$_VGl}$*73(2)4e+ z+q^v)l;K8xlA4?!Tq0z~#na&|%H1WTem-f48Wr(RL58e}3rZ2cPjnx1P2kVgLM)V; z$ips-=Il?XldH?O=e@>&Ij=n%kdR9Ct~r0H<;2&ofhnmbB{vvbV+pL>8l1<%7pZGu zU}o;rld)GrBUl9v{U=(>3>X|aTNDmup45|ZR!1OIjgV*W8kEYQ;x7+}=_q)s$I52` zHIVUNph6*OMO$V;HOz7f(ul#ygsYS`O)0=- z#V3&+9B{s_>L#~!I<;xrCaVKNZ3c%kdEPCq*PK_V?b;+m)@k3A$<^y?Iftq zVr`8OFh8(49HZf2bnklL0$Zm^V1J>MwT@5eNYlpJ(a&)2x-#9D3WIAU1Zia6-oTIa z%O#$U(UnlZSkB#^MvA$?ScXOeRcd)Sk>!8l8mAH9LZ}p)(n@e5Grp0m*c#bY0Z+q} z%?4yD6R4>Qj-EQ+2GwkNIKzj^!88iR4%PPQH7pC=yfA{(s&FQ=yh$!sIjg*h?CjzV zPm@|W2OXh$!YjX{(+G8TVYo?~{CW%4C75oFOARSfwKFO!yxA1eZ=LG}MCTf|s}x$= z3Pinj1H!T9FAJ=+)(K8`<1Vv-w$LV%N`dT30n(J3+R#=kcItulnGEZl{x`VtN7{NGs$I@5)UTbteG{dlaQA{N zw$5^F)aGB=PW!oz%B6jx?LRY(;)q}?qTNjKb~2RO|HNf9XfxR~GO$|c04u?rOr&Xc4_v)cd$6@(j|5^$9-ns=tGf!H{ zIxkTPm&iJ6B5b>Q&6XVJZ91GPFI3H9HCKg)nCIzN0MpNfILA3%hmN3YlC0LK1Irg{ za$d8#(Q3Z7UCaemGV+ry8yr8^6W#(VSR9WuzF0E#nzfY`S3SLB{g%VH5tYKfN9GAK z?wY8%s&w2o2!t#S7BbrFI96+p4i@J(&6XewU*^CTsn2ex5v+VDHn}w&&;m}O`5beq zTu)QpT1+Q2i@#VMMYA}xQUJm;^i1TzD*Ka1NLaX2GWr?l>a2ERx^3=N;6xL=Eft>$ zf&fP=rEp@VYqu?&YSjbvg6egaDBPjBb~5)VtH80$odz=Z>cPQzusD_hBdJsctHQB8 zGSBJ=ydMF>0Ij5CG4rK?%=h9fs+0xTSO#cqN#SDQa3K?_kt}e^XPcFDA(NnyEc_yg ze2FZ)8k(r9cWmj7bm2@mVR{iED?XWwr7D(~dZS5(K%>cu?^4Ih;ZP@2 zype40fYT0lMN%hEyir89hZ;-#XG2_ESamhkInk`akndNL&Ssi7l4V-+jLc-(H5(a}+0%#zPaZzLA6Hfk_;{TLeCryTrqRLMUjUrsucrqE|&)V$j>f0pm*>*fM z8rQ;a2q&?4JuPlGVXFF#Y}3lnYoIzhZn?%PMtudTisj6ZmyqLxy%Rv|-8Ng<^cR2R}{qyi}l>VU>?8XP;i96!e} zXi?W_l(V$-E8c0?Tt|ya1Z?QAeOJ;-k|h}B2`V)HztGhCf6#EhQSs600LfwB&w-_t{gi2`g`~M(Z4NYEE@4&okEW^HrvTOYGx-gvdAEY%<Q zRR4pIs|d0QxS`E|=YbqSv9&^{jo}3Ed3qxV2eS(xv%Zn6`oE1=T@6j$)qA|;XkZf3 zRC&Q^RvWn*T+U2LwF3D4T*$p4b zWCp4eN8Spay~{5xB!XUf^=D+$$@FWW+Ao7;vjCg1aEN&HXZ+~V z|23(CV{eLR`L6?SihmRMNh>t_`v>TZwWIm}8REYM{NI@WTR<3KvnLG|k20kaBGv$E znVkt2$GIMPyXU>wjzE8=l~$XdPCh@Ej}6#|iZ(Xs|9!GVyRBzmv%(6)UiEpWD>8u@ z*lc>cx7F)?9Wwim2YW4!y=sXPE3lbN{~8FenM(2B|0d}~V@?g0U2_q&1eX0t2r|R_ zPrRP{x@Sti()(W&xDsF`3QQ>jp+UogUZp{2?Ntv?S|zw4Rll;bDKWNyES(BpTE*kt zVQVi21HSaFnCv+WwzN@g3|*4++HH~@J4{jKbI$5|2N3mHA;G|UH$rzIBVIY2l__tA_v z7*qwk!w^37Wu&#Oc>U&!!Yx!W`e=Y6EiMhc=(KWvV~jE~U{zfIi?C>J=-To+{Z}t^ zqWJ?Mmhx0G`N2uNygbhg=aBPWK&TKMED&?-goBpRp5@?^v`Dz6pK?6ccE_PfVgu2h z9L+dt@vehjpd1sz2c%nwWxW-mKZ2#8TcH{jg6`L0S)M?Nf&C5R%0Q@xA-sJ}f8v_6 zWFReM7dgQ{sF#p}Dpi<2h>_>_iSeH_kz>A^lF8^@G!nC7GoO?Qd^3NFw|U@`PRHx4 z9l@M0JQ1s3y4W)b+uW|~<%0)rt)r*TNy76&$qh2OUFTApy)c^mOhkmfjiy84kRcHi zsmtq6wey`eRPB>BVNbRPZ*aM}IOX`KD7Drf>#D6x&S<5#Tsn$P0LX^$uI6>AJ<>v+ zi7d?4?D1*?Fu1|;#$m2SCK`oBMKKqPr0V;E{As2MSGtzXL5^nZPuHKu)9=fsq7r=GvO* z*DFf3w?V&D(|uzu4jhl!jZs!HHEGzn?+Fb`ymc6YZ&nDt{YJ^FlmHyq-13Ar3bm0o z&|Sh8pj%)9NvGbP7vhTQJ41hXBkdoW=?$mkmbvM+czvq7-r^@`Gp^BIV*(#XMu1`j z;z8D5K8f)UU%ct&hG^`h4E(+s{%iLl`U2{%hRI`KF{YRy3W&qMQbc%>&^o}{BgYc} z14%XRhJkc!h;6VN7We`n%uqXU3*7fL1k(p< zqSC*g09MymdN-kH8m9yvK;A)@T;}yBmZYlHitdZ7P(U?Bh46~yi@pCEQwagpL(H+I z0@^tuh@5m-i3S92HyFO1;^;Q>($;Lk0zOW;w70mboK4_K)pL83lE`%b3%M7 zXgfcP5yxSZmRmqFlrL@lo)sbh?(P<`qj!DT$b0j75!-g|#t&p4$ePZ%N?jR+_~Ws( z?#?g83n4ffj8bpOW_}n(NJC#1Aj~OL949DQEIz;Ve;1=u=$6ws4CefMGDmsBEK}Ci zW|x44Jp zl9b(d$@AeCGWX}gyX*JKP5J((yZgsyRomEh+`HZOMISdWH~XD#Pk@~sFAq1b_an-e zCxqVT{^-A-dUKcVkaKT4F>W`{D|QI6<%hdbE3=4*J4?HhHdAwh9AYMOiMs{y` z1qGlg4`V8GV-e%>@SVHO!p7*3znIMHuY0!roV;HSF7H3tw$Iz_bo)3tPd0zNpGSaa zAd~Nnqx)K6I^x zbAq+C_1=}c`jGQa0&KP33#z`TJ5@7*YnsS^kPd7(MJ;56uBpj>{qV9yBq^*vygM%f zLx@M8G*gI{o(~^bvJmqcdl6W7JQq?AdmNR!qekb8?>^3RAMex{GQtg_cAc%P%eL`j z3qgTFibsoE7kP+{Jvexf_>1^P2a=VDZ`6ws!6GMVvqKUVLF7f@LNW&$Gm`#WxCVHm zw{5G15MUJbVDl}cD!x*A@PBRJE##FThldb)ZY$ui z9CqUq;yhrJdFVa|Zz}grfnLdPUoz!|d?pjojqBjlOHZcR8-u{~tXx}${-1b+_1%VL6qPqaMh?ZY#1_2O=4CiH~;)5&6%1|N65b5nHS${F_1!OF>jP+ zwM0DB0t^0|)C^4gAeCcYyg3{;Z;qDZuuO7yI2~K|WIoaAavIqK{V^a&Z5pD$F=t6% zzNK@iLw>3zG_z>q1XdtFjX1UJi4ES}M1u7wCX3Q1*zcw?o}Z~2U7mlp*EHIn`;`xoCQ@>L(Gl!%7EZ-9v4WC&kPA8*F=(ye z9(->;_qhJ=hcv*$UeOJ9xdy4cq?>H%3#GnKv<6yD+p69v@GHIZSFp5Kk!G-$yiZ`d&k5}sg`NQ_T zx9H%V7cc@5py#3$(;A^2=b*TOP|RCqiV%F$H1I<( z2%t`~iPxvosxHQ|`hG9Nfyvpcd_U~n1}<{3!+|l2;=IA)SemjQa$5 zFb$$hg<&3CFX?)-vT~Isopo&60GP!A0i0`$gI1AI?~0-j6Svq@C@F9d(18P{mjHFV z=#8Yk0PBuF>rRKs;7sfZWxW#E6iI`_y-cy#Q!;Y!$+^5iv-47wcO>o@BR&I^Lkq7r zHQa-^65JIR3tv#O0Hm4?k-;d@ zC>yF6h1JopqaaJNi1H!!oWu-wo2Xa)GL>$lD>OYVir@axAq5i0XR$&$0@DMegXI^& zNiO|g4W=zvyR$iA(-JpuCZdLu;h5862;^PhOJf|$E3NVH2|<<5{Es|)BqxhJdr4|^ z2c>7Kfda1VW9Fk%1Pcl7(8y`B++H9L>;>m7H%4L}^9gJieD5JZ=+mTssk5Tj=T3oJ zISaR4I|_lLUs(joi)7B-MXgX`n|}c@a6%*IasJcSBg4ug+LAmjQp$d&KjxHr@7#pZ zM-&r)hkbV8R?KLRKDnv5Jy;O((5@duFZ*Pceye>nl0bnaGD&6N!?^Fz2|V$?2se06vx=Y8fnq!*Ym_ zS2qzP&J>Uw&E(k0khb!x)jAC{>4F^x(s_)xpah0I-Ac^wL>w+<51s|zAD@5DeBV;v z0?!rN%u9U`lrp-g-$G1)-UfE6aCx*bjY{EVfBv~x#6Ok=<}>(+q^wLEpFRCHuiaH& z)#fLz^$v63;_zLX&rVrH>&!~8y4HWV=+g|+{oh?2j{FOq{B8mt90l#mZo@NFnz`I5 z=_31w|ChKAD*fiRd%RCs-xs*p6EFL}7T_z&N3k?3VHPl(UaZpH`_gazH+V(-(LBea z!q@|Ug*MBwFGzr5z%M@jqZHJ}_cHI85l~>((piCXk11F7%+mh%yix1ykM~wS&2WEhyv$3%$H5C^&f)!)zh7vmxbk{o}E@(v}sI4Ja+9dt9jiqbd zg)V|Dfs$y{3ZxZgTa)!R68jvw@4$qI;&YKgF z9qH$*yLw=B1jT*1M+U_6eFj%_Uwv%8p4uMk9)Hd9O@`R*-A4TwK)aMN<~z9g^L*{m10u=Y9};necNE{)PjB%P{-vFqFex zKdyj6VBAw!z?VG8MtE~T0M>2KUN=)I_IEAmxhbEd>K`w@xzZ2d>zKc4!t+fX+ajpG;@{QvHC^`8}R}&#?gW!0*ldMf!9P z#3eKG`rl?eA16=YTGpkjhIEia&c;53*Fp0fvF`ETS~4Qeel|8El$%hzM7;DO6@Uzv zANFyo|c)e6y;OXF9`i33{S^ufiSYxW7q|e|L5pX0%Ir zETw6gD$H6SAq%}t;RMZ#1L*kU(~_;epK?V%HLh078vF($gi09EaHg=oLO&tn%DRij zSiIKfF8P7(`;<|A|0+oDcT?Y*_Xpu&0G>y-kJpYdEw(4$gJi!ntA4z3n7CVTTZEA~s zBaN|I@m@Lf{uN;nFv4^RF}q_I^1Et{8KMU-g}&?3>T&LNpnk5ixgxLh_PIaV!tLbf z{jI`^U4s6%u!Jf7!}vS~n#UFA;)ghoi}!%46~yZ3u-{P=`7-t6q3A0;78wmggubZ< z?zy?D#`3sl7$4sn>sB5E^ax;Jtm0R*b0WA&ohgE@mU+;weBOJttEzntS% zpUlKubh_Us@^n_=mMg+42<38iO^%P@0Nznd@6CYrlyZ#TJ;{jr&JB8P5{Dm?b%m+k z{fa?=1=@3s6_w*>m;|gIHQ|@Z(Ly1=xnoa<`Sm@S+J_+?p|NYbmt!NPWt~{8$8-@5 zWE>^9j=nQ#vPqsiZVthwdL%!CqwTv$R~}o(Afywgy~Du=nn7KE@G4iNs{{wcYhT|# z3aDRQePlu9eSozfoVu|uF%*G=&bfIIk}vw$prl_oPg!PV1cnP1`cd9~pLH5Yd3@Ze z+0O~jpSMxRlGckTTLr;>r=ebq`y2T}i^9Fk;MPu>@=YlGdS-=AB3Uzk|0 zUVr|)FV?@G+r8jQOnsam&0J=EY_vYV`}vs>1eb4H2YprMf?0#zeI0+l^cfUBxpA5y z>R!BX+GD^=S-O9mKrnx)Xm#4=i;O~Me@t=}byL*%$jzO8K8o{Nc=WmD@8dDQ$F;7U zi3HuJw%zVPJotcmT6y(O4Q~Lk*Ne}7CV5Ufe)C z(?ET2W)~J|tPgEx-6TM|)qrv6vP!@Ov(DNIPOBbdI*qtBTSQ&xifi5 zbl@1E->)gB4CwRSFKK6Pm~rE5xj#T!c`MQJzB=6Y3BQC)L&a+J7X~2%_*R2@@qTi} z$=QsNxbRy{Pwnr|F?z&@oY5`-pDzShVu*J4#NHAeT(@k+YHO4AmC%+bd$*A_kGLdmlMaT#w2oPt7LmQsMh$C=0!=GY*S_BUW)DN)SI^8-qw)B#g@qqGYfn3^t zxgk27d9`QY8Lq5?d=KF1Pu!4yVYaOcJ(6Br2aK2K3~oR$Up+be+L$n$-;U=%`|Y+C zxkbh+;M1Qf)H!-IZb>#Mw1eJ#dbhwMKc~sg?H$|5_~B7~dDgB%cJqy)gz-UnELA0L z_~-1}4Tpmv`sP5`TES;2bx+0Kl(H|R_XL*#Do9Ll+D4RUC;5cAPe=@bWq!TDJ2|pR z)>NpmXHoeXOMTQ2usu6?(r^4etCLExw2C9$a2J-ZkF!YdBA&qP7#9OW<%&fGsaz!q zROry45N<0p70#Nv#}~=oNLu)ip15eviY?B9cov-Po@9@+cUwdi#o)YTb|t1}oKThc zJ$D3B<76XFKVb-mG`Dl)>&8@tI86fz9)-Q`tE~L4%!6j)#Nqq+uvDvq8i!R#K!y+s z6~?_h3vMG$WFC2{3!U>>i2V`hwTtN+&HOl-XXo49_2{qpz1NeqqHFYMK)0>b=V#ID z1xY^fy`LDt$%pY6ICeK7$sF?0&tC-wIZfzQCiTXkcQJG-vlKlZ?&?a-oVEr^Vb{3Nk%;x*65sHw)-Av ztASP!L0~f#h7cTi-&bI`T@Q(&wN26(E*Y~_G7;#Kp>-sVkUnRc33xq96!e@SwGp`e z8C@G$$g@Zz{?c>u%sa9R#>wmYCJ8o8)mD8EAlZldbN}JJ=icegZ}GH|?-J_#gR-~o z?(Rip^M^wmK=DaJSOTfl%Bc$*ze74tAq>G|-ryfR=D(6Tp?4QT#`zHmuqAvgY?paT zcw^!&FM77S&UOWUSHqfF&FI>qvmma{6D{@nN33XZtKM7E*Yk-gKb=yprLLk)qCrP$ zqkHDrKt0!AscUiL?Z>jr!0j4ae5_glQ^) zF%HAG|72KX+hNfp_Dk|Ih;uyo7n*V$f5^#3`GmJ|2iyu#5ajalIZ;I6f=a0&S~A1+ zzcXl0yza;~5t$9oM=da?;>Pb=ru#e6YJJtPrsyFGO{YO&Dj^+;0dgEZ2_IHLW5K<^ z<|0r*fsOqt-4qUC8Q0z~yI-YJ=%jn*uiH$-j|s_%;4-20R6o@aYY@D3I?EJZFDKeA z;gv4kN&{i;U%Vp;xj3ZA>%p2U1DDGhqJTqME3Kwm&T(ZgoYT08Ts6kbbwUdkWh#gK zdzhNjTrkmRp7Q*%L{5V!zncmOrDW9M*E0z#=pUiMRX8(Amx)F%{(KYq1iG(3hVheT z0U^7kMhEoTC!}4#OFLmll;K*EmRl?IZv>+t!P6|A1cyMN8v606V-R}O(&EfCfsWNdM}$~;b+>O z+U&*DGs`5HxKh-c2<)NrD)DW#kJ!8US;KVe#7t(>G_4d(dS|I3MT9z1c4WXHGD|lc zyxsPS2|`?+_8~nQ*e8KQ9T{jB{+`Z;JWKZm8;t)nW_~3EFLH{S2wPaI8ODy)Z9wA$ z*#-I{RfaRie$TC$G@`Fv9u~rYh4i8+&(fW%Zh?^KT#q3^iOafW_>Fmm2|vydi|vy5 zv0{uh)NcxP71iQC*j_=?KT?q{5kd3rEQtVpmzX+9SW-mIry*Bi(%Tv~rXZmx zK;BgQs1iLgljdn{e+Hn=(kjYcMXxL_H)$n=>+Uzo7YFLFY&v%o)W!O%raO+;3517t zpe`x!Q-(Dq$I_ELZgM@|qJ;hazW`)Fo4>}IAnA*%Au^*|*t9^dV@84xT-t$6SMYn6 zP~d2narwAdvSL3Ds_cdH(l_cnACXow5;5Lcm=9ET44z6aAhjE_FixT~S~?2pqPH#L zBJ{mtHgrxNrrw$A74ar{1@uB_iW>Ui2(V@kYW~Qld&UO@6Nku1@s_ai(ngc6c3NR6 zq@#{~9vpkJkPjTnI`oi*X3rz{vrOwpj~)pEln0FY%6p{nWV~6X1y`1kP0o4}E%uH1 zUAhz}0DCOIFC%61)QfWKuFC|*mLs%)wc98s?Rv@svg3u>$YvWGwr4SgG0LxHBK+Yb z31Tkd!QmfTl9!t+tBMHeB`XQ_+)I)X!7bka+lJKPyn_?ih)IWIZIi4u45d=53EkOC z6&H+`FA++!7t+KZL&m`h)2k(rBKSpJ_jq{{FTsS-G(#R`_OAUxST^-DS17o`llxFO z+z2DU(6Iocmn(!lni1Y+_0*x?+gtI3R?Fktq}wdfs!OErF!)v$v&f-|A6n7E$vwt8 zmM!a@(zcx3FmI765rvDZ?jbjtb6EB3Jb$|!Tf zT9-$1no3O2^1}b`|MUMMqRJV>%G#Bg#YzoRq$$KE+qiYIc5Fu1PByGl zn*M@Az2NZ0$7`95XkqLuZp13-noL`q3{4DGYqC?7AzH1+RpR@qk!~b zKbi%3Shzk*SP`o_Uz>rkT%OC@61ThCTMpJ$wqbX@c@jUjvZVaAvAi;l_a->OWRn<` zbV?zFu~?(AlnQ1~MK{p>U;U4;5P+iuPFKny0z6P^Tyx$*Y(lwF^IT3rJ+>BCx(Fv9 zqW8g~p5oBa6B)sxQuh%$v6wvPG&esxJv}=<`mHb{EBpdaIcpe})=SAPI|>+H0;egJ zpJWvl55=3~trkbLKX8FW?Z?uoaF}(Izzj5Du5y2sEID_rb+(gGF}1<#KxCd6rpzii1n8 zlCqH=mL%;_B-L{)Rv%E3;~bGw*J*jT##Of#l;+iOyvlNb3oV ztX)O41f+~=*Sq9s!^s}-l!aBD@`Ec~^=P{2qJJL_0>`2odlhAtE6x{dp-gd*^A|Xp z&RgG87)15@0*sZHckV$|O6gi|S1CWS1kL$Xt~3whLUokvT<5Pdw_e9#ru+3ob@`&k zxh35%qp)1KzOtaYGVctl`gY)_zW(U-$PXu6`k?kMc^$-5dcpVlGuY%q#DfsbdCJlMdeLNyv_$o1CnSB`v_2KHW_Nsdi%V4p~d z%)(WsXoCBhkMVTzBHX*#0ft6*?5HD%ngRL>9)ydr5b9%L69jLceAv2dn*okC;I?q~x9`IGi&GJy&6+v?N?ID2m_XwLRvY&{3j7di#rlg(R=PZ$Hg^5TYuU5&lYn%i+SJWC+u$goI zeiXQvB%_6E0jIz{IMFs1^Vlmr))V%nCDACM@G?cfsw@SlNF$$0H4{_p zO0Km8by0srrNVS1AukozZ7C>E z`uvU~>`dM^S@>@XSysL&OXPOB+lk}y{yd@$Wo;&_iA2K5rps+O6_Lk#t}HI?rVd3b z-8tRj&hdD3K;Biw z8wDHlCw*_3Nvpk>nd~;sQds0V1>awkXq%INy?_64g$7@?YPN)J zPz2C2Ir5ehoJ??A;#)Y{fWeaA{&fm* z+w@1_2^`D)K&5DP#q?__*qq~cT;XDO&EYO<^slNmmnlzg8-ZH!^>6X8+;)otC(%yH z2RmgS+;MyW$6s0VyOxBHWiiWSd>FVIs0rWKZ+GPFPN`6WQ=c!)Z*w*^%&wLZ>5Whi zyS_z_;ABznhYz6rWwnN$xms+rPDu^ zT7fCvxTz|DMk~H1+L_WJ=WA!$ewyd~cgr$dUWIx#-OC$1-pnT6|M&l``5=evma1P@ z|Hj2@YiNJFMCe892@CSu#4|OIHQbc!-t-J|6>4hSPGpNCRu z-j|}4eahm+!W^nnD5swJA!m=m3d^J9So}=g#(RLauiXJNi{zJ1%)!=$bjANh!nX7IAI&Oi|9Y-~bTRPZRMtFhx^7 zedYPnx+htFMOUzdEE1KLEoc1s#&oAEPqP+Hkk8Y?J{a_s9o&r;!;6nArEafrVCfRE zq}u09lFmtFs{FNTG9OtdIG$9ss%D{9Td0eU@YYMVRD^f4y0m!KRzhiNH2C6+FZ7;T zW%a415P?}P@SDM0`^fLLov|SB{9pf@xJO=W)G!>FWoPV?Q&}K#xU6SKD#Eo#4Oh*2 zZ4tv2Qo>yqh3j>{juFAK6VS2Yye2W^b_6*_!9oQEKYMtm`a3f;o ziTgn&m0m8XvwPW9{w>}Uct@1x$89!Oo&|vBp?SbE^l=<5Cr8qeg=yvunq^VQGX)dz4Fr#6ZjvpB|*6! z6KeR}!wNQ;EdT2A1%}?*d-m$p7hah$P}Msz^)y;I;bk)UDhRxPDw6HbV+%^oEf%Ra zIr+;N!x3&VTNzX-a}(_jS@Yb}Ut(4>uBwT@D9gJ}#miRv{MU3el%@~PzAf`CrB=%K zlg}EtB2ZJ&qv(2vL+{;WHX6MX-)qem%t#eyi32os47|2a86Guf;OAJV8Iu{R-`g9% zzuQN=8TgW)qruU*TKA3jsj+)>&7T zd9_5NY!DZPhi#yuN8YW6m`?61de?;~6r$bRyS1?f_c=wbus+sSqIwrZHFjEZrq^(M zsRX-z@(IT$JU4*or`?lq*m5j7w4$SvR~-5;#(AiiK|a$7GGb+A-6PwX&r zJUN0mvPX<+0OzMT!s9P+9Ms70i9I>8dfK2Q9#981mS+6Cfa5u5_t(!inb}YMFir}G z^tzb6Yp;++H8(L7kN-SM9{|bx`6PXiTrFou@|KHxRXRmgcFdN(&a(E5ht$sHc}T%< z_cH%AFnT8e+kxwpT_dN}h>BwhO zSRYl(jQEQpp?1`v3r1?wi$0=67^dR!c`^3Z%Key6a=!zc(cAL2^752J4!h{BH<`{- zQY8sj+bxRBk-q?QErn-!gqg%|JRJGGV1yK=KigwXe;ho#O)trU>o(R>m#S(itw>QC z!tC7t!DFM!bu1F)vTTchBs=hyjPI5Q`$eQB2BEg7ngDE55uZ@!vC7JKk$Ng2af2F= z!UW*#mIK1~t=%FVl^op0&Pu`^R#|3SSYDJHTI>Oju3(HO*VP_e!PvbMN(vlT9cGtu zL#5oxLDD&+q6ZIyu@)?6Cqc(M2~Ye<8unXzBQ%>lyd8}9V9b*!@n>!&inIG?Ibq9=b-c}*k4;(g3vo6a!ne}~F3B_o~VrCHw5MJ=A zY!%`zaJ%eiQ>%lY;dd%?8?|p^t}28qbIjf&U&(ypv#p`E5Fab>eTLDC* z)BJHKDJ;YMVW`d}15`rS7}SX2TcHm3P}$`u;*^me4uS~c8uNz_LHg|l=HC}VSC&4fGwdN@?#PsbK~nB+Uy ztHHbG6lhL?Kkg~u$d=B_O>B%;Ihw&%-{c1h0os})nP_)e&5NL~aKh2Kc(VXAi_Uc9 zJp~|>0)b(Oeq!Zy6KN0aH(oeIgTRGYiNfV0OG++sNJC2S_GTJ|CIyW4Ua;~3OuMKQ zsN5fRFE{)Bel7R43pY}6T0V6Bqg59&z-uBlMrK^j%IsAk#hmd$XuFy*qcByBVVhtf z;x^UspqE{|y!$&|DRy!X|A7y^4XRgcdk0IwVjlM?dHM!}FSs%YfEO3D{MZJ)QDJx{ z%|H(JQ+orbE|8A3zZ6;+$kCvrJ522xP=X+jejNqCpG#4rZ;iVgJgy3_H*&OYY!@;{k1r#{HK>64%%<=Gz)R%WtKwa|8y5TxY}-d+!i%U|=Tc zN>`@vl-odeD$&^zW6jW%Y@{6c`S`}N6qfv)L95CXAyCyMDkq2%+Uq!i9qkK3*E_=k z{P|P-77qnmJinL=idsick>eMSgG=3Oe5S9N91a`vciU3yhRFIk)1|%3;O%W9W8=uvM7? zhfpHwnFA|7d9A-jrvT#TMGuNO_JCUYzf(J{qw`yJN6Phn@88BI;r?M=b8a(sFP_&* zkLiN#4T;+@T48OV(@xPwVypAg;dot2t+C8E3T&gmei{lao##4dyKJ!}#3%kF0P)*d z>It39fSq$*F`5u^Tw=q!dHK&iSwPQI@;MiTQ+|-h6^-0q7Y3jnrdWVM3PU9fCN?)1 zXIdqiBV(tOLnn1vbm{FsEr#ZY7LUXQZhXb6wl?-xm~NIkKB&uYwFxeLx0RX(ja>*`jd0(NaF%I zQgH_sXOTEiqH;dGsu7BK(hYr%!%8~B@yI@d z_y%DTm}DaVgcJD%bQ>(~hCwAA4>(0M0uHDw2OZv+gXnA`zs{!e3vNXD6;*ciD?&32 zp<`|Aj`;U?B(5KC6X@o^dmo&05AX|~I0^lRJt4lxr{-e{+hJCHbQ~H?zEh&*1eQ-9 z97a=z$6Z%@-CC`_e6sN_ccBFMd?+_Y<<~*#XFbj42cOt#xJ1Jxt}T~v z+9Sdl1t}nlEBrfCImW1NK$>=959*OVu zh@97P7oG&-H$}I$NFZE_ftq02o~gbbJ&QxB6fss_+-UQnLPaUn+2s*t9H_)x2;xH; zVx2zhWf1#k7jZ=FAp+ZZ3U)Nec+#`)fp(+I{18~EXE zd17Ab1p;XDTWjwLtkSuo@!qjN9J*eVKtb=BkqgeV+2F)An!P7c^gguS05S-kq#G*D z&_<2i0r6fYB3?W_S|$!&Fv>md>fwVd@6Iyh5sa@M6}<+~FGK+UZUx$Bf`-KvWS!yZ zptkq}I7u-QBOG9v2DBcl9J%5|foTBL<&R5wp%y<;;(}ZF$*rI1^3R!D;P!2gQx(uh zw)+H(0KF$@x9ZX0<)+i{E6~@Z6)AC}>^`khGg5g#`lsP&5C@Y5lc;ute5iWGFdU^Q zHlV|SuM=eEMH2Pg>ELTV!^&-VY>3E09a{m_CqACBiwY<_$3?@MDGdUWl#L`p8vEcF z;p-wevUFL>lX1T|YLwm26gP9{Su^Zh)e*i^D7f?WPQLuA1onJ)G{5u*+_XlHKuPFy1@!&pDyRS)ja6m|u~UL`|TnH1A@3l0^2bC6^B8&%tA;#o>j(F7V#EwZ}n<*&$5jTkc!H=_!uo zK|~&RUDK3n1v8> zRk%XsJu6qJD8sxDL182LgT0?588aT&Jl?i$I)cGJq7Ur5T@A4d?@!Xx2ZBm2eJpz) zXJ-mrvGjuAw3AY{C4jaX+5>}sPLxk7_fzEqxMG@~{P{$OIBFN4+M!gr)U&68c9J$+X)lsH{8Og?tE6x_)GX??nEh0h5Hy;uMd0dmwn`0} zc1VrVN_8>Kk|+~r#c`4+KCjiaRaT}%Vi-t)$TF5lQ?8*aE#z?_Q+b&p^@ffv$$Wb% z_5O%%;lvqBVKJ4X-8&Cb_N|L&le~gNU(&hZ(vZ?zB1LN5_2e)i`{D4Tr1?%kjr3#C zPq_A)v|UVR8i4@vU-;cT_r(0ZJs3~Zb8Cnfu@Cj&>X@twWuI#l88x*_{a%7*NzpO5 z!lG`LMpLX6tp2nEi>$iSS*L5GgLNmt8Bwky`sor~&8b@N;Z@FdU zFaCz;(VaJvc4;ANBtEspNVQ(AOoKtdfVDrl-KT4uo7Om09q84@n3bPv4pXBTRMX(? zv`~kcmU`KBGh4K6cSWB4%Xr6I@HC%%Y~>ML=E9A`#hcsz4BH2sG?)L)W!|TEnWy*! zJYC@Ke_dDq*zM9c|7&DK*MwO#_x=s5xW25yk$M5kd0Q3DagR|tYYM;S*dh#qv7@io zuGC&6p)Jo@Ub~FztgwPCO{J0~z0{jlDA;jzOfS}TbIhkz$;ENyz3~&ubxTKMcA?!E3-Cd!^0pHaQEeiW-nyBHLA zOoV_hm{|^JyUiVh&e#-AsJCsJ?QELIAY%T<^R#zKe}Z5V!cx!pA+$*d zpd&Cb7)v%(HVm%yOb%a{Qo5PCzlVGI-`T}JeoarGvyxhH5gxeqbsPP zl9JP947CKOz(XFRF`cNt^Y>G0e$#1igh_C3_(xhAh;Zd8mkJzN33^ir;I=2w6?rI zeFlY{srM3nJw&-;;mw-Btm{-FmZsWNU$E47)aZ9rI`q$P&41xvFe9((D3`9Vyk%L= zLiL48TDUq3Qz8r9v(-?9`XNt080u4M4ANZ z50Gt>&?0?uszmw28-+IMQA#SjLuQHH65?4)2{B%u=xGonePFYq-iy+5LFWz)v{Y>w zg=M!e+Ar*m>-yy80sSbgWE6H!!;{ky-qT#Q3NsrKf zeM+UM7CaB7bcy>w+$m)c+J#4l$x!DW=SZ>Ls3c6rpR&#*o<8Ux{p%{}{!i!50!J zkWH`7x|W%hV@oNI0Hv?gy392Y^Y_t`hrMMFtyL!r`x`PF@O?8<8!5E~;rhblXTeVm zuWOexv-Vy%I}MdbwF&gx%K2w+-{U9BTiPB#mEFXOAM!bR^O7PcQ~(b}PGlB}l50i% z_s(?NXeb%jj{EWo#TD>-8)#RRoRsL>TtUfswK7%bxu4ACmN7&5R+&s5M5ZL>ViHMG zVrp_!da7f4&;|!Q{S6NXED2}Vho%@4FM@q04$DJ{bC=!TKO3LENfI1)+TeWUJ7S{7;)mtnU7Vl;cC|z zhZ8L1oiND|;*n%-qL9!#$0hKl;m2TP`>v1-9$xs(L>1}K_*_S>pUYg3Ow{q1&lX@^ zU~FH00s$C*OJ6A<(ZCeWN~4LeHIYhCUgRcECp2HA6Alnsol?Hn_cy-I1#%X}1H}(b ziLPtINa|P6x)di+0Q?FW_-smYwbEr{_NPPF5=?t=b{cu3@B`N$0O>pY=RZjXM+uj- zup4+8H}QT&&NQNo|J()-BUJrhYx<+n4L-E6ldk7|4}FOK4aC-?es6eGT`I);zcIPc zF%v+!yz7xJ8lX!{k$Iu;hD)!mw}_Dub7-qHN!NBn8` zSHM2n+*Mu*`bXV|WkDj@U{h)G6$AQ8f2_Y!m9*STvJtafy{s$=U~M^Tw@~6V zD>te4-oK@OH2l(@S7Dk!WJ*jIfqaO<0sNyg>2F-BjEP?wb2EIWaI(pg($o*RBKX3! zy=zEH6>}18gsaVZFd0@0{FY*#o-DUHy6ZKHyCy zR75f{{Ob4Mn+oX%@7|06L?@a( z?=mv8W^;vi7lWh{OHw%*?JXW6Ncu+hL2>`V zEt3BA-zrJlng#U@^~*Kj6eL6YaqLsbS-FtDCKmF|Toyvxv?H6d!9aWIMT=@8sr?tAaZPFX1f~xVu?!e{m!PGGg2I_GKw8PUbw_%b4D_TYK9! zkCewdt-T$`<2$XrJC4V9TYGnx<(@?8kFa{`v6WdDfuBmz#$kl?gCY%U2EYt|R!MfW zCW4iRlL8a|iB`cF0GaIZH{*Jo=hE=W&&;SfAGQVGc0xvelb0cJF5T%YIpx>Lmv^Z! ztu)If2yz|-1VY(^dNJB_*2B>g#mRsAd80!1EPCi2rO0CaxEH3eAD^>}oS!67KP1l& z9dbL5m%k6rO;pjuAFC^?X&CfLGh^qwoE5~nd?P#DBsk-S^ymSvwnWq5_0C`QMLcVy=9G|Fz$>U)Zzr$;=HSFSmP3FVGYLNVu$7F9>s-TUA6lx z3rf9RN=-nRs+4{uWD53{1dVj?wj5>R9%HsWp`z;4#fHbxrLbt-I4lDU`6@Xy$*tGP$(b;2-$s;# z!!Q_ZCgI7%hp`6iM==N!zlVcLA|7flIQ2h-FetJpqPIAX(#9y(UKYm>9relX@R%jx zE%bA)jzZI!8iz_b4TLj|(B&R$!StiaaF(c|(z66}I?$;C;AfNIwa*;exvV@le^Q}^@TCKo3nC@qq@WxTL+VsGT1ikqUGe7^Es zy$<3+K~XG^Ud)t3C|a!Co-B?$$T_dR>m#S^BVLq3B-)tPl7hIpQ!K}z+wh(wx+k7y%uaicbvANmG7kb*snD@pE;>#EVgVcz zEb*9+$%d^oHLX7N@v3Ia+vP1IgM8!=mUt4P_yd{6fv`GWCm3d-7o*`9K(psR>x(-^suP&VlO69{3; zE>E2pHk?;U7#qAQB_Mg7jbwu-OFA>?Zq^jOW{%GC*tNNVYwYAs=jk9A`R8)hai|rt zrUdJAP{Keg8zibvu5yngfStvhL~b8F)zbiv8!PE6DOhaoM-K~->%)YSD<>tL(+5;F zH#G&SojqTx5=AtVMXM9-b3GOs#A!$wlH`yi>oSh~EJA`zI*ckcG1g3b!4TC|)%;@I zMtO;9Fs8C9MK%1#9KIZKYnA6q+H>K~@D6_~MUeD&OkEWp-Wl2-etmf{M$D;3>*U2e;%%T?=aiJAgR;D|Y;s!@SID(q)<45T~sKd|Fp zT2T0+;m}t0IH@wKe2h>K-_ui-F&6KDFlRfJ?92|K>+O#K0%j7H@N0_5WuTZrE=h4s zQO^;Rs+dy&19TRjtF+B*Y^M8ODn9Iq{}qV_WB=DE-lX)!fT--fyjwl8;*5AWbe&7L z`ia2>U`L^XB?EOg$`X#U3u9EdniT7qf!Y74(#A6)y#&=PQI1C)!8&5f;C(hxf7^OC z&0oyYsxT^E+`5(wP>DCJ;fDYkF*#vJD%jnlvZ##w5EGYzU^eRJ`7SN%!{cN2QA#Oa zd_Fjie#BU$AC~96)=e~T0;0u#a&Md_r^U@o{^VT#L!EH4g64Sm1doS?g*Pm`Vc~UI zxT{78T1f2lP+0V1Fi_RHyWY!)bWY$LT}2O|BKX7ZoKn@_?l0sEC`|Oo})t(LUCq_a4VREc8d^}2&U-@Nn9gM0>F45!I*S(nCIJNIUZ_L%31h+$2bV0V>4XL72uK$GpHT?743kO||}ge`HP z*)O_UMpa}GMecEl^|q&b-=j@raNu1)%wNj*^T({0-A{=x|## z5@6gXdN_Gs$pBOfW%#`Y}#M9 zsJ6N8G>C0A`dnV0!zz1I^z5>t7YdVReT@zrMQe$zPKi7`Ua#7;i2qZgHZ^L~Ra?F) z%C}|N5pTRw9+y-zxoV@-fow^=*4q3LS(l)CDdt5sU9;O!`e@OTEyx(;Q({`=Xd=>w zU_;?Z$^fF`msr?>uij&A*prANbS^^h+TYWzKh<@DMPU_w4f-IuY7uIIg5kLOmwsV96={lX$@#I&PNwhG zrg~fuQpz^;Vai^)k{>V=+S*ZGS5!$=AEQH6gf_P=^P3$$_`m))cKdQ()69ocXFms} zySY52R%X)aX&g}O8LL3B6^ZwRDo>J0^tJvS9#rn{LdF9*ay>F|Zu+C}1a@~nFxF|O z$+}?PRxd=hxU+SsIh4f~jaC;sJs%K8D9a*+hBI$Tp~FS$mK^y?8R=qg^Ur-wm13pX z(_5K#HdUM>OmvwFu;`qs`l!$JLMzoq4sm!Z-DQ{yt54IiymZTu zkDx-XJq{e+E|4kgy#D2E7`*9-s4(cRguAx;dizl6T2kFNbRH2?Aoajc?V6}ZBhYc| z2j8NyAIIlarG0e}X6bI?>ZsYxR80MvJ#huKEt6kpHM&O?(7wJP@eo5wy=a!IN~AEV zQG_X%$Y64n%)F4pOQ~*mYbQ$t(Tyw@yWS4Sc1Y|V=z?M8>2TGTkRq~)t%72;PnY3^2Zx-*O#Q8VQX4TLkQp>h*1EcjO)t)0COT=tM+=~N+z#lc-~ zUW!;^DGMeW_a4($6vbyGFm0%#Xu_Gtp>i|yfiLOBqjQ8lyT%N+8cKHLvedulnrwZE` zZ)q^exj}4&Vp;cEPJl19P59F?+pp9s8b=9bJE9OuvXzj7-ZYRH8@Z5DwUa3I5NS46 z2BQkQ3YM_PoAfZ6;q~9b*{nbbUUWaOj+*3XyyIa_;DpaCJwmCyO!`1arUhDDs_aFQ zaDnJld4n667jo?5ZBOa8={StL+r=t2nG`ccS0q~uzHgMZ%9MD$tMfL(ohldWvR6;B zLJn_KRV18WP^oZv_1N04Q%#O{hyrGDYm;N{?`&O+1f7BgLx)|j}pdMMy z5EIX&x=HyZX`*9)S`^vsg6q&2ZNe<0qe^rVq+G3C(tUzlV!S4LyTNa5@_d+J8c}b< z2p!ZbHMGD3gXEk$c0CC-fwsp6byXHT>yn`xX$OqF+>{ZSNSniJ#B2{cQiq;CHToTX z${OB^rQ|?CI+*pVuU1q(gNe>dBp2)C!2lw3-UQ1seR3^HUD4 z1WX6cpxK04ApxKHSba*%+>}7Hm~4GPspB`d&|%*k&%fn4R`L-QT*3UHjKCdMu`x;0 zKq7E4$3z@WW6UMWv6mOJ3x8X4^@Z)Sc-pK*f#^FUO>_wZu4|)9b3fEPim%YUMzk|taMRQqmCWdDnl0Q8qeL}u_D z{`i1L2zuJfdo=o@kFL&?l4B0pytV*iOamzGX0aV7PNp+< z0DRPfv!?%^%2lG*&m)kDqSl`GEP^?4>snv+{20Fa){pg9CBiBrjS49djNM|{E?XLP zo0#QRg#f@g2BK}O4F6Ih48619tM&C@Tg0sUTAbzW+vKOn-dSg(a}TR|p+_Kp4ltRT ziR};)eS3)3H%VmhlrWfW zA-R9>8QBL;(Ihy;q=51TS}if{6uFjjN)gO0lCUiXx915FHyRd^7YzM=I-?x-F@7NGDYTayc?a415-uCyg^vxy!NYD?!zCTjlTh-8Rx$k${WIA-N;#7j;18PA)9ykvp=k$BFfe8qP1#l!IZa zkFY}f&*DtW!&j43J*@p?%Xg@dDgBN8DXGK2&hR;GIJG*c{rZX45LIyL)f|+Pt}Ve_ zZ3B!kLccJL~qv%AP1S7!brPgki=~MmAbh6zd#NoOZs>`T0JFUHh+zv7>J&IGp zT(W#JQ({zQ(?q-G9#fCA=4hrJQB2t-!%Z4>8PnC9Pi?P^yiWRpb)Am($Z&vn6DH;a z7e_hN3Kzf0Q`xXm4cteapv4nv8M)i4^UTvKd}Fs%)=o98ojPg>E=AjP!=qirSxOD? zax7zOJ|G&~*!4bfmNAau8ASd^O3Y8hX@e{k=<&p!`-qb(I7e(b-YvIdi|%PS3R9Oz zTnG-%8-&7%6;yHAK4+(Q_MU~>L2`gD5iw>Tvo3z&vpaiYOgbD|E@*Lp&RxoD?989g zW#~zSD~fJ8H0ybi>vr8bml5#wfYKPP^D`G zI8b?W?4CF*x19;@um^gIcH{DaS{Lq2jI3-_q#WZ8T_3G{s$8h?>S7L+#(edMG+(Xh zEYtR@T&TM;VNv}W%W#!n-b=MxRUUZiYRC4SzPI(Cm8Pr9xX6&RM+pPW#5AV)D7Xd4 z$Au45@7Gz9GV1*^|GexFs0@4OxB38B)q>;TkJrG2vp*nAk$)s-Xj3;n^RnPvkkv+w zVqd}P1?d^4o!TPX!#2R4M0yXUpunToCx7$@wE!JQ^_?O>>#b1z1dmoo+4^+B&zjOc z33{mT8dS%Zz6dt?jfsikZSKTgx2^7-J6`+Fo&W4$Fc`)QPjHf9Jn%k*N!S|&8`tN+ z!*KBYd3Pbl)DtP8Wgkt5J2{kaEcQ`^UjT}HR)OdqON-m?>PKl+ujH6!mwuQVd%#2;vR}z4?8Sb3&RgcM z(doqN&B9Si*MZZViF#f4flA-6yXl60f_Zjd_~~hvcZtbzy~6HOcAFT<3wBg;7Q|mr z!BOJabn2yOV%fQu-CJD!lJg0C@MDQsg=I@9**7vObvRwgJ_Pi3$~R+iJJ~xWzg0{8 z$};XDM0E|xOW7Ge#t~klOmh(&6))Z(BEKlSDb#xevFCN<4vrL` zr#8{{a1=!`zx&erW{YfI(~m8RSTu3o*`yD4lqF{Nu>oZ_%$MFBwwX~t=2+5zWsGbO zGW(CsaePn)zqQdS7vqpjgyn|0z$t4&J>>v%bQ>~6*wu_2o`_|%(^(SBCR`Vw3L@n; ztbb!jooL|F39}-nbu!0|fEnQVzjM!F%e30d-;R!3_DhU-Z=1iR`M<0Oo&|5@S}Af6OGRN^rd>1+60500 zm_?~fMJ^9(YJ_NnYkD}PPrr$>mckRCCve?nq(l0uqm&{IPGie&hRI^yYW=EaCD?KCQCJW$#F2l(F-x0a%Dwa63}U$J$%5R1&mm zK5;g3WFWw*Fofa(`!!NQSjh`yHbEw`VjK-(~5pubR5Pr<{Z&tZLT8ff& zAUIxBa(*UE%e=jzqsDa(Fdsuo5U8jl(JW3+yZp!JL+p31ir7iDV3nYl&YRZAb*~x5 zj>o(-j_2Xf^*9MXT8|ec`rh5%*1*paeJ%;OmrFCG$PDPr`}eAjkY zzBh3sBg7ROM6=!qv)`|}i8x!O-Zxwg(iERGDJX^gXG%w4`81N&RV`o>ftTGovq=c_ z!N0r8|Ee4Y!a{Vw>Pe7_9QW<{A!=z1sKr-H>zr4v0M13tj8xB(Nr=$QE$hgByZU-5 zSMA{nsZB_?c|per8IZ3qCB4G$>0|zZ`T#Bjo2##jtcdgDu6C1 za?VfRr=Hv|--%ehFOkiYbuQ<+OMVQC$`yDGNn{h{cDw`&Qi9wK8;CdClv;=cx^W@r zu`9LTm8G$Tb}xd*-r=pWgbSTSkqSrZRyc=ev)roN@byVy`xY-%_F$n#=taE|(To-q z(?Vm`D6Gs%adTo~o^rxyoHaZ5P!1m4+#sJoj}ayo=l3Yakax<(XdP8K9j~||`+r#5bL5yS@aJOlShAmc;h3`8Sa-aqA{ zcJP|rFv5QZ)Fv@O|Dzx!QQ-3F#}S^glaI;YG3mkzb*)M&1!%vqOa|_{VV#!||MDX) z5S{z}Ia)=M(}=Ql4cQM6J%-5~3nv%X0i`HOXaMH|mbmeH!6*zq0Ecn76C-6#g0o}H zDrc2fWG|_1G6gJPl6rh5N$hp~5c-Gc(g0|wr(bEPU+GU;#r*Y1D{bAhG=se}0uq1b zML}YlVkBht%hG5_`Z$~4Tn4u*;z`oJmEPLODC`Qp+pnpUd0TLek}em%GJ#P&{F~%6 zO+W@ehhyXW;}_3G#60H01TXyQUO_(I_5P-9!4Ln2R$uwu`Tb9S`+4s{d7no=e78!M zuFrEl9_Sve@wvJvNcNsI#@|f$2Uhn7dj*l33S(IU_2_&vo=sRRRW}nIsjEu|HB|;4 zn3oAxC(yU!*v7nEtnfIw_!bI`qsY$;0K*M%yaxWlVr!U`)CT>g+?phj4}texq>`@i z^$iXOvj%4FaXKdDbYFi-5{i7BsIUnWv(3y&Wl65a z+c}^7?flWTeJ^j6GEYj&4&R*ma4!EV^V!bbyN(2ze^G&)VosFE0JMnscyVizlu3hL z1dB1wG&zZbV3KJROP8iirl5|Ufk#bqhckA&^LpEU*2P>sTb@5lqf0cj*~x11wlKsz z6N;5Z=Ok+FeHR%g15fFqnN&MTnwms7t-UU8+BPNP?%;pCjVu7`%l> z_)n3lXs4nSMf(8ckWCO)Q5wLiHTgEYm8B62O$e`-k^+JI32DfYom~uPT}m&%ky%=v zDs3Lhj+NB>-2P-(yUz@M4TRzR?-hE@NBtUKId_6R@)|H)q-cRiYlFz_C2JlvQ0~}K z%0dQn$~}pRi-eEI$`y6>5=HD` zxNJ2a`ntr=y;N}f9+=FCLdeVj$Vh|b4~@0)Vx%hUtX!x%RYS|`-U@N zA>nV)%77N-4=8t^g5W(eSHhsi_GfS^|JDECA2H^s9bFv2&Nw-tYa?GCQvuOQ*^L4< zdFlh)_MWC5V5Tj$C4Rf9<~~H*3~Td81z9*XJc3zjspu2x}Wd_ zf<^tm5GV5!a}I)O9Q3K$3GT?J=1*>o^l^lvjLs(V>uf5&pgu3ZqUlNfiqPmc ziUF11;Y`HFYL4rnu^IeBSkX8N-zxlbw zoN>1+wRg@C8QXX)c%$efoR}d=UDJX0=bLxFc|b4eH*7pbRzyZ_+@$V-E1xX7Y4Qi> zt~i{V1lG)`FlOsuZVR)0T<5%<%#e#!9k-V6lKn&0ixrMyoDIGHtfl;LZc)1C@NN$8 z>vwot>?E8lAnC7H)(i$H`W;QIYptXvIK zt`4aDP$Tu^BO{$9}DsRti_Tc>8 z`cB1WNJEpC_i`OIc{DurDTe?$1auu9=y*rNot6SH!n$f$jHm`&Z_@I&4B}aq&(%W& zI#CUYW~@d9S3;)XM;`f8QR_#DU^|pTbyf_Mpf_KA#cN6CW_y&TepP0;gIy1!IJo1l zyw=B-os^a=>xGW+X{H}*j;0$uS?PlQ&h)U9+JRGFr`|#5e5vA5t$Dl&fMdb_rs!um zO0>t9aslgcfOIATH7^Hn0Q|o9&mfLAdp@5~X@DnaF&&e{H&E;!_rI7Ra1zX|h?M8H zb~*XfKgmQVuzSD0V_!dC!>SyMm*FnY+I^{^U8LCmdD2U!547Lcbnh@<-iZ9fCaRv^ zcnb1_Khg1qQZdoWy?BTxtlrStMOi6t0d-3g!>LxGkvNMQGw0Q?OTcwfG2m)Ncs zw7>G%7{mmp?-WrAkz5)09Ft5O=+Jed97ohrrePG`v}gZl}Z{tQAHC_fk;mo0Cs zOn|)Ue2(XAc`Z&~e?yPU%D#cy2d}Lal`OUYtS!g$TP>a3sgI#{cE$sfWiChxdFGsX z!*VGs#Fz(tmL;*!Ev_z&g&Bf$Va;q^i7QV1GRM_Y4)x?TfKxskTK;r+W{HmFPe>iU z2o8ezSIZTeAxL-Xh?j&-+tZJns_7ET?9N7e4@cqN(?}@u?Q=yEh_B~|k00KK*AH() zyW$Bw8)Xx%LQ6OtVWhlA`8A*cOGt$HJF^GxvDf-XkhDAyuU}$}2Yu6`o^;ZI;>VUZ zIU;WfM{y|Ch>;l#*x!hf zCtg^}KsBBD2^ds3=GTre)9w3K4h1#*D>}-HDVyOB3ZLZ^7l{@3Vh3x`C7m)Us5!J8 zuwsfn){rDWULKUv_krWjM(K8I?^!OHI5IMgD(ZIE%Nq;$f63QG3eJFQCN5lwNj<8_u6k(~f)Qf_;Qvg*Hinj!_ zW0;z^SixYD&a0SCKr(neIXaSfZA#$v0X2%!r1#9iKKP?qP@3^J`?gF-p;kH%mNF#7 zXvj~XOO?Z35=g_yrs2n6l#mm>Z$41z+&BfXKk{aikR>;utyvtX9_=4q6PR9`v#c|w z>ZgxoB}a`=a7Wx5B&9b&KLF;>+mKBrDi}X!eX%0!aO=883O{7V9}QGDIO6zZ#)%oc zAB`u38ePYGhX>j_80Anhu-M5894T%WJ85Vb^^-|&m!3VxgfJV0Dt{cZib$tqh`c*n zAT3QtGdgo9NhsT}FXZUqq0~>{d9RSb^DkSa`8o?3J#CXue9~+0+`HG=zPr`gl9Vr3 zQ|daG#deY3%gPi2ldp{J6%&m_o5PZef5^WwXlP;51xZ|EQ1^rn^A_cVXx&&g*}wFi zWnY%WD6FWM$-IzPQBi`Jc`&JB4$8*7yozeSVzQPQ9)&`fN>*c0!NEx!O6x`J@Pcs& zGo+|Gjtm0$llM|xWD!U|@;QHZisc}6au!qn)Y2wV0L&!+HJmCd z?3QF7y9BmkCnpKgX=@LO{k4|-zNZltil(Uc18)CRnH%RcKjY>zYP5SAzg=VNmKs?CjNXSKDzg1>+@ z;v;EA1ueT=V@0wjAU4ZttJq^|=}7?-HX^A?@nKbMxk(tW1ydP-8Kf0rQU>>|9^5lp zI)=)>J76xw;x~2;GlyLo4AC}FV8!2;RbXifBd)7H78bdg=K&}y2Q8N=$F_J4p6jvf zy0}VSyUM*TQ?EYxsyS<-qs1z$?Q^D~VR5R_d8Y6h zX)yCE%X_bIG`Yqhdf-d|IiSKOoN<|SU<^xy=NBT@;56!7er1YL1IxVA_j&8+LiBe^ z)Skt}fDJGqqtWun=U%+~`Afxb2>9am@0^;UqIDbhxBl69IlDN1z(P20G~)(|3$ zgp-Kx-3O^f-&Z~Xn38zM)8!87BAXL#>QA)bCROYc+ITW)fuz5K22c0;)t^nY^J6FdG%8U`to9uh`{q=vS3WCOP zi^a-wjwwp&7Ad}rIF&(z$R0`4UBfVw_qV-5sls{!(l16Xs!^D2Z6Z?r%7fRUt<{3iLyk~Ka#~2+zQ96SFJ;_zbO%CC*gycMj0zL@vejNBjIJ&7sdWEoi zB~S}v#K!)68pm%ltmuK!Jz*dCxiY-aZT8zkl(bI*fSe!?K;N=Bnr>nsl!viS0PvZr z$r?^z4#Id<1biIzVEt(xgmf~9AqC*u3>6?ZgF|Z)bSFW2yBCN4(RgY=!^t+rfbDF& z>mYG)Y?ujJqX4n(4fB-tTuVMF4+J}oq^eCa4f-L-b9BPs+~Ih{e5<%z;^d6<%0lZ0 zDvHJ-bSj_Ix(`rNX-iMg*(l>@r84!G6}G|Ca}=suC%Lm7u*jm`U!gxWdO#xNQMmUa z9K9zeMEUz$OowGXP%c-PhXCZi({P%UzCDWi@8xZY^CUYpGKB$z3O&$v7h+2gY@{z$ z%^EH?=&mB;%(9?;moob04J-5ZD5P8qW_;zz8?2NJUQYhRcZVRi-dj_Wwvx?~`dBZs z4>Eeq-I7b&#y48E*1<|=jLlnh5T7gFV}EyJe%80yq!&sYr{BX8E~*W%nexd*!y)`` zIFuDt+j3Q=76tN0 zC&-L0(!KuDg+7on{64OQ!y==LNNLDa$-Govybj{xk2pg6!4p4@qtuoW_g=;5qnZ^m zqdv?bw4Z&4K8y2(#~Y?hx!2l_1_M)$kW7C!vV{RvL*zvZ6fV?9XqSmli88!)ExQ4w z@HKy{>MNN7Kbg0<5snFJTbDCj*zlAUUe+W*u>9ivyQV-fN2E}0^%V0+2}&wTW6yQi z6d?hy!Qla=PWO%`WmhMrY5wwr3pI)>J2F!8MCCc?Da^aesOdIu<7YMJdDVCBMt3)n*RKvN5 zuCjuGC0zMS`d-<=9|m6Am8SeE0c-qX4I07&3bW$ae<9}?epnuU8DCx0SE0`HNl zpqA|dVuH8@bGgMmz&_mD$3R=)qI1^cd8%y5IAfb~VJAk@;A}BaR=V~#F8}`@6>-y?LEas6xZ|}$G>PUq*B*^u-rnkd^6%lu%ot@V6YDphAooovw#iN6yg9F%#AY%Uxg-WaR?o5aCr6J|K-F`PH7K zJ>id)FVQ@~JzomEG^dBWubt6DW$(zu%lb;3g^e)cY)qMg+@mOZFP5)T>0J$kIy#m# zK5Fz)oMT~DChklwBD=T67#VTt)#cAu;*Hc1t;5zR+9rY726JXVB>_R_6u+3zQto|0 z2TT(`R)`+G>f1D89O@8((SMPVaXGU9{ANowk})9n6j)7cKP(e`oDAglZKWki>Vr%w z8p?zXDxY}p3d7-*cw`4-(IdrX>;z$%NG*ZJ#DXwxVq6ygy7Il(n*yaO)409eyu+tJ zAQzIwrZ#~(U8gh!-rV};vhrVw-q#c`ADe_@r zxr=T6Yslp)coD!jw8Wq+eavG==Igak(B^hWZX4K_ei9W(2vE^TJy%01jCy@! zSzJW&cSlS+a}O~Aw6MC)z2$Xf<7a-Pv|*jqPaErWq<>}lD@szD&qB1^Ro%K%W2tba znu)R0W1qsEu0AE178 zBx-{8F2#^kE2Zew@Py)}(6+t+(v0C=K10@y&bNH?{{8!xc6DQglTIC#6LA+#MX)kC zOQn>G_T3ljqlKGYl%}Sc?YBfe^vvhAG9ndaCgRME$h3Zui4l8kBqkotH5QnD!~w2B zUdj^mbrY9pmetZyMpnv6O6tJl41yUcDI+5lB&2frs3;wMF0v8h`VnBVu4t4Kj0iy6 zfO3jO`t3?G5qGr)kw~a#of46~uda<)RKYH4OGQ5_R&g0ZQRUA6W6MN@8e1gd-LR}g zBwyDOhz`lCQIe+DBWKSarh%l_gT)F8;s5;9a`NbyRH9S@iB2cIImppWWj%!LmGQ%P zknvKH5vgz8hqS62tsOSac;&-(vcaL5!%&r?l4=BFjOST&H)1#Y*vF#&Yl8e-RvI3z zRRD%0x{zvl{`t3Als*_n5&zP~RIlU_4#dTeZt9oFu7?yx!GBNH;|tm08VTiF9EWz* zh2o}rDEyqEAH<=T_~D@2?RweL5@e2k_UhFaW%pE5HX!R6iw$`R-%=Y0?;4j$xWbbY zgGOG(RF&)@dUfvUSNvz$S+~r#mvDklXWv@`zPOG5Ep@VWC;BOjUnS*M@H&<7NuGFGJ<f`6i)8<`@s~m?Vd#je;w}~X-Drm;zApiuuhvt-b%z5qRjD%gM780t%03) zUbGD?CH>Z{`H}(ZTqJ|T35K?FzOjNwFRzLXxrExwyox2k;VYzM31iovE(CwElcuCB zTG5}lT=6@iG84Wx49>hW{~Q)M0R;mC`+EUXn=Uda2>>KY^+FWFio$4x`ZV_o*;?-x zvbEkTEm)&;#k-&@Mza*g^Pq4DQP~xKOc53SC_Dk6{Xj)YI9w;xi;|cMtm*BJ6*n>G zR$QOsM$hdWts~1z3&l;H-qaN{nCGmmvtsvwjmI`_rN}8Lnvsb(x!kZbmBVe;0-+-|7d7g^A` z=E?&Hn@fO>_b?dmNnWLgx8Zj^xEuKtksBPd|1>(A*y$qe`(IO_sl|+9lZdyqiQuD%=k#oMj_57fYE6KuO6 zdmlyEUi1;?cbi*OdVz(>GidahQOo8z0{0VvyQRS0`WXp`SD-D_jnMNh&dPw7g-X#B z_M^2>2xp+GMNMuGUgol zLqE>s%Xt=pjuU;%B-)tCYvMBq3IbEv~ZB8s=ucJT;@m#(p>5PV#vRa1RyVhvEC zp&CDa`;_T{YFGGKMX~EO`>EMatM4b;InWVp9o|r0G393Y7RpMg z>)J_Tc(iKER~W`BjFGnCQRO+;Z|hvtOCPz6>Qd`@qoV9Hr@YKrDU`*i^*%Vqlyoic zul@)Bh)I=NlCd(4!;=%<_wpEX*ICizIg2BgEbw7p0lyJDl4brI;2RFnmCFaLZ4nIA zXmW;>ENnG$cg{@m-XVV-0|-rQJb_@rk{N=Pd6nual4N?^8h12RRnk4eumLC{S3go% zcIH;h<<`XQ@{TQvUHQ&r+T_fW?9i24Z|LtNn7}?yEt8c>iphT=*JNX5a!SU1%hHts z4^qN2W%2~1t4<~9k>3FbhBTVl$=#3=cpOU!Ya>=i=sr-V;dF5Bmwx}|T%5P+^>R1VMJL1{Z z5i>RXJL`=@_*V#mej&Rx{f0eBzDkr^F=J^OW_QZ+WrBLyRP=S zwOW1o#3ZF;mL(&8c#PX|udR0`5EA}l=jYWwLM(N1>@g5`l0E7AR&^nVOJYgahHca+ zsn9TuhG|?8(eZoL%^Ee99>>G5 zoosYlWcg>BZ6h>LqHv$8I|21Z=D@~%Rb=8OuR~R7DhFbgO6{dSmNkC7VuD~TyR1@Q zphB`C&e&*Md9jJm(x_XF*PznL#ZhczZY`TI9w>Cy}O_)Wayfv)i`m%~8F3e_AO(<>g zu*>OYqM2>vRK6GycS-kYFvv#PYLu-{;WlkHEm6Q0P@w?E1?f*K-S<`Mhz{MXwrVz; zF0Gfrr|VP7P|_*U$ST#bH^E>gB^ApOFUV;)3^AJ<22n4YXAE=C%&U@}KLoxHPfkaa z&Jepq2pp9dPA)oY5cO4F6!BCKEFVI-De)(loLGe82%ksM`(0I&iXV}j1OKB!gvd{EsVi9jge1V}k zRi(nJMvDk;}~DrZouQ+YHPte?mM=xQ{Mqq+nV$8H)5 zUnhkFM%P5(1gVU^pGTl8k~NknlnFQfKuO33puzb<{G8V%kYdyz9!8lYO(n*cSv+#4 zPQg##zM)#(Qs0ldfMra`{*pLg(IEG6NTIeUgWM~?$s8nKsvRj4p*%`f2YJAl>v0so z^6ZoBjKpc#iUh70j0UXC+QU_!FIe+*1c+ZWbCk;ZMDcAM$|FhU^VhGAjydoR^g_w} zs}ox#IdtH<`evr(6O{Jw4y4a8!DR-uXBtfgR4Wt4WAq{x--kgkNJtKW$ze<^{@tCP zPFo%CUqIL6Fx~Zb?s>l#QX=>uZgY`3ku#wctYjP-eu}_AUHcGty#PjtT}T)dDgXu9 z1xEnnr}Btemd*j$KXqnM5&mBzUA-c*vf8S}-Sr9~O^l0#>JRH)h;1CDemXPpQ~SUA zAG^o;dB^+px4(b?M!%-NDE{d~6b{N%g->UnDwO>~qs?Vx%DgN~y`&nc#7L{{$~<)H zSs<^InOxMSruj z`4C?v#`!5*8d=B)`;>VF=?=Mxrt)CY2Puk}JX+}EIJ%IOO`q(#AIEV-o)K_6`uS8bYo;VZG%{DM9q3;8~;tE4qo*!sKW)HZ^so zbbu4_S@H2Swry zyV4I@4O^KJ~!+xoJHHfvUm1YHj}Nh#I3 zXWs;y>pMH-Q{(Wd)hDLw)8bC6e;UEQO@8{hwd?)lwf-7SFn0TBmY}WXXYY4!F|j3c zbUxm71X*8@L;^BWg|Jj6u)Id3y6S4Ua!#hFpbeg!Vv-}B6cAV`sNQ_B1UxvG&@U&X zNZLutAzw%xspSXj4p`*{v|Uib$%hEbB2dD`ijgmDdmZ~Fx57K6H2Li;91TSIlY9sn3@k_f zI>b{%Z*oOI-*T-&kWPZMO~3pag_s2mxX-FpQ}=1(#o-6kCFC7u%*EScGMlJD`lB#C zzjVSZ5k;&Fi69Bc`+TxUmGW@QyQ5P~3W3{+8*jpD&PE{NUC|aW_A9DUpUICx_33j~ zs5tZB8HlXuX*Pw*P(6@pnv#%3=GiLEqcTQH9b_v)7id+Lm)BW_;((M@;;Z}>j>2Ti zGSp0e1HBR*!?Ku^L=5v0NI_c!8HYy4&u#C8|30wtBT^M{x$x+GVp0}DIriFJ}BVs!e ziFS(gt?}8!z7hvL_-zKf@t;fyoYXc^>jeVug_M)7yLY!r66)riVRAWPFM;{l zColVJ{Quee^X#^*?0*#f-=je2+?YxzTCHQtmi%0{lej90{fm^QzP?^DNP-e#l3)nX zvMQCe-krm50Cy~R26qZ?ByV@8K}P}sc|Yjf zmq;wLB)8=SUYQmRnZaL=OKp)*G5x zDYf2^u!xy4E@s04Lw7#($Sh;jIl(3`= z)iiO{7KqN?J}oM#d2u%P&X9Kf3~7ZnsadJ#K)o#6d)@q^_V>#sPS=QlI6HhtKCUnM zD6_+d9>%QWlxd>A>)BJgfU8y7`DF_cy0x4ru?nE?6}d`Nqmo#N+y*?-o0KPKLbyxj zC=Zw!Y{5vXWYEfd`yB>zZuhsg9^N_nftsFDG`8ZNS2{4tOe@V)>b}ur@snYPX;K_N>@KwRyU;AsL?f)p z5HFP@rVcE?60e$8T_<|t*keact}ivI$R5+^4Tp?2*Len6(K?nNn#_CKJGs<* zTi&)w%$_sqzumhR^!nXWT>>^6j?%5(%eJZ?6x84EZl(K!iQ_$gnnbDzWvPHJwVQe% z?EGpCBjZ-Pbw%n7E5{s8Kkh{M*^q2TxKq4~XgcAoMKTY(us%ZDRrO8r2k>-@ezLxS z>fMrjNJayZ=?Co=A{({3Vt;m--lP&T8FyLQq%vAd&cjEALRe$WIrV_#*a~Gqw`k&Q z-6Rx8!}DzEuf7U%av$_yp%$l!CEVdqafGAv2(3x921!pBX_G#zG|W+MnAD3!8dcrD zgdEEQUZx-`+}{jIcFCeF&4LqU)2t^=iW6lW^SOS^r$wD;R3B56r4B4nlwB6Bx=!@O ziL#EGTwiKZBFeIv3N0d>lh_EbTAHOf;8jAWg}^#Kru0m4mPCzy1!0z(nlH>sg;yue za>txF>%`ft0QsqlvdffGD~iP*LzG>%lv+_VUPzSX4lYxa74C2OqO39g!5!}`6Z8Bg z&WjUY9mBbP45vkra0Wi2Wg<3zDa*tq5~piKK%Bhl$j9|1A2T8ZGdtCdq6thoY=trl zXl3FivH#Wmr*@2BsYSG}bFwDMcIXbozin^j1y4IH8v3?kbQh=|O2d2TQ%Vw@U`ts! zF(VO5q+%3W53Cl`KCCmxVIGNextT;`afK?9i_?C%d&Uo!EF!s+`IyRA;z>>wqs8S9 zxV&b!>P?EfQ;afo*)K+&c>GX3WqA+9y|U;Z;_;-nQAzw4q*JX-XH<2m@hs*grYC-x0vK~JOE-!&91aQLPWs9+PcSV`_;TFS`f*Pd zF@mvvl(d?v@k>cw%cD!zhjuu*%TbQ&OF3r9U6;}o-ZJEtIx?X)EqY(uiF2s}?E8gWI9EcPt`PxoGOQyX*Oz?MmSI&|3o|JtLaZr% z!yPzjj81@EBLS8)ggGHlYZFtlqvS7T3)bp_=`xyFhJ|YAeRb$$8uDAa7;pYbalKcD^$G%&q`XtrAm|U=lE4#R-Rm1D)<{E zO_n8^ce12o2Cp+SXpy4nxRxZjOgR!WHeUylbZy9nlOP?@xV}W=+Q-G576jOLQ8BMe zR7@E4GC5wnJWBc9ncVKT0cT|nhr^&30^u5506jn(Ut~bzurt7)a5Re2PnG1Kh9lMY zd^z3`JqW57h=m9lKFtq<93=p#*zy4p&C2>V!yYmNEhQgvl-E8Rv>u28EB z!3QEJa+^`rCSA6F>Lc~7cXwg8>n6_p2JdmonT2`7(gT+n?uD`68Ng(6G6|-9L@!}Z zV$K2m#h=qCc}SaAO2KdHLw>mmvO@hWMSLvt=}e9yvA8}LtfUhSbY>#yehRPI-r6!o z*{g?3jvh%T)C3+j)Nc)y(1=T59vDVAgalX~zN!|T@u>PIg$+xZq}jFP2rCzVt*Uv0 z()viU2C>jyvS}`v8MMN_#^ZWA@yBOv?_WVM=7UaL%Se*PVG3x(hGcv5(Y^Zpyox*W zJ9L_0vx>0-z|{B}{MLJdM94DVr-gn3^C~Z9F8o-pwAX0snlbSSC2BW7CtBLG3rDRb z=bMWfP$bpdTgUQb))j*ZuX5K)T=QN5d1lO+-0+eL2MMJX?p#=e{(9XHPX>d!Sr)&K zx+FbFaz)I)=7{7lfFr|2)M#?33wgNH}6&liRv^0L+GchdFn%c3G>kBVG)j4O<+5s-Ml z*L#XP0ZPzxT#~3~cA_TW_I{MSaje9W!%GLwn^KexxHa;Pr0KmwMWe@gf&_h5tH^M+&>^RV@$GXf+@}o zaKd1hlu@@*=R%GEccbM!d-(%=)(Z%BOXmh=*uLy?`dwB1`xm!A>}@@yx4(ODv+wm; zebkv8Y3#$4dkbgxf7iR|fN=}yn4eQ#ZcLn-L}MN!ewY^pjgXh=h3ceqLd`~gGNetc ztbVJRDP%6-}Z+eAqI;C&ArEhxXjn#`C z>BUY-FLp|Mu~XWM9lIA+Tf5TMZb@6arETr1w&1_nG{2M$RmQ?7qF!0#jKnqo9%m&V zzHCwcnTWiLdU&j9*E{rJn@vd@avCIpt^MQT1!96S7EfhjmDS9(O*KL7yB;_^k8 zeA~6)G2TgbI8i$ruO6+wA>?9EBhOuUs>`Y)T3<%`93O5L*c34nST~bV^By&kSMbM@F+65HwOMDsx8CHannoq(w5N-nr)wm(@~0@}|>K>LO9KuSVr zREY?}ViIhyL}#jR^DO+87qss8?^}i7L>83kcDt&~ZJfnu6ciPE@SuN{=&=>$5wAY! zSR;+}=0id9Wl;Bxe^FR*S&$Fd69@=WjV(QCa(BrEX-T5?<+wO*z_&-7l9>qK#Ro5* z6~eo@D+c8?gE-K6`NMzjbDu2869-7wvITld?)Qh+tCy)RR_hy9Z>}YzCQJmmH@Gpz z?Xn&wQQ{94oy~OB4bH2bV@o0f1{Yl4MXX6dMr+|#j`Umjr8zHUc2JlvyAwr&z#nbQ zVQaEh8-+G`vG;OBqU$gM0v?b3Zm<~#SOCpVj44M<7pj7#y^%i*sBp|6z!a{3`&m3i zzM|wN*JcR~F@$IjFJ29%K#LnxTf_W43+7h8^3^U@Cg%2xXj~!GLNK~9C?u;FHeK+O z#Aiu7HB&i8?<#GDqJF>lqW*f;wJatH%+IFAf;K|LO(5md`qow4%+T}ln>nQcRX6Xx zQGoLM+t5>U-DRU=72n2JZ~-bsB8q%xeC<7p;7kB%z}?esx3vm0Rk#D^xp9Qc^Axvy zaiQsmi^;LgmP8uGmKqHeu4@E6c-T0ilAje_je3{%;X*wVOAzb6gu`;)+-UdxUhr~? zG&@#`vcFmQqaLAJjjf8(CMBeSg~`$KAG!4ELoI8FW=Gh%DkR3$>a9G67oxF!3iOIc z)KCGZs4Fr()jQMgFQGS?5t$AXE2K&xdCJf= zhk9}?H63JbHk9!DQ3UdRW_Ir0^`0U&3DkDs6?W8-eSBCK=wrXSb|%$n1wP&OKDPk!t1})x;?B2GIyD7IkBp+R_VZ zRhPY~q2!|zymWyyC&3706_%Ngnzz*5!Xb~bB}ZC>?GT33V7B-lFVTqiV!NQveZn(+o3 zFeAS`4!R+%$$K9}81F6ZkGCu5AJirz_2M8nrTsz+Yq$tvxYPV~mI`V9I&)&b{Bo`& z@G}wlOb;@A4C|r7iP@Y*WDsU9?4hD(7A@3;U?GO+H8cr>*rJ2aqz~#`0eKchaHB2X zf)r^wLPN*8($vo?+fqhL@SAR3C}QqoWfq+NJ{*mw$!k2ohj;Lny7Q)>F6jJEgAz@N6@F3yT{AON$H4J__|ob}=co zX|}KI)R2zY&1K0`T!}t?bTMoxgir6>rrMe%dnqp4Oh@@`TwB{vX$Qf?GBDhJ&Ymo^ znXd98$dHe^L5C;H5vrF6IvA8_6DpbKljku z06r?wY`{OPEH#b#=$Dy4lxl-u8Ye+AohZ1$)QNTvr~~>b=mwzzBUynXUO<^OGm4y2 z#?v+v6sbs4y`t?Qa+DZysZZME2&IQ0)Julpk4l@;IjUYt6aRO`6SA=&jzPJV6Ln`^hmMJow#8^fG;HXWJcR|t+dC3=KI^Kz^ z>&C}X95QKw&(P;o`pAQ@@>9?P?#>8hLrU41ox6fiF^IE+1T-Ba0-M{8;l}nCdO+UC zVkgo;tCn;B0=E!>DJMLY3Ne*~e?`-)blAs30)EIz84Q_5*8 z7RwExdR}yA!HtJ-3(U0I(?vJaAc_O>5CP&&_D^yXk@gtx9|`?d_i-aYiXw;B1x`Bzj5?LwN~`L(>VHv7UFaD?&^ArzJ>8^+jSR} zfu8NmD+8_Urpr9KJ00jA&**&@$d`GqzAB$xock9t`&`;4Mo1Y3VO!=+Qxx7n&Ad}x z&U$8%Q?F_-;XR)a7L*S;VN{yYBn6rY;wGG>vgIhX*<6;UM6@Cb<|bW7P6bj0HxpP8 z`Y$&A#2^Q8HyHJN?5bv0Gb3YKXTqMyRFG48xiw?TTOHl)vFFh+OcHcjPZ==y1GxJv zI|c^p$gkZOkM(@FvO}iOP89hG9Zs@=oz&`vvfOPd&Y<9ErYS`g!welj@X|IJqe{r) zs1Op@n4v`6(T9F~tFmoFUm(o@fe9xqb$ zM4$L3H*}Ei6=AdQqp(*B!@ARavrhBk=Z&;fY!gJ53fv`(jE6?B$_Y!y!Ydgs1?aQd zrg&4~a6Gv1dJ$O(klKq{SoRSwhG{WepvK>EGJLXR<^X>jM<7hlBryrNyKFQ-qmC)s z0@h*$d$g+C+{EXko5RpMo15IJ)C}{AXcu?XA8#s43Bu(Rtfczlb*7!pK!+lnti;0! zLnY0_l*=5G3L{VzBCl4^Zp#dNOtGiucqNtM&sUY^Q*6@nGM85u~SR17JkO2-kF$EU)=jNKu~b6ejxgR8yI&fCh2C|+#(~5%9B8qH?6rK?07?sZl)Rrk=X$pQ6wAEZMZi5 z=>Yve#d}m)DzwoC369w_E&wfXFwp9q_wCN7uyei$vJGShFjG#rYV%>kU@Xaq_(n4l zp9qhfJz%def?Q9AZMq=+wH%(wq_`i#l#nGNTy;3**`uXLH@uJynLb8B3d|g~#RmUx z%kIlQl7FF*{sE%LlZN+q%hX$FO}ZQb-3i|-XV-tHEmvl#k1uPR>0dF|ziOsGJ8qg2 z8uQI3QdcO*JCVYP6i%dYBE_{8DQ-N=HV;Dm-NB;u`7DPK<_VTRpIRx-Y&Mn3Z}}Ba zCvqv|OdpCY;T92cVXYpy)X?RRL~A<6bI#LCp&@aGiw2SM6y$brAhhJw`lv&aXQ(H% z&jd6_+lnHol=Ne%6!RDj4P`FnSf*zUT`(~7oK(#*HTC?r)Od1sk;@rSfw|@7?f~lo z%Q&i#$DB^lQ_y>f>`=VBRhp!606g0$eLpnF0-Vh|`F$Iym>q*b>Q>F$HwIlyUgMu3 zOx@pey?kS4mW##*jK3Kljuu6vRN%VOSzB~AVjz}@&!OFT$o9OLx5oUn^2EIM8sA1y zuXBNcCwO+|MrzXcT2ITg-6?Fbq1PNmqs`6)1e9R1AqU}ONeOxGygVVs)i^NtyiJtv zs>~UmQ0C_)mdZ(bR;h#)XvNBjlZ~`eC<~--l;Oows+L%pqTM#U_|fdK%nhSn(ndQA zSq}V6GVgqDQc}_+6WM8|LT>^I>W0Y$e7vm+spOSh@gZ$r)denr(O+Ib|8}?RCln86 zduwaU-sj@Fo-oeR6#7J zUnqwE|s4jG;7Kw{Ny4LsV-?)K+!3?DlM3b*5tkDmq6!MT{El;w60&<7uW$duiQT% z>Y^TZRZcf0W;+$aZe={w3IcCcbC0_Y(yBXm?%b`}xy$21g(t9*ADlaa?g%dP2rl!e z)QJRHV3vI}-*3$A{?+dOPn#4wGJ6FZZ8g>{h2pXaxEhD}#vcV7nwKF+AL09Oq{G2p zE!fniEN>}H>GsyvR>tzPy&nwINwT(elC0Z%dwV8NFv;AR`W|q7R3IG1VK1NhN(C14 z|D5_)7(z?}>);$yB-Wru;m;#4D7|lUew^0d_@W>iZ106Ffu@VpS{AFq& zd}L+~oJFR%l0{;DEqcio5WacjO&@Wz`&P6rAJO(C&5Vc!ujgUnsff~Zz}X!KCaM_y zu1V6hQc8Y;e$+R_<147fLIks2qi#r4A$M}!$#o}p&dI&*VTary{uB=JO?FYZ)XBav zaRNTUbL?)W1#TvH>#Ut6>e`dwJdk!02GAM!aFcTIc2xoZ@^eKXW+gCLP$LQby=U)JgzC%dL>S7R+P{r#jz>8K;vl3I#wFu29f~V_2@f{+iZ7eA!}kE=+31(m+o9%Yx_ZW zMBNd+LhHh+M`>yHh2__pI~kvt<>7T9G3f_mM~%lL@9YY zZW6Vovl9wu*O+FsG&g(tZCQ9)Dy3r6a%N?-L^`E9KZh=j!wnh`7NfLJWtmHyg zJ2@Kk(v4y7#dRD`@~m4ZySnfg7~KVxl<<48u5v6&$MFH}Iy%?Dzh#Re$}8(u4Qq`hP^4S;3OmzOu*r6@-E$<-vIJjr*SOQfsHF^S7(5_w{; zhDYSKt}%=FD|T=R9AbL6UN;7jM!Asj$_)N+-|>f+F6-`rFIdjPGFU1>j zV@qHSWuMjI442Co@_BW9;XEQ(nJxTP5x}e93g^(XPns#Dxv_aXKC~H@P{>A}BTT(m zkRjwcF2xV3y#;$I7?om$>Ts8wyOw=`S#8BxdVH-~nWg$-iqwrpi64&G6U2A2R+~*y{BgZ+RVb2 zzl6cLcN|S8-GJFbrZp4)oKEX1PO$Q7}9ThEN=Sa^I;IbKXVqj`)XsU)TjzuevF*OD*mb{b^d` z8cTa^JF$NW3rMhc2~L2R{RoTKw5mtL)+6};#^vow=z`u8q-<94;xL@D1-wRES0RSdm}p3`^cato zbB;CY-!syLqQ{RbtH{;Gf&rLgC>MV^cS~INa-qW_rry?JF;muA-5H3>F9)D? zYK(L2{gr0$W`rbBcSxr^RxXpwkCmK`juuosKC;Naq4GamcxsN|$AL}q_4P#2c1r|L z{`mPI7S6I`&TLH4Y}-SBoF(|4a`3@ZWs~&3=?f(G^vfS0%r`kovkF;@)iaQV`S0X5 zB9>EkgfiagH>|GfbN9RYK zCi#sIlU#d}^ih{kXDxNvS^U=BbX}=$p1^LK_Z=NeI>Wq6sXW7-6bA?|o=_doxJ?H; zb$m6j8w20}N*!4p`C0HIxoK%*aO5OBkF+@i4ni_82u4BxX!l!JHFa831XZn!HdQ;; ziyIH`KH7FxIjH|MIa7X49m~(@=j?%u56F!Pd!%y}N}%mboa-D2mJXm~4FVfZ&C(*M zmvryZzqFIdyWj$d#&;(_d@tD636sJf{P9uK80`HEq+8}l9{meVW90Y3?_U4w&C$b| z%^m;p?INueeP$ZFd)G^1;2M$xII(_b5NwX1)lGO39E_sP>1Y%Hixm5C;7)^4FbTVH zs*}%kC#_K(&1T7@W6zIP$d^sWWJ)znyit^R2H~?+8R{#^*sJ>7@}9l?0Y2*mq`>)u zdaEO^6?1dHt2)aPWXt=?IkKy>hJqK8_wR&dcTCekgQE{+E-g#DOyjC=(zY6XZtxjs zvRY%A2@|{FkH!4{JW9erF$cVtdr}U1Y5_8}QNI`@4+o(LPAnb*u^n#u{5v5pyf3lj zbdV}J2;K*S&26hFV$Y`-D33fQeIl<$aN--c?L8U9QA^mIDxKM}S|FqBGmOBmL|puk z-d_YU|8kigvu`e65-Vh^Xi=|1T-FoNkg@<#c=9Pg~cGG1Z-JK3} zk7xA0+cRpfQUiZmWd;dq-}2)L?&bzHMf&RCk)>-5q1Kbuxs8a ztQkv82Uhh^LmO8%(~xGLcD3Sx&dkDCh;$%(?c}dv;1%Su)?7nNh;w}y#i-X{K;Z~3 zBkc)NM?=;E5{K$5lMy89_pvOGttP=2`-KvXRw-$J(nWrU(ZP%fgycxl=-|OBNSbQ1 zf}Y-pg!@LCO5^35sE)sK(41iljVj(UQ5&jjx9GW=j6-kSR(~{$RbOx7$yuNU7WaXsV&i+fWk1=zr zG$Vepq`_7q1*~PL3w*xf&tf3V!+?jJM46x$E8%Lm-T9hr+c1VP^ecl@&@2JOqy8j> zo_@xMe0<~&!_(-q{24bo0j2M0Jn9I(g7C&A!9KlEKJ99CuersN#R_8(*WkpxxYP4u z|3a;nehd%8UX@iV)zWd&LZzHr%1Wjs&t@DB!-20{$eySqgw}e;8*atbihF8p&;6KI zm*OI+GnYpc^GmJJx&^LCsiNI(t2^j`7wnPTnE2hXvh=cC&R$MZ#c*pGNXvS7bX4kR z_7N}K{&e*J{$IqcJjnz|W1R`5MYJx?mVE^`;|=Q)roVFNi+y{RUAUJTPz5vKvUUqv zu~=a8~|l8Np_D*I~a4$1<0eY zpQ>$#!t;R-IM`Em`}0#PSU^kF)JpGqoj}%7qGz`HLuyBLNcyLW7jFa#Ezk+%gs|6e zVeid>%Mu5mnVLE*v|CQ11zAkGwNTZeCtWQO*`MHp7taKk>qn6Qb4@nh(lmQR-_O3z z?7}HsxYc-Lb+;i#h?_64ezY4AyAbvc8!&l|qiQfrB9)B(U>=wg4u?T61om!l zfnDncq&JB}&hTCLN_o+@aeX{uljwceL-%ot%mIT5)Qy8#!^3DAo5nCRdf3O3T(iUx zxrVki(Dj83YbY)NQoj7)`zsA(itW{K2HDGbe(dEUnQoW+g4p&6Xg*-f6D%0ZvOKU1 z7D}uJbXe1L+|rL`C|Vk^lnBTf@Hu33n>IJ78uyflSDaw_@g;fr{h>dnC3d4j&;lPq#=`CrtZjRR;xz zQsYkhI(Mg;CpN2k+wXMC{De9KUzxYfy#~c(uiXjy$d=oddz&A{ytKwGRFvpWD_~^m zn<=+L9_4}u7;9VU8FuzT%48?c<6niL(2Q2IxZ20E7=mrMY;z&K9f_UbIS9zMrk5a( z$7}=)H*KfGn^i<4nKu4tF+(BE-B2Yxs>D7ig&o>0v|`E?n{N+9Fei6vMc2TU83gs% zM1?1z!Q;mqp_8Gv4TLk{x4k2BaAX{Hd(($Ey}~!0(l_1GH$8rX-O2Q1M|!eT(vzLi zp6rzNWJmR+puJsbZ?~kq-O~1UReSK?A~T-bG9I~Vl=)6C5#yU`W;-bLU`5*?m}pJb zX^;qL@{fxbsF;*RRD#ZJ8Ctq&ss^g>^-?|1%`R-jqno%Q3!b0Yox=x-F&c((VCfp7 zP8>|$OHvuUReh51Vs`KD1{0*h6b})27^E`_f{zB+CPDXbnx^P&KfznJ#V{MLdVH2o zl|(gR3`qI~8ljJwQjUV47fWnJ=~w=H2B2T^0N|2{tZQ` zj?x^XS0turDvtt|ZoJ*YC@LD9LRI6o#}L)syWX#;GwO%Ho=!N3<+*=BJPYTrX<+yR z%+n*uW=KPHcz8%nfAIxZrv9#wc;+V_6}#2bSj`BnJ)`DB4v9p5vL%!Vvv=XuNpWcf zjWF|w!DI0*r07#U{CeOgl-y=xB^HY^f(mkXK4?%b6lF;iq0I?@X=H2dU^ap!&dThY zI!pb7tt*nJHU6q`S46~qf^rusE!CxEZiBkwW}Xonh@m#^Zh4IGE}Z{%TOX4Y7Mu3% z_d+k98@})Nf)~&N{qk}O$6^xe{WP0pYuA2CPMbP*TgN^wvh*32)j$#y^=sxR3JYhuSL?$-0 zFLnoTeGedBIzhjWcl}}Z$cb09wdLi!c=xw3_(d;(nSvv;Lw~6wgge@J6fAnUJ#)G} z`*`z4mM&vzv@1M(Db9=d+{fD9<)9j$g|Q&*aO_ao7_Q+E&YX(ARnag@zPv!+M`D*S zHoGzhQ7=^}#LTx#j~&TIP~4avi0Z_mAsy{X7Yyd8%(YbGnSW@+rKgIUt6;f>f4vJX z&Z9}MQf$ZC4C=U|05ERan?TE4xAgetN3)Z_Rq$JUG3-Q`y+%0y|K_sUR0)0uGx|#U z^b0nAfN4L-7z}^Tile{OQ-NQa6bTr*R64cEt338YUakd9=;kd?{)&FaKFGufchS13 z6MaBmqLJ8co(8Ld45M-R?HLYFbN)74MKKt%ArLIXg`F!4cL0@!qw$mzRU9_dBsO?D zgPuG>1#W5CMcx$EpW|QY%h&Yf9rfj%H^L!~DS@hZq4y3b_}pTbjy~Te%4yHlg@-&+{BcRWUIZ!?rp*jQGjVg!a(ZKHn1KeNwvm-X_#LTPovcz*vpC~e+ zpyenE(DpfZ%ZkpXEOChIqx7pZVU0Gfc+>koRqy`K2B!9T)S)mvT#Xdb{r5IFYES0~ zITxLln9uXBKv~fqwPr*CJ#UjC>FbAAi`?DfhO>G0xzTu6``Es3*!ZUVQ-`+$R! zk*)m0{Bf_eC(0K72Y(cfG59j$ON_+Bswsl3uy~c#ti|cf`pOb9!#iYm1l31;Ly;Xs zlHnz&blZEzq0y=7{)d*@E2Ewd@)+X+v6Rh{hv58w(Flk{z(%t3lK~g3&M_2S)3cfl2svNcn7cCWdUZUhniGzC;N@i@_YTvinoN{_@ZOMZ;!XsnHy6w^0W4;ww=bo3$-Y5@fuoKQ4gu@EVG z(de_|$Xo(vGo5E4MVd+VihIgx^)$@_0vAn&{s4GE8Y71kPK_Nu)`Q2n!Z>5NGb~Qh zfThaen}dywB(SkW7!Hz?a2P~r7Q?l+aPX#0ndXPLRGXLNMGLg)L`5G_6o@>Zi@aCJ=X@2-^-gEs(j^73TyKFXlG_sH6iPZTI7#DnTI*`F!f@W zkV&L~&&;1(cDKFN_I{27@2#Lm_QeSI+gsD8GPQ{B4KeQVX?}jx%q*X((%9!~K2}PK zbPY$^j;q{cL?Z8#?V4ZN}|+Qhg-2F#xX`0yf{KIWTQ z@S>+Ul?sAJrqoQU!IWlLdzQ*9bO=?&m$#2BTzA^2!VZhqJB?bR(4>w4O8WjFIz`_y zvW7(d`ST_h9rKTkHt%|QdLUKD%`a~6K9H*Mw+&TXjc+v+cMW%)^2I;Hjx-k7gQzZ5 zvwnv@zq5g=k`?XDlI9kXDy2rtHCXdOvuHTnLdKebcI+hrz3G}*VzjF!L;;(b%!74>?(Xk)j5=;(b$xwP_T`vaLO87LJqk{@m3pFFc=`RjY6TX$OMEcKcNX_ zSx}peh&czfWeGcT4!BioD(fHai>Bu5JPh5`^ip;ssv+{5vASjODlTr8#`=iCDL9vL zkSU(3y_Kq1AT8Y|QY_%?DccvB4cTzQ!lHReamOut==x%uHLMgBsY=FByul1XbOE%y z;dGFMWA%3+3Fij`_4lPo9o2&!EH#17mnbuX)+O1P*$zvcC5Ec|Dc09;8XSNpWu8{3 z16jbDI-1ujLISf)d4b8bYBuw)x*;~1Tyv8J_SOsB4FvqoyBx}*8|-QWnlir8S{Y*B z5JRJ1%(~@w+p1_fjkUT7;huJWv0{zgOFcXnl(GZMVr8kPSZ1a6hHbP6R{$eY_03+; zjV3;WoAeSBE$QNC(8hpV5od9oSIJ`1_^6{cpIP+Y)17Y|!4@tp*TC4}qZzNijiO%X zA}9$Vbr8HK&-#ou11q>>6!Cf67|$jBM*VbK+imS-Z|#V}NfhjC`F<(;TgB{3u?TJp zyDhvN>ilPOdn3Dv7i5$9<2-};xKNqQ4D?YI*DGCRDh9XwI+q1k!IK6To0x13y(U6n z|B$2W`H5d>X|2`D@Rt&BQ(qYq!a^GwV?Q&=v85$7$1|#~!8JaE8cLMW7E7p}eO*d@ z*l3daL$gMfOFN32Mh%NVam0ZWb39xf1;SC)(O&B;yhT}}t=zgFBZwbK2iu+m6{O4@ zM8GnNV&mK_AF#5nZh4wNe=x83PL<+?LA8;DY;9P|CGzwzj@7t@C`?nFY>PZz_O|6U zetGi!&(E!JPWfUxrr3@yraH1+){%MrFx$*3ldgNG{vg$-yVXA3Stx&p)%6jpn#-we z1!9@;pIf%89QSq+%JymjpE;&taF1XjT+8XDjJcYL5EN}1Z?y=8@j%RQ}`wl2w;z?N#J4)s>@C66dZ_)x5 z)rp4)^EY}8+n3~3QNdKRKZ;4#lA2!Z9KV|3#8z^2*&>$^HHqn!%SKW06z6h+XcOv` zV^S&;4r7=(r>9gz(a->zO-}nHcEok*0DZJT{9`pqN|>_Lr8Gwi1RX zEmDab$4A}CG#IEqevKxBlFVU`I!CY6th7~@x3=lJKFxJ^wXR@Zwv3r6GG<&|*8Z=U zDMz0RmE3|%?8SmzR9h4v#;U~Fcc?sFITH_Uy8o1GDh1&Sij<-7rYNJ}CuiE!-Xxf6 zdq2SO>jbkhR#}OB(y1hKA(1P?@Tp{3s#7$#5=b!ZFR+x{kWwLrFPTRK^4NHmEW8|f zq%Uiw`YAe9@u|Q&H)C8JBX5J$Vui#42UyN0NEewG&=#|uL6nVczMBz*G{Ycfy*pc# z*o&e#>eHaOrh>)^tnmloDLm{3sBgYf$FZYtFbG7>TkPnV@&o6epPYr0-lfbbv<1Ij zOB46-E2{vB1mXa%qat3`D#%=QALW`W-nrN2o*Osv3sZFUU1kmPbS0g=#HKAoL_@UV zVr$aS*skJ5q|$DfJL_}UFxutG`!PzwE{ZH(FACxjsW}p89bp;LN^+ne44gml(JH}X zqp>i_l4sq!k4Dw3#A7q)O_nxgsEzFdkgrC6l>vr|DCTq$V-c~Cxk8c3>}&ed>}>ke z>}`z84MamueDAX|m}aI=W)Z0}@Wkcm5u62Oq?EsEt&0^GpZ0i|Na`g{Q$mq#NJO(# zeKxwFPl#gvROtPWzMtDNyddwhqT?+-c(AP%7U9Sg)$g~rujsDi4JDVJ?5WSJ%Tc+m zC@q5?Ttn?d^@hgLI6Ce|QRhN7WnqbD6$&V*@=_sIIf0g54eelKRw#QbhJ!6iBCYDMf;IN`!NY^Z%hINI~(3V z{rCPc(?Tjp;w-G>=_#4B`tq0%-%**fJryAplZmWo-%O;G)1LGl9UDpIezkj8&jE`; zyKop-6#;RP0n~RN!AU7ee`9I?=6hr9vNx7)5PA)j;@s*-YLel(>ZQgEzI^IWksgPFYC2A)8(S`hlw|R>><+ErCOhX4_ zLsQ_YIDtD(a|vhBB!M|sjkcj{Fw@Fs%pb%NvKfOg(7{e4VwbrY`W(9zw@mUWVjqFX z^rP-HmLK6reu<_D@;bO8Ef2_hG#IqJUS}X&5LsXMqVtjbIvvX|$ezouXp^me#oFjM z5})PwLEvLyw*GDjCj>vIonZ(+-vt-k0{lXLO!OPJM6OGoUcbGco>hG`dq?3!XK>y>ZIMp zEVA|-zx$3~JTg}U*J0fi=C?cC@SReW@d~NYb)gt_yf+=aaP;D8=|x`9JTcxX=Wtr1 zb4Df+i-uB7+y!Xjuz}DAxjN%i_gb(qFS7YcfQ6STP$=_BU#TOX=O}ZANFvt7`@}|>A0^HE#*mZ+?S)K>qkwQ{_s3~1n!F) zUX=Sj4)|Z6`6Qc zW%?q_KBQ3WlPDLN@8K%TYVMgwTEu><08gCCRaOIygToQJfvBWTl>1CYp;`oPmmVyM zD_2+DLR|T=B)m|OH-XHB|3OxHkaJX(6VdS}Cg!MCm{l?cWG`0W$x;1@cZX%tmq=7n z-Kr!=%CwwBi(H7`2mPeXg<-a-uW26Z;4t~90bg5qb}M*|=K2gSFKY(;#T_ED{H zLsKf;5lwHGgUKyIXsCksoMDQ!So6}~)Tai?!ijNKeTu&=ImIhg=2tn(%h~-`8{?|b zIv-WxV`ZLyK)XP@x{MD79OzN`s+gHMKv-*RZ}J6PRqU@1OsY1Whi&eK_a2i(bys=a zsa{>xWp`5M)KdMfgDS4zsymtGx8iQPPw%EXLGPDKTy*&TLib!%B2f31BWGQeQm!hY zc~3c!%7Xc?m=1hfOb4#uvYbf`KIOX-CMI=N;x1qKrlgN6U6gYWQi7VCz9xO{Xi}WM z#^JB)hrbGupb>lweGN6du)b!Q)abfU45zPg^y2!`i;DUhiTx^(LOGW=YHq~CVkMdz zs=IOweOqr+=B{`}UOJr82-ms??6wtBm*4>!m6}f-i8pR5$DMrqSdxVf8^@T6lb*~j zhsP+u7{nv(e{rN;DRSc5fsP={T`Nzhq}bVGvo(CP1*is0;$bOQIBm#f{e)mc8rrYC zdaN4&cuAfMuTo19hVBvr!?+Ho6+vUk0{s%aq z@L{}?=qh@EGn}SjFDf!Fgu{+dw`1@a8faRE-Oqa$mN_Esr$XIH?N(5hkC*Tq$HjH? zB%mAJVS{57H`wL>Q8Y%faCA%$AKjHd3*PP6FCPhWr0FAv5J)$q!XGzuAY|)VstHYR z4jY>C9Q`0gi#w&>?i9YBS>bM#k=TUTB#7sM(chXft7P(=Sbm##X)0?xJmW$-VSN1t zb_%l7OOrbVP3}mOJG#m8;Z6Kr7^$Y^4{4hI+AeE)k{>KS;*ZM4Ic!IU$FT&6+9hiod7}D0N*Y`aa0;Uid3#z z(ibUyxS`IszMfvw*zc%yzVk+cpv!X_)txsvw?@-BE76sRQ>rMjs|984fz^hi%ve=C zq6IE8E2${Q5k%&Rmb$KnQFVvh*XjlXQm84n%mG#Ta>JAlEDt4TlW2NM4)?=W#s^vM zKv`*J2ei^ljmEj~&9=AXo9*LXVsNTEM?dl8A7HQsHgU?Hb1UE8Ra|>(e%IaLd+vr_ zZq=`@ei#gTvD{v^AZQbpvP&!&juZWo<3zO)RclJMmaDxNw)ml!%4VCYPWi-Bxi;(E zzw#PhLnr=_yVCg5AE-^z@(yGMRWyq^_aR?}`BF={31!x_=!miUsM1${IC=dhcRi{+ zg~g$})m_D)W^c+-txX(a5dB08)C=H>8nUkCjFR_>i2|qP3@LIIrjDA9a+(_-X`ZPx zAES>8*hne@8cLa(O#BgRLvwjYBD`UfAOpiv4syzSp6*~6>n~bVh*JMTu`$M{xs);$ zrevNvFNy%3Ilif zO_a+xquS2}n!8?GsUZEzjC3nH)ic{7^uqUuVPp7t=vn82brh7L%kTZ+cL@&G!^e}XX%RTfkg|J<&X!bDk>ctDg_5)%w3u~NV% z+hV8}^mn^{NmwQ^s=2Ri3UYS%a3c;PKRKZE#MdGK9o_Lb6&Mu#Wq8K5A+v|*bYD!()(fo`SQjUPFH z-Cv4#uoH{vdeYyk&+N=x96N`4N3&3&bDUm!IoLBDQ6w-VNT9TrhMMK*jqFpW^1`W< zdBwD;2Yd4B&z0r1QkG7A*6Xn?L)xi29%jy}j$+mCUR4BrIT+6{nV}t>ip0GqlK_2= zym&eZ9>YD2GkxbGi0@!#JA47hWWy8LkWUJBQ^|*g>K4VW`|-m;?_K{7e-QWjycEKY zYrh+hMt-P#Q4VNM8%Hnh3_aMbylFvrd}Eu}Gh3PMYXkxFeJiFr`$1>1c8~zy{20!^`EE=DzO1!OVr> zN)riDG`)O>acX~j{+ZXrOn&$|hG)u21o>H!4D*tlUd7*nnRzwQ%Iu+~GJ%)$96k2Q zSR&~AAehw6#9N1d{N1pP!Y}3XofrmknH;2U`FEE0<1EuxTCj}$Qy*j)z{MEUE9d>P z4XVLPdqaP$vYX;_9~zWtgAULs6T1bra9BPonZ1*q&@d&vGn0>0mgk6epob)3aG}MM zuwcefi|gHkdvXYqAI22)_9HNRvr{u)-PJ*teQ1XR&Jk|94JAdB=j{}GNmfm&oTJ^B zBQ?3>`Zz~?X3`iFW&Jtj^o?I~HCokOYSpE!jaiO}bso=Z=G84ZQLvvcJWeUj0+6rM z4PzX>Hy>2wrAZK=7!gUlP= z8-#YI1o~i?QcA~OQyV~uiB!=ieN;zGqVXgI60wp*>$>Bm=Xp9%Y+_d0nyCmcPXt$@ zg~*5KMSF4(gJ;&Bw=|!XcZ)A1N>BA_VimAhCQcTq%wsxPp;1xsb^8R# zwTk2Z1ZL1YC=OJhR~gpcHdEvEHisD(osaVZX-sq@>dtwb%VScWprkjQodHA4rKTNx zACH4>*bmj!I3bh)J|dho$g%r`_Ra9p-`ec>Xt1mOn9wnUvvZhq*0I+KPQ#I8$ySrt z_FnY8QE*C5buHCy>K}$ut9#j=$4NAXUgKAlJ6^Nf zSX~4%azf$a;2|#x@*?2~wMtX?WiWHVm3R(dBTMY_W+gE>q4X;hD_vLxo;ONz20iV; zps4DV5EQJq3cxF{?Ox6kaxa%Q#JG#)IE(VU0CR%1lrkHsOezI-4p(5zAW26sx;RfK zFQXAqJPG2$7RM$3`XdRvp?J(@PCk`zn_u(yNVTF|J(EGtp&f2i@ z(WJ@0^B#sOzNC-kzBV7?nVbDtGxg!7G_?W$`--VM{r#0kq4o*#qB;)`(+$cl;r3F# zc!W+-Jo$o4N5-h@)rc8>Kr7zl9<=!NyqgP}1M(LKWz|%w;Z{0`j$m={=nhnO2d`DG z5q%kDdZ@J~cJVRh!oxTC#{rB`O=LrwzGIrc(?SRqn}%8+3VNw9$Q(#1`{i<&>e}qsX> z18#x|`;iAp!<1va5JGt}1^Sh#q*$sk#psaP_RMN_==1ks9Ci>QrdXk@SZ(BOk!r$& zxf}9#bsy$+bE~x|UFd?WZY)qz{zhD(pO#I+%I;-?B2%}riXcIDutN}4Fas&ZU$`2x zgoW?MUhu%*+pB7bnnyI}o2IV*CSuTV7<_ii#_P&{&)zJV*vy$5#%pG*#GnoxCaWDH zxjoPnHf1TM?ApvtVhkj*_*TZ|Q}C+=%qYr;bTyNT3iexz+g2!w4nzqD>7?S1C8?Z5 zr>BFtIrOXz#UEU;WW2m>;w0qjzwZ{ji|HQj1j%_2jPMU=WukXSLhW(vj-me!ieoGw z@^bbkd|%_=aD(xqm0ip{@Y+{%=fT%s_qJzW&G&Lw^Sv?|QLN(Iae}+CpuOF_{j^kU zBuV@ZPvc~kO?|0uGG*~JfSJBZ<{--kXrm0AhDPd5v2D8;zt8@*Vhh?b2xY|8ePc{e zj%@E6-)|i8Uetrc%}v41^B7V^>-y=@6vBS zC;on#;_nJB-L#(0h{4k_u6i|y`pSgjd3WzPYrJ!H_^GmrNmFDb+Rz{cmlU{NPd3H< z6pKr<0&UOxcQn1_sQ{M!AQ*U$g5l9%+I@HN=q~(*9}WG+7SJQD3jG7 z><3WaQ#hk=tfvE7v={{I%lQZ7>HUIk0_F7h8c4X`IkEO5iWfhZM3*lVX@4GHkvO}g zJ>g{7>%GYqyh??-qi0cy$g2x={zbY|OVt}DN_68`WrJX{noyNISEbjkmUxw1yK|*l zORQS1TRNZQi(;9gmPVv~ISRBuSY93ZvQ()K3RbC(onIPa9 z6s){kn{uZE87-IJNI1k+wLE6E)JnNXQ|fTwP|V@&wHucf+$|K>yHsf+A!$Ws_ms3?k|`=Dg~>69WxCmjRnRnQJz!$6b_uYdqwQzrEAYsL%8|>qOYEK z|A->^bCjm90l88`O%qB1!Aoeb%M8;zyow#+ma=>) z%R?F)&#-SJ<B|&xSN`t~Ta`^pMo-AJaJT-oY&!r?-@cf*G-7D~hO< z%t>%5MBe0^^gA);aS_9wf~Z)2r_1l~Rz2{H9c?s*%XzDYw({y76D`fyDac{pM#VAf zaMl_}xP3k=E`Zb0IQj?tHyzYY>E}9w2n!Tl=XdV{Wx>6x_bsc`PNSKiYMZOXV6)8b zHUE+YXnb`@xj!4;-z~%jbmTZ}mRhrK8IGW+h7$9R4tf$p564}t7esQi4W)*qLV!eL z+FYo0pRh9zH%4=~;E*>Mvx@;r*x=Tdp5 zStgnkm&((n=3Bqid_p>?=N}`LCpElqD$iw7qw7L3Tq;jTFRm}W$TQ?GD7G=l=sj-` zz9XrBY=yv;97hr)iN=h3csd%uP%-tTjEk$ znE$htF1^V@kIf0sw7Xq-aGw*3K;4ZdD5c!Nb$RatuL;MrZBi3?J`uaahKb2=K+5MP zlILz07U?sJouY&8&~S=fLo?5XKy$ciM$c8$Y6%_0v9NPG&jq4G8z|k15iMg+$BE8F zo%u!Pq}Oh@O@dKg_eqdUCnH`klM^OW!H-eG6Z_e${G`i?{(R-oh+<;SoP&?BF)gol_z5#iRz60nw=rNE(#>VZTXid%Kz_JOv&;@Y`(5)n86|e=Wtqkr3$X(BMCBl$%)ffDRqBE zQ07NgZv(HO5pdXmQ@Y`MWE6wKpK90o*P#~R=1o{4^u1$NJ57*H!Zfgcp|V78IU>{n{GO8ha#)~)fVbA(B*DTUxDIOk)!Kx|N|E_GzBVEMyrXry}ZNL z`FJcZoGLttbgD9^5#JU@Z#Kzw$A(p4+cyr&JU$q3l8-h{u1>1Ez&S0?U;9%4&w=>P_w3~l-t%-4 zUTXFsp9>T=={}i;gJd(rOBinSH~@B%<$qSR(=!HgWTY$D{n4B(w;xfI`-x|u=WTig zaudo`WF>3NlgP@|`jf3x@z;{vKVdv>@`9RBsXiPE&LoLYPLrO6@NDZL{CLD}hZ4Np z3%~kGi&%bpJdMw|y4O(jO*_O$e&3z^@cpdlpMLv~C`6r!N9Io|PA7NGvTc%u0ujq> zmimV=(g`%xJvbw2<}8mt=P9x*BmSgD?1SXGg*~{UZLk)LwN-PeR_l^mIYZU&;(k#% zQ1WlL)$WHk#F5jyKrVmnBnYCs^%$uv2;xQqPS#fEGW zm;%M<2F9sDPlK@s0bVk&c6Lph8lK~)SZ94!FAsca6Pr2gpfwWG!Jff2JHV@!{$eZc zR6GxD%Dp=BPm@sH#$m5sqC^!@yCBRqWiv!*xEL&!WQQ_AA3NXS*w_Y7;Yt$2@<A0wp#*yI?W+;i~xO!Xb+{7@_s$ZAqW=H`DTbeThn%&F^ z0(qm0WGDOB+T0Nte@!qnG-mu@i+iF&zNPDEsjG{1`;&`&`WX7s9gy4sxk6RS%+ujD z8HlEJ0!Bv#rQ4`_Z0b~C&QrawEE#a-cRBvE3zMA~29ypYUeMX|NS*_DBDJQ8^+HC%K32oDu* zN#u)~z>TRCh&^S;qrCJqW459!q?JejWgzm7EYG`KS_hT+VJq(o1M(jJe@mGUN;+UM z5Y&$G%K2tnJKreB92MBpFLmMZ|D5`E$xdm>&U7-kI0u2tF5WFI-i?5V4F~V8F6N6q zwY&iuc9fMQBVOt^>Lb6QWL|$(DX(M7d7arMy{=u>>!wQk-q|GRA2x0`j!-0m``_0w zUF^Z&{xK$#sjP*1yp7`L)Y+0ZT@y^S#FeQ#h*5FpH88=1Pyd1X_y>IMy?IE*NZF?o zA<}jyzT+$$^d`Xw;W$zPj!`b;!*ZB)VMU{79CVF1ED@=l%D;UW4EO zk7CU5fEt?Yu=kbKfu=ZQr9pvNepWbwqzfI-x136#NCQccM)-;dV5a%MtuFZGt*6XX z%gjEd*)V7yT4Q!{-(#1$sJs+y_7UM_-mPz8@pj!C?Odj;x@6&P{U%uDGh zE6JA=QmH;-Eyqz6OCw#QQPYuV37=3OEbF6ZBkz6adldS@?~y$(j9*h{4Nk?Gb+wAX5+{~wPR{Qf zXPLfqUPzgbDVfOjm_o3Rf}n>hhZC4um_BSq=m}zXMEIep26muusjT&ocot~k^yf6R z9L93=x2fpY92EGuc&6cy#cVyM7S(PfgwZDwrBtz5TXAI_avH+jWO-^8dg>yP|DDTZ z@Y~GmGVoRx%P7PxpI<-c%O{>=92Yl61Q_mGKA>!6|27}*j5;B0%%g31j87vVGxSx= zKQ`GL`L3ASwaEj3JnQIrZhAf>6CY))Arj*l?-r#LADgF2FYdFNf2I?2C92Gx5|`I& zlWfmWHM7FEci7QR`C|BjHGzMdM;wq!&{uKo&={b7MbZ4 zOHe_tsiNcEz3aUSChWvG5*q~p(vfgI|ee(y3e8RmCyr<8%G%-Y)iBaE?*R&?Q88t=RVH5?RBaUcgg z%cw?xb`E$|(vFY9^GQt^?#c4r`KL8+tt^)T9HKwEc>Ttddo=(q>Ltff`R@#`omvc~ z#X_3c3F6!@C)6>EYr`yx7wfzLfAe`pkr~B^w4JUV2sDP;-~bEK>rKY^C(${a5s3hP zK!LyL*JHvi<(PhZ=Y(0XBx>SofXF@)$vHI(h)+#NTEekfTp@od!@N2xD~fdm9Bbpq zqU$tPAW6lM??%D7DXrF};3GT^bR?*`^62G}_m9B)2EPVcSCncByElug)A^h8BVdM& zYQb*TsU<%$Q<*NyDVYmuW4>5M^_j586v&PM)sx5~{5gmI1yI&>pFaZOhYt%p&j0Gayat({(G2J!R*p;f1p7- z<_|j;VdNj4Vc1K_8PqliPN_2dh@&8;yU_N4@j4^sN{r3W#Xu@0Sdnlxan;8@iB}^` zL5r=hhrq3M0t0RWUH1`LmG}Z9bXOhve?*f_bOSR|-fZCSDFxxNAz1R35I|GS1#%2B z6|IzmBU^YX+zf5#)S%c&+2ExV*=REDa>!`!#Ykc#4O%kmI8$ccc~fP>Ez$UK!>d^y z5C>bhWH6Ouj7IrBfI_^V$Y5RYYmb!8JoyB|hA{B*us%<*b&kG;u|nuq=6baG4`L+< zBGW~(itARIt%n9#L2CK^ZRjjgpCW|kBbuMtQ7oy0jiYB#5F_Vvh6kwKE(vK1Q_?u1 zz-R>A6_?_vYaIQ|QG%aepUnsX~OD1Q4%aStX_)c3vN{IbefZp8K~2ooWVH_W>#qlHg~{W$yO<HLJWE*1t?F1VKX zRw1ve)*~D#nkd$D>c|(#89J@UH5b;kT4QAT(rwzRnPSSz((dEDkb9zp zFroKVc7HnvPQRbTP=&rq2>rwDD0zWktWr;yUa&itQ-&x>4-w zAsnlX<^<$VMnD!Yn&nZo{+1-$DwAEsYs5&rOAwz^oiW?-Qr%gRaIKHZB?WBuYpX6_ zdkYBImy@7vUA46$V|y)Fj z^PirIsAft_Z-F9UdLl2;38HEmxWay5d)~FA}{Z~mJ=G&BTQ}Q+0g}o*tw>v0y-g)C;O)C3RNoCOc zpK~a^naVmNNv)t&dZzT$)OBePea_{UaQ=osLhjFST{XAgvzI@#Jj_?6EdO&w*$Eal z%Xk2NsUm}5MAEZBvbJ)Ev>`F2V~rDXLNxZp=qtjT*M**vdTeeac?z+bTzt_)oS!}mbJNZ25}T~=qcK}DtY3Q4AmlERt* zHATTD4KSFCnzM4GP&rDSn<*|0M|jkoOoM^?9=M00hP*zQSM7XP+!LrV5bC15rD6`AjUkNAXgDFS1AB}dT26; zB8s9$ZL%BjGzPu9MAd?PY~zYKhO`eqh4OogEAf_eZI*bUqcP8p^jAU(ZAxgZnw@*- zvT29l`^#q?%I!CD2S-!%PV`|Fv=ADqsWs6tz)GTead*qU$%pw`eOMhkjLtVf&?^Xf za|DxK^!No1#v-EPN?Ph2AgR@5=8D_{=8#Sb)PkbWp&jH-Qm|w!|1rHE7rwM^;AhD{ zVl+2O%z#rljCx`J;u`GBm8FJ6R-H60iXx0u$UayNzeA~vgf*d2OCFulZIGlYE!qZp z5h-pCre!Tij;=QVuCx^qr-ki!nfOBRsGUSV17|mR>c>HINny*7BI)2DDq*Yd4X1-7 z99xg*3V_WZShDX;{9dRX>93x2!2ruc3$B>v@SKo#l_!q7%>k2-j_J{(yYgr5&5n5m z%}`bOde!_l^h#LItUC1_4PBAn8b?1!!JcRK|yXI8db+HK?sQfEc&6&4H4-}sjy zrTB2Wal|`od(j$pR1G`n8fbf}&nNmDdW@~|FV(-a|un z_Zo#(p&8}Skf?KL+Ovp7QPR?=?fJMwGn zJUsp|>J?}h4Ej8KLQQ0u&8n$f)v(nr`OoY2G!p&?AAC zFeW@+j`-&}{xSa0ww)zt#>x~5R{IUzeW0eAk!7m3k@9(w&2Uiw!uOc;5TrJF6jrWmlIGhdLE_9$vJ#^UWY^}jlP|m^1zuZKyU8jrT>y7LqcQVps?2WC{2zaeeo(zy}>8W>Xk$`Vn5rWpss zR(hFf&d+A~&dK~+Q0j;oa+GlTv*d}Ac2^{2l$sOOQJC{_^+v(DZA(OHpRdA{=w=!c zRWueV$=Ft6u(LQGhHD)2A`gISOaihqOeO(gV|=b+`#@pzI^i(GE@mpeVC8Oz7P!fI zAbA6*msY!8?VtrdOSxxZ z5^$PL-4eGFnl|7Ab^-h)gk5_aO($J3e&Lp*NeHX$4`_3?vGr@RaVdwHW+ZbAsm|_H z$fC~M+cPWSh4@&Z$tf7(F~&wefej$R5pO->P96PPL6+_q$^`R7*Qrj(lE2@~K$qHj_JH?kp3^ zC9HayG3iCq4kgSUCuj3FgC?#an&WWHH`*bw>@kpWz#dzII=GPvXlzeX2(Cx{MFpvBI031 zWujBg70(3S!P<@$_$J@!xAU>QG&(bJ8O%_kf4aO3OpB8Smn98epRMbJ!4(RF`IGa> zh=Y!bmQztD6kel!=H$W^%Z0S%mn0fuT~{C-E>RpLHeX3Cm$K%&TIo=YXB3Xd0Z4}0 z`91hRK?O)cN)Z_n7%9%S3~!#eSR$&(zvB5@l4!~CQ#kTR5{O-4xiCAg10^H5d5XRl zqfzx_TeI9_2h824;)IYydoE%D8m++9aheS)z*dB`94q5pXq58}sciy(yVL1kE5cn) zk7;ylZjb!uRf}=qC=Pqt0cd5WT=SQ)m^nC|ka+ho1ftdM8_KCg*2x@Y0El&nEZgG( z-)0Gonc6K^D8Af4^6;SlV75&AWHKBnBQSIp~G453OUQa&M0@$X!<@WH#bQ zCEiVb_5bic+`Y|*YZL$2PO);OaS$`n5An<6AeoNs7>K;a@(TTeV!fJAtcQI4JsE{V zKegie36GPDJr%~?RHdKT#jM%*E{finn0zpYN*ROPaP&TyOpy6NJ9eNvPytRm`CE-A z(Kvu7V!%ELV6OzIS%FO$qX5L2uR%(;i(jAY)L27jbj{3To%uA zH#P05w3(;lV|tLAAQMH{j#UhlI5Px1cGzmE(-ey@73CebjAfqbF@M|M>c17>4v7o?w!4c@7f09bYuwJDsu9U2t5 zT}EZ$uAOBtN+!x(0pw70q!R8h)px{Y0JXMtQ=NnjCrzKm3s*-ecnC|l7Ak*{1LbXx?Rwl0+OQ8KZ$DVzQ)x6D){jT167bbqb?3hRP zb$V2==PYw}bZ5?;&NUF_9W($pZ8RJPBHUxJUiNcG z`b1+Igq?{G_pb_j{{wKhlTrAe2}RCs7*DtmF0#frYVX0Gg6>-(APjf#?Bx$_ zm^u&|h}jM?qBu%<3C2H`i-QRawnGBjSfv8T#kY@VJKMnkgEasRf}6-k@xXk^!Fsv# zLGKi8Yj`grt>AnN;womClT=gQ3sH96fl+jmDIK5SLrCdW3g?7-*JR(O1F621?%{!z ztK4obM|YkQ^BCIzdaN79>r;7D;$aT)l$)@T6aSp9>Rb+Slz=nZ0en`b383;#AOgWe z(c_JLkV?`EUVXJ#S6&M zKw3z|Mm>xu5QxQ^g0`DM`?O6)9=-7WT{7{2O(K8epZM!t`F$fhU8#ZpZhDlR!m@H@ z)0!%;MrYU)rH!C43c^SOJX~>2w_oS%y9up`#Vw%4=y$p zd>hytTs>NQc~>Al2@+ITudHvh)i(aK;q@+11nbgqr9v!Yur69b%qHyU3w<}XtoY0n zvp@##i{3g!sDiea7WU#m*LoVFdC<_Gyqk`5?2*PxEi6VOqiyctNn~Z5n#H!sd{Af< zn>v)WdiSW&BDShQz)j--xMg6T8pw?y^b3EprP46?j2@CF=Rwvl-}cN;qEk3{$`zk# zGqHOS?#d4-&yMA=k4?-KK=25nAXAv`E{KD`D{PWtF6_qiolb?J6D`?d$)Ww%Q4^`j zK^`+|l^*WL2Zs0jZ^3n}>9$Gandce1-C&%U=p^YhKqy#el3?&9JJLxoI2O3CG{I#W zU^^ChK|=*9+Drv>YCd4LWZXy^DN_^B@-*&d3~VI@gCDD}S3ndBBPS6&Y^Wh!E0i4U zEFAQJ&n7CDA`)`^kr0SZM^5W-6)>^P&y_?sjnL9e%rTIvBg(qNPMG>RTd53Lmq1>}rs zJK%7QEmIOdk6(LR-kW)OB6Pp3Z4#^g0Qm=o#N5OjzHj6qTbJ-Pwkg$b5n}hL^ zBk|$nLMZHsEHCyBO}NrEmfFKi9-4t4+3pFs%x*HkCn*yYWy^u9omMKXg10G)0&cWK ztPL_Icc)}-(iuR3f{ms(Jh3qP`0Cp52-CM^_wA1_Po5umZ*kgqZMBUL+(48v2qyKp zO+7~}ac+K(fZI#U%ug-@Toy9)V=I*u)Yp_*Kk#x5njMvUwKiMpclk*ZluH~~P^L6_ zVA>6*;(jfug8ci>-0LIVZe1|@Q)`Cz@f&rPN3h;3{h&uj&3uOn&HCj50 z&yB+3--wr6ZRu`EgC3l@0P`0YX(krn2~l0z4};!j9G;F?t&m|8Gi;&Sga_I*!iagF zr@=@vj(8u1y^VF`{DibT!Tep}DC-b<6<1u2%;#Z*qb4^FG`<2+C*CR;j*|=3_1f0D zv--Vv+08h6=T+H6uUP*?md^3TsCzbvMi^D_yOWbwUK1s-4LGSVoH)s@_jEES1VC_q z{rnR_(*{tLI*=^IDMVAy8&A zYZnf@#;cddCj>6jZlJi{?eW=|9%17L-d~h|1K#~JI>W@5gQzPOVU2%8G38cL=yJw# zU>Kk3q&fZ|n4neaGaL|(4;#mD@K}Zr>N#x4Ph#jrgC6)43{oYoWlc7#06-?0F>W3u z*(e}b#<02%_u&CB27@>#9tc5?7TVspEy<6KmOvG%GL++hCHN2Ufd;jJ6Ui@j+xy3b z+S*E~h%_E&k*b%yiuswb`y8#npC-|ej1b|}SaYQ6SLx|c^EV-#Q=WIkK*7*I%`P5# zuSJh&_xjC4Rq!XF--ljqwrNS!p0WlYQ*L&e)gEzUh|rm;c~L}v{FC5$^8`mV)nTuA zf`RbOIBTsshYb^n+BX?7nl0Y=`s1Q$hVf2c^dtkrbkH986s439SRgv60zrtC!z$wk zlk&OdYV~aAkGVS2Fd+x3<-gSn%*_Rb>15~?nAp=_bhzn245Cw$Awmvywg#LLs|LDC zTBPbi_I4UeeTr24WKEqBZlO9_o2*|T}7y^{~Hj$VNo65eVXX?n*&4(NHX6iRdeyMJ8mB0ro?oY`J z&}Ib|XPRD30#0yWm3z`3H1$|CGj%J+VW{DNj3;YTxC>f3`oznbrD%_&cTC!Do@B%W z`f;7N(mF2pHCoBz8Z+g+z@+DJVTPR5TAKsfd8tKCmnE;mkgIOw8FN)ziZ5Su-G~t{ zUbFJ77{@^p+nwZDN==Wt_EBX0;?HT6JiH5x2lnSK|4G(jD09aOh?0H4?oeb=k9VwX zD+%`oTi^F1bTGvA%ruI4UQ9rQVL%l8btak6CHb!kqJ!z0i!Ut}QVc7gM?hB<_u68) z627;HG2oEla`g#|FuWjEz3e{Y)@B`njl!p;_H@2Mgm8P=W`bJ1uKT0j<_FA^KmZD>otlx}^o0AAK% zI8i;QO2qUBO~bf+>?=#z!s^+aP4ecN{-UXdwjC=m0zQQ$nszJ$5A_4~7M#qxySw-I z@}|IDkb(!4={22NQT@Vw?V=4So*dE~DZ^k=6BVlV#n!dRqUoq?5}snhNy}-+PpKwD zRFU+8xC?~E=U52Jalk5;Q-v_&28B+}g0!krIT%S14lG0U&8e$bURNiuN&$z^%yfBU zRx5Sr3RI9DJ!G5Au8&dg2v_{4-XMG}1Ru~E(R-_NW4v8xi(``|kv=S!iLxB3 z)L~rCo-jV0fq%xo!GuKU9_=e=)SSds8R^krszidAndoaqqMzJ%B{7}GW#tR-%t*!_F?56|7STGXB(pVG^P!dhhYS*NePSRAAkMN2 zy{VM^(UnQHU{d6yvgI96g(_jCwP!Io>HC%%ndGh{Cz^-q>uveE?5mcVef7C&ra`2% z_gSN;)}6Vv-oIC?!rgR*?8)}5Y>2u_UjBTYe+xjUV(v@sCB*V{F3eN#@ zvNPXt$P>M_*EF!NUTJmXExEI^jR@M#mR4Ki$|U-uzc0Hjf5h}|Vg_cK%|Qt~ZtI4# z;fK=^kX^#%ee2$AQ!s&8yCJ4#0Xhmhkdn@~Oin3pqd348`Q=z*8-;B~y+M!sm9R-1 zr>c+qNr>r~XfVr*aiBB0VYR*NOIvIG-{wt9Xd(rYz+`jGAaw#n4aj>T7-_2vd-`F4 zRi;?sOcWzY!6Qa?7`U|k3iLyiUMR+nBlPMCK`KWaXi6eE&L!$NVr`&39jTOo#sN^f z3YOY3lo-(1$6#5fR?kcc6Z`3&-=#C46@twra_B}ns)r{;A;nKzBR2FJa)Y-xIj7*k z!or^il(YGfFjX81*+Yt#ds>z?wuFl+;5*ofjpl%mF5s;1AtyHQ@%P3!{Lg><&l)=U zAvSwJ1r2{tR;yBrdiJ+iZ>3MMVEt%FOQ1WC=g7*owI|X+WAZ7+kFX792cI?E_0G6Mh=TmHB*nBv^`tKwfL&aNpv0DXLP7B}ADJ#TUzVy}6 zMkUB%T#Zcr*|NyUSvfPG5L;*=4X*7|WUQe1mrUB7uMT&%V5aVPf44mNZ7W}pX7i3J zbI%mvJ(=_LE%)_>iPSLnKYfHnJq&> zY=T$_aX<0Igw+cZ4E;-LO%+p@PonUz$~89*{2@lE!f0ajNkC!5*mPZoH^uXffPCC$ zVBUIU$1Y;85+DT}4$e51HW)T1LwhQ#hsk+V@DQDt^N;({bW-pXhSn&gvB*}!LZWS< zN3A2Tb{^3WY5{(sI`Jpg;)%T>>_GVFFElZNy9o%_d350IAaemv%keLh^ zifuLcg2K1UoWT09-QXZ^E+`@Rpbd0J^VzY_cIs<+mTQg#EtP1cFGk`B$P~vy0a2$7 zEdEBiDtEsv>3+kLe_|4wxa-YbZ|-_?*V`3bZ{mGn#XHm%Yt=8hcfm!;HJ9_U@iAO& zSyo2e<*vbD3fo&Z3J6y09hvMWX?`L0oE$?4ihX!4X`rZloKhi~)zx-bR z3+`TZRs2ZZ{g+&QFZ-|LIhV8U!Ms-N#D5o9L73QO7(;P#JW8~RKss%KOJNS=8ltD; zDH~p>-|3cw$}r2{LgafgiAn<$m)n=VRMD#KYB;DY6L8!t--MH(Gd(T#T$WD`amaBr z2>9=URl~ikQ()4 zvGt%&Rj`|)h1s3uLQh}gmU{6l-BTF z8sN23br5NjF1GAd!wZEbvMCfz7gC>Y=qjJY@sw;%F+O{n?^ble+9aw4S3x*H6A8Sb zUp#+w|Ca4=shHyQr%gR=3#5PHej|7IGcc1a@7I?1Tg&@*%ln_BCQ{u4MWcyo60az& z9pD!-z61PJsLcV^A++KEE0dFcfVIjwJ@EbqnMLml?`Qb`FYy0g;s3wE|NjmD{~vb` zxqE2c?jd(`xSPY>9NxcIaBY-b74DjF*Tm|t2}jr+VgKX_`;w@75hZt2+);5ycOBhz zbT>qv zbfS`8x{`H+wW9HUQDE%mmg}Q%)jxVq%!g`*t!mxvEx!KW_w;;^tb%qkIv)1hsFcK`cX3kv}?t)m83&Oe+*5NiN+j=^9Ho9v_L|~Jw zExi|2Sqy(2#vC{m!;NDuvBC5d#?TAkx{SueZI1l}!}WeTdsj~-I(fbK2Vu`oR05io zHwcFzZdw&(wb75FhNm{EL{m?H$=9_M@A#93m))3ES5K9r#&k|4Of;hQ@Lzwobg7o^ z&vG|%gTr!kj&!#-H$B+0N9g&G-Q~K>2D(4-oHtZ}pwgOE$7fWm$5y9aJ!dm2w$g#6 zYhIq6?#;B#bzGn0`W&COR(GA_(;T0+u6x(ecslb7J6rW1RaX22q@d%Dba6E$J5gd>35qX3X2I0y* znAe#hSn?H~bzA2plqP2anY>2plq(wM&H5&{E!ANg=Pd^k#! zE0S*DV1kL(rWBgQ_r5zhdF6fk`~-LeI1q8}PM%H%rHSZ&{^@(XG$q|VJdiq&F2n`* zJ9XpAa%N2_GaS^db5W-AP(rmj1tst!c3j_Y*xA-kE3Gc&R&}$WQKVAop+C?;_WTMkJ@ZOH5gTY%In`RwG zQ8ZSm%kXz#5;y@U%tkjjiw3=XVolWt3IRi86BtFB#NfjiCJ(xrS=P4qj1SF$_X2p! z!5}=v+5C2jv(x-A9JIVYVoZL@+p*PR_;?uR`1lozv?XR!-d2!qN+HUJS zGxcqdP>&Pb6yvioa6hL;#8c^pF)3gt2u6~?ljSSyJI03^!jd+>7$grLrr|`qW>^0Ol8+P7IT1Aso6t6kB|7gz4jmkMK@&3f(ZOYNNfw}*%_nERM zVX7<+M-l~kFp68ivNUjt8b#^&N{P-TD9KtAlHaLAzkhN2!`{|Idh@&Y)_$k=`=id} zNd5k$F7p;P`~Ut})M#16C_6S9w+w8VoXKjb%}+A1d5VLlnDVp65u6nZHKE1#2N4XY z2|EWWixUKg!qZVSQ9DcW3QvL%QsW$meBYAu@Io&4}U?xEj) z_#Wjdq-R(F4$C=VX@0ElfGT}2q_HYD@iTmcBq!(@Vwq1$yzqd!r=g^>AEj_O|6+i2 zPOaSX#taS4-&!!Lb`OYlvv6)I%#P<3C2gK}ZTz0%Sqtxu8T{;(TpYh^K{P|`?RRCw z9?B?sxZv%RyFOHls#;)`V9&e@F78rVYuHHPBxW)TZS}*`>4d@RCx7@K^fQJx(T_l}=I)hbU24^nDTV2y`ANp_%yLRk--qyc2H-KKZ zz2hoGo`1zp@7`vLzlncr>P3=k03X^If^{Qg{!xDsc!RT?1l}NwX+kj@viiJjao1{8 z@YTQ+WJW1Cg*Ug&Ft3 z8t;@@azmA?WQlUawdC68Z@N5P!{ugOXg`{w!WV{#`dQSMgk7Ly0kOhAL{oV36D}Tf zSZ{`J24VNzgtp5o@5!qdE7YyX`0~n?J;z zTKMH%{pl(-G~o~~iMUuvV^~FI5>Xk_$0-daFqz(=*Ra=|-b|=3xN%T$xZB6=cz1jj zB~kqQc-ny??bA{47*PndzYiZbaLk{pDQsG8v}DQ>{}hNuV@S(9;bm^L)T<#(1-u2G zM4mA^bRcL4ajuM%%wmAC3xVG~e9uu2Us z+8zeI&~Fd5g5)GZorz32^VIwg4l*?09UdNfyQu~|bzhTK%zW^-{Pwq0@;8Yu%}Xgb ziL~Oe;f-v_DxUd2SZC(*o#m6PVGf$c=k%wAj0G=mLn=(kX@u(W$bk%_;X`{6okC%% z@flq+D2-sb_7pZ){2Hd}jo@K02{aRz7+#A^IOx_OsXv1SwCWC@*XKnarNCe^0ZJQn zF(!A*gK?RML#WRuD~dRQLt1Ux>Wg~T^e#HVe2Ch8KOEQ<|M}r;!VvOt;wMuW9}i45 zhC~CN0JSh>P~X?0)~M{mf?g?x_8VwUNupRyPE4=JsMweD`y#8F&`-!%+b9_IbMtggWSPHE=t@9eoz{xZ5z8=sfoN zLDD_rY39PB?l{PtFzJ+CA?#JN!C}fR{XT4JB&!}`>QAsCL{}#`? z0Su0YgOZj+h1R4&c&1Y|xO)EtQb$THJ27b2Kq` z^#k|=yZG>yb&iCNWEg5Pp@9y<_UNJ5Wo)73v1O|31p`!+?%U6*G!YHL_d$hP|DXT6R<*acw)(kR75w~n zZSx?r1f{%z<_=~t29Gqv1%0K9sCSfM2a1YZA&aoQD|iOL9_*ax?T2LEP*Ilm&_^Tx_POz31=!K?%1qBbkyKh%dJlS}))dbDeDM z@FB^v{DujGkNH%fypJMPuqKoE)s89FVP9CeN@);IWz+NX|el5IC_t|Ob|~S{A&ZdCZ@N*y5OQ{ z69XnWsX5?Y#%A%6?Fv~5D!LW5M~eH0j4^MRhT<9nq*?QG|CQn@)@DQ>U4f3v$n zQ?eN4m;~dx63#btWO$EcP73sTG#z&EEo_VT8nZ>`6I`u*+KOlXdo*g`4dy`?d_020 z)$g@E+;Ai0`zOHsy$@oVhX?U0`AwLFa#j;LFa=4ZcuQmv$LUv4Q!rwZq!`LARWu&M z_)?`OLGS8-RK+(w8pCg6_=)|&&+tc{oAe0{dF^etyaz3Bx8>b$dG}iQ=RQ5zYk6N= z&*90o_lE7Qp&4Wr@!B8*xAq@V2*MD7DI3cAoa?t1pb1ZGtZmftLXnn)+Q2jKGq@%8 zy)V9icSqiyl9#a6@e_17h$ijGy@@~% z#KN@PTZmjhwLf74#RTJ?e$orZlb}na4Qa+R^Cy?xZSRyAX`KQkoOY~}seXiU41>74 zyL10OHm;^bHTmV2PyJ~eeEH=8$vSVdJ#KEiRoK0@^|yN2o09w<0>$bDAe!PT14A5; zwCF`CX?h$?NbQRQiTcJMpM5W-5rnFt_V+{=f%j#fi@QGUqB(SY_1j{2wId;)@^sXUHExdOC03RwD`u$4FUNUkE;FhIKp za_@K0dvV}jfRHRhLZB5N`(3ha3*$4C)wr*8Gqk+U1rYEg*hE~JZA*c_(SxRrNaL}1 ztPV(!XDI;{M}D7{U@`^y{TVL@e~%4(K-iilTTgLIjo^pybOKGAQKEb6a7-6vKa{yo z0pKL@;ZwwhCIfQBggZV?9YNH$$jzK-XcT#0=r2R2Dry9h(E=cnLcVpD}^67 zh8J8*MsqGmvi&`$P%qJxnsWG?%{~=kK0lC8EHM#+=aAVl14Xe4dmspmS`s*g;dnY= zWeM+#T!MAtE|4f#^|9?U=`SM>Em!>oQ9G>s)g<5^FNkrb>S*F$8q35#jx!2j^DH-q z#|%@k9cnxdx?w+rNn>kX+{)p|aQisZ!g?d!V?n+NpKflW78XxZAK~(i?1XZ4IHUZV z!N;KCVqoowYE-SCo_zi?ho}K%d_f&LQ6QG0wbJ>-RM81e1@Dx~=p$uM3`cBBxp~n+ z)L0&J>Kyk1YFudbLzW?m*L{`^?Kl$qemyk8pfyq?E`U&nCzk3f@SsbyM5&U^5$;ueM9S+AIEGr@R@O z(BiLl%fFHV6R5LO4~t=HDpes)K;(%eenAXCZf_ad@>t9M>X!;aJukKa*%di02y^4T z)cOMyu5=ZGdWR+7*P%c04EnQMj~z$54c#nN`!pKCZ8_~GK-Hxsexd%d`0yfd33WIa z?IKi6GR#XrC&C`~>WEuhLfn>4jb6mw>o+(gYVfi5sB?s&DAFgJ9B)%0EYQ;IbJfk} z>o<#RcKH}~8%3Icos1igCitQNqe#w79!X@6%eXBm`WC{x%^6D1WOEY2wZl^Uy9Pgj{<88z!- ztM`q3K96adPqcQKXuU4n8e-LV{?VZN?H@PRMu}MGq(f={~ z2nkR28AFQcXD>#5M7b}r&$VeDyvQ>|s+dS|v)Q4UjIE#cMQnD-TBRqZkBz_nZXl1- zKtpL}ff~zTanr3Xcswn=(h7LpY!^$IUaJ$x^yYb9y8vqv8yq^QjM=q6sKxA-is52~ zwm4gx{l3;Ru{yA1g=$ISmnWmU_jVr4RgoD@m9js3i%a^Jw@2)y?FbRFRfY$?_m-#X zt%56|#~egNoh!tjLm31G1wyD<8DOFYG9-!eoJ~%8u((~am(vwv1?jco6qGSwGq zvdO*z8-ps}W)=puF{ErG<`%U-68d;DMKc^|BB1zM5__}I0v-A{q)%( zQ@$_0pzVcH2mEZS&I{D+$2vv=tCB#Z4oMfL=YC=EL~qs=N-Cn^z7q804v*)K9$9S+ zMb=r_qAmobNF90Zj$h2bbI43*gc?88>uGh%Z$EtR^_1xVDp(l*vLEN}n~}0I*Hu=z za`NphNY9{(XHf}Lc*#4bsE;N04)>yICeON4N(;4dnP=ZV^2vxS(SL;h&SESgHegnO zWy&&~!cP0l^H|J#DIoj=-S*6FM5;HgV&o?n3I55#Q1H-y7c8WVI$n zDLZb*@54AD8~`s^1OoKlJ`EDJEdRJT@lP>kqqf#1PYktR@zPLrdDi+_8m8=YH>EwU z=x4gOWzmIKfX$(T8ug-~F}z0$S~PZnb#1aKFKKd}-g{!ktdnvpu{P^JbHvFP2c2(N~ihi;c@jb3?zjn+7{m z!-vfc>=2O7kt8WG;KvoH(x3y*x1v}{-|*3Cpo9OxXe^B${wHWG?ni-(?N#xkXeZIn zKwl?MeWbd;2Zxt&r6_7P=SuOF=bIK*=|u4ZY`6l~BxaR>Qbwad$3@;F&r76dOfGV8 zFb%ED5h3e1@s+nX-*KWs_gWO!1?bIox_c(?PS)!~46;C$#m~Y-jIb^_o+EF|drafn z_6|sHUCQtt@{pA2KT0&cp7CUe&9^*i@m`d_#)D~$wJbI^J-XL;FnDNhRy3;kBt zvZ73Pw1vu|nMdbKb#yMhuk;o%UV3rNo;dqkXo$;gatVwriEbIw4)6+$vh3~K@r2@e z8w`{AJotL%=$bxkvwhrWzPE|>^G2%@=yrO_j7I*7PLD)0O&UcBN)IL4%KC(O@lPbIQDQass#*F-+!KwyQISI0w1 zY(OzW%gc#yq|%rKN4H(xkul}Bt7lIYLT;h0ABQ_767z5Y#`ImFq+2y`v3a>@&*xI< zkoJ1gsj`-Z`7C2-m%_Q0wS9#Q?Y-(0&TKK?+GI$xdeIb7;_{oFQahomMyyjbsW>rk z=ymWzIJ4|YfjPx6QB&$0Ap_=_O$(^mLVCb!{-w85ji_rxOh7Q$YO!ZYtjii2en)jz z8yN2R)Ue>eOv3gr@lK%;z*(_r9f`#!Gw7T;O)vXQBakls>kakd!28#-$y<3oM+t0S zmd3FVz2jFW=|b5k5tOE|m5W=U$W5=8k2@jnPDH(9c%9An{vD&SwPV}KZk)!pZQHhu zCXLmwX>8j@W81d=>G${CeO|5O{OmW^am}7tv-iw8*O0qTiK51MT5N+piMKP3y8MHj z3qvv{b3+lzqxPu~4Q>8+36??4%?BLB3-&8H`iAth92`5G-xsKp4dcHr6i&FK>SFKL zm2P*0KwP}14J&D*+Cr|vW4*VJ3P*CB&s}BHl^fP;m=D{-Q!jJ)Mt@jJo7xYRDum$C z-&srt49p~Ur9_&&mhLIN98JPF59b9NJv#B_PRN0tw(=Jnc$>arU){>&2efGLQ?9_z zeVD|7asM=AdZOealNgeXZR*gx!IO|!iISPe!TY0n-i-Z+{4)J?EcR{)i>Lr1=-tpF zTy%QYJhs;MUkg@!QT<1I5^bt|5qQ6ce1g*aKZ8A@{^8G6FhwQg&n zPa;YsvGXQ8_R&nGH!`n73$%gR_Ut#`^;M!~y&>v90zaf%u?BWPujXP<#HnJI7PjO9 z28#K^$l>4AVZ%rjh-Nne5G|4okU#%A`f!pZAw3yp#}J2h+?nAMSo5q9@D${0JQY=h zMeoPC=1Ff0`hYr|#*)Z1cTG)#fo&JhdX!*l(#P_6G>|hbtgriq>|5c)x!2QR&?6E3 zOWZfqda~!{+bk$6#ji^6hwBXrpIxbA_4AvA(tx7D^Y^hm9~vo`XtA6IN5d4Toe53E z6nW0$laN#q1!WZ2>{JrPr!c|tnOX8)>Wz01?#|nS?`QADi2yKHsA(ovjInpkr!=t^ ztp5G4eWYO3;QPpF%jSy|-&BBtki_gG`HDSf6dhI7^{O(igabcob~D=qNv2CgMnm!9 zM~4lRs%IbP?&z*Fx9b*#R9xI#F6-06Y2_rMY%;-lwSKbnw0~JeLDa2Y> z6!oqthAO;1zg+a4mLV$xp6RfIv?08Vj7x`Car})JXJhM&PX=3U{KQCYi56z5&2yY9 zOF9}pG&Gac2%Q_ zAU7x&7svka&@!@&kX*400MpIX`?cE1Jwa)E6|OC*`$x4*dcKP@S-iuH9?C6C-1<0I z+)?cc2kKdYbFp{NfccJ@lF~rdA)2b23SS$OO{k<^XLYZ7)W!&?$Q3xCc^2&Lg7N9d zTZm%DV6>qAY?+1CS#w>DNcYi6VK*LOyuxX#Uqj8q@eJ)$r--v8n8?_x$Vyj;5cKVP z#1otx3#x=SKo^)DSsYP3?I}n3#)E)XV=X)(ua1|~Q+RWvS`AH+2BFD_tSIahRjv^9 z#mirVKzUKrVbW;UHHdYJZ}6m_a4gNXSPWY%Z|OO`nx&t)DIDN=>@ksY;JWa~D^ zmvtX-bz8eLt7O!Pz~-r=+M;L8LT|O-7Wk~bPSo`^?Nx`bl-(xA7CUlw7PYSCafppu ztyw`@Iiu;Xdr#2R{<3ZAc<);iSnpd5uYQ#QdIa66UMd}4Z&01VALlcETUG`nQ7iAG zCjcVFMczwSCP}vo|E*SDX<0D0i;f4*1>Y#IyYz)?+Rz^x-qS&@o?%{>A7glHwhEJ0 z4bLq%`}TODv;Ea~=GKpT=681!84KMRy>Fs2uCXuq(g}K<)T5X^NLm~sG7dft4!J+n zn)Fb36KJVT_`)8tS-2teu*sj8w_ z{^Y;X5Gtq7SsEmoooOY)uD!D1dB9b4pf{qfd@U3!QXyCl)+UUe2_?y1e=unlXqsOLe7J2xU`mBX3j76)a<@JDxT%9d}4 z1$kV+^el&G1nQ|_7hFVc+foG~%Ai}CjOUs8hVnFtG>{cvaN??Zd@~Qc{^+I;*(gka zDqA38-gsW-op|1r9pfVlW>{BTI=GybUT@YXlCM2S@$lZEB1GsR9f@I|N@VTEaJy=T zt%Ub+@74;h0{of>0E5Uz3Pcg&gCHG9T1n@KXOkNF|Q^P-vfp!(w*_BCG=JTdPNVSxI zL4CYZ86T-cveQ3J^hA2HI5W)SXjNrZw*%pI7ErbBtPe6;vo>#SxglA7JHINOq3u z6cQd1So5U!RrmBEU7Xf6o&$KlJ%lQN)a8g>&0bZz1$LGi@V5MtS`C?uJ2VV=_9w{r zb;sGJQH}DMBoFra?8+QplT-KObsGb6252L)moyQYeeqfd5mpl#e_yf68pwt3WsJly zIaeE~yvzX|>^XC1pel$O9Y)_Ld=;ixPss1-+Cf&E$MVOHH^9{P?b7hj#KF1MW-J(G zCD>VGI81Uq@2(&FOtc?-KfCxTe=9U0lU6StJ(5P7cihi$uR-%dl`IHn#*zV@k9we+ zE)2&DdXJ%2Qgkg{wr^K5o(KP;%!D0W3>4gub?6#L8dBUgnU*A%wMJ>y8e296^w*zR z>xxwCvPzx-`S6_7t;rUP1@oi9Olr*`zc-AANRXyPvhsM1GeQmb4ysE{@kSlaUu0rs z+q7lqy?%{J40A8OwhPnCq(FL7Yt#LE2rlqjvSMz+eW=sgn&*~a=O(5N6mKF#atbah z55B#rb~7bRkl5}OVo|@OBcMdZ;QdH>S#ktG9N~tN-CKc~(#;@+b4W#Tw3)mhA`O0D z4TK~}iu^`ItEM_Jbqe1?bNgL||9pQCledPy^V5uaI)=6o&*|aB#H@cZA}9|Bcq@SJ^` zz1S5os%#HY&PT#LRrheW*ePH{+wPOXcbJBki996z$KLAmY#dSRV1kDXMXbDE#_Wuf z=g1r?pCSfc)^qCxV;f;Hfwl{GQ8C!`rplqQdkEab_7Q3lj(wDZ3E0vL%NQ=dPxk*Sw<#1s&fkR`fBYoyPUEtkme*#B{BnHV@R2X ztyf~RxXLr4DTj_Hmn)w`c6hw+wMzLtNo+;>n;(Q7)2zR7kffGY+)dBsdN1aX@GCH4 zpv~=2`HIrHOq6OJ9?G0(qO^$2BH_|<`|C{NkO*?jbYkM%i%#1sysZxCbX2H9`0&!4iPvZe=bX99CLKj;S&5 zMzhwfcZDJ-;@n5A@~lU|ON2==ub%*Lqe`MU%`u)qyX)%s~L=)TJO<2fz-eSottGR?T&0-^!6>LajMg6 zg{6WD9&!ScsgV)C@-S=OZ(nz=ET+fQ22kNnN~2onRR_+l+%s&ac&?ZT&aaRy{8P1w zPY=SB?I`D1+(N_tQ{W+d`zuOLg?wi6Ik8*fhZ`AqC5hCCd}$_nPin8X=QbV099MBN z?c$C$o4rNFIkxKMw)=#XjK`5V!LgisO8W%wZD$FG5_1cmRWnnRK9if@VsKP1>1_)d zX^jSG$=u4it7}P#9U25d^|*6{sFl};92Ua96_D&>fAHXZ9=8{xHlvM+Ju*1&qH`iy zPa$C)FP+WxN)H#wb}x^#o|#(x&;cslU{;(ja6A;h^6pr-*GBGJ&ZBU^l~u2Qw{Wia zw)$l+Q-zDxK24Ze@U!=+w%T;DbvB@dj&E07SHkh>rk09hfPsR6>=@Hgcc5%>IPFZ? zIy}>J!&|C(gA+X?Nd{+fkQVDl^mv4fGL+)7Lra5nIMisn0-LGbd~0LMhHcCHMC8du zMbrCwth^}=M)shB={91)l$b)$nD`28o!Kl=kJFvQ%cR*LQI#+ zI?zm~KL?wdCdGCDpB-(EMxS#&Xu|y7t1CVBrP3Y5*6{D-?x-gC!klFFvvyK{EoZgh zc_06IQclK?&h_*^j zhRuY|Vr(u~;4zGD=%!BKvX3;^0aa#!eGW%RD-OCj@%4=ZOdRRg*j;VAL?>|ZZ!(_t z^T}P)AY$NrXRMk}{<>?^&SBR@gd_EQY#6d*Dw!B=l6?2n8XG!1PH>g3H!U_^wa$}; zUKZ7Fifz2^eq)M47i025#p}(#U4tIOU9c_}bgZ`LrlLynz9QYCvQHCiOwikTZoah{ zXY^Y}9(m86%esADf7BF%k(!^4lJB+>{s8PbB~L1JWPD4*B$rwUB>JkjD?ZH?pN}U% zb37XnCru2nv9IgSS}U$cJQw4xIj{1?4RiU8q*R}Di!u?<&AYI3TYhn#-B@4gtkinu z-8;Y6%alIG5vbM@>3ri!#HR$xN0obeleC8Lfr`m}XTce+xu&OKk8+0+m?) zpD^Jy5Y!svw-f4I-*3~oy<*7;jsf9hNR-spF{Ox)^L7Rzi&Uh0e({3L_cf!wg~r zfBgNw&g_XVv?NsE320&#(k`Uu12wnJBe+kFYIQ$y^=3)W5g&@(niiff=f8R^oR2ln zy1vP-JZFbmif!TIgEhYKe?<#f&DMT){nb+Ht~So1xtL>67w>t%afq-T`Ujsw!)@&c zt7cR3^taI$8xdDHT^zfqYd(N`=Q!n3ZHem9$yrpaAurMg0o)NC$m;>3q*;o)}fE0>j%`Kp71De)7pHzb}@ zLd+nyT}s~2g5G!)xjJlnrlIQJ^8Yp&417tU0TaVaopiOXHD2HVf6jAaAazPB-k*8EO1w%O$ z{o1I_ZAZZ~3F2ZTb_5Y^pk${rwm@wB;qaLGwHd}#@#X9tc>zD zH%7vBzkEOtzHYfA%gfkpZ76Y#m!f@vRzd*YbDWi~R3^u!vNt$2IGcd~Fq@}9b-6Lu%52!){$$#$y(B|B z8XW0^r{xaD&mH{m)_@e7{ZerAAy(fz&foJ{Jc~kr9}#c%XQxM}AY&pE4use}iF>;~ zHgC%)W0m-7R`5<=6y;iPsAiw-9Gv1W@lM-qXS>Faa6GZk{(5Fp5v{9HVp%0_4$g2C z4}S`-rVA$6B=p4$9+2=}#d_hq!eYq6lLn??UmvD*d=bCLY`y3{W`FrCJS``DPhM7* zx(J9w0>7AgfoqAuAasxU5bl-5X1hckh(x-*W^do*J%2!;k-?g%GyrqvFeu91V`jde zh`61ZP&)|dl-BQsj(B#*9lhb;AFO$9x_m=}2Xo@9s=WsBwDud`UOSL^^DJ14*(q8$ zd|Y!YMq72xSTjeK!KJTchV?|S+aZ<-W{)1jE+MTxewW|)HpS@&=)Ftr3RT(Iq4Z2& zE@O>Z0bWdD`SCzefD?FQ!9yi1Tz2F$F4v)aHr9*dN+LZ@e2-T}?}&c(c}(J9cFy7t zRMWn{(DJ*XvNvSNxA4Rnobp*D`gG4JDK0(th>`YU+CCr*JZFQg(l}Od5=!7aSw*W4 zLbWrwzU)=lMRKw7b{I}*|jbL;N+U^`;&%xy%UFB^DE zrW($B_?k0Nbgmp_Y9i!@yL=bmC$2!CX_$VYbw9Sja^mUkUV_vwBvd6TJ?hv8)nUCu zcA_%7h6^=AyC{P<1!32v%vxjK%ymlz*O@r+z0sQDXPX5vqu4P#hU>QrKB4mP>{Sy< z$l$0Un)sD;wc!5PWA4DnMXPy7=e95SVJ1Ef&}pl>&X$Luub_PbjIVJD`Q~&A;MiZp zA@ycl-xDD~(BTqqO8kAhRxmp(zbm22=#*ABUiNDNA9mCU*D>iYI8G@@Pk$h>*^vv2 zxYjI@i8K9dBCd>^aE*hH2;pFd<@PUJ$ z=Whz5GNj@QW_E|K9XcIcmZGIe6GmIBqt2-UMOV_&nHSJ_5Bbqxf`HpXNV1>rNg_tI zfbm%zjij7_V|K4t%b?(5>`!m&eu=9$9jtNjY~U@*xM%wn>fMCv&jL7|K9Snb__tMr z2)*u!Zks=WCkQ~~4q6BAw#RHjEFsWEV%?+Oo|6!Bm#7!I1-*SoDJ9p6Ur-uyf`W2; z0@#@ifoSqjO(6vin@8zotvz%gtNSlnkCm~Uu}bW~w*D=8L?j3IA(`z0e1h#uvS;Ilo# zuV4RM@yo`#IF=_FWdTlh7c*oA|3-DnL9Va&xWm;qA&ZJvE)Az;ig#QIF7?!IS*CLm z$+G#*sD(*XS;9wTBXTjZ+z~VX$MyzOsLUb~Tx3FT6brW7ZF>!!xV+xPYgX)5md;d; z^4(;?+65c>PY7VF*I26^-WYD$mG_Yo@%l8lgZqfd5Q!aNB80^MWW@fH!-JyYBdqQ9 zZFawBQpaBga1KZFi%7>DVMBbs7ol_vbL^mhAi6qKMFoif=xWYS>;A@VeH7>@pt^DU zQPV%EZKQ4-@ndLEKnQ@iZ67a(2kih1>7@q9ZrOhcQvzo8Y@s6-+y93mGlG@qAb&P# zy7z#hA^vDu?+OM-1lVu-gF}CsJa&OXBLeNa0{)>@?9I)@l5UkPNJMIT@qnb=EV9mQ zK0XI0kiKNSR2}!UCZIQuoa~y_w;haAK5zB{Cc$CS>|W| z5T`($u0Vxuq41gUQ5?M#x5mP7i|iklnu;Wstnw3M9m*4~|Im5MXiGiB+I)DEY*QBH zD%aL5Y>w=sb5AiEU)JSOupFiLKXl*;m*Ye>;i+g+ja;f;y;60bw26*86Za@*H%K~7 z4+4gDG9z-4Dc~7Im%6~qv($1BxAQEQ)v)g5KP+QZhp)d4f(HEq*wqJ0@psnzCwHGg zD4JiL*Be!jQXXy!Yv(+Qp}Hmrfxv-o zW<&-D`{9<_rN1#END836y_tAdwDV6o#%v|-8Imu6kUKnv_lg1dwlCqr^nkBDTUdyl z_KzXGi~!%Qe~1&VQytU&O2GgQS{>MBhz|k>O$8L_2K|C4Z|@%njt*u5VlYVbxucP4)Y7C3q3GcJWM_EH> z!nTx-+zBfYtFpVUB#mgz|IiCm_-fSfiW-##H_nUa(4s7qD@#>UKoTPREA@~sq2@*i?;51DyNJPgd=r>jdXW$K<(cbsLif(GK&!Sd z1E9L!cRg3D*%p)R)-_OpKL)zl5JerBMp|k&{>I241wiz+e)8Yp`%gN?7$g@OQ7s_x zIy6P}$^dNhkKLL=d)WaMTlNTHRzU6EEnLI}`~Of(Mz9qf%3PDIeJD5!AikPUAQT)I zFtzCq1L*hy#GCp{*qhaLkaaRi|Sn1fijX?VKrh~7Tqns39bJhdW8z#h8x`?lmm0C zd2mT=&$2!>HloDiURoR;kmYc#sZNUdhuqgpb|4{k;)qeX4Vq$^PJ>k_%ef5ZVSmZ0 zyY!Tysb*Cj|3fGA<*JGDjI@3eSZo-ru6Xx@WWW&HL$TN5#)AZRED)4vm%odpdAs1B z*%N|5n>D9PhqvMhur8^;XLq4+ydYc<*dtKv$M?Yn}g% zK==M`T0~uq&xG?&E@10wKsGp@DPV*Z19|$ls1Yyh-3RYBlknHKE)m1rfNi~7_UBNuI1%e1|Uyj$c1p)&t00ij)MMm_u2MGoz0)YJgh!e_R9rM|q-T^uc z2<+=7217(?qR#v&1OXt~LB0Gt5Fh`G-#E`&7Scr&1)VV(?;syWzQx zeU72-(cdw=Na(@>(fGeHjBXdaUpOJSwOOl$aQqxY)h;KdQ5mC2{IP9)Oz2wRkN$4D zzc21Tx%b>f*Gw0@-Y9}CJ^FGs(+tx-3*LHt?blEBsqHu4I0zT7Xz&2;DyZm=jicRp z-i?_qfk7^S@*RCF=+<)X*7Ls+xY*y#fav;n5dX;qY*!7G{Tf^Is9p`g#I`+VSP&4f z%XKx0_?ZjCdjaiLwsQn(FwR8aI+Vb@C4QysQW;|FJ`rqZ|KN)xuhE4}b(XBfQ(4u{ikgI((rI^{ef+iZF1@Pjb@u=e-f?M55|-d}#8#d(^Wa&esq?%V~5wej2ozWH6r zOl9-y=3Wu=DWbbWR}{D|;BwnP_3w-OPdfVer)p;lU#y@i7wx^h%q*e)9mMyv4^v_m zrYPw3PTD+PUHn;yO35!G1pPcyR2w2@gPWTK&=3DhhbI#Q-2Y39u@3gpK}LV~L;uM! z_E00$u>SI|Uv@6B!a9Mk{ad7ngw4L*_5YU^QNrSY-hVef|D?8>w=u@%&~gt6BC>=3 z5EnQJVwJsr2sj-;f9o?derCuXP|SbG!3ZR3FCW7yTnQN5LyZ1Qmm1=4Zjjqp)bQH2w;~;)c*^W8{NuLceT1}>31k`P zWIKd0tI8{=yla8CZms1&bN6#I0~vVG^&?}TkDF;AfEh8`K|dP&f3NyKId%tXo zw;N4JPkG=^oj5$qB3P6ed*LL^vGDl#dih?w_gPY{4s{s&w>L=<4b|>Eo7H96PoG^u z)u7aUw~ZxX;E$nhVZ;Fkriqr?kH0ZC$N><&qo4Wr+wz}uiZRIiZV2SWYj9qma z?$~35{VIp!KmQwn+WlKJh-!al@;|wNp{9XS;;6KR4*e5Iw6_mRjd*A;5C+Z#nA-A3 zgmwnz_JZR7Lk>p%v4sTyPNWU{p->@?3W6p3p&%gw!1ZQ4bQlkCx0@IV(c>Qq%Lw41 zLvd}A@DB>Y11E5!}JFote6*%Zs=zvXAA`sboJ+Y;Y z;eA;Sx0>dp@ht0eV<*ZC?xod#XhDag^QV5tIY~3xfEsZ$x4{zZsI0ncPYqg1R@G^+ z2_@Y>bnOW@T2Hp=fj*LzfyBm&iuK#6_!bQ zFm~RGDe6T8DC~0G-lTuAWBnz&c1HGS)%)}nc3t99HqZ^VEopP%b1wZSUk6h*&ESse zg)eAmOv{-VYfGQ=prx={GSbnbUk$1fFdAwrE47CzXowaPqa5gzN#7FRoQps%*k#7~ z&I$D065&+B&JpgMjZChApDlE^*~0NCL-`3o-_G`bl+UplliRjyD50?{opua^aVlG? z*K3U7VAiG8I)GY1X=%E%W-2xDzT;$JM4CF8uq;>Jkc*fz(NYyjt;}s?FH!h@X^TK_ zJI%76EC1Ha%g)#p+|7}t%b_A=U#v|Bj}6;fR7=FeD|Je_Lxq^e zdBg3%=083<2`xxCa%A|~7~JzN2TFnaQkGJX2-CftDRjOCcq!Ud!!(}vUT>g>d`*F0 z&wl}5)MCzaFQynAN!WG$FejBOU^(;)d6=FA>2=s+CtUT#t9_AX+M(&fnI@^;h zt`3;d0U}9x{Qf7gp>k+Kvm~_+IO0*MAQLxiviW(C5ZpcX7ClwVwUfCt>n&aEKPMdT z$$G(RqWuXcxh5}Nq76N=g1+-9?gO{Tep-P4u~i6BB|Z_)J%_51kb~ws5}Y%(q7Rx| zhWn}e9!!z-9(A_+(pdV^==XFkqyNx>#IPXb(iSpC?;DKLaTU_8?+O8oC%81>*f>DE zt>>RA9p$;AB&xyRK{|Ps{T@D`PK2v(Y(5iQS&NxtWmS#+8zz(LN-LF z*$A|W_)LFR-@pbUL!@85vO8S@=0kb_A0#fO2)d@K%0l58UCo{D?|FF9)ypInh$SM_ z)qarNvCr(VpDsiMh0f>B!TIF!L%A|Y;p-n;oev((b{HIpW@|I$O1y2eiYiBHNGMUm zwh7KLGBlo>yn}>z(9ycaDVLO7+`;)!7ebmfGK={{Y#uwvq9Kk_lX9)siV`8Qu=stTFfgKyxN9L?S_Vte*zkXbFX#ErCdSPjB5RmY z`!@Aht-%*gtaTJr=%a*GM&(AkZF>=N)tzt_fb6Ia&24)+tmq*g~ut%ZN%gLei+HVYUYt(%<3wKJ5)Z z@bho1+Ky2*8jYOEe{H2*S*l3pNI8yL`mA<6I(D;EwexG$x?0H!K{m01cpgaRo_nc$ zkltl^yj!rJi<;QNYW~ngc(uPxtdl4YoOPo`o_|nS995VvZsJv-(-U5gi4kV5DjY+Er% zT)d(}*1Djm08srPF<3ww@&wyz+(gl*`(?3-9(V8V2n@R0Y&%ZfamWfY;h4f5Ymu;^ z8B|^s)J6t+x<{(RJmNPNR*(ms*oc)j&J_^Gv%j(5)sj`ATa423!`PjL2>P#SLHqvH zT#I?iaT<^L@Ene*Ow6QtOChGBz@{y0^pcb4yxxor;mP_gPCZ^Tq2EHr!2_eM-{Oj= zIHTXgx~c9-p>P!X-AiiOqE^%O$Ae;nYlH7vN1go|=i?s?8xK&^lh@Jm5-xgy{EWh4 zV}!T}g3XI5^z&|DYyGHH%9-Pxh-nU^D`KU0lo{S!K|j=j;m3j6vBSCe*y>;?($@h* zfE2wc9%I$C$Z>B7C=IlhZ}b<%#Pv%JN|37n&NrApVDEA%^=&RS8Ccng+o~Lx$Ci{^ z_Qc!4gcDjB<+&;Nkzz)IYYj63a;UhWJn_?HErYbl%l15KhH%mM7wx^GY_JAfub^ph z(w{!vP+lzXp3fq(q1`Gxx47xsi1}m#9*Iln%;O88$H#g?RV-_4OqW2L%hN)h>sX6y zq&DuM86zP*j~H%E`=;N|rX8=DrWMT&l!wD=*ART`OnQv5GmK`l>fy1sar+nW^kG`U zQqxTLBc9*kqH=$@`4hU)6tu3SkDmqC%=*`dQrbw*hRccjrf7RVcG?Tz*P zE4$}-Y>`50CGiU>MKF}<@UH%jIeZ^Xy5!?MEvj<0x_yV$1p_zO=N?oW)KkgMim`H- zRQ~ujo^B{eO|38hfsNijq}u2lPxy)pYXK+svXqff0sQ$JURCF}Z~>*a8QYGBansIB z@p|!D`Fb81vz1AkY>!MudQa$Al~}#9eK|5>eRNRm+|4&G02x$6(R!Vvkop07V~*h( ziSmw!tISwvs!n9P$lIR_4Loe(Hz+YsSfBltJiXRI*{+Q zII7_x_)oCbK;BOs@B~a}uyP;NDjb&j>)6%JmMS;Or)m6x9?Xt@(04KlhoSu5AEm!f znU<1>?vRVme-HH&Tk#n}T*qiabzbFJ?fwYkrKNQC-q?EYU|LbN!|#ng9+&fMnMdIx zFvM_g2a)Ln>v|2g=DND?7;G^}WH-R66Nx}D)9UOE_2<5+0!>~F>o;fyH%TY;JzGyYhpmK9 z9kqaD*m$qzB8RKie1*F-)%TzdJ()n6&vRrs`gKO-!XNE<3uQ&7%PVTjvNix!4KrNn zfUU}WVCe?QDb#7E{An^(#o!s6wj;b~nA z1W#E3*O}mn95Kb0SCF34{_+7imv}`nXvW4y!stGuiJ@6?Sfs`WQ$dEP4SJH5%GyvX zzvBIKc6qL|U$^}HeZL7Yufs77xi6nVIlzxutytw7N7qTGKjg7lkFouVdPdtQ`OuHF zP=I7kJ;wGW`}FUMv!?NZH=|Bs}`EL@8yEd?jPahBxrBE#j*=@ZR3ZdhzN_1Fg=DM;B{{bG{ly%BZ}aq>pjOpPt4^UQ(rc3nvV~# zWqKaD;w^2@%!NUSZVE$WDqmU1*IP(;mj2Zn@$Wy_IKFc5`A>9=#^1M0coL zpY{|x!T+s?@;gUjf5E@upyW!{$MQ71g0v;}kSpJdTo~&pK_t)haya(Q7%L^<2%~M< zPno>GwFrY^zXkU0fMH(B4~$%9-tuh}bzY;MfPMli!_$#bnIAvGm25e|Tr9sbS(x@+ zZF&jv>pDQjJ2@}-M0lZ(M!hV&{UdF@h%_t~z~$%;K9n~eV~b~7w`OZ4X}?+M-EfjH zL@Gv#ALGn6Gd;v!n1CZ$vdv~Hjte_}ODHn)E@~7-7K)Ywxb49{>glFhhR@4ZiuP=^ z(AKxzi?WT?_p|Ond#3s{=8lqKk-0GPc*}6!Db0@@nG^6V&K_LXtIA%gL?`xkc1(Vo z@(sz+t?`>oh~$Gblqm-N!!rwL=NC1ceH-ExF)a1Ys*x#N$8focxaL4pD_Lclja3{W zFvfZF#T7}?1(J+5o>EllV%$Bi=%Y*bRCHuIDOoez6*^;3>lQ&$1c_wPUVOhZh0Wp$ zrM`sT@&ns;u9o26VCSLm&@E@Yio;<50UjWH>oW7|Y54U@|z3(sLevch#e*<1&UR zoe^Ko*Msz;t+CBJ=EhBae;npn^_p&FgJoIamkjju9p(_uk-lA(Ev$E4dnW0lJ#&TvDjDggSq{)`@1o9(!S4O23PH+lowLGkC!?(I?h!N6 zK+|x?P#Es35sQuW($ABHk8GeB$0eD*jYG@NQ-dsv|EAb>q{4%u=U%0wwJ5HR~duDE_2 zsyasmr4PW0a}>Smhw@h0Dd%YOEZ|CjIX}IRb97lm0*`{QZ*-6sh>(*D8a6x-Z%nwT z@l`q2iOxEe&Ub2(JkLD|119n7xr<(P0AnbyR-1qLSv$%+A(lavwu9SpEDU1#=$aDe zae?YciGX$|?LFzZY-l+}5wpi9oj{~!?69#9$B}+E5H7V5=3edC?3wl&FhA9*2ss3q zs}?t-1f>u-{60NDcj8zRnT7x8u#I9wm1dipng!=ndh{v*QMQPO6O~rGbX`;+NMrzL z=A--F?udnFqTPi4+U5@WjsanWA;t1XLe<$;@EXZ5PA-cmFqcJlZE;ycTiJo+PztQl zUL{GQ3RzB3bo~aLt`kOb`)7OE(pw5H(;!8&z=gY2z0wUtSX61c&p9Uk$EtxE&RImX zFh1jQ23Zk`kyoiK1-TeaseMW)N+b?V6Kl>lXOqM_JnY&9IL~6PtuWV4&0y`P;%+-g z2_g8qxHS3UA<$+T;7DloSmX691K#cGQHobP8yTXyf zl5otCs4GL^@V2^}pxnX2Aoo14ViVrOJ)}vwYYTUlwTx4kC$>^#j<;qUEc%4m;saZ|x)#sKse2{sSs znQPxaR0WFWc9Y?W*@IMZeepGGw!gk?6S7)9Ki%a*CSy40WE>ExXg6S?(v~_Z=fhK{ z910^fxS5u-_UkL7Y|oc>E4xYvY}+&_ICbjy3>qChSxul1QXY*98fXmLf;xf_EM22s zeeLI@Wsv{r`$`J+Zj6Sa%unskd&?isWsuZfaB|4#CFmv~2}Zx}RB1f-6HxWAGo0Xd zn3Wq4e(hUC!Vh-jk43@5VmZ7uIBWhRF16hE&2&45B`FP@%*A~k+Xj;gmh2SDd5KTe zK@B50mBXEgBgm;$4zh_2iUi$DN1AU&fm9#aAT?SV2&C+X!%CwD^mq3uW}2%`zhK~@ z1uY$7c3yY(t_6F}X_FJc2QeDX<7`lt$trlQI z;#ja}yG{zcOZR}D+`!%e^H;hqdM0dx=FlAzLDQGvD3i}#nOOwch~5MSC@&a1oM9HnU_q3wpu z=g4D;;Ngh=AV#;*($wUeGnqRVXooF|F@cAb1QP-$+?xGC0qOgOP$c44QVVQD@=>fn zkA72+8HsKa*Q~Dhpy{l$6RQ~=OqIcr={{>8Ht$52dC@D#*{v zQ)5~}ClUc`t26J-*?Ok_#khRg5pg`7ZxW;moJuyP9?%FjDB= zikM*-fHl|W#~I))>DoVN!EI?<&sv`!xS`z;9i^6iMO-Y4_Vcv1?sT?%f&RVPRYMz7 zQDY<@S>pt8oZmg2SA0{5(HrKIWy{NlV)OBx&z8s)l36W&j7mso6zQ{Ri<3uT1wm$} zE`m6xQK!j5#mySp#-6|N;FK?ge}Oi}c40YSYBz8VqGwBZ;iIrp!Cu2>UfC@vP+*Dn z?6V))NSu3|=yjG!hM>`rLq!ZSPdCobc+N8KnGC1Qy3CNaDUH0&dbMl#x|LY7!xC7h z8!MFc@Xh3cLlms*^avN}dOQ;20`y}FWvzPA#jVvPcIC)lsx}9;?J4ICeeXhI4v0Z zi!GB zo5{)g(Io$DydO6kx~ky@i|n0YfTylG!-s4j31s6RGZ#~%|1>LsKA6#NemIL>g4k_cI{)<&*ROBde3hv(L<_TZL^%Tm)G1l2 zzb}&R82uDNpD~blZd2|X_9@YE$Icui-B~@4sAO{Xlo~9|WRGAx`7&QKhOyzfZR16) zbwmq*ZNAqRa5a=H% zPKiyTt{!L0w$;ASdsS5}SWXOk94a0nnUWuNnqJLprncQgVCIa*Dn}J?{VrN` zFz|>4Z$M_tcCJrq)G4WJz#~~H5*hrSEbrup|3SkKPz3@aO}{*<)mEeEKD!Ws&|cV` z3n*}}oITeCUs|mY0ApD$8kH1@{-J*k1sbG=eap9Sz*0&M`KZ;gAJ2iILXxvUZEIe` zvmd?AeY6dzv9LJ2&z~7K)bxvE4VcAdN{TN;LjaAVYK2g~4)6D^$OAqHVx6yQ<-LQ~ zSBDhfS1(WJPf2EVryG3y)969LUWgn~rX=Wc1Xi}MzK>Yff<#U5gMOUJTsZvm2@e>r zhGN@;phV;7&=e^$i}EXU2iTp}K`-wO?Mr50cuB+F_Nc+Do5`V8JG|9kUnL+QTgP$STWtTLcKOHCb5j66Y zf|Z|$n>dilj;2F1(hX~sWDcldmS#ol+1~c#vVkcgO*qOIobje1r82D7>^UP2ql6PG zwq9o{HBOn|)<(Mt6SnkMhY21Lvii}JqJ3acB$d6mxRuW4-yBiqyPPc( z4;F+HDhhQj&~N_!w3{*hg3#Y!nCzFC!6(@LW&e*it~B)=9!YgCYu^OuOw73Oqk%)q zN-jdl9Oe5afLO{9LuuzK9aP4FFdP?2?R@z)r9;f83qd-Dm3?5u->#v{XZwOFfWcn( z9^E24qm-NALC-B`W*W*tIJSW!(x9sW%N4CUHKC7_#qQ4!b11@*Fs!i~W)W4B`et%H zu|Fz8r6Uus)71Qh^MdtZw^wVIb4)MYE zUlLnyBiED_7QoG}7Gn=isl? z(@8=Kb;SojB`LKXCpT8T&$vrmVmY~+A8i=*YR?m8V7C1HSu{?zJa*dz;2x?j?V5K=~8$X{K0x;iZZ&2n2eoUM^501XQB{G^Av1l^vOyjuRLx%j%>&@d{TqVb1i>_nbWwo-Rr9PCo8d+lHYT9lA1T?U) zdYiR6!cu807@tIpS~`J*Vs$QanC15${hsV$@>$p~hqW`?r7rpxS;?I0QKfGA8e&=H zNF5y7LqjiyE~Ba0{E!||Ji&!b^`u|eQQZu% z&1W8>es_6KH*%bWBN%HQPfYPyRL6G((EX$uvnZSfQwaMZPG4{BcotSf<&?BT>KyNZ zs6T!HFye7MqDRbF3bi)NI-tY*ZLG&3v%j;Sg9jhMpn2%^d|lhbl~}969xo$+_fn$% zDwnQe>Gcu1gPtQYD<~J+nTg6UmMa~KgC$)SjxxBeNLlaGE~`lF4SxOq*n6iSOPg-r zw`{x1U0t?q+qP}nW_Q`P-DTUhZJT?(@A`I}i?i0W#{A_NIWy@n^ z*2^)TNW~S_4~sA92FHDegjt=YI8=}r=OYdqN7Gz+sHOH_*q)2RF)De0S zPpC#3F>}#C>bScgi=x!IV2^bB1+h^&2|IxpPE!d=aS3Z3eMxy6Oaq{CP&#oh#CrHy z=69WdG=EyE2-Z?(eQ=+h<4UdNO0is#!`MUOfV-k}y)C#IO?JXKrDVMfOPy7{UJ%I@ zd=nJ1AzBDi2-7w3pfikZ{vS7l4a%!YR^C_$*pO?ZV{#crE8_9;*maXgi|ZY0v$BKb z+1C0qfoU(~ZAD3K-6f{1w{jw$B71_~&{~8h)}h&*9|pGf+9serVJ+3{okBOfOjI!m z)wDJf(Pq!6!m!QnkrEvxo7O>Cr{g`ieaX-7yXUAY{=;N)zV463MI(Iq@X7121yq8U z^Xhd5i~Z`cpmXS8^zu*siuNJ){y(Je6TmcBJ+7#Ka&vpd-gvJxDB1Hf$}_8_hmI)y zEdeR2l9+L?WdzD2f`qu)_qNj(x7Xz5TM!^&i@?K-FloVcCwVJSp!X1;o0%bi`X#Ct zqE3RqFFo PmR9T0_Q{cWl%Eabzis2wq(?B9$gXIR?>2Gph^J`yO36YKW8EzQt48~}pDX}d)H->LOVRNT~$?S0L*|wOkoUwX&fe`yw;@uH) z&GHa62d>W%=*EriejO2gSR9KwS(Q z`9cZ&jU=B6oKh6(knIrg6SqPK?-1PhuHqdRiW&zdy(f*s42eW~%?x8C>e#b#Z7Axm z=?2!!Yi&-V9`3&qj!PRZC)G>e~ACU|LBWyH815WAi*fPwcpTJRCo?f7cyqFbkA* zl{818C>(H|F@x@S8<3V(=YQs!W)^E`M%;j&VT6;|<1tn52+2iBWhfx^^;^TcCRwFV z`$TB_LBb?d6I@Hm%1AmV`3^2U&}H_ct+yy;QSpw}i(`}JZJJnn?pv5))dPt+kT8PG zP!V1k3`2pdxJR|xO9j1ZyY}Fi+ieoLGpKn0%g@(RBXFp~Mx>c41R=8T+8XZ_NA2<$zZ?CET6 zs7?PVEp*@VydND+RFXp5Pgq(&NAI{8dQ{j{&u=UgvQvgPrbb7jzffe4>d2zSz@lCz z~Jcl zEAd=LU{QePg$5itU6Re}5(P`UOc zI=Q%WeX$va#cWKh#0(92Vt_!ae3dyHwRFuTDF~@XF<63PpF1?RkT1XPQpd&+<0jgK z`AhtmY!)bpBGkOapqP;ix$rpNOG(Vn;ymXgd&obSWpovpBGDTuuLdkoN>f_D3-y?| z;13}XdK`>gjq>OEk(?x3`zw{Q^Y70Ia`Id~D5_jgkVs@pAI8I0K-OHDaN+?th4bWV zKuN@%y24o~m&DE@Y)?E*_OlkJ4?`Uv5Bv$HK}`sol361V#~&>0J6#_dy)nd{teCtj zH=7fM` z{g8hOyXTbm(Opo9O3Mdc{U~WJJT1XU>)C=v`F@B+*Ajul6~^uVC3pog|7VUD(-G+O z5bE6$%mpDl+YxWY;(<3)_*cj_66ZpUtQZ&yQ7-)jUaQl%GAzq$ze!p_BEEbw<=|S03!}RnrETCdS@FF zs_>C4Q;}ew4ejFPZT?~Nr%1{w>I%3LZ#JyPnqA?VffmH_ckS^Gk?slm8sU@qkuZdk z5N24sek8vp9N9v>Mgpami%um#L=ui}G>y&PdvcDu)B!pUmnC2B2X59oP-wGtCwA2* zDs#iG9%(cwJw{8^1gcfElO}$?F_*C|*gln5-@7y&z^oFpFRo%`*J?WC{ReF-f4DSQ z=(qK+fVN;X@;vGDw9_st!nPPj%n6b&_s4q)qu8V06_f6j6DQNCc2JDj%@`3EUO3(kIf9dCbu>_RZ1?D z@UzNP>)_GtxQn6%tOXVe>dgDNZV2ZbRtObXWzzzB;rXDsN}*Lue`+SB)C0{ek58A~ zh^*CQ^T@sYWXLiuuha*(u_LmS7xYpdEPaVLHJj#0@fhQ&aj>-c;RdE;hqTv5agcRi&bJ;w+XxvJk|S zUW1SL6cXt~=o8n~7Skz15{GhHgBlwSVm2U&bII>S{tIGJ1LI8s6&Pil zI_i`N&bc^ERLbJ$ceP79THx10agOs;v_pH5xdCbn_qC{d35E?pvSB%Q5MooFI8SBs zM6RYyij}?`jn1gPU(r;|JsS*&OBWds{p13YCk~?}uAMOlMk-Oii48E$Uc>12fc;c~ zxXN;K<4gKJe^Dc$f4NF?3V2^8N`Qx4IU}KBu!0;o3v&O40~$>6h+h3{(F?~+UMzzs zEksdqJ9SYGqC|!_rvfc_uo|>q6tR_X?jAW(dVY**B0rz1KUWl5^B@(Y(u&2tG%*$q z7h0#dotS0T#Gs~#y8cjkl7$j`pbC@)Z#*sm+SyaZj&h zFG1Vn?g*2j6==dWELUv6Mbh0*`YXx(7!vm1Bezv{5r7FweZ$lc2J zNqt~8aBaENO+dA>-Y5LyNP4P!(W^{f`vA9~osQ?k!jl|i3D%ktafSc(x!pQN^bR-| z4hfZ4hgGt-a8{SCJGJq8r*b)>vBDgZUQMUWbduM%=<0nHt_FUa>dr`dU3c7B{>cl| zBGe^C4L&%QY@`YUz}`xNF#7sn&Ha@toZ}6M3${>{RPKSze6Vs?mKAILu#P zOwn(DL$OxV3%op&;un`2%wJTqYJan|QPZosJgaEZ@o91`uUV3PTwE*b(&Pfbk~hms zWxc8_095*aU{#l9I{^L#Kvlh}O#svaz>1nBTY%?(U=0AO=v8$Bpqfw96CkWE09JHq zdI3ED13v*!4*&t4z5rO$rTGqk-2hL(5Bd+h0t5lLoCCbu0D=Ao^Zcyh(dBXRt?kXy z2e68+>Ml(^K#UqdKe{dUMvMa#XfLYD~6aEh-B!CJ$E_%xQG~ol*{@WjDEZW_WTpD=e~eF|343Z`+3>5Z8Rs*zp=4hKSh$Jt!3PLWIq~+o?|iDKWX(!>^CoeiAPG8{!|VIq4VvN zt0{{6@&Bce>G)$8xwey~Gvh+J)!LZ~VqQvqhdAh|oO6Biz3p)9Q)rcvUR{e}CAJl~qa8T2=vGF> z|11O9xp8IvG&szTmGNW7h8FL*E)yYnCf}<=vZSBIdt++QXm&T91BR!qK6DDXr(3QG z&g zK$-F{B>h@4UmfAjlbSa0-Tn8E5!z-aFaB${ID`*o1irUgW;)JwCildFdBR76GlCl!3hWu9x}nYoFiUZ=W5As#de;>SbflTsBI}ug@xDOIXlQO@c-4 z&K97j`PAqGlmYx>_tGsSt>ZAT%`;{6_a_thO7>YlX$xiGo-HuV1&pbwDaw0j^twS_?!3!nl?!yth9u&b}{UR>~YEgFFeimNd)*yf=iyU zyvaQYm6GGxAl;0->=!u?m*|)8@9S?eh?{LX)?Py~yf!Wr zUw>>z&35QduA5JSEwMPMimhIvO7$Oj?TGvP`yZWmPj{WTDJ}Q2QUk=Xz#a=^cp6@w z3BS$3W}=0AQ~^C;BVa)4`%V`IrSx&!@|$`)`cq0$8m4Y9l~z9P4@-I?;PrI z8uEwt>_RD=Stl2Uv^_NC;4$lWCx$m+K_XtiS}7s0jlY-|m!Vs>Wpa_F9|sVHPH=cb z5w|BAR&mc;nGRlb9xL_Jni>TCS<;ejVtawer!JXg`))%QL(&Ppjwl>a-!lAZzagTj z4hz|7SfaIPKcUdhb!$qFfh3Xn+}3g#gH1FERBov}TAi{XT5!MElSTf%Vk32od!jog zd%N=x({LHpC;RoNk_rD>x$yk+WEl+p)FZZ?w)zGgCC)0QdL!-f*oZdZT~$<0ZLC0 zcT%t&!G&8BfVM=urEC|Em8>&@4%@MKD7#7w8#&@ZQ6!ZTPXDV?V1}_(nKBveC%Rj4 zvUjYvM@iNii_rp3I%_R@mgC0=GW!;8ZMfr*IA=)wH^&*rP02_;cL&L@I2Z5Fov}4S z$GC<^BsiDB1wp>U3*5&K$I?CDly9FIeu54}KGwFkX-Ld`f+e{T6*Mc-MqFUCk~#)j zN~k7PH80V2bty&1=|{46_e<(+gw!ciQJs4R&8Z0z)V_;bJV>Nst({`WNJ-XR62qn{ zi!<4CN|;0^UBXtR`olyq#^mY>gqwU6A7I6_S4cXgwkpx>dW7Pfe3(y?%`u=4c_clZ zzrA4{&OB(c+G$YS;k-ixcNfW5VMT+;;WxTJtRl?UvB7q@3T-=ncPQ^mD`T52iYkq= z&2iSN?j_l`l8V}KP*pHCK^wa-i-5*>sTBO#>7%=U`^$iHDLUltoUM9`gbhJ0QfLRm z)Zx_~NGWZ+8-k`{aM$DJE}==vFTigLJkUmosGguJtwW<62~S7Qtk+zc464lm$sV7Q z(94&bwkM-@2xWO`kVLH70z6(>kSRJ=gVB=&GBmP-e2hLbNYiwu&f-mUa%Vy?t2e6k zDyhe;&2K*Gd{D(Dl%u9Z@sfje+4J~%#^Ks@GA-d_)}uo4&E~)K7Ea)0^hTB<6p>7K z*xi=maBu~9RclyN190O~vT{G-#~;KM<}N55+!7;N?`oB@2sQn86kP+}dJ{rDIFtRG zAq%9KeWiFy>?29kUnfe-B=3|j8C zwA>S`7pvg-YG@=eL$+2*derPRt=uyt3Z3o~rr1e+mz@+2q(<=tzM=2fu-LRPZm z31@Fz%?q)|XPFE4feWg7gp8JqyhBpp$~#5bh~7td{*(41qKt|}%V5Dr;gpB-w=7eRz>0=NRvwuTJL%*9O`Gwx31eU2VR-c5{@6qk1Xhowv}EYPS?jszG7+_`pGbSu;+b!P}x7SlHL z#WwQ1sx(0iGE&iZ?6#{i(Cr*_6?GjDwA~Z|UNjxBO4I>wj8alTNI>7hw)}X70raBT zZQWX4`#)rm5iBr_KFb7x8T!n^seUAfr$LQ5YnM7f8T7%D*R$9lZ9<+rtZB9L$4eK{ z#ZgZ>>%$8;)s|OBw`M>tqLn+vQM*-XrFw|T%9^4xmcu6getyPemehW5$b|hh<+K zf4MMKiZf@nmCM@q%!>fb>@~-~0}`9t^o$r5R`eYjVx7km<88#~dBCVs)g|@pS+IcT zw&?`x1a-~-4xc}}aM^hd}Bm}4=QndmfSbRkezeicBmKX zAxJr%$QilToxP4s0NG#AtY<2x=le>??TqX33e)}T*T*&RjL+9*&5bv~*E2mu7gzAH zJ1g~VRMuM5Z{5pCm6keKxehM(8iX0Vmuuaw5_Y)S6t|k~VGVi?BTWiWjGMtiXDoc6 zyu!)Yf$1ZO0aC~=_vZ&5+gV~LCT{ePt5+{NsK*@kkM(B>Z#XHL!+Aip^Ei4h;rvP$ zcIqs|fP=*=rmNz!>5Wn8Spl$XkdzqxPt;T)HFsxWM6^YHh-p(t44pKX$mGT7x{O3b z{+_rIpdMnW!Xtq#Et6_a>|)-IlH?ijAi+q9zuoc7Do(;0%`dZ30cQwpdnY6x*G(M4 z@37qO;Mt#sJn!h)pD@$DP1$&T4MOg&FP^iZd4vEJV7%xYnk{c+@(RX=Te1T?V3VE?u97gD8ApWeuD(!wP7#&H;36S;<{g9 z9_F-1$yr*Q-~O95c~qK! zyHiTjG3wB0<{_IBrTbs?2h@qxA! zR;qD=&@qwWosf1J0}VRPI==%Q4yL)<8#+NJ)WDB|X3GSvFY<7b1$&tHAl#&xY1+0K z80ynd2~nTHuj@8H1YGVRNhS$gg^4M-qREUL&r2T< zJ2+XmQMw!Rfc*B=A|-#9GhPSDX~;lq!iA4(piswnAzdS7>VU<&$9;2O%oRYsyz>^j z?V5Kpyn^fnEXlTzG+9V1MZ1^{K^E_*LH8$qn_$04k+C6a+8PK9gtw!(g#!pM^3*-%@KEYWS;p5AznFN#2X zxpRs_oOS*}B%UtW_j_Nom2+k@dNoTMvNrlcdA!KH)0g!;b?B9YzrS_Wsq~{}^dn^t zr@Y^U3asp!(}SI*?{xWqOt2g2Eg({rbl1fIGP&n+0|?gP-G3!>u=~oA&&eW-W#|uF zrSlGuwz&KNvUL;3)K5H*H3@MBj2|Bf(0f!iIIh0Bu{G#YF`*+SvkeiD9(8-h^(4HoE{_{_j4WOVPNCkj8KAgn6>@lLK{8fMtq z*Uemm`2(EJsAA}kcLB+d4rBpecbnQ|yAwPZKRgEdNX0poaJeJ#YDsa|K`J_~Q<*+? zSx$FQdh(lx;4pvQE@Z^3-hG)}+3;GMq*r~&)NypO(eeh4fqWbM!I;A>YoNLk3e_kf zYQCUNI5Ms1{KEv)J1w43eIia~B@I&rZr=~AXuRsimOL6lUHIKajp6Ko-&TF!mA4D* zIvsi9O)nEx-8rBP41xnRgWrnHrDeu&#rvc2F04A6$chSu9uh|jbuz1DlCaMCKWAIQ z-%d)39vEX9bC>frE?V3>R{L*YAQEF@ModUWWEB$RZd*cg!+CS0*^BqYOMI~`h1Khs zlpP#Mh_%9>a2|z4NoFc+`pQWk9<#7X6hYjcPr^guA|vY)*UoFDK`17!i*``;Dj=;; z15zkzeE)DnDDIq12u1!GoKH101BxV^BsUNWO=oBqrOhK2IZj*8%%r?QO(n8JJuG~v zvKhcG#DJz`@}Hwz^%8=&J~Pax4A*+V+?l3?L?8to5s@#{4!lP2DLjob)wAnf@IM)a5{`~8J6BcbUZ4FVVAetchS*>Oup2hB#A zF~2Ud(k-k@P65x>5m~KKB-`5qRR8%x_3nYL>^mArKQdL>po{w@D%ycZHus~1U&#{V zColJL+=XNbX}e7Xl10+I$>Uc=7N_I}HJ51Xu81RXQf4VJlpn1sG}j7qvu5@t`_M!Z zvP!xL#M{D0*_z+-ufAocd}&;)x$Nf6L$>V;Bi$Fa?FWf-{25}d4A2mXQlm%#*%Vy! z@A5EPA|B{CYGd1Ir_*#D+*)Ziy#10&JEXR$53mK$r9mZQPRr?XGGDAPC+h$wKja9D z=n@$LJ~@+kNzR-eR|rSMB3mKR;qcX=k&@SR79l2{>1_9*!7wN@c>;nH40FHSbf@?M1@6Cn8tM>Xv$7uBCl3QyZy6Nd z836>A3h{9z>vCUHl8nWH9zsXJQ?%R{o9Bx#`VzEbcl&66GsQ^?@`cO)&&dA z2<@SkvtMi@<^$VYe>yw{TSFLQT=de_Tj;|qMULT#5%H6g{(yi&RErlj5H*4rB;kWOj^o7upI>zwQTf>C1+%}x=dB`) zPcPaaaoV<2JT_&R*a{7)`2jOJ39QT2XJ1`h`7QYSX2S8u$mlYu<4&Jz4lZ{{(_IMM z-l)`j-0~6Pu-;R_=V;s$8K0_8y`A4bP496u;Pam*ut+9{kiBkI_wD}KVM#N6*|g%P z{NIn-TKjiYvn7q)e?KbV)p&Zceds%yXc-f)5fhOg>5*dOxlYcZOSdNFX>hl<{n`0f zWEK#Vy5x$4y2f5-(IOv-H8C}{U45L)Q{AYqN&=|0qrVK$_)R=P780CNPqzbU2we;c z#qv}9zfG~`(&Th48?_lFS+(kt!+^}dWD#JpqG0@M5*TE)H>W(X$>!e_RrHKKb{_rP zmd?F&+PeM*_XfABoO?-ONu_Ew0nEJMw0}*B)RXGC?@+%Ukg;9#%TuSf@4pkk&`1y8 zc4@F*A|LxTdmny<(|~q}eFE$QsHuT?a^JW1bb9aerd=I}KXdF@_2AD-SNZPG%a=QS zxONH{w9Aip;uI`V^ty&^S(Uf+PuConx0Fs&rBN^2P^fZf7fdOaxJEhfSL|oAvVjzI zwY(qA;Ig6zRicj6WE0v3%;J)wC5=n7im{f+e|0hJ+JXaliw0WDZEx4A=e2)V@pP(l zwjJ@FEVi<&I2@_8TaxdW9M@IZt!dP%4hyU7r!`|W#!1%CYO4?co#$Q^LOTLp^Wuu? z;)-oua>I(!vas6A?h*xTl2b*R(xmnVN26dD`d!s;%&OmZcq%rQ);K|325UPuciWo> z?r)eE-R+yR_XH~^rDJ1_cMMh16Op*mRPS?R?Uf@fjgB-`)Z>vKl2i?IV`bJZ@2Y?8 zT)bFr0fz<(Et#h^%lg0S@9%R=NEObdVGKdX@9%VMBjT9Jdt~DXmo18YtaZY;6iZVpQ(xsAGb?=PYdaYUXlO+imkJ&{4|~ z$Da!zM4QYPt19IG+V@v1R$W_~^pNOUSDrT zsGgy=MCZ#oD5R(&bpVyhl#cnt-RsxP*GMu`uU%2XS7;A2 zt_4s_q|P@?kh`QOyO4oiX$WOS4JSV*Ep0aL09lOUpwn)ZiOJh#c}6v@<9cr4Ut(ao z_BXAsqh;I1jctHb?1#2RAg;)G-yGs8+flJKJsDcjHIJEASnEdCuTq+`2@13q&EC+d zO}4H+x@$fbs>o@USf3|$y2`Gq{E8bbeTf!+uB`tXMH@P;N? z$7VGCT)Do`WRvFHR%sqaud&Rc3iF`YQ((>9pdzt(Do-mj{Rx~a%+@XQ-c?oBLMD1? z!2B^mmCvFfZOs$wJULoT39%r_yh_+ghp+1Vc&*h}6K_xI$-%qMHvmUh+mL5Wr0J$9 zyj-gQh^GS5a3o9@RS( zy)GkRHk2>DDqPo-2*>#%wg@}Rmf_yvtsm^yNz4j25vzgMR`^Xc21u8L$|7H$&(C>w z{l@(FOQwcsx8poWBl^G05S1%jaWZW8gTQz6Y{n&vUx*#yN0mLyx!IPr4HcGPvdaEHZgKqQ&HQ>kP+jDMpUzd3!+kC4@j z$T@uE0nT_o@%LuO*0XbrpE`+B5Glcs#H5a&Rh5^U{?0PL2#67NVHVl6=R|A(YNBIl zM_b0tkc_V-rY~qyR=5k&^NuA?e90Rw#BGxSfuc8gNqsKXFl zjp+e@!(OKL-a3aV(n;wib2&D`jb-7YFWlTa+1I495oNQhL6I(vn_2CA*G7}d_$M`Fh(rwuFz*7RGFmA!; zmFp3Q|IoWVM9-Bt_-&1KU=SFYx0mD-*Bi(I#JEYH43RxoV}o%6$5?9M={F{}ydE40 zyHO>O7Hdq3i4$YIW$DhLA*DL#g=z`d-*?!Oz{e{^9`J=rWhEH*Rez9`xK4c>1&U5{ z6#F4{=$6L9!=K}SAcVjmWy1AcZmML#ZJ#k^!L7DR@BajRHA3UzVsWb1ATEbNry8Cb zA(J)P>NFptT~Oqd4y(~5rwOCC=qEgM6S1j#Qvh!3E zM9pzFyAPZacOM$-8~fMtQLLM(iWt3bG{j}*!h zKSJapLP6IP-n+gT6p}QEc#+a3thD009p$J5kJ1J;JCPk~J;)L}YX|>-rNL*_0&Jjr zj>*Bm%4Y%{LiVo6;(I(__q9@SfMPuFdz~u-v%W@mhvOAce+$*nZg^r{%t+x$D2u^b zk+>hPNh@ccST_bRuw;?-eu$bY8+iZ1gSSB9S4!bNaD)WPAGKct+Og`Yl~(+NJn>KZ zON}uG?g96(HY|s@n*ttZFqhs!PVOQDoI12~KZ0M0q4n6pa@E zG7vPGWnw9i#VY+uj=BWP#Csz3>@QH@9EYuw?$uCh`EwLQ#hg$Bk`5>S0^DM1*!O^p zFmNtXd8f^IzsS7xzY<%Dj@^w54&|?9JeYb$Z2i^W1!t_GL$tLcXVVIIGhLCL^#z|gCBwkoI@Ck_Q+ z{WIo2%D!qrU9W#erX_@!wHAwh^5ztCKWDPN6>K|)4*dWPgD|+y=V>7K5gHBB5Dd0P zngI0n=k-GG`oMY&f=*|D1@eXv4g~v+z#5$zlLwx-eA!qhT}D1l|31oFAvk193tCu!n5w>! zYbcb5O#K!fprHJ!eST>iTR)aq;c;j})+vECEFtFYb&YS&>)9v7Pp};h`Mh&mY)>|T zYZ~%;leQAWEE}(4=H!l&(?`uZv1RRlAfH$v^_Z`d0(f#gA}!67I}@QuVr^@!G+t7C@%%Km*9sD-~V8b8#m7 zaeNLJdjP5WteJ_uu4K!KZwlF1p##cGz60_j1GT>oP9gZO!$idyJZ@TwWZ?%+IgzQe z-*VrytTQcO^fw;u`&cB;6yb0&P*Sd;PuSJL1rg%!F`h(-P%{;mb_z0-mcW4q$*}Na+`aQ22<0p7%s zIM2%LErZ^@e&F9eYH&r@5A0^OxBU0MZClmIj^*j!j@6}ZQLZM!*E7ncjgEZt+H(_l zvz((Ueg5B$lXM-erDECMwjT0I>PB<(2B+L*mC!gs*6Q6Osl0J51X`ymNIqnNxu4T5 zV3r8OLbZywiPs0_Z>wg`TXpiN-ku7a38qJa=F-Poh+th~s7My9$|@$B6YUahg))}? z50RqXd|E9+cbzR0SjU+9(0r#`!P`DS$q02h1r|(#<6hko{-jd*#!VGUV>7vNtuZjNUO{9O6bOsRZmHzdFH4jrQw__#CSDx`byaLjdF;xW3Y%a}+bi%XouCOoOPgt` z6sWLhcAKALc9QzeskLyzB$`EC@!b$&bP8C46bXS7qZ}L_UA2f zYE~7zDBV2x{U8Y=nOVb<{9GP{-7n|0}39 zc$tPHI?8gUI{t{9_?_8F{MbwZuQj(6)47#W`+&i_>~(cU8q;C8-tUj|@kYpnWXK;F z2HaYtg&P;CFJn)?cq+8GpMAq;(gQyqdFy^GAoSv0;_cZk#{3IwTPjv5RqYkcaighC zRjXPs1DjN@$fn)cK~5ky-9lops)heNsiAT_b?C4Xq9LrR-W|oqNDx=0TD4|ijUYL%4Ffm((w6<26ZGxw(;B@bldzZ+q zhvj(wC)9iQz-B~>soSj>_E3o%iH3PCbK;>cnl!NFy51;(789j)3b=3EAcmLaK|5GH z@bAo19NQMJ2kM6s{UV%~4tRlXzy9=z92GA!D%v7Wg;mQ z_r+Fs9wfLwogg3>oX&U9gWG3+=!7Z+V`_k)cSvegFOyM`?=425KRlPWyQk7Hl|9}l ziR_fmkOy{Wwxor4LfNa= zR=3-5XfJj1_jFi$;+yRm+*9+=KiKp7C-1~CUyd6!YB*Fk03JO0Coe2Gu%PMH z^FS2zg+*#$Bi+yRpW@sv_MDHy!2TrM=MiMKBI|y4ZVPD-Kb;iyQ-}IMg{+bTfJf9f z2Px=V^;OnB9(uBI<657pP8kJ6fOW>l!oVhyz0M=HkxqFS(u1ti#-2)zjMVtO_cws{ zSID}XZjNT~vwsR^3E1hz^W=Lr&vT$pgoHc~@jfoE=K9qx$H-*u7r(~C&BA{{o+TZ5B}&P^axrh{Y} zddi+^gU#`dhn@|1-`Q{OIBoB3ZDS-yjaNy#8w~OW4Y-RT^R^Iid4cCeRIZ8N z3l)p&QJH41+D=-gPr1Js#(B5gdD;I6rC8G$FkoeCPXxsMqGUj>?RKHeM zL}i|DK~STI7j~XVFQ3b%(dD@7BOxGHA#*4qV409faP#p}xGsSXP3>ZgpB9@-R%fJ8 zvJM{QPPCVwhY%p=ja<3MGykY&iai%V5vntOi3=vVlQ{S!ZzT5EnM58&8bNsghkt3{f(VQ`PREtdCK3Xry7nnihzxL`O5;bl z5MbcwjBZ@f?36|Z5ZgEbw}V}r{A%PM4a$6bL2LSrbP@=yLlsatJJG>x;*xGkDOQ4; z(mTY41G)h%RHX@CPV58*=lJC~Uz$jE&R58iH>pBsG?*F23yh5wLSlxMI>CQ90MBb^ z<}z`Dm4UOV8ygDjwpBI^B6c-P`W}4Wis#OJ61mI$D+-vdB^-$E<4+3M3<;yFzs2T@ zlf^nY+|JLNe3&J~rSS`5_hb_nm>(oYiWunz_VGV10-34R5Ms)Q4Q0m|TIbgs)biiS zO2y`@h$+Nl8JG|b-G3AORtj6RrW5E-xQVF26mVv1gUsP$3N`X2HGaUZ5J(T1lar*)!a`XIQn)TTm@k0HQL6v6r?VeV)fbNWexvnfBsu*mn2tb3)B0UWM7hCXt1 zP23~SZ60#k#E7{-oFt$|F%t*3Wko6_)Xx1ih8gU{T&{TOsK4IJJ^RFvw!g-od>1;voSborb-lPwBbZ7iBU$-)Hb~7`n zi{l#ul9u5!0?I+zSMtF>&+kHH83v}19v@t(8`*8Kpr}%|=zQ@)RR?Yw z+FH3W)z#^%>#VBd&SO22!!c?Z|0--wUIIdXss^2Ul&0FzCJZgaweI)Bc(trQB;GfB zax9V}UI8hGdrD-%ZRM{dajx`GQJJJr-}mTu*t$$g7Cp&(d5k{_9t6v60oc2=o*pnO z?XG&94S_|<-suZO$E`+tPxifhgSTN1cvU(b1oZV;JxmOs`C}^znJ;KL(vQapay)R_ zsneXCNr@uG5(H;9MCahj{j#qI(1UNr z%na6^M-T6CH0sL#c$42Smh{PpTvqvJ4KSIb4Yi49eQ zlDl9nKq5n->+DBc^Z7*@m8^k` zp3&O5`^9l|)|wMnp~AWAl~T~i#|}Dyg%33+{YQAcEA@1AyhJPdP07^9ukl$>r@vf! zhDVHS?M$zY8mZl%w0s1w)k|l+&d9U9{-#Kw0%vi1=9#uIbV{veLm52K@uUjvCpVf|-z`i0n} zsPILgW0Sj0^H;A-F4O{W2`|h=s7EKTIKuzeIgWvwhM-96*R3yt1Bez~m8A!(RT7&7uOXl3F@*w`JK^2PW>6 z)f}(8kZ>N#^f)2mE5Nn6fSfhT?SrKyfiuQ9k=SaV5De|&E{EdWaQA4#I!f-Ufxs5g z|Hi6yj)l|DO1_Gewf-nQ3#e_b?g(1I(dQ!(n(Qzdt9u@x&Ln_Du8B#P=2^Jk%|R?Y zFFEz5402~icV_SNyiG+0!We=v&Mq1I#WY*PxDa3gf5nFz9xD`lcJd+K%40q!kZ79A zG}oH=NAi@oznFTqs_+fUuzAN=2emX(A!Jt>jT4kfpipZk_!Zw3?bF`+D_CtCpLQ6FUpzY*#);(=G+bcTU~-v_unoxow! z49h_a(F1wV!_=!?fH}jA*Z}{Wk|`K9jt${x7DDZKHRQ36?!)h|q8#)De$@N(6;FOS z%K{rlRh}nHmUb10H877N$>qxn`vVtHgV(dN4VTx^qKWk#nT-JitW3i<%>GaCsUd;L z;VUQhzmdcdWC@l(?`knV6Fw&os zX{kmW)z*{R26Xu`@SGfMjx?!$t4}z&2hy~HWQ>LC41nKd#2We3?_wYJ1gp->Sn&eV zexXG5TJ1p8GJuqiw}NQP+ZqQGa=>O=SupjJtuT&f=Sc!sl+uso4?y4Oq0a);M#^;n zEkhmljT{Y^rh;3EA^0xu9UXPfj8lrk^TEXQX-Wavr#aNfHh$4L7RmymLo#>*#8=uB zk8KXZuK75~x`Ce|+gJqr9HLQ93&P1kGK3`__f(NGFNAhuprcQ)JkGh8%~Q;k9^jzQ zC4CN*_*@hU#X(mL&aRzjFb>N&M;9$KD7PyfDofqOBhveRz z1Hmv^FjIpt$j}7USP?0#s9;Y&o~iT_I!^&uM9XAuGmuC%po9}EV2JvMlX`;3xy-Z? zGSCjd5TGG|ACLVM?OoBKoD_L_qty5s*g83GB&LeR^K8)DtXRVlp?N@uL6w36-&*S; zH#V+I5GDdumf*UJ<`4g=Ku)s+1|r^SfCKvcs7#qnsAV_@R1wk&y-(>Cn$GaG5p> zH(X?an0$Sh+Q`8LSBi0ijSFT{D92Dzqo{FJqPn6)O9vxLk*~%*j*PKbkBgs{wJmLG z$bGGuOVoFx%%!}v;^%i$X8a;O135AUf=Q-c82pcntMWT_C~X9D8p|Z*-yZH`2t68m z$v9;UsqOqx*F^sblGI1~jjkZ@{+lIK3z8DO{d4ekZ1lpwd zBaA&fR0x`D3R{A|(oqtJA^w_2>Mfr{F@KW}1b>W&q5eIM(E%NwM*5HWO#ei6ME`+` ztoZ{pVf7m!Y~Fwn=a1NvPm_a(BWj<{htq(50mo3I!cVOHlPc>3{)Rd9gsDsW^vx@Y zxkQC5UEmv490yNhQj~6@$_}XP->xY$JEgZ=k3hySQdJNEh(4Z9DTAn&C(s0xgTavRWSLqobp4p_Vz!2V7b#}~3D{Pwnu z@|aczx-V9Zp=Jyk8OA_oY&rkPxHd|I@G^O1vhK@0kkhryBG{#i=*0% zxt1_n!fXli{Dg_iTb($I9;#O7Z*~4w=WliXtJnE+y&dt={4t~P0^7j03bgBGKb{3n z30=F*SCx(IR+gg%{~OMSL!eLFAFQju81)BsW&~^qS}tfvpm=-YrTQ4I+s>ZJFE4U) z83RuX!txJQn~#Bi+84hO7p?C46;erIrI@@>-#fQS>l*=GL&yKSNuz()H;N~d)L+yS zH(JnBiGE6)0#D)u@-#Y#k>H~~n1q=w!XF>&BP)uNFR$FuruSG1RqAs0df%4mKju~( zQa~Hdn{qDW8O=YXY>2XRM%F zIt{jN8@FE2u3Y!))@+f@PoIO$0&C}+0g!>RUf*?31gLnkG|zQzg8Y(IN47Ff>3&Wu zZF-JN2AO)vW~r74i!!u-j#W?`r-$>QE$10s6gQVS2^W7+FXu=j%cUVqTNzSPBH-doAux}|K{3$uTrNT@gOvm{*HD#tZnXm+S?#{stZ>eI{Xg%WmsWAK z!wkr;npz)}2l))O@?M$Ar`lsJ<$#Q{gdXOUe)322>>`O&FR95vGEGW z_3!X=@mS;my+y5f`BvZF46ozBo2m_3FcNSC5v4Qr2(o&2nC$6`rTq}pravpYV`k(X zdqLE*zk~l#_k{_r!Y*_t3r~VR^|Ak>tGgw9K(KpZvFw3a&GMDjrD=mZO# zBILkqqIlI1wL4w*?c!6R^oN8IV0|G-{}T!Kq1C>f{eF^G(fjYmr4H2?(SzLZe%bKaMYf&i1R zF}`j$QJSt^i!Io^8?g-2}or}y(?sR9S9z2@~=j^M~gc-zi?du<5hUX zWwM4#;0RTW-~#!;jVJ%vxv2hT5j)MAXIHjdm%fx>nK6zRk`;m6{l?GoyhwbFmN{2GH5?9Fn;SS=`sk| z6DNs3G2NM-Hue-en7SoYD1syP!rg7JsmFMsB3!N5{>_jbpItZ9sAg!Qw91=oCYk%{ zC^mlRm14QMnJ%cY@Gsw&*Lfs9--3w0rL!gFx)po?TlrkLH~jYcJIP@yMm@?&1kw#Tm38x9WCri9fCDiYsPr$737Gb7v>Zsn4qgPMLC=U z=|&ewe{%1hCjEx4wc_BiXy7VipO5WS19Jfbdb=bi=_=mCb;QpEAV?JvgGA@E6YKDw zZ%JqNY7LjLOEl_66TW3tlJT^-pbwNP`Jb48ZKBvyj$ZeE|X`AD(SVyWhrX9hgFET3w`j-pv|2cv`(%|E%4u-!Po*sf-c4 z0SwsWF#aU#D4<=0dw_eErqK?;oX>#1|wYsN!k4AGrr#>0Ar;)_1j?S(9;5 zw%l3~m5{>xsBX*M-uii}uibQ;5DCqLD98dgVtVet%Yx0UmlsZ8)H{}2q>jlD$S*Dk z%KK8OlBP2+>SF9ArXzg$T!inG3Mm8eV8Ms+=z~-%={9)KG-sbcGKIldeD(eJ-(O)S z@2>O$fzC-2+~sxc?cyrglLVdOZ=4*xqKTqbTA_%lgOUp~6`b^=4N0ALk}vN>FM?&` zeR%6hF?*p3yirvqD)%O*CP|4ahZREbSc`2eFNN_UF^^~~;qOqF+#|Mm5`>^5kgEmn zDGvkl2#*z>1kg#;6BLMLMMy_F?Y3M)G!>ncj(Jf*(alY479_gW1!e+N5W)JfavoC8 zVXznAQP%s6hWwO%!kctH6#RC}+ueo-KuGctNclAi)$BKnrT8mXo9(jN|p3`CO$L>Yz#rhQMO_Bug3`U*b<=Tv2Gv81_3>I&uR$+L3?s>D!o7A02cyUC`>b#Wkm6n zb1@8@QJ-zkYGy$tLsW${s~AKsV-;30A zo5@20?|-KswT2m`;xRdMp=_=F)aU0Qn#wt3GH^I_n9Y!Q!Yn_aHUZMek zR2$@5Kra%1(4`r~^HeQI$~}3tFirQu=!REtWkkcnH=vki=q*9EapIqCoSQW4V;~Yd zE71h^@k433-G;?Bb5$eI$9h%%&77AtH+Ywa>*faNsxB8?EX;8^+Z_``ALH;NUFKt? zO0J;CImp&3wo`ZfuKtY4n@Fe_KwU|8X;HC97pl8L=1PcxEzkDf?+VUZFB|{pP38}0Oa*m=Pb+th1N`TZ={-`VX zQCH`qE$?yNN))u^J+5_$f^vFlt9rCmJzA2fAenM8ql5lUj>{wK%W6k9` z&RdnEsu;&PYjCVkdSh|9jk*#WZCMTTeDU464=e7@wXXQ#N#y4fr0LvGx4(OEKYxjC zTg{`b=JDlh@$IhWvECvcb)`Gnf*ozaj<#UO3I#iA%XE~{ab48nbKX0xiAFIF1D(Bsb#U4=2>|3)~E&*P(*h4A{erp!XRn99HOJ&Ay&thpgm5ZfH>bGaH zv>bP_wU@#v&%0`vdz^!oe0)nHP*)z^$d`k$3!m2sA=zO?IMIrM^xkv3Is`(J?cVYqB1|B{GZ{za~0e@Uz^{~}kJza&bxpj=ZMqH9BRZM;D+ zFs%ywZG7%}&`TSiyVmqlB4Bcr_DdpjB^1`YqJA5cYlCuaP_7NiwL!TyD0j<)a%Fy) z)ynFZ#N!qgC2ON`Z8WZp#^oq9Up~Jq7N=iTJ3$RKSB2wnkyq;3&v{i_m*#n0n!@#I zii>h;(wR=t(5;zsWU8nsVqI0VX+MsToL>3SyhY3wF)tS}8TVi*^D6Xw8qbHJ-}22C zJue?U)n)2cxJfwi6fBJvGh58ORLs;iZY^p))4tSOfScRm5Z!@Z$cNH#=Z0sp^j)tM zK6qzQEqs3Vy^mL$E_Su>nOCMD(Y#*8w+A{cXS+$94MSzMsQG4owfS-D!^~v}^3BIv z!_JrD)4$Aa$*Nm6bfehNd{)R>m062V6Ysb*ozc9=+p+4!El6f8_&xRFs*HH`{;C%4 zLVtC>HHQ8wJr+1tbhS0VFJisWas867+Ss_5MQ7E*i3a?1#i{xivg%Lygnf6>S8q67 z#HvGFRo$|$T>rX=Ro7`>INo9ACASa5Q(RT`vg51OIM=`8xTwmM9KfkQljCN2sph3G zbHH?7-U8+43)kVV-ARtN>RNlGqdn5`<)o;$RoAW`$+V|Bt~JTDRo5yHcyLK@@z=Re zdK8X!($jpUaXS2wf7s;YM_JBrd+eh<_VMMM322Xf-1;qUkA1YqJ}QW#J@(Na`?&VU zJ{$_J@F_!^E6)@yx?)#%Ela6d$Jjs!Nh0s>24BFjH-d zZ*q_`Z`x=<8!c#~1)_}>Tw~W~8!fojuFp1FaQ#T8jTT&Ml4+v_x40Y>{rEXZty@lW zae=ZHCGX0$r#3Fo#s%8AKpPim;{um`M@t(TXhQ>SXyDp~1`Nqo_=%~(K9%ynQg3n2 z>$ke+yh*y7_EAeq>=Z(BP5Dy%z7`o+s~&fl-PT%upR;^h3D zYE{0Uzno&lJ}Ge3FI+3IVy{$jv0o_0zhbZGLhR>D*ss_p@Uwod^!Tbhe$)UpbtPBq zb3W_46|+|(w_Gt}!diILx9a(>fd5=lw(r)}DC>vM%v zSL>6p$t_a4T91^`(9f3uU8T=>*0)M)u7;WwPE_fs>bu9S&p&B(%D108$h=aINTt^C z;MD+8=JBvnulmIVv-8hgWj6J5nOiIN$ox8&7PVrZ5_|JGN2|d)pPGaJp$*r!Y}514 zoAlS`tXE&U6Ul9ij0TsY|=;M+oHjL!V7f#gzX`z^1(=ZU_W&*`~s8JPZ7zwqSx!e zG~fl;SMT0$ipP8SORl!iv1PzbnBID9 zEc*cts7z1bh4G})(pwe-mH^S3Mtn!hd9Q%!8n5;&(u*=%6(oNzj=0)gQm zo}7swyPJy0AA$7qk~2)42%=FqANyhu5B~r|aiH?^<`Je?3^5}PUCpOK%CI}pT^ zWqh8w|0Z4tORIjb>9(c~!_MJbM2;nUc|q9o*xGZ(W!%X1Qsw&}`VItE-yNE0esjt; z!~yW5dF# zQd+IGj&8{Ucpt_-@)%?_a~ved;L|WfmEj|9U4o-B1Wse1Z<#+UW&turoHcF4sfP)_ zv4S^`hRgEx0($zQK7QuSGt3+Yh{V8UkqO3N&5wi0naug%HGmzOX1ISmU7DO~o_Qa9 zLD>~^Mi+SIeT)O#20)7Oe1sp)Bb*(jUyS`Ne=-5;Nb!=uQ5X-0J{3ZRsQ_SUhz21` zuw;{{5VTDBpDjZ>+h0kDOXTJyxFJmwRFZA`3Qo)}@RPifCrS0NxSe@wE^BhfA=Z{q zFON_)$Xfzkoj@;`I3-~ME&UcJA3Tb}gFTqoirs_WLz##(jse!FvH@NLVCS=0oMhDe z)b~C}{Z3s_+A~T|p44}bT!Y2YRT`vb0HX5daT3%?JP*f+D#Q5@v`8!0VbIf7-~hwf zC-E4ud;~P>j~^lML6h_5VTK3?F9xJ(0GdvHAVk^_q;O?RLf1Sl<0g%!QjO(#5KyMU zEG4{|&(u4UY>bCnvdkNuFy?sr)h4GY)5Q6s(;ynhr#(>CGl}}7b>gfBQT!tfJ`h0d zVES6KV#ES!49^fJ8BF-K%=$yA2T8%rH+>|neNyR}M-C}zlQ$rF~9qC%}Q zcTDrM_^TRSenSXK^_;j3GAJ$sZZU37r94yH>oO#RPlU<hOOfHKV<4zFq)G_My7P?GV(|X zfJZuq`yrJ3hJ(lQxQZN7 z;uby{pn-oHCu6NXd7wv600S|h&=plu`E#(3C4*iWV#dHX20bAi>yvkt3}&iGw3gfh zkqsIYfDyGr2Ec$+#u-@FFhdaiEDa6H;Y1OayE1tkq;VVp3=&H8B>*VRlzUP7>F=~* zzssq(vwws+3aJlR7-b5KQ}4_uFa$$V4^78a#^w>WrF}$KGcXR+wgG~Ge?Z^%J_Z>n zvk6ibyVA_0_&v=2G;*Pr=JzHh&0n$@e#YhpFa_9N?1+)r*8Ahg>0>VO%GWl)7_=>; z3c*fEE#Hs>>Zodq2?fW11!9=Qr>SOkosWSh2JnUyI;U6)CZCw31DZt)KVthc3oDDxwR4PJ*Cp3E@{sSr-KKa zKkzF@nG#2_#0UCBF3_bW>2ozZ(?tT|&2$J-QPX-2dK`93QS=s~%@#Y{whXDTMZpu+ zZL95m>{10-l=_by_mxl3^sKmfS6EB!yHS>$39;E1WO4n)&ccRrAOnbCNI5SGv;i@} zEY<~bAfcQT8Fey(VC`IageowMGoSS=c2r79h^lBp=ZKkSYG;8{pv<7HX6oq~5cO12 zI)7F|>|@^$`(}>scP;!S1;z$-nwz$^(<#xqiU$|Dl@?SvW(t!7Hi1eMM%o#q@4K9-Ci390Nf>hoHX3q-5)1Je+jQ(Zq0!5^dmMT`X z#F5|Tj7CjqG5=64T^6!D**_z;>nM1d=cW>CDi9_TPu{*TxPs?v5J%)LBkM?6r$9uh zC4Z-YL@d24hAgcKNtFhtWf=n8;LY$4OPj*klOJuA1Vd9*BlQ`s-Vl(2CnbrFXiY1Y ziUS76QQYiEOY>cZ=^J6fa|dZsxz*4-FDUea`{F0{6Bbq>1)3U$Wf)Mw&80F`#DU2~ zG71ZZEJYe)fZ_OsjhC~zxm(W*SZ4S6iwj49{hXwCT!kpy)ZbF!FlsZ~(`0(1=;l@i zmy~j;>}OIF2%FGF-Nl_kJ5YWuxicAm^3+Two9n^^T0A$#C`KObwKV7>eclRjj5?wu z9}9CCT}53QG_m<8vjq=fH>wJBbg?I%WMUdb!E`?DT4Ug{S;4b3J2?^BGTQ-z0HxTA zbwrI9%Mwz}*RlukFc@MKK$zOd)SsNLjS@|MQf=A!dJ}VMAYgfTrl?6td88U{E*XL} zK>nD6>f=o^c?ho@pxCzsQ-sFQ2aG{!bY}DyGEav-pr&FaFETbft-wa!DIG-A$*Fhd z*ew)dfL_RPEQ3HlP+quvQOz2Km$0`n`mtDu3k8fozoGu z5h!Vf_5%IQ%4n9x?mP++;xhv;8DE>tnALjYkC=c-AT*A7v=8Nped(hsguXT@V5pru zW@@%)iK7YH2e4l4iy>yXGdGcEB>4}^_N&&-B)#Q$HgzD)HpkXmUTgcUE~0}`k@N(x zEty9YA3=~7v?<F?Nv>w#dFEN0KZ{!a>^l+I1u(j!37J9#FE8 zD#GfC!?Bge+0QSnb?4kY!0O`2=SXGRlNyc~{4PUW1I^tu zT6PT;8>UBmY?cJm)xK$_!PQp$y*X#9kA4`rys`SGm z8x6T9`f6^w1e9)Sm>S7iEk4|U2s-u=NphY>niXSc&TxVq{XGE5=zHVenUHkMQjXju z882O|mNFBKiC}FlfOM6-9uP>U9r_S~Y^hF^rD^2UDwzyn7c6A0N=AXYmUFykDdoC& z3j&+$W+ATUt6V-U|OqI;+?z>+QP2IWE`Kw7&c~Xl>&&(PO1ah1#i8yJp(fH z^Q)1+l7ZGgWM+gjDI3ESgJg|CN#C*=u-oGIDRLW7&@f%)cNyl!jm+yDh+&pH-(-N~ zcsx4zL6?9Az;4IEDD#G>J(RenN&skiqhLzNh$KfZpFGW$0ztgd0TzN{N4&vyMlO3W zjN3&4tV3t>FgK%tFzVq(-tAyphzlABfanFCeHCDsg^6BlRIq= z*&;iuot=soao!9M7ELC zN%Tw24p2CE@Wf;jzCwvpmLtcwZ88RjK4u4^eJe$i=eTerb`X8(knt2bpUq;uVLZ1) zURPlGLn+Rbt-$gKIl+iitI>O#`7%@>$I(sjfD2mDCb=O4@+OlMU0~jLi#QRR@Awt{ zDa~MIwVSmm->|fFs9aMa&r-7JwI#N}Y>YdpKxdN13})1k$ATyk#oQ+f_}cl$1)4Sn zQrC8ui!7FO6`7?$krczrIDF!;GE$dqZ;s^BIDD^^dEiFz#uQQ@Dwd+91g(jLLjrS1 z#>#$C%7er%IfX@&M@vQqFT}=do}Qd-nCO*SMl2-22n7c?74A-lUgf6?7OOs7xZu~y z?bJy(RbA<>BC|q8B$t@XCQr}ahI0U#-sdSO1_3%&taJp*umOcKBHiLlI<)YBTE>bp z&`dzCL!hNJPBQ5_NJlb0?uD}xZwT50h$>j&7@d8fGe>cL6gB-qtw0vS(;56`xGVsp z?sp*^pO+*U$>F8i!lfmc@@c0hL5PkpbV%b$kWk16{H6Qc8{AnaGUd04NkSzvW!P^ae8q0*=D zzYI_E+YikgE;2{ln&Ml`u>dysSkLJ#h>cyVMOWO#$=|gPij}m1r8rIgELSD%^JCSQ zI{b>}U)kvs^Wrk#1fy{Zy(}K=CeH&dcaYNpfy?)seLk#AJL#y^X`yXbp&)!w{oOL^ zxSVb3ozW|*{XGVA^I$(gYKMLu142F6nuk4GL z^zR{P<-zDtuFc=_ukY||m=ViU&yVE8UtXxk@|SvHswKfY^M`t^3%kHu{ad|sYHmOS z=Wo@>)T4kF_U%U!cDlL&ytYgJ-LXz)9`4XlVOZuc2!rhGj(se%@bV5-W=Kw9CW1lc zDG$rw1z;H-8{R$I1MUwEvlNIW>yLvJA8$oqEo{LPzaPb0q#12#%)Dc8)anK}1ZQ^9I_h0er@HSnOiQr5t>$(TS$4irT)Qj`2>! z{|``00RkQa6aWAK2mmmbl2T>tF3i{X1OPXDCjblp7ytkO00031006Xs00000V{dY0 zY-wUHWG-}bRa6B41N&rrV0Cy4009K(0{{R7=mP)%P)h{{000000RRC2QUCw|9r*+R F002hK)O-K{ diff --git a/src/packages/CodePad/libs/terser.min.js b/src/packages/CodePad/libs/terser.min.js deleted file mode 100644 index f68477b..0000000 --- a/src/packages/CodePad/libs/terser.min.js +++ /dev/null @@ -1,2 +0,0 @@ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("source-map")):"function"==typeof define&&define.amd?define(["exports","source-map"],t):t((e=e||self).Terser={},e.sourceMap)}(this,(function(e,t){"use strict";function n(e){return e.split("")}function i(e,t){return t.includes(e)}t=t&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t;class r extends Error{constructor(e,t){super(),this.name="DefaultsError",this.message=e,this.defs=t}}function o(e,t,n){!0===e&&(e={});const i=e||{};if(n)for(const e in i)if(D(i,e)&&!D(t,e))throw new r("`"+e+"` is not a supported option",t);for(const n in t)if(D(t,n))if(e&&D(e,n))if("ecma"===n){let t=0|e[n];t>5&&t<2015&&(t+=2009),i[n]=t}else i[n]=e&&D(e,n)?e[n]:t[n];else i[n]=t[n];return i}function a(){}function s(){return!1}function u(){return!0}function c(){return this}function l(){return null}var f=function(){function e(e,o,a){var s,u=[],c=[];function l(){var l=o(e[s],s),f=l instanceof r;return f&&(l=l.v),l instanceof n?(l=l.v)instanceof i?c.push.apply(c,a?l.v.slice().reverse():l.v):c.push(l):l!==t&&(l instanceof i?u.push.apply(u,a?l.v.slice().reverse():l.v):u.push(l)),f}if(Array.isArray(e))if(a){for(s=e.length;--s>=0&&!l(););u.reverse(),c.reverse()}else for(s=0;s=0;)e[n]===t&&e.splice(n,1)}function h(e,t){if(e.length<2)return e.slice();return function e(n){if(n.length<=1)return n;var i=Math.floor(n.length/2),r=n.slice(0,i),o=n.slice(i);return function(e,n){for(var i=[],r=0,o=0,a=0;r!?|~^")),R=/[0-9a-f]/i,w=/^0x[0-9a-f]+$/i,x=/^0[0-7]+$/,N=/^0o[0-7]+$/i,k=/^0b[01]+$/i,I=/^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i,L=/^(0[xob])?[0-9a-f]+n$/i,P=E(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","**","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","**=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","??","||"]),V=E(n("  \n\r\t\f\v​           \u2028\u2029   \ufeff")),B=E(n("\n\r\u2028\u2029")),K=E(n(";]),:")),U=E(n("[{(,;:")),G=E(n("[]{}(),;:")),H={ID_Start:/[$A-Z_a-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B4\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]/,ID_Continue:/(?:[$0-9A-Z_a-z\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B4\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AD\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF])+/};function X(e,t){if(z(e.charCodeAt(t))){if(W(e.charCodeAt(t+1)))return e.charAt(t)+e.charAt(t+1)}else if(W(e.charCodeAt(t))&&z(e.charCodeAt(t-1)))return e.charAt(t-1)+e.charAt(t);return e.charAt(t)}function z(e){return e>=55296&&e<=56319}function W(e){return e>=56320&&e<=57343}function Y(e){return e>=48&&e<=57}function q(e){return H.ID_Start.test(e)}function $(e){return H.ID_Continue.test(e)}function j(e){return/^[a-z_$][a-z0-9_$]*$/i.test(e)}function Z(e,t){if(/^[a-z_$][a-z0-9_$]*$/i.test(e))return!0;if(!t&&/[\ud800-\udfff]/.test(e))return!1;var n=H.ID_Start.exec(e);return!(!n||0!==n.index)&&(!(e=e.slice(n[0].length))||!!(n=H.ID_Continue.exec(e))&&n[0].length===e.length)}function J(e,t=!0){if(!t&&e.includes("e"))return NaN;if(w.test(e))return parseInt(e.substr(2),16);if(x.test(e))return parseInt(e.substr(1),8);if(N.test(e))return parseInt(e.substr(2),8);if(k.test(e))return parseInt(e.substr(2),2);if(I.test(e))return parseFloat(e);var n=parseFloat(e);return n==e?n:void 0}class Q extends Error{constructor(e,t,n,i,r){super(),this.name="SyntaxError",this.message=e,this.filename=t,this.line=n,this.col=i,this.pos=r}}function ee(e,t,n,i,r){throw new Q(e,t,n,i,r)}function te(e,t,n){return e.type==t&&(null==n||e.value==n)}var ne={};function ie(e,t,n,i){var r={text:e,filename:t,pos:0,tokpos:0,line:1,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,brace_counter:0,template_braces:[],comments_before:[],directives:{},directive_stack:[]};function o(){return X(r.text,r.pos)}function a(e,t){var n=X(r.text,r.pos++);if(e&&!n)throw ne;return B.has(n)?(r.newline_before=r.newline_before||!t,++r.line,r.col=0,"\r"==n&&"\n"==o()&&(++r.pos,n="\n")):(n.length>1&&(++r.pos,++r.col),++r.col),n}function s(e){for(;e--;)a()}function u(e){return r.text.substr(r.pos,e.length)==e}function c(e,t){var n=r.text.indexOf(e,r.pos);if(t&&-1==n)throw ne;return n}function l(){r.tokline=r.line,r.tokcol=r.col,r.tokpos=r.pos}var f=!1,p=null;function _(n,i,o){r.regex_allowed="operator"==n&&!oe.has(i)||"keyword"==n&&F.has(i)||"punc"==n&&U.has(i)||"arrow"==n,"punc"==n&&"."==i?f=!0:o||(f=!1);var a={type:n,value:i,line:r.tokline,col:r.tokcol,pos:r.tokpos,endline:r.line,endcol:r.col,endpos:r.pos,nlb:r.newline_before,file:t};return/^(?:num|string|regexp)$/i.test(n)&&(a.raw=e.substring(a.pos,a.endpos)),o||(a.comments_before=r.comments_before,a.comments_after=r.comments_before=[]),r.newline_before=!1,a=new fe(a),o||(p=a),a}function d(){for(;V.has(o());)a()}function m(e){ee(e,t,r.tokline,r.tokcol,r.tokpos)}function h(e){var t=!1,n=!1,i=!1,r="."==e,s=!1,u=function(e){for(var t,n="",i=0;(t=o())&&e(t,i++);)n+=a();return n}((function(o,a){if(s)return!1;switch(o.charCodeAt(0)){case 98:case 66:return i=!0;case 111:case 79:case 120:case 88:return!i&&(i=!0);case 101:case 69:return!!i||!t&&(t=n=!0);case 45:return n||0==a&&!e;case 43:return n;case n=!1,46:return!(r||i||t)&&(r=!0)}return"n"===o?(s=!0,!0):R.test(o)}));if(e&&(u=e+u),x.test(u)&&H.has_directive("use strict")&&m("Legacy octal literals are not allowed in strict mode"),u.endsWith("n")){const e=u.slice(0,-1),t=J(e,w.test(e));if(!r&&L.test(u)&&!isNaN(t))return _("big_int",e);m("Invalid or unexpected token")}var c=J(u);if(!isNaN(c))return _("num",c);m("Invalid syntax: "+u)}function E(e){return e>="0"&&e<="7"}function g(e,t,n){var i,s=a(!0,e);switch(s.charCodeAt(0)){case 110:return"\n";case 114:return"\r";case 116:return"\t";case 98:return"\b";case 118:return"\v";case 102:return"\f";case 120:return String.fromCharCode(D(2,t));case 117:if("{"==o()){for(a(!0),"}"===o()&&m("Expecting hex-character between {}");"0"==o();)a(!0);var u,l=c("}",!0)-r.pos;return(l>6||(u=D(l,t))>1114111)&&m("Unicode reference out of bounds"),a(!0),(i=u)>65535?(i-=65536,String.fromCharCode(55296+(i>>10))+String.fromCharCode(i%1024+56320)):String.fromCharCode(i)}return String.fromCharCode(D(4,t));case 10:return"";case 13:if("\n"==o())return a(!0,e),""}if(E(s)){if(n&&t){"0"===s&&!E(o())||m("Octal escape sequences are not allowed in template strings")}return function(e,t){var n=o();n>="0"&&n<="7"&&(e+=a(!0))[0]<="3"&&(n=o())>="0"&&n<="7"&&(e+=a(!0));if("0"===e)return"\0";e.length>0&&H.has_directive("use strict")&&t&&m("Legacy octal escape sequences are not allowed in strict mode");return String.fromCharCode(parseInt(e,8))}(s,t)}return s}function D(e,t){for(var n=0;e>0;--e){if(!t&&isNaN(parseInt(o(),16)))return parseInt(n,16)||"";var i=a(!0);isNaN(parseInt(i,16))&&m("Invalid hex-character pattern in string"),n+=i}return parseInt(n,16)}var S=K("Unterminated string constant",(function(){for(var e=a(),t="";;){var n=a(!0,!0);if("\\"==n)n=g(!0,!0);else if("\r"==n||"\n"==n)m("Unterminated string constant");else if(n==e)break;t+=n}var i=_("string",t);return i.quote=e,i})),v=K("Unterminated template",(function(e){e&&r.template_braces.push(r.brace_counter);var t,n,i="",s="";for(a(!0,!0);"`"!=(t=a(!0,!0));){if("\r"==t)"\n"==o()&&++r.pos,t="\n";else if("$"==t&&"{"==o())return a(!0,!0),r.brace_counter++,(n=_(e?"template_head":"template_substitution",i)).raw=s,n;if(s+=t,"\\"==t){var u=r.pos;t=g(!0,!(p&&("name"===p.type||"punc"===p.type&&(")"===p.value||"]"===p.value))),!0),s+=r.text.substr(u,r.pos-u)}i+=t}return r.template_braces.pop(),(n=_(e?"template_head":"template_substitution",i)).raw=s,n.end=!0,n}));function A(e){var t,n=r.regex_allowed,i=function(){for(var e=r.text,t=r.pos,n=r.text.length;t"===o()?(a(),_("arrow","=>")):k("=");case 96:return v(!0);case 123:r.brace_counter++;break;case 125:if(r.brace_counter--,r.template_braces.length>0&&r.template_braces[r.template_braces.length-1]===r.brace_counter)return v(!1)}if(Y(c))return h();if(G.has(t))return _("punc",a());if(M.has(t))return k();if(92==c||q(t))return E=void 0,E=y(),f?_("name",E):C.has(E)?_("atom",E):b.has(E)?P.has(E)?_("operator",E):_("keyword",E):_("name",E);break}var E;m("Unexpected character '"+t+"'")}return H.next=a,H.peek=o,H.context=function(e){return e&&(r=e),r},H.add_directive=function(e){r.directive_stack[r.directive_stack.length-1].push(e),void 0===r.directives[e]?r.directives[e]=1:r.directives[e]++},H.push_directives_stack=function(){r.directive_stack.push([])},H.pop_directives_stack=function(){for(var e=r.directive_stack[r.directive_stack.length-1],t=0;t0},H}var re=E(["typeof","void","delete","--","++","!","~","-","+"]),oe=E(["--","++"]),ae=E(["=","+=","-=","/=","*=","**=","%=",">>=","<<=",">>>=","|=","^=","&="]),se=function(e,t){for(var n=0;n","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"],["**"]],{}),ue=E(["atom","num","big_int","string","regexp","name"]);function ce(e,t){const n=new Map;t=o(t,{bare_returns:!1,ecma:2017,expression:!1,filename:null,html5_comments:!0,module:!1,shebang:!0,strict:!1,toplevel:null},!0);var i={input:"string"==typeof e?ie(e,t.filename,t.html5_comments,t.shebang):e,token:null,prev:null,peeked:null,in_function:0,in_async:-1,in_generator:-1,in_directives:!0,in_loop:0,labels:[]};function r(e,t){return te(i.token,e,t)}function a(){return i.peeked||(i.peeked=i.input())}function s(){return i.prev=i.token,i.peeked||a(),i.token=i.peeked,i.peeked=null,i.in_directives=i.in_directives&&("string"==i.token.type||r("punc",";")),i.token}function u(){return i.prev}function c(e,t,n,r){var o=i.input.context();ee(e,o.filename,null!=t?t:o.tokline,null!=n?n:o.tokcol,null!=r?r:o.tokpos)}function l(e,t){c(t,e.line,e.col)}function f(e){null==e&&(e=i.token),l(e,"Unexpected token: "+e.type+" ("+e.value+")")}function p(e,t){if(r(e,t))return s();l(i.token,"Unexpected token "+i.token.type+" «"+i.token.value+"», expected "+e+" «"+t+"»")}function _(e){return p("punc",e)}function d(e){return e.nlb||!e.comments_before.every(e=>!e.nlb)}function m(){return!t.strict&&(r("eof")||r("punc","}")||d(i.token))}function h(){return i.in_generator===i.in_function}function E(){return i.in_async===i.in_function}function g(e){r("punc",";")?s():e||m()||f()}function D(){_("(");var e=qe(!0);return _(")"),e}function S(e){return function(...t){const n=i.token,r=e(...t);return r.start=n,r.end=u(),r}}function v(){(r("operator","/")||r("operator","/="))&&(i.peeked=null,i.token=i.input(i.token.value.substr(1)))}i.token=s();var A=S((function(e,n,o){switch(v(),i.token.type){case"string":if(i.in_directives){var h=a();!i.token.raw.includes("\\")&&(te(h,"punc",";")||te(h,"punc","}")||d(h)||te(h,"eof"))?i.input.add_directive(i.token.value):i.in_directives=!1}var S=i.in_directives,y=T();return S&&y.body instanceof fn?new me(y.body):y;case"template_head":case"num":case"big_int":case"regexp":case"operator":case"atom":return T();case"name":if("async"==i.token.value&&te(a(),"keyword","function"))return s(),s(),n&&c("functions are not allowed as the body of a loop"),F(Be,!1,!0,e);if("import"==i.token.value&&!te(a(),"punc","(")){s();var C=function(){var e,t,n=u();r("name")&&(e=le(en));r("punc",",")&&s();((t=J(!0))||e)&&p("name","from");var o=i.token;"string"!==o.type&&f();return s(),new _t({start:n,imported_name:e,imported_names:t,module_name:new fn({start:o,value:o.value,quote:o.quote,end:o}),end:i.token})}();return g(),C}return te(a(),"punc",":")?function(){var e=le(nn);"await"===e.name&&E()&&l(i.prev,"await cannot be used as label inside async function");i.labels.some(t=>t.name===e.name)&&c("Label "+e.name+" defined twice");_(":"),i.labels.push(e);var t=A();i.labels.pop(),t instanceof ye||e.references.forEach((function(t){t instanceof je&&(t=t.label.start,c("Continue label `"+e.name+"` refers to non-IterationStatement.",t.line,t.col,t.pos))}));return new Te({body:t,label:e})}():T();case"punc":switch(i.token.value){case"{":return new Se({start:i.token,body:N(),end:u()});case"[":case"(":return T();case";":return i.in_directives=!1,s(),new ve;default:f()}case"keyword":switch(i.token.value){case"break":return s(),b($e);case"continue":return s(),b(je);case"debugger":return s(),g(),new de;case"do":s();var O=tt(A);p("keyword","while");var M=D();return g(!0),new Ce({body:O,condition:M});case"while":return s(),new Oe({condition:D(),body:tt((function(){return A(!1,!0)}))});case"for":return s(),function(){var e="`for await` invalid in this context",t=i.token;"name"==t.type&&"await"==t.value?(E()||l(t,e),s()):t=!1;_("(");var n=null;if(r("punc",";"))t&&l(t,e);else{n=r("keyword","var")?(s(),L(!0)):r("keyword","let")?(s(),P(!0)):r("keyword","const")?(s(),V(!0)):qe(!0,!0);var o=r("operator","in"),a=r("name","of");if(t&&!a&&l(t,e),o||a)return n instanceof st?n.definitions.length>1&&l(n.start,"Only one variable declaration allowed in for..in loop"):xe(n)||(n=Xe(n))instanceof Ke||l(n.start,"Invalid left-hand side in for..in loop"),s(),o?function(e){var t=qe(!0);return _(")"),new Me({init:e,object:t,body:tt((function(){return A(!1,!0)}))})}(n):function(e,t){var n=e instanceof st?e.definitions[0].name:null,i=qe(!0);return _(")"),new Re({await:t,init:e,name:n,object:i,body:tt((function(){return A(!1,!0)}))})}(n,!!t)}return function(e){_(";");var t=r("punc",";")?null:qe(!0);_(";");var n=r("punc",")")?null:qe(!0);return _(")"),new Fe({init:e,condition:t,step:n,body:tt((function(){return A(!1,!0)}))})}(n)}();case"class":return s(),n&&c("classes are not allowed as the body of a loop"),o&&c("classes are not allowed as the body of an if"),q(Pt);case"function":return s(),n&&c("functions are not allowed as the body of a loop"),F(Be,!1,!1,e);case"if":return s(),function(){var e=D(),t=A(!1,!1,!0),n=null;r("keyword","else")&&(s(),n=A(!1,!1,!0));return new Qe({condition:e,body:t,alternative:n})}();case"return":0!=i.in_function||t.bare_returns||c("'return' outside of function"),s();var w=null;return r("punc",";")?s():m()||(w=qe(!0),g()),new We({value:w});case"switch":return s(),new et({expression:D(),body:tt(k)});case"throw":s(),d(i.token)&&c("Illegal newline after 'throw'");w=qe(!0);return g(),new Ye({value:w});case"try":return s(),function(){var e=N(),t=null,n=null;if(r("keyword","catch")){var o=i.token;if(s(),r("punc","{"))var a=null;else{_("(");a=R(void 0,Qt);_(")")}t=new ot({start:o,argname:a,body:N(),end:u()})}if(r("keyword","finally")){o=i.token;s(),n=new at({start:o,body:N(),end:u()})}t||n||c("Missing catch/finally blocks");return new rt({body:e,bcatch:t,bfinally:n})}();case"var":s();C=L();return g(),C;case"let":s();C=P();return g(),C;case"const":s();C=V();return g(),C;case"with":return i.input.has_directive("use strict")&&c("Strict mode may not include a with statement"),s(),new we({expression:D(),body:A()});case"export":if(!te(a(),"punc","(")){s();C=function(){var e,t,n,o,c,l=i.token;if(r("keyword","default"))e=!0,s();else if(t=J(!1)){if(r("name","from")){s();var p=i.token;return"string"!==p.type&&f(),s(),new dt({start:l,is_default:e,exported_names:t,module_name:new fn({start:p,value:p.value,quote:p.quote,end:p}),end:u()})}return new dt({start:l,is_default:e,exported_names:t,end:u()})}r("punc","{")||e&&(r("keyword","class")||r("keyword","function"))&&te(a(),"punc")?(o=qe(!1),g()):(n=A(e))instanceof st&&e?f(n.start):n instanceof st||n instanceof Ie||n instanceof Pt?c=n:n instanceof he?o=n.body:f(n.start);return new dt({start:l,is_default:e,exported_value:o,exported_definition:c,end:u()})}();return r("punc",";")&&g(),C}}}f()}));function T(e){return new he({body:(e=qe(!0),g(),e)})}function b(e){var t,n=null;m()||(n=le(sn,!0)),null!=n?((t=i.labels.find(e=>e.name===n.name))||c("Undefined label "+n.name),n.thedef=t):0==i.in_loop&&c(e.TYPE+" not inside a loop or switch"),g();var r=new e({label:n});return t&&t.references.push(r),r}var C=function(e,t,n){d(i.token)&&c("Unexpected newline before arrow (=>)"),p("arrow","=>");var o=x(r("punc","{"),!1,n),a=o instanceof Array&&o.length?o[o.length-1].end:o instanceof Array?e:o.end;return new Ve({start:e,end:a,async:n,argnames:t,body:o})},F=function(e,t,n,i){var o=e===Be,a=r("operator","*");a&&s();var c=r("name")?le(o?Yt:jt):null;o&&!c&&(i?e=Pe:f()),!c||e===Le||c instanceof Ut||f(u());var l=[],p=x(!0,a||t,n,c,l);return new e({start:l.start,end:p.end,is_generator:a,async:n,name:c,argnames:l,body:p})};function M(e,t){var n=new Set,i=!1,r=!1,o=!1,a=!!t,s={add_parameter:function(t){if(n.has(t.value))!1===i&&(i=t),s.check_strict();else if(n.add(t.value),e)switch(t.value){case"arguments":case"eval":case"yield":a&&l(t,"Unexpected "+t.value+" identifier as parameter inside strict mode");break;default:O.has(t.value)&&f()}},mark_default_assignment:function(e){!1===r&&(r=e)},mark_spread:function(e){!1===o&&(o=e)},mark_strict_mode:function(){a=!0},is_strict:function(){return!1!==r||!1!==o||a},check_strict:function(){s.is_strict()&&!1!==i&&l(i,"Parameter "+i.value+" was used already")}};return s}function R(e,t){var n,o=!1;return void 0===e&&(e=M(!0,i.input.has_directive("use strict"))),r("expand","...")&&(o=i.token,e.mark_spread(i.token),s()),n=w(e,t),r("operator","=")&&!1===o&&(e.mark_default_assignment(i.token),s(),n=new Ot({start:n.start,left:n,operator:"=",right:qe(!1),end:i.token})),!1!==o&&(r("punc",")")||f(),n=new ke({start:o,expression:n,end:o})),e.check_strict(),n}function w(e,t){var n,o=[],l=!0,p=!1,d=i.token;if(void 0===e&&(e=M(!1,i.input.has_directive("use strict"))),t=void 0===t?Wt:t,r("punc","[")){for(s();!r("punc","]");){if(l?l=!1:_(","),r("expand","...")&&(p=!0,n=i.token,e.mark_spread(i.token),s()),r("punc"))switch(i.token.value){case",":o.push(new Dn({start:i.token,end:i.token}));continue;case"]":break;case"[":case"{":o.push(w(e,t));break;default:f()}else r("name")?(e.add_parameter(i.token),o.push(le(t))):c("Invalid function parameter");r("operator","=")&&!1===p&&(e.mark_default_assignment(i.token),s(),o[o.length-1]=new Ot({start:o[o.length-1].start,left:o[o.length-1],operator:"=",right:qe(!1),end:i.token})),p&&(r("punc","]")||c("Rest element must be last element"),o[o.length-1]=new ke({start:n,expression:o[o.length-1],end:n}))}return _("]"),e.check_strict(),new Ke({start:d,names:o,is_array:!0,end:u()})}if(r("punc","{")){for(s();!r("punc","}");){if(l?l=!1:_(","),r("expand","...")&&(p=!0,n=i.token,e.mark_spread(i.token),s()),r("name")&&(te(a(),"punc")||te(a(),"operator"))&&[",","}","="].includes(a().value)){e.add_parameter(i.token);var m=u(),h=le(t);p?o.push(new ke({start:n,expression:h,end:h.end})):o.push(new wt({start:m,key:h.name,value:h,end:h.end}))}else{if(r("punc","}"))continue;var E=i.token,g=Q();null===g?f(u()):"name"!==u().type||r("punc",":")?(_(":"),o.push(new wt({start:E,quote:E.quote,key:g,value:w(e,t),end:u()}))):o.push(new wt({start:u(),key:g,value:new t({start:u(),name:g,end:u()}),end:u()}))}p?r("punc","}")||c("Rest element must be last element"):r("operator","=")&&(e.mark_default_assignment(i.token),s(),o[o.length-1].value=new Ot({start:o[o.length-1].value.start,left:o[o.length-1].value,operator:"=",right:qe(!1),end:i.token}))}return _("}"),e.check_strict(),new Ke({start:d,names:o,is_array:!1,end:u()})}if(r("name"))return e.add_parameter(i.token),le(t);c("Invalid function parameter")}function x(e,n,o,a,u){var c=i.in_loop,l=i.labels,p=i.in_generator,d=i.in_async;if(++i.in_function,n&&(i.in_generator=i.in_function),o&&(i.in_async=i.in_function),u&&function(e){var n=M(!0,i.input.has_directive("use strict"));for(_("(");!r("punc",")");){var o=R(n);if(e.push(o),r("punc",")")||(_(","),r("punc",")")&&t.ecma<2017&&f()),o instanceof ke)break}s()}(u),e&&(i.in_directives=!0),i.in_loop=0,i.labels=[],e){i.input.push_directives_stack();var m=N();a&&ce(a),u&&u.forEach(ce),i.input.pop_directives_stack()}else m=[new We({start:i.token,value:qe(!1),end:i.token})];return--i.in_function,i.in_loop=c,i.labels=l,i.in_generator=p,i.in_async=d,m}function N(){_("{");for(var e=[];!r("punc","}");)r("eof")&&f(),e.push(A());return s(),e}function k(){_("{");for(var e,t=[],n=null,o=null;!r("punc","}");)r("eof")&&f(),r("keyword","case")?(o&&(o.end=u()),n=[],o=new it({start:(e=i.token,s(),e),expression:qe(!0),body:n}),t.push(o),_(":")):r("keyword","default")?(o&&(o.end=u()),n=[],o=new nt({start:(e=i.token,s(),_(":"),e),body:n}),t.push(o)):(n||f(),n.push(A()));return o&&(o.end=u()),s(),t}function I(e,t){for(var n,o=[];;){var a="var"===t?Gt:"const"===t?Xt:"let"===t?zt:null;if(r("punc","{")||r("punc","[")?n=new ft({start:i.token,name:w(void 0,a),value:r("operator","=")?(p("operator","="),qe(!1,e)):null,end:u()}):"import"==(n=new ft({start:i.token,name:le(a),value:r("operator","=")?(s(),qe(!1,e)):e||"const"!==t?null:c("Missing initializer in const declaration"),end:u()})).name.name&&c("Unexpected token: import"),o.push(n),!r("punc",","))break;s()}return o}var L=function(e){return new ut({start:u(),definitions:I(e,"var"),end:u()})},P=function(e){return new ct({start:u(),definitions:I(e,"let"),end:u()})},V=function(e){return new lt({start:u(),definitions:I(e,"const"),end:u()})};function B(){var e,t=i.token;switch(t.type){case"name":e=ne(rn);break;case"num":e=new pn({start:t,end:t,value:t.value});break;case"big_int":e=new _n({start:t,end:t,value:t.value});break;case"string":e=new fn({start:t,end:t,value:t.value,quote:t.quote});break;case"regexp":e=new dn({start:t,end:t,value:t.value});break;case"atom":switch(t.value){case"false":e=new An({start:t,end:t});break;case"true":e=new Tn({start:t,end:t});break;case"null":e=new hn({start:t,end:t})}}return s(),e}function U(e,t,n,i){var r=function(e,t){return t?new Ot({start:e.start,left:e,operator:"=",right:t,end:t.end}):e};return e instanceof Mt?r(new Ke({start:e.start,end:e.end,is_array:!1,names:e.properties.map(U)}),i):e instanceof wt?(e.value=U(e.value,0,[e.key]),r(e,i)):e instanceof Dn?e:e instanceof Ke?(e.names=e.names.map(U),r(e,i)):e instanceof rn?r(new Wt({name:e.name,start:e.start,end:e.end}),i):e instanceof ke?(e.expression=U(e.expression),r(e,i)):e instanceof Ft?r(new Ke({start:e.start,end:e.end,is_array:!0,names:e.elements.map(U)}),i):e instanceof Ct?r(U(e.left,void 0,void 0,e.right),i):e instanceof Ot?(e.left=U(e.left,0,[e.left]),e):void c("Invalid function parameter",e.start.line,e.start.col)}var G=function(e,o){if(r("operator","new"))return function(e){var n=i.token;if(p("operator","new"),r("punc","."))return s(),p("name","target"),_e(new Kt({start:n,end:u()}),e);var o,a=G(!1);r("punc","(")?(s(),o=X(")",t.ecma>=2017)):o=[];var c=new ht({start:n,expression:a,args:o,end:u()});return fe(c),_e(c,e)}(e);var c,l=i.token,d=r("name","async")&&"["!=(c=a()).value&&"arrow"!=c.type&&B();if(r("punc")){switch(i.token.value){case"(":if(d&&!e)break;var m=function(e,n){var o,a,c,l=[];for(_("(");!r("punc",")");)o&&f(o),r("expand","...")?(o=i.token,n&&(a=i.token),s(),l.push(new ke({start:u(),expression:qe(),end:i.token}))):l.push(qe()),r("punc",")")||(_(","),r("punc",")")&&(t.ecma<2017&&f(),c=u(),n&&(a=c)));return _(")"),e&&r("arrow","=>")?o&&c&&f(c):a&&f(a),l}(o,!d);if(o&&r("arrow","=>"))return C(l,m.map(U),!!d);var h=d?new mt({expression:d,args:m}):1==m.length?m[0]:new Et({expressions:m});if(h.start){const e=l.comments_before.length;if(n.set(l,e),h.start.comments_before.unshift(...l.comments_before),l.comments_before=h.start.comments_before,0==e&&l.comments_before.length>0){var E=l.comments_before[0];E.nlb||(E.nlb=l.nlb,l.nlb=!1)}l.comments_after=h.start.comments_after}h.start=l;var g=u();return h.end&&(g.comments_before=h.end.comments_before,h.end.comments_after.push(...g.comments_after),g.comments_after=h.end.comments_after),h.end=g,h instanceof mt&&fe(h),_e(h,e);case"[":return _e(z(),e);case"{":return _e(Y(),e)}d||f()}if(o&&r("name")&&te(a(),"arrow")){var D=new Wt({name:i.token.value,start:l,end:l});return s(),C(l,[D],!!d)}if(r("keyword","function")){s();var S=F(Pe,!1,!!d);return S.start=l,S.end=u(),_e(S,e)}if(d)return _e(d,e);if(r("keyword","class")){s();var v=q(Vt);return v.start=l,v.end=u(),_e(v,e)}return r("template_head")?_e(H(),e):ue.has(i.token.type)?_e(B(),e):void f()};function H(){var e=[],t=i.token;for(e.push(new He({start:i.token,raw:i.token.raw,value:i.token.value,end:i.token}));!i.token.end;)s(),v(),e.push(qe(!0)),te("template_substitution")||f(),e.push(new He({start:i.token,raw:i.token.raw,value:i.token.value,end:i.token}));return s(),new Ge({start:t,segments:e,end:i.token})}function X(e,t,n){for(var o=!0,a=[];!r("punc",e)&&(o?o=!1:_(","),!t||!r("punc",e));)r("punc",",")&&n?a.push(new Dn({start:i.token,end:i.token})):r("expand","...")?(s(),a.push(new ke({start:u(),expression:qe(),end:i.token}))):a.push(qe(!1));return s(),a}var z=S((function(){return _("["),new Ft({elements:X("]",!t.strict,!0)})})),W=S((e,t)=>F(Le,e,t)),Y=S((function(){var e=i.token,n=!0,o=[];for(_("{");!r("punc","}")&&(n?n=!1:_(","),t.strict||!r("punc","}"));)if("expand"!=(e=i.token).type){var a,c=Q();if(r("punc",":"))null===c?f(u()):(s(),a=qe(!1));else{var l=$(c,e);if(l){o.push(l);continue}a=new rn({start:u(),name:c,end:u()})}r("operator","=")&&(s(),a=new Ct({start:e,left:a,operator:"=",right:qe(!1),end:u()})),o.push(new wt({start:e,quote:e.quote,key:c instanceof pe?c:""+c,value:a,end:u()}))}else s(),o.push(new ke({start:e,expression:qe(!1),end:u()}));return s(),new Mt({properties:o})}));function q(e){var t,n,o,a,c=[];for(i.input.push_directives_stack(),i.input.add_directive("use strict"),"name"==i.token.type&&"extends"!=i.token.value&&(o=le(e===Pt?Zt:Jt)),e!==Pt||o||f(),"extends"==i.token.value&&(s(),a=qe(!0)),_("{");r("punc",";");)s();for(;!r("punc","}");)for(t=i.token,(n=$(Q(),t,!0))||f(),c.push(n);r("punc",";");)s();return i.input.pop_directives_stack(),s(),new e({start:t,name:o,extends:a,properties:c,end:u()})}function $(e,t,n){var o=function(e,t){return"string"==typeof e||"number"==typeof e?new qt({start:t,name:""+e,end:u()}):(null===e&&f(),e)};var a=!1,c=!1,l=!1,p=t;if(n&&"static"===e&&!r("punc","(")&&(c=!0,p=i.token,e=Q()),"async"!==e||r("punc","(")||r("punc",",")||r("punc","}")||r("operator","=")||(a=!0,p=i.token,e=Q()),null===e&&(l=!0,p=i.token,null===(e=Q())&&f()),r("punc","("))return e=o(e,t),new kt({start:t,static:c,is_generator:l,async:a,key:e,quote:e instanceof qt?p.quote:void 0,value:W(l,a),end:u()});const _=i.token;if("get"==e){if(!r("punc")||r("punc","["))return e=o(Q(),t),new Nt({start:t,static:c,key:e,quote:e instanceof qt?_.quote:void 0,value:W(),end:u()})}else if("set"==e&&(!r("punc")||r("punc","[")))return e=o(Q(),t),new xt({start:t,static:c,key:e,quote:e instanceof qt?_.quote:void 0,value:W(),end:u()});if(n){const n=(e=>"string"==typeof e||"number"==typeof e?new $t({start:p,end:p,name:""+e}):(null===e&&f(),e))(e),i=n instanceof $t?p.quote:void 0;if(r("operator","="))return s(),new Lt({start:t,static:c,quote:i,key:n,value:qe(!1),end:u()});if(r("name")||r("punc",";")||r("punc","}"))return new Lt({start:t,static:c,quote:i,key:n,end:u()})}}function j(e){function t(e){return new e({name:Q(),start:u(),end:u()})}var n,o,a=e?tn:an,c=e?en:on,l=i.token;return e?n=t(a):o=t(c),r("name","as")?(s(),e?o=t(c):n=t(a)):e?o=new c(n):n=new a(o),new pt({start:l,foreign_name:n,name:o,end:u()})}function Z(e,t){var n,r=e?tn:an,o=e?en:on,a=i.token,s=u();return t=t||new o({name:"*",start:a,end:s}),n=new r({name:"*",start:a,end:s}),new pt({start:a,foreign_name:n,name:t,end:s})}function J(e){var t;if(r("punc","{")){for(s(),t=[];!r("punc","}");)t.push(j(e)),r("punc",",")&&s();s()}else if(r("operator","*")){var n;s(),e&&r("name","as")&&(s(),n=le(e?en:an)),t=[Z(e,n)]}return t}function Q(){var e=i.token;switch(e.type){case"punc":if("["===e.value){s();var t=qe(!1);return _("]"),t}f(e);case"operator":if("*"===e.value)return s(),null;["delete","in","instanceof","new","typeof","void"].includes(e.value)||f(e);case"name":"yield"==e.value&&(h()?l(e,"Yield cannot be used as identifier inside generators"):te(a(),"punc",":")||te(a(),"punc","(")||!i.input.has_directive("use strict")||l(e,"Unexpected yield identifier inside strict mode"));case"string":case"num":case"big_int":case"keyword":case"atom":return s(),e.value;default:f(e)}}function ne(e){var t=i.token.value;return new("this"==t?un:"super"==t?cn:e)({name:String(t),start:i.token,end:i.token})}function ce(e){var t=e.name;h()&&"yield"==t&&l(e.start,"Yield cannot be used as identifier inside generators"),i.input.has_directive("use strict")&&("yield"==t&&l(e.start,"Unexpected yield identifier inside strict mode"),e instanceof Ut&&("arguments"==t||"eval"==t)&&l(e.start,"Unexpected "+t+" in strict mode"))}function le(e,t){if(!r("name"))return t||c("Name expected"),null;var n=ne(e);return ce(n),s(),n}function fe(e){var t=e.start,i=t.comments_before;const r=n.get(t);for(var o=null!=r?r:i.length;--o>=0;){var a=i[o];if(/[@#]__/.test(a.value)){if(/[@#]__PURE__/.test(a.value)){y(e,Mn);break}if(/[@#]__INLINE__/.test(a.value)){y(e,Rn);break}if(/[@#]__NOINLINE__/.test(a.value)){y(e,wn);break}}}}var _e=function(e,t){var n,o=e.start;if(r("punc","."))return s(),_e(new Dt({start:o,expression:e,property:(n=i.token,"name"!=n.type&&f(),s(),n.value),end:u()}),t);if(r("punc","[")){s();var a=qe(!0);return _("]"),_e(new St({start:o,expression:e,property:a,end:u()}),t)}if(t&&r("punc","(")){s();var c=new mt({start:o,expression:e,args:Ee(),end:u()});return fe(c),_e(c,!0)}return r("template_head")?_e(new Ue({start:o,prefix:e,template_string:H(),end:u()}),t):e};function Ee(){for(var e=[];!r("punc",")");)r("expand","...")?(s(),e.push(new ke({start:u(),expression:qe(!1),end:u()}))):e.push(qe(!1)),r("punc",")")||(_(","),r("punc",")")&&t.ecma<2017&&f());return s(),e}var ge=function(e,t){var n=i.token;if("name"==n.type&&"await"==n.value){if(E())return s(),E()||c("Unexpected await expression outside async function",i.prev.line,i.prev.col,i.prev.pos),new Ze({start:u(),end:i.token,expression:ge(!0)});i.input.has_directive("use strict")&&l(i.token,"Unexpected await identifier inside strict mode")}if(r("operator")&&re.has(n.value)){s(),v();var o=De(At,n,ge(e));return o.start=n,o.end=u(),o}for(var a=G(e,t);r("operator")&&oe.has(i.token.value)&&!d(i.token);)a instanceof Ve&&f(),(a=De(Tt,i.token,a)).start=n,a.end=i.token,s();return a};function De(e,t,n){var r=t.value;switch(r){case"++":case"--":xe(n)||c("Invalid use of "+r+" operator",t.line,t.col,t.pos);break;case"delete":n instanceof rn&&i.input.has_directive("use strict")&&c("Calling delete on expression not allowed in strict mode",n.start.line,n.start.col,n.start.pos)}return new e({operator:r,expression:n})}var Ae=function(e,t,n){var o=r("operator")?i.token.value:null;"in"==o&&n&&(o=null),"**"==o&&e instanceof At&&!te(e.start,"punc","(")&&"--"!==e.operator&&"++"!==e.operator&&f(e.start);var a=null!=o?se[o]:null;if(null!=a&&(a>t||"**"===o&&t===a)){s();var u=Ae(ge(!0),a,n);return Ae(new yt({start:e.start,left:e,operator:o,right:u,end:u.end}),t,n)}return e};var be=function(e){var t=i.token,n=function(e){return Ae(ge(!0,!0),0,e)}(e);if(r("operator","?")){s();var o=qe(!1);return _(":"),new bt({start:t,condition:n,consequent:o,alternative:qe(!1,e),end:u()})}return n};function xe(e){return e instanceof gt||e instanceof rn}function Xe(e){if(e instanceof Mt)e=new Ke({start:e.start,names:e.properties.map(Xe),is_array:!1,end:e.end});else if(e instanceof Ft){for(var t=[],n=0;n=0;)o+="this."+t[a]+" = props."+t[a]+";";const s=i&&Object.create(i.prototype);(s&&s.initialize||n&&n.initialize)&&(o+="this.initialize();"),o+="}",o+="this.flags = 0;",o+="}";var u=new Function(o)();if(s&&(u.prototype=s,u.BASE=i),i&&i.SUBCLASSES.push(u),u.prototype.CTOR=u,u.prototype.constructor=u,u.PROPS=t||null,u.SELF_PROPS=r,u.SUBCLASSES=[],e&&(u.prototype.TYPE=u.TYPE=e),n)for(a in n)D(n,a)&&("$"===a[0]?u[a.substr(1)]=n[a]:u.prototype[a]=n[a]);return u.DEFMETHOD=function(e,t){this.prototype[e]=t},u}var fe=le("Token","type value line col pos endline endcol endpos nlb comments_before comments_after file raw quote end",{},null),pe=le("Node","start end",{_clone:function(e){if(e){var t=this.clone();return t.transform(new Fn((function(e){if(e!==t)return e.clone(!0)})))}return new this.CTOR(this)},clone:function(e){return this._clone(e)},$documentation:"Base class of all AST nodes",$propdoc:{start:"[AST_Token] The first token of this node",end:"[AST_Token] The last token of this node"},_walk:function(e){return e._visit(this)},walk:function(e){return this._walk(e)},_children_backwards:()=>{}},null);pe.warn_function=null,pe.warn=function(e,t){pe.warn_function&&pe.warn_function(d(e,t))};var _e=le("Statement",null,{$documentation:"Base class of all statements"}),de=le("Debugger",null,{$documentation:"Represents a debugger statement"},_e),me=le("Directive","value quote",{$documentation:'Represents a directive, like "use strict";',$propdoc:{value:"[string] The value of this directive as a plain string (it's not an AST_String!)",quote:"[string] the original quote character"}},_e),he=le("SimpleStatement","body",{$documentation:"A statement consisting of an expression, i.e. a = 1 + 2",$propdoc:{body:"[AST_Node] an expression node (should not be instanceof AST_Statement)"},_walk:function(e){return e._visit(this,(function(){this.body._walk(e)}))},_children_backwards(e){e(this.body)}},_e);function Ee(e,t){const n=e.body;for(var i=0,r=n.length;i SymbolDef for all variables/functions defined in this scope",functions:"[Map/S] like `variables`, but only lists function declarations",uses_with:"[boolean/S] tells whether this scope uses the `with` statement",uses_eval:"[boolean/S] tells whether this scope contains a direct call to the global `eval`",parent_scope:"[AST_Scope?/S] link to the parent scope",enclosed:"[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",cname:"[integer/S] current index for mangling variables (used internally by the mangler)"},get_defun_scope:function(){for(var e=this;e.is_block_scope();)e=e.parent_scope;return e},clone:function(e){var t=this._clone(e);return this.variables&&(t.variables=new Map(this.variables)),this.functions&&(t.functions=new Map(this.functions)),this.enclosed&&(t.enclosed=this.enclosed.slice()),this._block_scope&&(t._block_scope=this._block_scope),t},pinned:function(){return this.uses_eval||this.uses_with}},De),Ne=le("Toplevel","globals",{$documentation:"The toplevel scope",$propdoc:{globals:"[Map/S] a map of name -> SymbolDef for all undeclared names"},wrap_commonjs:function(e){var t=this.body,n="(function(exports){'$ORIG';})(typeof "+e+"=='undefined'?("+e+"={}):"+e+");";return n=(n=ce(n)).transform(new Fn((function(e){if(e instanceof me&&"$ORIG"==e.value)return f.splice(t)})))},wrap_enclose:function(e){"string"!=typeof e&&(e="");var t=e.indexOf(":");t<0&&(t=e.length);var n=this.body;return ce(["(function(",e.slice(0,t),'){"$ORIG"})(',e.slice(t+1),")"].join("")).transform(new Fn((function(e){if(e instanceof me&&"$ORIG"==e.value)return f.splice(n)})))}},xe),ke=le("Expansion","expression",{$documentation:"An expandible argument, such as ...rest, a splat, such as [1,2,...all], or an expansion in a variable declaration, such as var [first, ...rest] = list",$propdoc:{expression:"[AST_Node] the thing to be expanded"},_walk:function(e){return e._visit(this,(function(){this.expression.walk(e)}))},_children_backwards(e){e(this.expression)}}),Ie=le("Lambda","name argnames uses_arguments is_generator async",{$documentation:"Base class for functions",$propdoc:{name:"[AST_SymbolDeclaration?] the name of this function",argnames:"[AST_SymbolFunarg|AST_Destructuring|AST_Expansion|AST_DefaultAssign*] array of function arguments, destructurings, or expanding arguments",uses_arguments:"[boolean/S] tells whether this function accesses the arguments array",is_generator:"[boolean] is this a generator method",async:"[boolean] is this method async"},args_as_names:function(){for(var e=[],t=0;t b)"},Ie),Be=le("Defun",null,{$documentation:"A function definition"},Ie),Ke=le("Destructuring","names is_array",{$documentation:"A destructuring of several names. Used in destructuring assignment and with destructuring function argument names",$propdoc:{names:"[AST_Node*] Array of properties or elements",is_array:"[Boolean] Whether the destructuring represents an object or array"},_walk:function(e){return e._visit(this,(function(){this.names.forEach((function(t){t._walk(e)}))}))},_children_backwards(e){let t=this.names.length;for(;t--;)e(this.names[t])},all_symbols:function(){var e=[];return this.walk(new On((function(t){t instanceof Bt&&e.push(t)}))),e}}),Ue=le("PrefixedTemplateString","template_string prefix",{$documentation:"A templatestring with a prefix, such as String.raw`foobarbaz`",$propdoc:{template_string:"[AST_TemplateString] The template string",prefix:"[AST_SymbolRef|AST_PropAccess] The prefix, which can be a symbol such as `foo` or a dotted expression such as `String.raw`."},_walk:function(e){return e._visit(this,(function(){this.prefix._walk(e),this.template_string._walk(e)}))},_children_backwards(e){e(this.template_string),e(this.prefix)}}),Ge=le("TemplateString","segments",{$documentation:"A template string literal",$propdoc:{segments:"[AST_Node*] One or more segments, starting with AST_TemplateSegment. AST_Node may follow AST_TemplateSegment, but each AST_Node must be followed by AST_TemplateSegment."},_walk:function(e){return e._visit(this,(function(){this.segments.forEach((function(t){t._walk(e)}))}))},_children_backwards(e){let t=this.segments.length;for(;t--;)e(this.segments[t])}}),He=le("TemplateSegment","value raw",{$documentation:"A segment of a template string literal",$propdoc:{value:"Content of the segment",raw:"Raw content of the segment"}}),Xe=le("Jump",null,{$documentation:"Base class for “jumps” (for now that's `return`, `throw`, `break` and `continue`)"},_e),ze=le("Exit","value",{$documentation:"Base class for “exits” (`return` and `throw`)",$propdoc:{value:"[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return"},_walk:function(e){return e._visit(this,this.value&&function(){this.value._walk(e)})},_children_backwards(e){this.value&&e(this.value)}},Xe),We=le("Return",null,{$documentation:"A `return` statement"},ze),Ye=le("Throw",null,{$documentation:"A `throw` statement"},ze),qe=le("LoopControl","label",{$documentation:"Base class for loop control statements (`break` and `continue`)",$propdoc:{label:"[AST_LabelRef?] the label, or null if none"},_walk:function(e){return e._visit(this,this.label&&function(){this.label._walk(e)})},_children_backwards(e){this.label&&e(this.label)}},Xe),$e=le("Break",null,{$documentation:"A `break` statement"},qe),je=le("Continue",null,{$documentation:"A `continue` statement"},qe),Ze=le("Await","expression",{$documentation:"An `await` statement",$propdoc:{expression:"[AST_Node] the mandatory expression being awaited"},_walk:function(e){return e._visit(this,(function(){this.expression._walk(e)}))},_children_backwards(e){e(this.expression)}}),Je=le("Yield","expression is_star",{$documentation:"A `yield` statement",$propdoc:{expression:"[AST_Node?] the value returned or thrown by this statement; could be null (representing undefined) but only when is_star is set to false",is_star:"[Boolean] Whether this is a yield or yield* statement"},_walk:function(e){return e._visit(this,this.expression&&function(){this.expression._walk(e)})},_children_backwards(e){this.expression&&e(this.expression)}}),Qe=le("If","condition alternative",{$documentation:"A `if` statement",$propdoc:{condition:"[AST_Node] the `if` condition",alternative:"[AST_Statement?] the `else` part, or null if not present"},_walk:function(e){return e._visit(this,(function(){this.condition._walk(e),this.body._walk(e),this.alternative&&this.alternative._walk(e)}))},_children_backwards(e){this.alternative&&e(this.alternative),e(this.body),e(this.condition)}},Ae),et=le("Switch","expression",{$documentation:"A `switch` statement",$propdoc:{expression:"[AST_Node] the `switch` “discriminant”"},_walk:function(e){return e._visit(this,(function(){this.expression._walk(e),Ee(this,e)}))},_children_backwards(e){let t=this.body.length;for(;t--;)e(this.body[t]);e(this.expression)}},De),tt=le("SwitchBranch",null,{$documentation:"Base class for `switch` branches"},De),nt=le("Default",null,{$documentation:"A `default` switch branch"},tt),it=le("Case","expression",{$documentation:"A `case` switch branch",$propdoc:{expression:"[AST_Node] the `case` expression"},_walk:function(e){return e._visit(this,(function(){this.expression._walk(e),Ee(this,e)}))},_children_backwards(e){let t=this.body.length;for(;t--;)e(this.body[t]);e(this.expression)}},tt),rt=le("Try","bcatch bfinally",{$documentation:"A `try` statement",$propdoc:{bcatch:"[AST_Catch?] the catch block, or null if not present",bfinally:"[AST_Finally?] the finally block, or null if not present"},_walk:function(e){return e._visit(this,(function(){Ee(this,e),this.bcatch&&this.bcatch._walk(e),this.bfinally&&this.bfinally._walk(e)}))},_children_backwards(e){this.bfinally&&e(this.bfinally),this.bcatch&&e(this.bcatch);let t=this.body.length;for(;t--;)e(this.body[t])}},De),ot=le("Catch","argname",{$documentation:"A `catch` node; only makes sense as part of a `try` statement",$propdoc:{argname:"[AST_SymbolCatch|AST_Destructuring|AST_Expansion|AST_DefaultAssign] symbol for the exception"},_walk:function(e){return e._visit(this,(function(){this.argname&&this.argname._walk(e),Ee(this,e)}))},_children_backwards(e){let t=this.body.length;for(;t--;)e(this.body[t]);this.argname&&e(this.argname)}},De),at=le("Finally",null,{$documentation:"A `finally` node; only makes sense as part of a `try` statement"},De),st=le("Definitions","definitions",{$documentation:"Base class for `var` or `const` nodes (variable declarations/initializations)",$propdoc:{definitions:"[AST_VarDef*] array of variable definitions"},_walk:function(e){return e._visit(this,(function(){for(var t=this.definitions,n=0,i=t.length;n a`"},yt),Ft=le("Array","elements",{$documentation:"An array literal",$propdoc:{elements:"[AST_Node*] array of elements"},_walk:function(e){return e._visit(this,(function(){for(var t=this.elements,n=0,i=t.length;nt._walk(e))}))},_children_backwards(e){let t=this.properties.length;for(;t--;)e(this.properties[t]);this.extends&&e(this.extends),this.name&&e(this.name)}},xe),Lt=le("ClassProperty","static quote",{$documentation:"A class property",$propdoc:{static:"[boolean] whether this is a static key",quote:"[string] which quote is being used"},_walk:function(e){return e._visit(this,(function(){this.key instanceof pe&&this.key._walk(e),this.value instanceof pe&&this.value._walk(e)}))},_children_backwards(e){this.value instanceof pe&&e(this.value),this.key instanceof pe&&e(this.key)},computed_key(){return!(this.key instanceof $t)}},Rt),Pt=le("DefClass",null,{$documentation:"A class definition"},It),Vt=le("ClassExpression",null,{$documentation:"A class expression."},It),Bt=le("Symbol","scope name thedef",{$propdoc:{name:"[string] name of this symbol",scope:"[AST_Scope/S] the current scope (not necessarily the definition scope)",thedef:"[SymbolDef/S] the definition of this symbol"},$documentation:"Base class for all symbols"}),Kt=le("NewTarget",null,{$documentation:"A reference to new.target"}),Ut=le("SymbolDeclaration","init",{$documentation:"A declaration symbol (symbol in var/const, function name or argument, symbol in catch)"},Bt),Gt=le("SymbolVar",null,{$documentation:"Symbol defining a variable"},Ut),Ht=le("SymbolBlockDeclaration",null,{$documentation:"Base class for block-scoped declaration symbols"},Ut),Xt=le("SymbolConst",null,{$documentation:"A constant declaration"},Ht),zt=le("SymbolLet",null,{$documentation:"A block-scoped `let` declaration"},Ht),Wt=le("SymbolFunarg",null,{$documentation:"Symbol naming a function argument"},Gt),Yt=le("SymbolDefun",null,{$documentation:"Symbol defining a function"},Ut),qt=le("SymbolMethod",null,{$documentation:"Symbol in an object defining a method"},Bt),$t=le("SymbolClassProperty",null,{$documentation:"Symbol for a class property"},Bt),jt=le("SymbolLambda",null,{$documentation:"Symbol naming a function expression"},Ut),Zt=le("SymbolDefClass",null,{$documentation:"Symbol naming a class's name in a class declaration. Lexically scoped to its containing scope, and accessible within the class."},Ht),Jt=le("SymbolClass",null,{$documentation:"Symbol naming a class's name. Lexically scoped to the class."},Ut),Qt=le("SymbolCatch",null,{$documentation:"Symbol naming the exception in catch"},Ht),en=le("SymbolImport",null,{$documentation:"Symbol referring to an imported name"},Ht),tn=le("SymbolImportForeign",null,{$documentation:"A symbol imported from a module, but it is defined in the other module, and its real name is irrelevant for this module's purposes"},Bt),nn=le("Label","references",{$documentation:"Symbol naming a label (declaration)",$propdoc:{references:"[AST_LoopControl*] a list of nodes referring to this label"},initialize:function(){this.references=[],this.thedef=this}},Bt),rn=le("SymbolRef",null,{$documentation:"Reference to some symbol (not definition/declaration)"},Bt),on=le("SymbolExport",null,{$documentation:"Symbol referring to a name to export"},rn),an=le("SymbolExportForeign",null,{$documentation:"A symbol exported from this module, but it is used in the other module, and its real name is irrelevant for this module's purposes"},Bt),sn=le("LabelRef",null,{$documentation:"Reference to a label symbol"},Bt),un=le("This",null,{$documentation:"The `this` symbol"},Bt),cn=le("Super",null,{$documentation:"The `super` symbol"},un),ln=le("Constant",null,{$documentation:"Base class for all constants",getValue:function(){return this.value}}),fn=le("String","value quote",{$documentation:"A string literal",$propdoc:{value:"[string] the contents of this string",quote:"[string] the original quote character"}},ln),pn=le("Number","value literal",{$documentation:"A number literal",$propdoc:{value:"[number] the numeric value",literal:"[string] numeric value as string (optional)"}},ln),_n=le("BigInt","value",{$documentation:"A big int literal",$propdoc:{value:"[string] big int value"}},ln),dn=le("RegExp","value",{$documentation:"A regexp literal",$propdoc:{value:"[RegExp] the actual regexp"}},ln),mn=le("Atom",null,{$documentation:"Base class for atoms"},ln),hn=le("Null",null,{$documentation:"The `null` atom",value:null},mn),En=le("NaN",null,{$documentation:"The impossible value",value:NaN},mn),gn=le("Undefined",null,{$documentation:"The `undefined` value",value:void 0},mn),Dn=le("Hole",null,{$documentation:"A hole in an array",value:void 0},mn),Sn=le("Infinity",null,{$documentation:"The `Infinity` value",value:1/0},mn),vn=le("Boolean",null,{$documentation:"Base class for booleans"},mn),An=le("False",null,{$documentation:"The `false` atom",value:!1},vn),Tn=le("True",null,{$documentation:"The `true` atom",value:!0},vn);function yn(e,t,n=[e]){const i=n.push.bind(n);for(;n.length;){const e=n.pop(),r=t(e,n);if(r){if(r===Cn)return!0}else e._children_backwards(i)}return!1}function bn(e,t,n){const i=[e],r=i.push.bind(i),o=n?n.slice():[],a=[];let s;const u={parent:(e=0)=>-1===e?s:n&&e>=o.length?(e-=o.length,n[n.length-(e+1)]):o[o.length-(1+e)]};for(;i.length;){for(s=i.pop();a.length&&i.length==a[a.length-1];)o.pop(),a.pop();const e=t(s,u);if(e){if(e===Cn)return!0;continue}const n=i.length;s._children_backwards(r),i.length>n&&(o.push(s),a.push(n-1))}return!1}const Cn=Symbol("abort walk");class On{constructor(e){this.visit=e,this.stack=[],this.directives=Object.create(null)}_visit(e,t){this.push(e);var n=this.visit(e,t?function(){t.call(e)}:a);return!n&&t&&t.call(e),this.pop(),n}parent(e){return this.stack[this.stack.length-2-(e||0)]}push(e){e instanceof Ie?this.directives=Object.create(this.directives):e instanceof me&&!this.directives[e.value]?this.directives[e.value]=e:e instanceof It&&(this.directives=Object.create(this.directives),this.directives["use strict"]||(this.directives["use strict"]=e)),this.stack.push(e)}pop(){var e=this.stack.pop();(e instanceof Ie||e instanceof It)&&(this.directives=Object.getPrototypeOf(this.directives))}self(){return this.stack[this.stack.length-1]}find_parent(e){for(var t=this.stack,n=t.length;--n>=0;){var i=t[n];if(i instanceof e)return i}}has_directive(e){var t=this.directives[e];if(t)return t;var n=this.stack[this.stack.length-1];if(n instanceof xe&&n.body)for(var i=0;i=0;){if((i=t[n])instanceof Te&&i.label.name==e.label.name)return i.body}else for(n=t.length;--n>=0;){var i;if((i=t[n])instanceof ye||e instanceof $e&&i instanceof et)return i}}}class Fn extends On{constructor(e,t){super(),this.before=e,this.after=t}}const Mn=1,Rn=2,wn=4;var xn=Object.freeze({__proto__:null,AST_Accessor:Le,AST_Array:Ft,AST_Arrow:Ve,AST_Assign:Ct,AST_Atom:mn,AST_Await:Ze,AST_BigInt:_n,AST_Binary:yt,AST_Block:De,AST_BlockStatement:Se,AST_Boolean:vn,AST_Break:$e,AST_Call:mt,AST_Case:it,AST_Catch:ot,AST_Class:It,AST_ClassExpression:Vt,AST_ClassProperty:Lt,AST_ConciseMethod:kt,AST_Conditional:bt,AST_Const:lt,AST_Constant:ln,AST_Continue:je,AST_Debugger:de,AST_Default:nt,AST_DefaultAssign:Ot,AST_DefClass:Pt,AST_Definitions:st,AST_Defun:Be,AST_Destructuring:Ke,AST_Directive:me,AST_Do:Ce,AST_Dot:Dt,AST_DWLoop:be,AST_EmptyStatement:ve,AST_Exit:ze,AST_Expansion:ke,AST_Export:dt,AST_False:An,AST_Finally:at,AST_For:Fe,AST_ForIn:Me,AST_ForOf:Re,AST_Function:Pe,AST_Hole:Dn,AST_If:Qe,AST_Import:_t,AST_Infinity:Sn,AST_IterationStatement:ye,AST_Jump:Xe,AST_Label:nn,AST_LabeledStatement:Te,AST_LabelRef:sn,AST_Lambda:Ie,AST_Let:ct,AST_LoopControl:qe,AST_NameMapping:pt,AST_NaN:En,AST_New:ht,AST_NewTarget:Kt,AST_Node:pe,AST_Null:hn,AST_Number:pn,AST_Object:Mt,AST_ObjectGetter:Nt,AST_ObjectKeyVal:wt,AST_ObjectProperty:Rt,AST_ObjectSetter:xt,AST_PrefixedTemplateString:Ue,AST_PropAccess:gt,AST_RegExp:dn,AST_Return:We,AST_Scope:xe,AST_Sequence:Et,AST_SimpleStatement:he,AST_Statement:_e,AST_StatementWithBody:Ae,AST_String:fn,AST_Sub:St,AST_Super:cn,AST_Switch:et,AST_SwitchBranch:tt,AST_Symbol:Bt,AST_SymbolBlockDeclaration:Ht,AST_SymbolCatch:Qt,AST_SymbolClass:Jt,AST_SymbolClassProperty:$t,AST_SymbolConst:Xt,AST_SymbolDeclaration:Ut,AST_SymbolDefClass:Zt,AST_SymbolDefun:Yt,AST_SymbolExport:on,AST_SymbolExportForeign:an,AST_SymbolFunarg:Wt,AST_SymbolImport:en,AST_SymbolImportForeign:tn,AST_SymbolLambda:jt,AST_SymbolLet:zt,AST_SymbolMethod:qt,AST_SymbolRef:rn,AST_SymbolVar:Gt,AST_TemplateSegment:He,AST_TemplateString:Ge,AST_This:un,AST_Throw:Ye,AST_Token:fe,AST_Toplevel:Ne,AST_True:Tn,AST_Try:rt,AST_Unary:vt,AST_UnaryPostfix:Tt,AST_UnaryPrefix:At,AST_Undefined:gn,AST_Var:ut,AST_VarDef:ft,AST_While:Oe,AST_With:we,AST_Yield:Je,TreeTransformer:Fn,TreeWalker:On,walk:yn,walk_abort:Cn,walk_body:Ee,walk_parent:bn,_INLINE:Rn,_NOINLINE:wn,_PURE:Mn});function Nn(e,t){e.DEFMETHOD("transform",(function(e,n){let i=void 0;if(e.push(this),e.before&&(i=e.before(this,t,n)),void 0===i&&(i=this,t(i,e),e.after)){const t=e.after(i,n);void 0!==t&&(i=t)}return e.pop(),i}))}function kn(e,t){return f(e,(function(e){return e.transform(t,!0)}))}function In(e){let t=e.parent(-1);for(let n,i=0;n=e.parent(i);i++){if(n instanceof _e&&n.body===t)return!0;if(!(n instanceof Et&&n.expressions[0]===t||"Call"===n.TYPE&&n.expression===t||n instanceof Ue&&n.prefix===t||n instanceof Dt&&n.expression===t||n instanceof St&&n.expression===t||n instanceof bt&&n.condition===t||n instanceof yt&&n.left===t||n instanceof Tt&&n.expression===t))return!1;t=n}}Nn(pe,a),Nn(Te,(function(e,t){e.label=e.label.transform(t),e.body=e.body.transform(t)})),Nn(he,(function(e,t){e.body=e.body.transform(t)})),Nn(De,(function(e,t){e.body=kn(e.body,t)})),Nn(Ce,(function(e,t){e.body=e.body.transform(t),e.condition=e.condition.transform(t)})),Nn(Oe,(function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t)})),Nn(Fe,(function(e,t){e.init&&(e.init=e.init.transform(t)),e.condition&&(e.condition=e.condition.transform(t)),e.step&&(e.step=e.step.transform(t)),e.body=e.body.transform(t)})),Nn(Me,(function(e,t){e.init=e.init.transform(t),e.object=e.object.transform(t),e.body=e.body.transform(t)})),Nn(we,(function(e,t){e.expression=e.expression.transform(t),e.body=e.body.transform(t)})),Nn(ze,(function(e,t){e.value&&(e.value=e.value.transform(t))})),Nn(qe,(function(e,t){e.label&&(e.label=e.label.transform(t))})),Nn(Qe,(function(e,t){e.condition=e.condition.transform(t),e.body=e.body.transform(t),e.alternative&&(e.alternative=e.alternative.transform(t))})),Nn(et,(function(e,t){e.expression=e.expression.transform(t),e.body=kn(e.body,t)})),Nn(it,(function(e,t){e.expression=e.expression.transform(t),e.body=kn(e.body,t)})),Nn(rt,(function(e,t){e.body=kn(e.body,t),e.bcatch&&(e.bcatch=e.bcatch.transform(t)),e.bfinally&&(e.bfinally=e.bfinally.transform(t))})),Nn(ot,(function(e,t){e.argname&&(e.argname=e.argname.transform(t)),e.body=kn(e.body,t)})),Nn(st,(function(e,t){e.definitions=kn(e.definitions,t)})),Nn(ft,(function(e,t){e.name=e.name.transform(t),e.value&&(e.value=e.value.transform(t))})),Nn(Ke,(function(e,t){e.names=kn(e.names,t)})),Nn(Ie,(function(e,t){e.name&&(e.name=e.name.transform(t)),e.argnames=kn(e.argnames,t),e.body instanceof pe?e.body=e.body.transform(t):e.body=kn(e.body,t)})),Nn(mt,(function(e,t){e.expression=e.expression.transform(t),e.args=kn(e.args,t)})),Nn(Et,(function(e,t){const n=kn(e.expressions,t);e.expressions=n.length?n:[new pn({value:0})]})),Nn(Dt,(function(e,t){e.expression=e.expression.transform(t)})),Nn(St,(function(e,t){e.expression=e.expression.transform(t),e.property=e.property.transform(t)})),Nn(Je,(function(e,t){e.expression&&(e.expression=e.expression.transform(t))})),Nn(Ze,(function(e,t){e.expression=e.expression.transform(t)})),Nn(vt,(function(e,t){e.expression=e.expression.transform(t)})),Nn(yt,(function(e,t){e.left=e.left.transform(t),e.right=e.right.transform(t)})),Nn(bt,(function(e,t){e.condition=e.condition.transform(t),e.consequent=e.consequent.transform(t),e.alternative=e.alternative.transform(t)})),Nn(Ft,(function(e,t){e.elements=kn(e.elements,t)})),Nn(Mt,(function(e,t){e.properties=kn(e.properties,t)})),Nn(Rt,(function(e,t){e.key instanceof pe&&(e.key=e.key.transform(t)),e.value&&(e.value=e.value.transform(t))})),Nn(It,(function(e,t){e.name&&(e.name=e.name.transform(t)),e.extends&&(e.extends=e.extends.transform(t)),e.properties=kn(e.properties,t)})),Nn(ke,(function(e,t){e.expression=e.expression.transform(t)})),Nn(pt,(function(e,t){e.foreign_name=e.foreign_name.transform(t),e.name=e.name.transform(t)})),Nn(_t,(function(e,t){e.imported_name&&(e.imported_name=e.imported_name.transform(t)),e.imported_names&&kn(e.imported_names,t),e.module_name=e.module_name.transform(t)})),Nn(dt,(function(e,t){e.exported_definition&&(e.exported_definition=e.exported_definition.transform(t)),e.exported_value&&(e.exported_value=e.exported_value.transform(t)),e.exported_names&&kn(e.exported_names,t),e.module_name&&(e.module_name=e.module_name.transform(t))})),Nn(Ge,(function(e,t){e.segments=kn(e.segments,t)})),Nn(Ue,(function(e,t){e.prefix=e.prefix.transform(t),e.template_string=e.template_string.transform(t)}));const Ln=/^$|[;{][\s\n]*$/,Pn=/[@#]__(PURE|INLINE|NOINLINE)__/g;function Vn(e){return("comment2"===e.type||"comment1"===e.type)&&/@preserve|@lic|@cc_on|^\**!/i.test(e.value)}function Bn(e){var t=!e;void 0===(e=o(e,{ascii_only:!1,beautify:!1,braces:!1,comments:"some",ecma:5,ie8:!1,indent_level:4,indent_start:0,inline_script:!0,keep_numbers:!1,keep_quoted_props:!1,max_line_len:!1,preamble:null,preserve_annotations:!1,quote_keys:!1,quote_style:0,safari10:!1,semicolons:!0,shebang:!0,shorthand:void 0,source_map:null,webkit:!1,width:80,wrap_iife:!1,wrap_func_args:!0},!0)).shorthand&&(e.shorthand=e.ecma>5);var n=s;if(e.comments){let t=e.comments;if("string"==typeof e.comments&&/^\/.*\/[a-zA-Z]*$/.test(e.comments)){var i=e.comments.lastIndexOf("/");t=new RegExp(e.comments.substr(1,i-1),e.comments.substr(i+1))}n=t instanceof RegExp?function(e){return"comment5"!=e.type&&t.test(e.value)}:"function"==typeof t?function(e){return"comment5"!=e.type&&t(this,e)}:"some"===t?Vn:u}var r=0,c=0,l=1,f=0,p="";let _=new Set;var d=e.ascii_only?function(t,n){return e.ecma>=2015&&(t=t.replace(/[\ud800-\udbff][\udc00-\udfff]/g,(function(e){return"\\u{"+function(e,t){return z(e.charCodeAt(t))?65536+(e.charCodeAt(t)-55296<<10)+e.charCodeAt(t+1)-56320:e.charCodeAt(t)}(e,0).toString(16)+"}"}))),t.replace(/[\u0000-\u001f\u007f-\uffff]/g,(function(e){var t=e.charCodeAt(0).toString(16);if(t.length<=2&&!n){for(;t.length<2;)t="0"+t;return"\\x"+t}for(;t.length<4;)t="0"+t;return"\\u"+t}))}:function(e){return e.replace(/[\ud800-\udbff][\udc00-\udfff]|([\ud800-\udbff]|[\udc00-\udfff])/g,(function(e,t){return t?"\\u"+t.charCodeAt(0).toString(16):e}))};function m(t,n){var i=function(t,n){var i=0,r=0;function o(){return"'"+t.replace(/\x27/g,"\\'")+"'"}function a(){return'"'+t.replace(/\x22/g,'\\"')+'"'}if(t=t.replace(/[\\\b\f\n\r\v\t\x22\x27\u2028\u2029\0\ufeff]/g,(function(n,o){switch(n){case'"':return++i,'"';case"'":return++r,"'";case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\b":return"\\b";case"\f":return"\\f";case"\v":return e.ie8?"\\x0B":"\\v";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case"\ufeff":return"\\ufeff";case"\0":return/[0-9]/.test(X(t,o+1))?"\\x00":"\\0"}return n})),t=d(t),"`"===n)return"`"+t.replace(/`/g,"\\`")+"`";switch(e.quote_style){case 1:return o();case 2:return a();case 3:return"'"==n?o():a();default:return i>r?o():a()}}(t,n);return e.inline_script&&(i=(i=(i=i.replace(/<\x2f(script)([>\/\t\n\f\r ])/gi,"<\\/$1$2")).replace(/\x3c!--/g,"\\x3c!--")).replace(/--\x3e/g,"--\\x3e")),i}var h,g,D=!1,S=!1,v=!1,A=0,T=!1,y=!1,b=-1,C="",O=e.source_map&&[],F=O?function(){O.forEach((function(t){try{e.source_map.add(t.token.file,t.line,t.col,t.token.line,t.token.col,t.name||"name"!=t.token.type?t.name:t.token.value)}catch(e){null!=t.token.file&&pe.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]",{file:t.token.file,line:t.token.line,col:t.token.col,cline:t.line,ccol:t.col,name:t.name||""})}})),O=[]}:a,M=e.max_line_len?function(){if(c>e.max_line_len){if(A){var t=p.slice(0,A),n=p.slice(A);if(O){var i=n.length-c;O.forEach((function(e){e.line++,e.col+=i}))}p=t+"\n"+n,l++,f++,c=n.length}c>e.max_line_len&&pe.warn("Output exceeds {max_line_len} characters",e)}A&&(A=0,F())}:a,R=E("( [ + * / - , . `");function w(t){var n=X(t=String(t),0);T&&n&&(T=!1,"\n"!==n&&(w("\n"),N())),y&&n&&(y=!1,/[\s;})]/.test(n)||x()),b=-1;var i=C.charAt(C.length-1);v&&(v=!1,(":"!==i||"}"!==n)&&(n&&";}".includes(n)||";"===i)||(e.semicolons||R.has(n)?(p+=";",c++,f++):(M(),c>0&&(p+="\n",f++,l++,c=0),/^\s+$/.test(t)&&(v=!0)),e.beautify||(S=!1))),S&&(($(i)&&($(n)||"\\"==n)||"/"==n&&n==i||("+"==n||"-"==n)&&n==C)&&(p+=" ",c++,f++),S=!1),h&&(O.push({token:h,name:g,line:l,col:c}),h=!1,A||F()),p+=t,D="("==t[t.length-1],f+=t.length;var r=t.split(/\r?\n/),o=r.length-1;l+=o,c+=r[0].length,o>0&&(M(),c=r[o].length),C=t}var x=e.beautify?function(){w(" ")}:function(){S=!0},N=e.beautify?function(t){var n;e.beautify&&w((n=t?.5:0," ".repeat(e.indent_start+r-n*e.indent_level)))}:a,k=e.beautify?function(e,t){!0===e&&(e=V());var n=r;r=e;var i=t();return r=n,i}:function(e,t){return t()},I=e.beautify?function(){if(b<0)return w("\n");"\n"!=p[b]&&(p=p.slice(0,b)+"\n"+p.slice(b),f++,l++),b++}:e.max_line_len?function(){M(),A=p.length}:a,L=e.beautify?function(){w(";")}:function(){v=!0};function P(){v=!1,w(";")}function V(){return r+e.indent_level}function B(){return A&&M(),p}function K(){let e=p.length-1;for(;e>=0;){const t=p.charCodeAt(e);if(10===t)return!0;if(32!==t)return!1;e--}return!0}function U(t){return e.preserve_annotations||(t=t.replace(Pn," ")),/^\s*$/.test(t)?"":t.replace(/(<\s*\/\s*)(script)/i,"<\\/$2")}var G=[];return{get:B,toString:B,indent:N,in_directive:!1,use_asm:null,active_scope:null,indentation:function(){return r},current_width:function(){return c-r},should_break:function(){return e.width&&this.current_width()>=e.width},has_parens:function(){return D},newline:I,print:w,star:function(){w("*")},space:x,comma:function(){w(","),x()},colon:function(){w(":"),x()},last:function(){return C},semicolon:L,force_semicolon:P,to_utf8:d,print_name:function(e){w(function(e){return e=e.toString(),e=d(e,!0)}(e))},print_string:function(e,t,n){var i=m(e,t);!0!==n||i.includes("\\")||(Ln.test(p)||P(),P()),w(i)},print_template_string_chars:function(e){var t=m(e,"`").replace(/\${/g,"\\${");return w(t.substr(1,t.length-2))},encode_string:m,next_indent:V,with_indent:k,with_block:function(e){var t;return w("{"),I(),k(V(),(function(){t=e()})),N(),w("}"),t},with_parens:function(e){w("(");var t=e();return w(")"),t},with_square:function(e){w("[");var t=e();return w("]"),t},add_mapping:O?function(e,t){h=e,g=t}:a,option:function(t){return e[t]},printed_comments:_,prepend_comments:t?a:function(t){var i=t.start;if(!i)return;var r=this.printed_comments;const o=t instanceof ze&&t.value;if(i.comments_before&&r.has(i.comments_before)){if(!o)return;i.comments_before=[]}var a=i.comments_before;if(a||(a=i.comments_before=[]),r.add(a),o){var s=new On((function(e){var t=s.parent();if(!(t instanceof ze||t instanceof yt&&t.left===e||"Call"==t.TYPE&&t.expression===e||t instanceof bt&&t.condition===e||t instanceof Dt&&t.expression===e||t instanceof Et&&t.expressions[0]===e||t instanceof St&&t.expression===e||t instanceof Tt))return!0;if(e.start){var n=e.start.comments_before;n&&!r.has(n)&&(r.add(n),a=a.concat(n))}}));s.push(t),t.value.walk(s)}if(0==f){a.length>0&&e.shebang&&"comment5"===a[0].type&&!r.has(a[0])&&(w("#!"+a.shift().value+"\n"),N());var u=e.preamble;u&&w(u.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g,"\n"))}if(0!=(a=a.filter(n,t).filter(e=>!r.has(e))).length){var c=K();a.forEach((function(e,t){if(r.add(e),c||(e.nlb?(w("\n"),N(),c=!0):t>0&&x()),/comment[134]/.test(e.type))(n=U(e.value))&&(w("//"+n+"\n"),N()),c=!0;else if("comment2"==e.type){var n;(n=U(e.value))&&w("/*"+n+"*/"),c=!1}})),c||(i.nlb?(w("\n"),N()):x())}},append_comments:t||n===s?a:function(e,t){var i=e.end;if(i){var r=this.printed_comments,o=i[t?"comments_before":"comments_after"];if(o&&!r.has(o)&&(e instanceof _e||o.every(e=>!/comment[134]/.test(e.type)))){r.add(o);var a=p.length;o.filter(n,e).forEach((function(e,n){if(!r.has(e))if(r.add(e),y=!1,T?(w("\n"),N(),T=!1):e.nlb&&(n>0||!K())?(w("\n"),N()):(n>0||!t)&&x(),/comment[134]/.test(e.type)){const t=U(e.value);t&&w("//"+t),T=!0}else if("comment2"==e.type){const t=U(e.value);t&&w("/*"+t+"*/"),y=!0}})),p.length>a&&(b=a)}}},line:function(){return l},col:function(){return c},pos:function(){return f},push_node:function(e){G.push(e)},pop_node:function(){return G.pop()},parent:function(e){return G[G.length-2-(e||0)]}}}!function(){function e(e,t){e.DEFMETHOD("_codegen",t)}function t(e,n){Array.isArray(e)?e.forEach((function(e){t(e,n)})):e.DEFMETHOD("needs_parens",n)}function n(e,t,n,i){var r=e.length-1;n.in_directive=i,e.forEach((function(e,i){!0!==n.in_directive||e instanceof me||e instanceof ve||e instanceof he&&e.body instanceof fn||(n.in_directive=!1),e instanceof ve||(n.indent(),e.print(n),i==r&&t||(n.newline(),t&&n.newline())),!0===n.in_directive&&e instanceof he&&e.body instanceof fn&&(n.in_directive=!1)})),n.in_directive=!1}function i(e,t){t.print("{"),t.with_indent(t.next_indent(),(function(){t.append_comments(e,!0)})),t.print("}")}function r(e,t,r){e.body.length>0?t.with_block((function(){n(e.body,!1,t,r)})):i(e,t)}function o(e,t,n){var i=!1;n&&(i=yn(e,e=>e instanceof xe||(e instanceof yt&&"in"==e.operator?Cn:void 0))),e.print(t,i)}function u(e,t,n){return n.option("quote_keys")?n.print_string(e):""+ +e==e&&e>=0?n.option("keep_numbers")?n.print(e):n.print(p(e)):(O.has(e)?n.option("ie8"):n.option("ecma")<2015?!j(e):!Z(e,!0))||t&&n.option("keep_quoted_props")?n.print_string(e,t):n.print_name(e)}pe.DEFMETHOD("print",(function(e,t){var n=this,i=n._codegen;function r(){e.prepend_comments(n),n.add_source_map(e),i(n,e),e.append_comments(n)}n instanceof xe?e.active_scope=n:!e.use_asm&&n instanceof me&&"use asm"==n.value&&(e.use_asm=e.active_scope),e.push_node(n),t||n.needs_parens(e)?e.with_parens(r):r(),e.pop_node(),n===e.use_asm&&(e.use_asm=null)})),pe.DEFMETHOD("_print",pe.prototype.print),pe.DEFMETHOD("print_to_string",(function(e){var t=Bn(e);return this.print(t),t.get()})),t(pe,s),t(Pe,(function(e){if(!e.has_parens()&&In(e))return!0;var t;if(e.option("webkit")&&((t=e.parent())instanceof gt&&t.expression===this))return!0;if(e.option("wrap_iife")&&((t=e.parent())instanceof mt&&t.expression===this))return!0;if(e.option("wrap_func_args")&&((t=e.parent())instanceof mt&&t.args.includes(this)))return!0;return!1})),t(Ve,(function(e){var t=e.parent();return t instanceof gt&&t.expression===this})),t(Mt,(function(e){return!e.has_parens()&&In(e)})),t(Vt,In),t(vt,(function(e){var t=e.parent();return t instanceof gt&&t.expression===this||t instanceof mt&&t.expression===this||t instanceof yt&&"**"===t.operator&&this instanceof At&&t.left===this&&"++"!==this.operator&&"--"!==this.operator})),t(Ze,(function(e){var t=e.parent();return t instanceof gt&&t.expression===this||t instanceof mt&&t.expression===this||e.option("safari10")&&t instanceof At})),t(Et,(function(e){var t=e.parent();return t instanceof mt||t instanceof vt||t instanceof yt||t instanceof ft||t instanceof gt||t instanceof Ft||t instanceof Rt||t instanceof bt||t instanceof Ve||t instanceof Ot||t instanceof ke||t instanceof Re&&this===t.object||t instanceof Je||t instanceof dt})),t(yt,(function(e){var t=e.parent();if(t instanceof mt&&t.expression===this)return!0;if(t instanceof vt)return!0;if(t instanceof gt&&t.expression===this)return!0;if(t instanceof yt){const e=t.operator,n=this.operator;if("??"===n&&("||"===e||"&&"===e))return!0;const i=se[e],r=se[n];if(i>r||i==r&&(this===t.right||"**"==e))return!0}})),t(Je,(function(e){var t=e.parent();return t instanceof yt&&"="!==t.operator||(t instanceof mt&&t.expression===this||(t instanceof bt&&t.condition===this||(t instanceof vt||(t instanceof gt&&t.expression===this||void 0))))})),t(gt,(function(e){var t=e.parent();if(t instanceof ht&&t.expression===this)return yn(this,e=>e instanceof xe||(e instanceof mt?Cn:void 0))})),t(mt,(function(e){var t,n=e.parent();return!!(n instanceof ht&&n.expression===this||n instanceof dt&&n.is_default&&this.expression instanceof Pe)||this.expression instanceof Pe&&n instanceof gt&&n.expression===this&&(t=e.parent(1))instanceof Ct&&t.left===n})),t(ht,(function(e){var t=e.parent();if(0===this.args.length&&(t instanceof gt||t instanceof mt&&t.expression===this))return!0})),t(pn,(function(e){var t=e.parent();if(t instanceof gt&&t.expression===this){var n=this.getValue();if(n<0||/^0/.test(p(n)))return!0}})),t(_n,(function(e){var t=e.parent();if(t instanceof gt&&t.expression===this&&this.getValue().startsWith("-"))return!0})),t([Ct,bt],(function(e){var t=e.parent();return t instanceof vt||(t instanceof yt&&!(t instanceof Ct)||(t instanceof mt&&t.expression===this||(t instanceof bt&&t.condition===this||(t instanceof gt&&t.expression===this||(this instanceof Ct&&this.left instanceof Ke&&!1===this.left.is_array||void 0)))))})),e(me,(function(e,t){t.print_string(e.value,e.quote),t.semicolon()})),e(ke,(function(e,t){t.print("..."),e.expression.print(t)})),e(Ke,(function(e,t){t.print(e.is_array?"[":"{");var n=e.names.length;e.names.forEach((function(e,i){i>0&&t.comma(),e.print(t),i==n-1&&e instanceof Dn&&t.comma()})),t.print(e.is_array?"]":"}")})),e(de,(function(e,t){t.print("debugger"),t.semicolon()})),Ae.DEFMETHOD("_do_print_body",(function(e){f(this.body,e)})),e(_e,(function(e,t){e.body.print(t),t.semicolon()})),e(Ne,(function(e,t){n(e.body,!0,t,!0),t.print("")})),e(Te,(function(e,t){e.label.print(t),t.colon(),e.body.print(t)})),e(he,(function(e,t){e.body.print(t),t.semicolon()})),e(Se,(function(e,t){r(e,t)})),e(ve,(function(e,t){t.semicolon()})),e(Ce,(function(e,t){t.print("do"),t.space(),_(e.body,t),t.space(),t.print("while"),t.space(),t.with_parens((function(){e.condition.print(t)})),t.semicolon()})),e(Oe,(function(e,t){t.print("while"),t.space(),t.with_parens((function(){e.condition.print(t)})),t.space(),e._do_print_body(t)})),e(Fe,(function(e,t){t.print("for"),t.space(),t.with_parens((function(){e.init?(e.init instanceof st?e.init.print(t):o(e.init,t,!0),t.print(";"),t.space()):t.print(";"),e.condition?(e.condition.print(t),t.print(";"),t.space()):t.print(";"),e.step&&e.step.print(t)})),t.space(),e._do_print_body(t)})),e(Me,(function(e,t){t.print("for"),e.await&&(t.space(),t.print("await")),t.space(),t.with_parens((function(){e.init.print(t),t.space(),t.print(e instanceof Re?"of":"in"),t.space(),e.object.print(t)})),t.space(),e._do_print_body(t)})),e(we,(function(e,t){t.print("with"),t.space(),t.with_parens((function(){e.expression.print(t)})),t.space(),e._do_print_body(t)})),Ie.DEFMETHOD("_do_print",(function(e,t){var n=this;t||(n.async&&(e.print("async"),e.space()),e.print("function"),n.is_generator&&e.star(),n.name&&e.space()),n.name instanceof Bt?n.name.print(e):t&&n.name instanceof pe&&e.with_square((function(){n.name.print(e)})),e.with_parens((function(){n.argnames.forEach((function(t,n){n&&e.comma(),t.print(e)}))})),e.space(),r(n,e,!0)})),e(Ie,(function(e,t){e._do_print(t)})),e(Ue,(function(e,t){var n=e.prefix,i=n instanceof Ie||n instanceof yt||n instanceof bt||n instanceof Et||n instanceof vt||n instanceof Dt&&n.expression instanceof Mt;i&&t.print("("),e.prefix.print(t),i&&t.print(")"),e.template_string.print(t)})),e(Ge,(function(e,t){var n=t.parent()instanceof Ue;t.print("`");for(var i=0;i"),e.space();const o=t.body[0];if(1===t.body.length&&o instanceof We){const t=o.value;t?!function e(t){return t instanceof Mt||(t instanceof Et?e(t.expressions[0]):"Call"===t.TYPE?e(t.expression):t instanceof Ue?e(t.prefix):t instanceof Dt||t instanceof St?e(t.expression):t instanceof bt?e(t.condition):t instanceof yt?e(t.left):t instanceof Tt&&e(t.expression))}(t)?t.print(e):(e.print("("),t.print(e),e.print(")")):e.print("{}")}else r(t,e);i&&e.print(")")})),ze.DEFMETHOD("_do_print",(function(e,t){if(e.print(t),this.value){e.space();const t=this.value.start.comments_before;t&&t.length&&!e.printed_comments.has(t)?(e.print("("),this.value.print(e),e.print(")")):this.value.print(e)}e.semicolon()})),e(We,(function(e,t){e._do_print(t,"return")})),e(Ye,(function(e,t){e._do_print(t,"throw")})),e(Je,(function(e,t){var n=e.is_star?"*":"";t.print("yield"+n),e.expression&&(t.space(),e.expression.print(t))})),e(Ze,(function(e,t){t.print("await"),t.space();var n=e.expression,i=!(n instanceof mt||n instanceof rn||n instanceof gt||n instanceof vt||n instanceof ln);i&&t.print("("),e.expression.print(t),i&&t.print(")")})),qe.DEFMETHOD("_do_print",(function(e,t){e.print(t),this.label&&(e.space(),this.label.print(e)),e.semicolon()})),e($e,(function(e,t){e._do_print(t,"break")})),e(je,(function(e,t){e._do_print(t,"continue")})),e(Qe,(function(e,t){t.print("if"),t.space(),t.with_parens((function(){e.condition.print(t)})),t.space(),e.alternative?(!function(e,t){var n=e.body;if(t.option("braces")||t.option("ie8")&&n instanceof Ce)return _(n,t);if(!n)return t.force_semicolon();for(;;)if(n instanceof Qe){if(!n.alternative)return void _(e.body,t);n=n.alternative}else{if(!(n instanceof Ae))break;n=n.body}f(e.body,t)}(e,t),t.space(),t.print("else"),t.space(),e.alternative instanceof Qe?e.alternative.print(t):f(e.alternative,t)):e._do_print_body(t)})),e(et,(function(e,t){t.print("switch"),t.space(),t.with_parens((function(){e.expression.print(t)})),t.space();var n=e.body.length-1;n<0?i(e,t):t.with_block((function(){e.body.forEach((function(e,i){t.indent(!0),e.print(t),i0&&t.newline()}))}))})),tt.DEFMETHOD("_do_print_body",(function(e){e.newline(),this.body.forEach((function(t){e.indent(),t.print(e),e.newline()}))})),e(nt,(function(e,t){t.print("default:"),e._do_print_body(t)})),e(it,(function(e,t){t.print("case"),t.space(),e.expression.print(t),t.print(":"),e._do_print_body(t)})),e(rt,(function(e,t){t.print("try"),t.space(),r(e,t),e.bcatch&&(t.space(),e.bcatch.print(t)),e.bfinally&&(t.space(),e.bfinally.print(t))})),e(ot,(function(e,t){t.print("catch"),e.argname&&(t.space(),t.with_parens((function(){e.argname.print(t)}))),t.space(),r(e,t)})),e(at,(function(e,t){t.print("finally"),t.space(),r(e,t)})),st.DEFMETHOD("_do_print",(function(e,t){e.print(t),e.space(),this.definitions.forEach((function(t,n){n&&e.comma(),t.print(e)}));var n=e.parent();(!(n instanceof Fe||n instanceof Me)||n&&n.init!==this)&&e.semicolon()})),e(ct,(function(e,t){e._do_print(t,"let")})),e(ut,(function(e,t){e._do_print(t,"var")})),e(lt,(function(e,t){e._do_print(t,"const")})),e(_t,(function(e,t){t.print("import"),t.space(),e.imported_name&&e.imported_name.print(t),e.imported_name&&e.imported_names&&(t.print(","),t.space()),e.imported_names&&(1===e.imported_names.length&&"*"===e.imported_names[0].foreign_name.name?e.imported_names[0].print(t):(t.print("{"),e.imported_names.forEach((function(n,i){t.space(),n.print(t),i0&&(e.comma(),e.should_break()&&(e.newline(),e.indent())),t.print(e)}))})),e(Et,(function(e,t){e._do_print(t)})),e(Dt,(function(e,t){var n=e.expression;n.print(t);var i=e.property;(O.has(i)?t.option("ie8"):!Z(i,t.option("ecma")>=2015))?(t.print("["),t.add_mapping(e.end),t.print_string(i),t.print("]")):(n instanceof pn&&n.getValue()>=0&&(/[xa-f.)]/i.test(t.last())||t.print(".")),t.print("."),t.add_mapping(e.end),t.print_name(i))})),e(St,(function(e,t){e.expression.print(t),t.print("["),e.property.print(t),t.print("]")})),e(At,(function(e,t){var n=e.operator;t.print(n),(/^[a-z]/i.test(n)||/[+-]$/.test(n)&&e.expression instanceof At&&/^[+-]/.test(e.expression.operator))&&t.space(),e.expression.print(t)})),e(Tt,(function(e,t){e.expression.print(t),t.print(e.operator)})),e(yt,(function(e,t){var n=e.operator;e.left.print(t),">"==n[0]&&e.left instanceof Tt&&"--"==e.left.operator?t.print(" "):t.space(),t.print(n),("<"==n||"<<"==n)&&e.right instanceof At&&"!"==e.right.operator&&e.right.expression instanceof At&&"--"==e.right.expression.operator?t.print(" "):t.space(),e.right.print(t)})),e(bt,(function(e,t){e.condition.print(t),t.space(),t.print("?"),t.space(),e.consequent.print(t),t.space(),t.colon(),e.alternative.print(t)})),e(Ft,(function(e,t){t.with_square((function(){var n=e.elements,i=n.length;i>0&&t.space(),n.forEach((function(e,n){n&&t.comma(),e.print(t),n===i-1&&e instanceof Dn&&t.comma()})),i>0&&t.space()}))})),e(Mt,(function(e,t){e.properties.length>0?t.with_block((function(){e.properties.forEach((function(e,n){n&&(t.print(","),t.newline()),t.indent(),e.print(t)})),t.newline()})):i(e,t)})),e(It,(function(e,t){if(t.print("class"),t.space(),e.name&&(e.name.print(t),t.space()),e.extends){var n=!(e.extends instanceof rn||e.extends instanceof gt||e.extends instanceof Vt||e.extends instanceof Pe);t.print("extends"),n?t.print("("):t.space(),e.extends.print(t),n?t.print(")"):t.space()}e.properties.length>0?t.with_block((function(){e.properties.forEach((function(e,n){n&&t.newline(),t.indent(),e.print(t)})),t.newline()})):t.print("{}")})),e(Kt,(function(e,t){t.print("new.target")})),e(wt,(function(e,t){function n(e){var t=e.definition();return t?t.mangled_name||t.name:e.name}var i=t.option("shorthand");i&&e.value instanceof Bt&&Z(e.key,t.option("ecma")>=2015)&&n(e.value)===e.key&&!O.has(e.key)?u(e.key,e.quote,t):i&&e.value instanceof Ot&&e.value.left instanceof Bt&&Z(e.key,t.option("ecma")>=2015)&&n(e.value.left)===e.key?(u(e.key,e.quote,t),t.space(),t.print("="),t.space(),e.value.right.print(t)):(e.key instanceof pe?t.with_square((function(){e.key.print(t)})):u(e.key,e.quote,t),t.colon(),e.value.print(t))})),e(Lt,(e,t)=>{e.static&&(t.print("static"),t.space()),e.key instanceof $t?u(e.key.name,e.quote,t):(t.print("["),e.key.print(t),t.print("]")),e.value&&(t.print("="),e.value.print(t)),t.semicolon()}),Rt.DEFMETHOD("_print_getter_setter",(function(e,t){var n=this;n.static&&(t.print("static"),t.space()),e&&(t.print(e),t.space()),n.key instanceof qt?u(n.key.name,n.quote,t):t.with_square((function(){n.key.print(t)})),n.value._do_print(t,!0)})),e(xt,(function(e,t){e._print_getter_setter("set",t)})),e(Nt,(function(e,t){e._print_getter_setter("get",t)})),e(kt,(function(e,t){var n;e.is_generator&&e.async?n="async*":e.is_generator?n="*":e.async&&(n="async"),e._print_getter_setter(n,t)})),Bt.DEFMETHOD("_do_print",(function(e){var t=this.definition();e.print_name(t?t.mangled_name||t.name:this.name)})),e(Bt,(function(e,t){e._do_print(t)})),e(Dn,a),e(un,(function(e,t){t.print("this")})),e(cn,(function(e,t){t.print("super")})),e(ln,(function(e,t){t.print(e.getValue())})),e(fn,(function(e,t){t.print_string(e.getValue(),e.quote,t.in_directive)})),e(pn,(function(e,t){(t.option("keep_numbers")||t.use_asm)&&e.start&&null!=e.start.raw?t.print(e.start.raw):t.print(p(e.getValue()))})),e(_n,(function(e,t){t.print(e.getValue()+"n")}));const c=/(<\s*\/\s*script)/i,l=(e,t)=>t.replace("/","\\/");function f(e,t){t.option("braces")?_(e,t):!e||e instanceof ve?t.force_semicolon():e.print(t)}function p(e){var t,n,i,r=e.toString(10).replace(/^0\./,".").replace("e+","e"),o=[r];return Math.floor(e)===e&&(e<0?o.push("-0x"+(-e).toString(16).toLowerCase()):o.push("0x"+e.toString(16).toLowerCase())),(t=/^\.0+/.exec(r))?(n=t[0].length,i=r.slice(n),o.push(i+"e-"+(i.length+n-1))):(t=/0+$/.exec(r))?(n=t[0].length,o.push(r.slice(0,-n)+"e"+n)):(t=/^(\d)\.(\d+)e(-?\d+)$/.exec(r))&&o.push(t[1]+t[2]+"e"+(t[3]-t[2].length)),function(e){for(var t=e[0],n=t.length,i=1;i{n+=e}),n}(i):"",n=n.replace(c,l),t.print(t.to_utf8(`/${n}/${i}`));const r=t.parent();r instanceof yt&&/^\w/.test(r.operator)&&r.left===e&&t.print(" ")})),d([pe,Te,Ne],a),d([Ft,Se,ot,It,ln,de,st,me,at,Xe,Ie,ht,Mt,Ae,Bt,et,tt,Ge,He,rt],(function(e){e.add_mapping(this.start)})),d([Nt,xt],(function(e){e.add_mapping(this.start,this.key.name)})),d([Rt],(function(e){e.add_mapping(this.start,this.key)}))}();const Kn=(e,t)=>null===e&&null===t||e.TYPE===t.TYPE&&e.shallow_cmp(t),Un=e=>{const t=Object.keys(e).map(t=>{if("eq"===e[t])return`this.${t} === other.${t}`;if("exist"===e[t])return`(this.${t} == null ? other.${t} == null : this.${t} === other.${t})`;throw new Error(`mkshallow: Unexpected instruction: ${e[t]}`)}).join(" && ");return new Function("other","return "+t)},Gn=()=>!0;pe.prototype.shallow_cmp=function(){throw new Error("did not find a shallow_cmp function for "+this.constructor.name)},de.prototype.shallow_cmp=Gn,me.prototype.shallow_cmp=Un({value:"eq"}),he.prototype.shallow_cmp=Gn,De.prototype.shallow_cmp=Gn,ve.prototype.shallow_cmp=Gn,Te.prototype.shallow_cmp=Un({"label.name":"eq"}),Ce.prototype.shallow_cmp=Gn,Oe.prototype.shallow_cmp=Gn,Fe.prototype.shallow_cmp=Un({init:"exist",condition:"exist",step:"exist"}),Me.prototype.shallow_cmp=Gn,Re.prototype.shallow_cmp=Gn,we.prototype.shallow_cmp=Gn,Ne.prototype.shallow_cmp=Gn,ke.prototype.shallow_cmp=Gn,Ie.prototype.shallow_cmp=Un({is_generator:"eq",async:"eq"}),Ke.prototype.shallow_cmp=Un({is_array:"eq"}),Ue.prototype.shallow_cmp=Gn,Ge.prototype.shallow_cmp=Gn,He.prototype.shallow_cmp=Un({value:"eq"}),Xe.prototype.shallow_cmp=Gn,qe.prototype.shallow_cmp=Gn,Ze.prototype.shallow_cmp=Gn,Je.prototype.shallow_cmp=Un({is_star:"eq"}),Qe.prototype.shallow_cmp=Un({alternative:"exist"}),et.prototype.shallow_cmp=Gn,tt.prototype.shallow_cmp=Gn,rt.prototype.shallow_cmp=Un({bcatch:"exist",bfinally:"exist"}),ot.prototype.shallow_cmp=Un({argname:"exist"}),at.prototype.shallow_cmp=Gn,st.prototype.shallow_cmp=Gn,ft.prototype.shallow_cmp=Un({value:"exist"}),pt.prototype.shallow_cmp=Gn,_t.prototype.shallow_cmp=Un({imported_name:"exist",imported_names:"exist"}),dt.prototype.shallow_cmp=Un({exported_definition:"exist",exported_value:"exist",exported_names:"exist",module_name:"eq",is_default:"eq"}),mt.prototype.shallow_cmp=Gn,Et.prototype.shallow_cmp=Gn,gt.prototype.shallow_cmp=Gn,Dt.prototype.shallow_cmp=Un({property:"eq"}),vt.prototype.shallow_cmp=Un({operator:"eq"}),yt.prototype.shallow_cmp=Un({operator:"eq"}),bt.prototype.shallow_cmp=Gn,Ft.prototype.shallow_cmp=Gn,Mt.prototype.shallow_cmp=Gn,Rt.prototype.shallow_cmp=Gn,wt.prototype.shallow_cmp=Un({key:"eq"}),xt.prototype.shallow_cmp=Un({static:"eq"}),Nt.prototype.shallow_cmp=Un({static:"eq"}),kt.prototype.shallow_cmp=Un({static:"eq",is_generator:"eq",async:"eq"}),It.prototype.shallow_cmp=Un({name:"exist",extends:"exist"}),Lt.prototype.shallow_cmp=Un({static:"eq"}),Bt.prototype.shallow_cmp=Un({name:"eq"}),Kt.prototype.shallow_cmp=Gn,un.prototype.shallow_cmp=Gn,cn.prototype.shallow_cmp=Gn,fn.prototype.shallow_cmp=Un({value:"eq"}),pn.prototype.shallow_cmp=Un({value:"eq"}),_n.prototype.shallow_cmp=Un({value:"eq"}),dn.prototype.shallow_cmp=function(e){return this.value.flags===e.value.flags&&this.value.source===e.value.source},mn.prototype.shallow_cmp=Gn;let Hn=null,Xn=null;class zn{constructor(e,t,n){this.name=t.name,this.orig=[t],this.init=n,this.eliminated=0,this.assignments=0,this.scope=e,this.replaced=0,this.global=!1,this.export=0,this.mangled_name=null,this.undeclared=!1,this.id=zn.next_id++,this.chained=!1,this.direct_access=!1,this.escaped=0,this.recursive_refs=0,this.references=[],this.should_replace=void 0,this.single_use=!1,this.fixed=!1,Object.seal(this)}fixed_value(){return!this.fixed||this.fixed instanceof pe?this.fixed:this.fixed()}unmangleable(e){return e||(e={}),!!(Hn&&Hn.has(this.id)&&S(e.keep_fnames,this.orig[0].name))||(this.global&&!e.toplevel||1&this.export||this.undeclared||!e.eval&&this.scope.pinned()||(this.orig[0]instanceof jt||this.orig[0]instanceof Yt)&&S(e.keep_fnames,this.orig[0].name)||this.orig[0]instanceof qt||(this.orig[0]instanceof Jt||this.orig[0]instanceof Zt)&&S(e.keep_classnames,this.orig[0].name))}mangle(e){const t=e.cache&&e.cache.props;if(this.global&&t&&t.has(this.name))this.mangled_name=t.get(this.name);else if(!this.mangled_name&&!this.unmangleable(e)){var n=this.scope,i=this.orig[0];e.ie8&&i instanceof jt&&(n=n.parent_scope);const r=Wn(this);this.mangled_name=r?r.mangled_name||r.name:n.next_mangled(e,this),this.global&&t&&t.set(this.name,this.mangled_name)}}}function Wn(e){if(e.orig[0]instanceof Qt&&e.scope.is_block_scope())return e.scope.get_defun_scope().variables.get(e.name)}function Yn(e,t){var n=e.enclosed;e:for(;;){var i=qn(++e.cname);if(!O.has(i)&&!(t.reserved.has(i)||Xn&&Xn.has(i))){for(let e=n.length;--e>=0;){const r=n[e];if(i==(r.mangled_name||r.unmangleable(t)&&r.name))continue e}return i}}}zn.next_id=1,xe.DEFMETHOD("figure_out_scope",(function(e,{parent_scope:t=null,toplevel:n=this}={}){if(e=o(e,{cache:null,ie8:!1,safari10:!1}),!(n instanceof Ne))throw new Error("Invalid toplevel scope");var i=this.parent_scope=t,r=new Map,a=null,s=null,u=[],c=new On((t,n)=>{if(t.is_block_scope()){const r=i;t.block_scope=i=new xe(t),i._block_scope=!0;const o=t instanceof ot?r.parent_scope:r;if(i.init_scope_vars(o),i.uses_with=r.uses_with,i.uses_eval=r.uses_eval,e.safari10&&(t instanceof Fe||t instanceof Me)&&u.push(i),t instanceof et){const e=i;i=r,t.expression.walk(c),i=e;for(let e=0;ee===t||(t instanceof Ht?e instanceof jt:!(e instanceof zt||e instanceof Xt)))||ee(`"${t.name}" is redeclared`,t.start.file,t.start.line,t.start.col,t.start.pos),t instanceof Wt||l(h,2),a!==i){t.mark_enclosed();var h=i.find_variable(t);t.thedef!==h&&(t.thedef=h,t.reference())}}else if(t instanceof sn){var E=r.get(t.name);if(!E)throw new Error(d("Undefined label {name} [{line},{col}]",{name:t.name,line:t.start.line,col:t.start.col}));t.thedef=E}i instanceof Ne||!(t instanceof dt||t instanceof _t)||ee(`"${t.TYPE}" statement may only appear at the top level`,t.start.file,t.start.line,t.start.col,t.start.pos)}});function l(e,t){if(s){var n=0;do{t++}while(c.parent(n++)!==s)}var i=c.parent(t);if(e.export=i instanceof dt?1:0){var r=i.exported_definition;(r instanceof Be||r instanceof Pt)&&i.is_default&&(e.export=2)}}this.walk(c),this instanceof Ne&&(this.globals=new Map);c=new On(e=>{if(e instanceof qe&&e.label)return e.label.thedef.references.push(e),!0;if(e instanceof rn){var t,i=e.name;if("eval"==i&&c.parent()instanceof mt)for(var r=e.scope;r&&!r.uses_eval;r=r.parent_scope)r.uses_eval=!0;return c.parent()instanceof pt&&c.parent(1).module_name||!(t=e.scope.find_variable(i))?(t=n.def_global(e),e instanceof on&&(t.export=1)):t.scope instanceof Ie&&"arguments"==i&&(t.scope.uses_arguments=!0),e.thedef=t,e.reference(),!e.scope.is_block_scope()||t.orig[0]instanceof Ht||(e.scope=e.scope.get_defun_scope()),!0}var o;if(e instanceof Qt&&(o=Wn(e.definition())))for(r=e.scope;r&&(_(r.enclosed,o),r!==o.scope);)r=r.parent_scope});if(this.walk(c),(e.ie8||e.safari10)&&yn(this,e=>{if(e instanceof Qt){var t=e.name,i=e.thedef.references,r=e.scope.get_defun_scope(),o=r.find_variable(t)||n.globals.get(t)||r.def_variable(e);return i.forEach((function(e){e.thedef=o,e.reference()})),e.thedef=o,e.reference(),!0}}),e.safari10)for(const e of u)e.parent_scope.variables.forEach((function(t){_(e.enclosed,t)}))})),Ne.DEFMETHOD("def_global",(function(e){var t=this.globals,n=e.name;if(t.has(n))return t.get(n);var i=new zn(this,e);return i.undeclared=!0,i.global=!0,t.set(n,i),i})),xe.DEFMETHOD("init_scope_vars",(function(e){this.variables=new Map,this.functions=new Map,this.uses_with=!1,this.uses_eval=!1,this.parent_scope=e,this.enclosed=[],this.cname=-1,this._var_name_cache=null})),xe.DEFMETHOD("var_names",(function e(){var t=this._var_name_cache;return t||(this._var_name_cache=t=new Set(this.parent_scope?e.call(this.parent_scope):null),this._added_var_names&&this._added_var_names.forEach(e=>{t.add(e)}),this.enclosed.forEach((function(e){t.add(e.name)})),this.variables.forEach((function(e,n){t.add(n)}))),t})),xe.DEFMETHOD("add_var_name",(function(e){this._added_var_names||(this._added_var_names=new Set),this._added_var_names.add(e),this._var_name_cache||this.var_names(),this._var_name_cache.add(e)})),xe.DEFMETHOD("add_child_scope",(function(e){if(e.parent_scope===this)return;e.parent_scope=this,e._var_name_cache=null,e._added_var_names&&e._added_var_names.forEach(t=>e.add_var_name(t));const t=new Set(e.enclosed),n=(()=>{const e=[];let t=this;do{e.push(t)}while(t=t.parent_scope);return e.reverse(),e})(),i=[];for(const e of n){i.forEach(t=>_(e.enclosed,t));for(const n of e.variables.values())t.has(n)&&(_(i,n),_(e.enclosed,n))}})),pe.DEFMETHOD("is_block_scope",s),It.DEFMETHOD("is_block_scope",s),Ie.DEFMETHOD("is_block_scope",s),Ne.DEFMETHOD("is_block_scope",s),tt.DEFMETHOD("is_block_scope",s),De.DEFMETHOD("is_block_scope",u),xe.DEFMETHOD("is_block_scope",(function(){return this._block_scope||!1})),ye.DEFMETHOD("is_block_scope",u),Ie.DEFMETHOD("init_scope_vars",(function(){xe.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1,this.def_variable(new Wt({name:"arguments",start:this.start,end:this.end}))})),Ve.DEFMETHOD("init_scope_vars",(function(){xe.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1})),Bt.DEFMETHOD("mark_enclosed",(function(){for(var e=this.definition(),t=this.scope;t&&(_(t.enclosed,e),t!==e.scope);)t=t.parent_scope})),Bt.DEFMETHOD("reference",(function(){this.definition().references.push(this),this.mark_enclosed()})),xe.DEFMETHOD("find_variable",(function(e){return e instanceof Bt&&(e=e.name),this.variables.get(e)||this.parent_scope&&this.parent_scope.find_variable(e)})),xe.DEFMETHOD("def_function",(function(e,t){var n=this.def_variable(e,t);return(!n.init||n.init instanceof Be)&&(n.init=t),this.functions.set(e.name,n),n})),xe.DEFMETHOD("def_variable",(function(e,t){var n=this.variables.get(e.name);return n?(n.orig.push(e),n.init&&(n.scope!==e.scope||n.init instanceof Pe)&&(n.init=t)):(n=new zn(this,e,t),this.variables.set(e.name,n),n.global=!this.parent_scope),e.thedef=n})),xe.DEFMETHOD("next_mangled",(function(e){return Yn(this,e)})),Ne.DEFMETHOD("next_mangled",(function(e){let t;const n=this.mangled_names;do{t=Yn(this,e)}while(n.has(t));return t})),Pe.DEFMETHOD("next_mangled",(function(e,t){for(var n=t.orig[0]instanceof Wt&&this.name&&this.name.definition(),i=n?n.mangled_name||n.name:null;;){var r=Yn(this,e);if(!i||i!=r)return r}})),Bt.DEFMETHOD("unmangleable",(function(e){var t=this.definition();return!t||t.unmangleable(e)})),nn.DEFMETHOD("unmangleable",s),Bt.DEFMETHOD("unreferenced",(function(){return!this.definition().references.length&&!this.scope.pinned()})),Bt.DEFMETHOD("definition",(function(){return this.thedef})),Bt.DEFMETHOD("global",(function(){return this.thedef.global})),Ne.DEFMETHOD("_default_mangler_options",(function(e){return(e=o(e,{eval:!1,ie8:!1,keep_classnames:!1,keep_fnames:!1,module:!1,reserved:[],toplevel:!1})).module&&(e.toplevel=!0),Array.isArray(e.reserved)||e.reserved instanceof Set||(e.reserved=[]),e.reserved=new Set(e.reserved),e.reserved.add("arguments"),e})),Ne.DEFMETHOD("mangle_names",(function(e){e=this._default_mangler_options(e);var t=-1,n=[];e.keep_fnames&&(Hn=new Set);const i=this.mangled_names=new Set;e.cache&&(this.globals.forEach(o),e.cache.props&&e.cache.props.forEach((function(e){i.add(e)})));var r=new On((function(i,r){if(i instanceof Te){var a=t;return r(),t=a,!0}if(i instanceof xe)i.variables.forEach(o);else if(i.is_block_scope())i.block_scope.variables.forEach(o);else if(Hn&&i instanceof ft&&i.value instanceof Ie&&!i.value.name&&S(e.keep_fnames,i.name.name))Hn.add(i.name.definition().id);else{if(i instanceof nn){let e;do{e=qn(++t)}while(O.has(e));return i.mangled_name=e,!0}!e.ie8&&!e.safari10&&i instanceof Qt&&n.push(i.definition())}}));function o(t){!(e.reserved.has(t.name)||1&t.export)&&n.push(t)}this.walk(r),(e.keep_fnames||e.keep_classnames)&&(Xn=new Set,n.forEach(t=>{t.name.length<6&&t.unmangleable(e)&&Xn.add(t.name)})),n.forEach(t=>{t.mangle(e)}),Hn=null,Xn=null})),Ne.DEFMETHOD("find_colliding_names",(function(e){const t=e.cache&&e.cache.props,n=new Set;return e.reserved.forEach(i),this.globals.forEach(r),this.walk(new On((function(e){e instanceof xe&&e.variables.forEach(r),e instanceof Qt&&r(e.definition())}))),n;function i(e){n.add(e)}function r(n){var r=n.name;if(n.global&&t&&t.has(r))r=t.get(r);else if(!n.unmangleable(e))return;i(r)}})),Ne.DEFMETHOD("expand_names",(function(e){qn.reset(),qn.sort(),e=this._default_mangler_options(e);var t=this.find_colliding_names(e),n=0;function i(i){if(i.global&&e.cache)return;if(i.unmangleable(e))return;if(e.reserved.has(i.name))return;const r=Wn(i),o=i.name=r?r.name:function(){var e;do{e=qn(n++)}while(t.has(e)||O.has(e));return e}();i.orig.forEach((function(e){e.name=o})),i.references.forEach((function(e){e.name=o}))}this.globals.forEach(i),this.walk(new On((function(e){e instanceof xe&&e.variables.forEach(i),e instanceof Qt&&i(e.definition())})))})),pe.DEFMETHOD("tail_node",c),Et.DEFMETHOD("tail_node",(function(){return this.expressions[this.expressions.length-1]})),Ne.DEFMETHOD("compute_char_frequency",(function(e){e=this._default_mangler_options(e);try{pe.prototype.print=function(t,n){this._print(t,n),this instanceof Bt&&!this.unmangleable(e)?qn.consider(this.name,-1):e.properties&&(this instanceof Dt?qn.consider(this.property,-1):this instanceof St&&function e(t){t instanceof fn?qn.consider(t.value,-1):t instanceof bt?(e(t.consequent),e(t.alternative)):t instanceof Et&&e(t.tail_node())}(this.property))},qn.consider(this.print_to_string(),1)}finally{pe.prototype.print=pe.prototype._print}qn.sort()}));const qn=(()=>{const e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_".split(""),t="0123456789".split("");let n,i;function r(){i=new Map,e.forEach((function(e){i.set(e,0)})),t.forEach((function(e){i.set(e,0)}))}function o(e,t){return i.get(t)-i.get(e)}function a(e){var t="",i=54;e++;do{e--,t+=n[e%i],e=Math.floor(e/i),i=64}while(e>0);return t}return a.consider=function(e,t){for(var n=e.length;--n>=0;)i.set(e[n],i.get(e[n])+t)},a.sort=function(){n=h(e,o).concat(h(t,o))},a.reset=r,r(),a})();function $n(){const e={};return Object.keys(jn({0:0})).forEach(t=>{const n=jn({[t]:{0:0}});n&&(e[t]=n)}),e}function jn(e){var t=gr("",e);return t.error&&t.error.defs}let Zn=void 0;pe.prototype.size=function(e,t){Zn=$n.mangle;let n=0;return bn(this,(e,t)=>{n+=e._size(t)},t||e&&e.stack),Zn=void 0,n},pe.prototype._size=()=>0,de.prototype._size=()=>8,me.prototype._size=function(){return 2+this.value.length};const Jn=e=>e.length&&e.length-1;De.prototype._size=function(){return 2+Jn(this.body)},Ne.prototype._size=function(){return Jn(this.body)},ve.prototype._size=()=>1,Te.prototype._size=()=>2,Ce.prototype._size=()=>9,Oe.prototype._size=()=>7,Fe.prototype._size=()=>8,Me.prototype._size=()=>8,we.prototype._size=()=>6,ke.prototype._size=()=>3;const Qn=e=>(e.is_generator?1:0)+(e.async?6:0);Le.prototype._size=function(){return Qn(this)+4+Jn(this.argnames)+Jn(this.body)},Pe.prototype._size=function(e){return 2*!!In(e)+Qn(this)+12+Jn(this.argnames)+Jn(this.body)},Be.prototype._size=function(){return Qn(this)+13+Jn(this.argnames)+Jn(this.body)},Ve.prototype._size=function(){let e=2+Jn(this.argnames);return 1===this.argnames.length&&this.argnames[0]instanceof Bt||(e+=2),Qn(this)+e+(Array.isArray(this.body)?Jn(this.body):this.body._size())},Ke.prototype._size=()=>2,Ge.prototype._size=function(){return 2+3*Math.floor(this.segments.length/2)},He.prototype._size=function(){return this.value.length},We.prototype._size=function(){return this.value?7:6},Ye.prototype._size=()=>6,$e.prototype._size=function(){return this.label?6:5},je.prototype._size=function(){return this.label?9:8},Qe.prototype._size=()=>4,et.prototype._size=function(){return 8+Jn(this.body)},it.prototype._size=function(){return 5+Jn(this.body)},nt.prototype._size=function(){return 8+Jn(this.body)},rt.prototype._size=function(){return 3+Jn(this.body)},ot.prototype._size=function(){let e=7+Jn(this.body);return this.argname&&(e+=2),e},at.prototype._size=function(){return 7+Jn(this.body)};const ei=(e,t)=>e+Jn(t.definitions);ut.prototype._size=function(){return ei(4,this)},ct.prototype._size=function(){return ei(4,this)},lt.prototype._size=function(){return ei(6,this)},ft.prototype._size=function(){return this.value?1:0},pt.prototype._size=function(){return this.name?4:0},_t.prototype._size=function(){let e=6;return this.imported_name&&(e+=1),(this.imported_name||this.imported_names)&&(e+=5),this.imported_names&&(e+=2+Jn(this.imported_names)),e},dt.prototype._size=function(){let e=7+(this.is_default?8:0);return this.exported_value&&(e+=this.exported_value._size()),this.exported_names&&(e+=2+Jn(this.exported_names)),this.module_name&&(e+=5),e},mt.prototype._size=function(){return 2+Jn(this.args)},ht.prototype._size=function(){return 6+Jn(this.args)},Et.prototype._size=function(){return Jn(this.expressions)},Dt.prototype._size=function(){return this.property.length+1},St.prototype._size=()=>2,vt.prototype._size=function(){return"typeof"===this.operator?7:"void"===this.operator?5:this.operator.length},yt.prototype._size=function(e){if("in"===this.operator)return 4;let t=this.operator.length;return("+"===this.operator||"-"===this.operator)&&this.right instanceof vt&&this.right.operator===this.operator&&(t+=1),this.needs_parens(e)&&(t+=2),t},bt.prototype._size=()=>3,Ft.prototype._size=function(){return 2+Jn(this.elements)},Mt.prototype._size=function(e){let t=2;return In(e)&&(t+=2),t+Jn(this.properties)};const ti=e=>"string"==typeof e?e.length:0;wt.prototype._size=function(){return ti(this.key)+1};const ni=e=>e?7:0;Nt.prototype._size=function(){return 5+ni(this.static)+ti(this.key)},xt.prototype._size=function(){return 5+ni(this.static)+ti(this.key)},kt.prototype._size=function(){return ni(this.static)+ti(this.key)+Qn(this)},It.prototype._size=function(){return(this.name?8:7)+(this.extends?8:0)},Lt.prototype._size=function(){return ni(this.static)+("string"==typeof this.key?this.key.length+2:0)+(this.value?1:0)},Bt.prototype._size=function(){return!Zn||this.definition().unmangleable(Zn)?this.name.length:2},$t.prototype._size=function(){return this.name.length},rn.prototype._size=function(){const{name:e,thedef:t}=this;return t&&t.global?e.length:"arguments"===e?9:2},Kt.prototype._size=()=>10,tn.prototype._size=function(){return this.name.length},an.prototype._size=function(){return this.name.length},un.prototype._size=()=>4,cn.prototype._size=()=>5,fn.prototype._size=function(){return this.value.length+2},pn.prototype._size=function(){const{value:e}=this;return 0===e?1:e>0&&Math.floor(e)===e?Math.floor(Math.log10(e)+1):e.toString().length},_n.prototype._size=function(){return this.value.length},dn.prototype._size=function(){return this.value.toString().length},hn.prototype._size=()=>4,En.prototype._size=()=>3,gn.prototype._size=()=>6,Dn.prototype._size=()=>0,Sn.prototype._size=()=>8,Tn.prototype._size=()=>4,An.prototype._size=()=>5,Ze.prototype._size=()=>6,Je.prototype._size=()=>6;const ii=(e,t)=>e.flags&t,ri=(e,t)=>{e.flags|=t},oi=(e,t)=>{e.flags&=~t};class ai extends On{constructor(e,t){super(),void 0===e.defaults||e.defaults||(t=!0),this.options=o(e,{arguments:!1,arrows:!t,booleans:!t,booleans_as_integers:!1,collapse_vars:!t,comparisons:!t,computed_props:!t,conditionals:!t,dead_code:!t,defaults:!0,directives:!t,drop_console:!1,drop_debugger:!t,ecma:5,evaluate:!t,expression:!1,global_defs:!1,hoist_funs:!1,hoist_props:!t,hoist_vars:!1,ie8:!1,if_return:!t,inline:!t,join_vars:!t,keep_classnames:!1,keep_fargs:!0,keep_fnames:!1,keep_infinity:!1,loops:!t,module:!1,negate_iife:!t,passes:1,properties:!t,pure_getters:!t&&"strict",pure_funcs:null,reduce_funcs:null,reduce_vars:!t,sequences:!t,side_effects:!t,switches:!t,top_retain:null,toplevel:!(!e||!e.top_retain),typeofs:!t,unsafe:!1,unsafe_arrows:!1,unsafe_comps:!1,unsafe_Function:!1,unsafe_math:!1,unsafe_symbols:!1,unsafe_methods:!1,unsafe_proto:!1,unsafe_regexp:!1,unsafe_undefined:!1,unused:!t,warnings:!1},!0);var n=this.options.global_defs;if("object"==typeof n)for(var i in n)"@"===i[0]&&D(n,i)&&(n[i.slice(1)]=ce(n[i],{expression:!0}));!0===this.options.inline&&(this.options.inline=3);var r=this.options.pure_funcs;this.pure_funcs="function"==typeof r?r:r?function(e){return!r.includes(e.expression.print_to_string())}:u;var a=this.options.top_retain;a instanceof RegExp?this.top_retain=function(e){return a.test(e.name)}:"function"==typeof a?this.top_retain=a:a&&("string"==typeof a&&(a=a.split(/,/)),this.top_retain=function(e){return a.includes(e.name)}),this.options.module&&(this.directives["use strict"]=!0,this.options.toplevel=!0);var s=this.options.toplevel;this.toplevel="string"==typeof s?{funcs:/funcs/.test(s),vars:/vars/.test(s)}:{funcs:s,vars:s};var c=this.options.sequences;this.sequences_limit=1==c?800:0|c,this.warnings_produced={},this.evaluated_regexps=new Map}option(e){return this.options[e]}exposed(e){if(e.export)return!0;if(e.global)for(var t=0,n=e.orig.length;t0||this.option("reduce_vars"))&&e.reset_opt_flags(this),e=e.transform(this),t>1){let t=0;if(yn(e,()=>{t++}),this.info("pass "+o+": last_count: "+n+", count: "+t),t=0;){if(!(r[o]instanceof wt))return;n||r[o].key!==t||(n=r[o].value)}}return n instanceof rn&&n.fixed_value()||n}}function ci(e,t,n,i,r,o){var a=t.parent(r),s=Ii(n,a);if(s)return s;if(!o&&a instanceof mt&&a.expression===n&&!(i instanceof Ve)&&!(i instanceof It)&&!a.is_expr_pure(e)&&(!(i instanceof Pe)||!(a instanceof ht)&&i.contains_this()))return!0;if(a instanceof Ft)return ci(e,t,a,a,r+1);if(a instanceof wt&&n===a.value){var u=t.parent(r+1);return ci(e,t,u,u,r+2)}if(a instanceof gt&&a.expression===n){var c=ui(i,a.property);return!o&&ci(e,t,a,c,r+1)}}function li(e){return e instanceof Ve||e instanceof Pe}function fi(e){if(e instanceof un)return!0;if(e instanceof rn)return e.definition().orig[0]instanceof jt;if(e instanceof gt){if((e=e.expression)instanceof rn){if(e.is_immutable())return!1;e=e.fixed_value()}return!e||!(e instanceof dn)&&(e instanceof ln||fi(e))}return!1}function pi(e,t){if(!(e instanceof rn))return!1;for(var n=e.definition().orig,i=n.length;--i>=0;)if(n[i]instanceof t)return!0}function _i(e){for(let t=0;;t++){const n=e.parent(t);if(n instanceof Ne)return n;if(n instanceof Ie)return n;if(n.block_scope)return n.block_scope}}function di(e,t){for(var n,i=0;(n=e.parent(i++))&&!(n instanceof xe);)if(n instanceof ot&&n.argname){n=n.argname.definition().scope;break}return n.find_variable(t)}function mi(e,t){if(1==t.length)return t[0];if(0==t.length)throw new Error("trying to create a sequence with length zero!");return p(Et,e,{expressions:t.reduce(gi,[])})}function hi(e,t){switch(typeof e){case"string":return p(fn,t,{value:e});case"number":return isNaN(e)?p(En,t):isFinite(e)?1/e<0?p(At,t,{operator:"-",expression:p(pn,t,{value:-e})}):p(pn,t,{value:e}):e<0?p(At,t,{operator:"-",expression:p(Sn,t)}):p(Sn,t);case"boolean":return p(e?Tn:An,t);case"undefined":return p(gn,t);default:if(null===e)return p(hn,t,{value:null});if(e instanceof RegExp)return p(dn,t,{value:{source:A(e.source),flags:e.flags}});throw new Error(d("Can't handle constant of type: {type}",{type:typeof e}))}}function Ei(e,t,n){return e instanceof At&&"delete"==e.operator||e instanceof mt&&e.expression===t&&(n instanceof gt||n instanceof rn&&"eval"==n.name)?mi(t,[p(pn,t,{value:0}),n]):n}function gi(e,t){return t instanceof Et?e.push(...t.expressions):e.push(t),e}function Di(e){if(null===e)return[];if(e instanceof Se)return e.body;if(e instanceof ve)return[];if(e instanceof _e)return[e];throw new Error("Can't convert thing to statement array")}function Si(e){return null===e||(e instanceof ve||e instanceof Se&&0==e.body.length)}function vi(e){return!(e instanceof Pt||e instanceof Be||e instanceof ct||e instanceof lt||e instanceof dt||e instanceof _t)}function Ai(e){return e instanceof ye&&e.body instanceof Se?e.body:e}function Ti(e){return"Call"==e.TYPE&&(e.expression instanceof Pe||Ti(e.expression))}function yi(e){return e instanceof rn&&e.definition().undeclared}si(pe,(function(e){return e})),Ne.DEFMETHOD("drop_console",(function(){return this.transform(new Fn((function(e){if("Call"==e.TYPE){var t=e.expression;if(t instanceof gt){for(var n=t.expression;n.expression;)n=n.expression;if(yi(n)&&"console"==n.name)return p(gn,e)}}})))})),pe.DEFMETHOD("equivalent_to",(function(e){return((e,t)=>{if(!Kn(e,t))return!1;const n=[e],i=[t],r=n.push.bind(n),o=i.push.bind(i);for(;n.length&&i.length;){const e=n.pop(),t=i.pop();if(!Kn(e,t))return!1;if(e._children_backwards(r),t._children_backwards(o),n.length!==i.length)return!1}return 0==n.length&&0==i.length})(this,e)})),xe.DEFMETHOD("process_expression",(function(e,t){var n=this,i=new Fn((function(r){if(e&&r instanceof he)return p(We,r,{value:r.body});if(!e&&r instanceof We){if(t){var o=r.value&&r.value.drop_side_effect_free(t,!0);return o?p(he,r,{body:o}):p(ve,r)}return p(he,r,{body:r.value||p(At,r,{operator:"void",expression:p(pn,r,{value:0})})})}if(r instanceof It||r instanceof Ie&&r!==n)return r;if(r instanceof De){var a=r.body.length-1;a>=0&&(r.body[a]=r.body[a].transform(i))}else r instanceof Qe?(r.body=r.body.transform(i),r.alternative&&(r.alternative=r.alternative.transform(i))):r instanceof we&&(r.body=r.body.transform(i));return r}));n.transform(i)})),function(e){function t(e,t){t.assignments=0,t.chained=!1,t.direct_access=!1,t.escaped=0,t.recursive_refs=0,t.references=[],t.should_replace=void 0,t.single_use=void 0,t.scope.pinned()?t.fixed=!1:t.orig[0]instanceof Xt||!e.exposed(t)?t.fixed=t.init:t.fixed=!1}function n(e,n,i){i.variables.forEach((function(i){t(n,i),null===i.fixed?(e.defs_to_safe_ids.set(i.id,e.safe_ids),s(e,i,!0)):i.fixed&&(e.loop_ids.set(i.id,e.in_loop),s(e,i,!0))}))}function i(e,n){n.block_scope&&n.block_scope.variables.forEach(n=>{t(e,n)})}function r(e){e.safe_ids=Object.create(e.safe_ids)}function o(e){e.safe_ids=Object.getPrototypeOf(e.safe_ids)}function s(e,t,n){e.safe_ids[t.id]=n}function u(e,t){if("m"==t.single_use)return!1;if(e.safe_ids[t.id]){if(null==t.fixed){var n=t.orig[0];if(n instanceof Wt||"arguments"==n.name)return!1;t.fixed=p(gn,n)}return!0}return t.fixed instanceof Be}function c(e,t,n,i){if(void 0===t.fixed)return!0;let r;return null===t.fixed&&(r=e.defs_to_safe_ids.get(t.id))?(r[t.id]=!1,e.defs_to_safe_ids.delete(t.id),!0):!!D(e.safe_ids,t.id)&&(!!u(e,t)&&(!1!==t.fixed&&(!(null!=t.fixed&&(!i||t.references.length>t.assignments))&&(t.fixed instanceof Be?i instanceof pe&&t.fixed.parent_scope===n:t.orig.every(e=>!(e instanceof Xt||e instanceof Yt||e instanceof jt))))))}function l(e,t,n,i,r,o,a){var s=e.parent(o);if(r){if(r.is_constant())return;if(r instanceof Vt)return}if(s instanceof Ct&&"="==s.operator&&i===s.right||s instanceof mt&&(i!==s.expression||s instanceof ht)||s instanceof ze&&i===s.value&&i.scope!==t.scope||s instanceof ft&&i===s.value||s instanceof Je&&i===s.value&&i.scope!==t.scope)return!(a>1)||r&&r.is_constant_expression(n)||(a=1),void((!t.escaped||t.escaped>a)&&(t.escaped=a));if(s instanceof Ft||s instanceof Ze||s instanceof yt&&Ni.has(s.operator)||s instanceof bt&&i!==s.condition||s instanceof ke||s instanceof Et&&i===s.tail_node())l(e,t,n,s,s,o+1,a);else if(s instanceof wt&&i===s.value){var u=e.parent(o+1);l(e,t,n,u,u,o+2,a)}else if(s instanceof gt&&i===s.expression&&(l(e,t,n,s,r=ui(r,s.property),o+1,a+1),r))return;o>0||s instanceof Et&&i!==s.tail_node()||s instanceof he||(t.direct_access=!0)}e(pe,a);const f=e=>yn(e,e=>{if(e instanceof Bt){var t=e.definition();t&&(e instanceof rn&&t.references.push(e),t.fixed=!1)}});e(Le,(function(e,t,i){return r(e),n(e,i,this),t(),o(e),!0})),e(Ct,(function(e,t,n){var i=this;if(i.left instanceof Ke)f(i.left);else{var r=i.left;if(r instanceof rn){var o=r.definition(),a=c(e,o,r.scope,i.right);if(o.assignments++,a){var u=o.fixed;if(u||"="==i.operator){var _="="==i.operator,d=_?i.right:i;if(!ci(n,e,i,d,0))return o.references.push(r),_||(o.chained=!0),o.fixed=_?function(){return i.right}:function(){return p(yt,i,{operator:i.operator.slice(0,-1),left:u instanceof pe?u:u(),right:i.right})},s(e,o,!1),i.right.walk(e),s(e,o,!0),l(e,o,r.scope,i,d,0,1),!0}}}}})),e(yt,(function(e){if(Ni.has(this.operator))return this.left.walk(e),r(e),this.right.walk(e),o(e),!0})),e(De,(function(e,t,n){i(n,this)})),e(it,(function(e){return r(e),this.expression.walk(e),o(e),r(e),Ee(this,e),o(e),!0})),e(It,(function(e,t){return oi(this,16),r(e),t(),o(e),!0})),e(bt,(function(e){return this.condition.walk(e),r(e),this.consequent.walk(e),o(e),r(e),this.alternative.walk(e),o(e),!0})),e(nt,(function(e,t){return r(e),t(),o(e),!0})),e(Ie,(function(e,t,i){return oi(this,16),r(e),n(e,i,this),this.uses_arguments?(t(),void o(e)):(!this.name&&(a=e.parent())instanceof mt&&a.expression===this&&!a.args.some(e=>e instanceof ke)&&this.argnames.every(e=>e instanceof Bt)&&this.argnames.forEach((t,n)=>{if(t.definition){var i=t.definition();i.orig.length>1||(void 0!==i.fixed||this.uses_arguments&&!e.has_directive("use strict")?i.fixed=!1:(i.fixed=function(){return a.args[n]||p(gn,a)},e.loop_ids.set(i.id,e.in_loop),s(e,i,!0)))}}),t(),o(e),!0);var a})),e(Ce,(function(e,t,n){i(n,this);const a=e.in_loop;return e.in_loop=this,r(e),this.body.walk(e),$i(this)&&(o(e),r(e)),this.condition.walk(e),o(e),e.in_loop=a,!0})),e(Fe,(function(e,t,n){i(n,this),this.init&&this.init.walk(e);const a=e.in_loop;return e.in_loop=this,r(e),this.condition&&this.condition.walk(e),this.body.walk(e),this.step&&($i(this)&&(o(e),r(e)),this.step.walk(e)),o(e),e.in_loop=a,!0})),e(Me,(function(e,t,n){i(n,this),f(this.init),this.object.walk(e);const a=e.in_loop;return e.in_loop=this,r(e),this.body.walk(e),o(e),e.in_loop=a,!0})),e(Qe,(function(e){return this.condition.walk(e),r(e),this.body.walk(e),o(e),this.alternative&&(r(e),this.alternative.walk(e),o(e)),!0})),e(Te,(function(e){return r(e),this.body.walk(e),o(e),!0})),e(Qt,(function(){this.definition().fixed=!1})),e(rn,(function(e,t,n){var i,r,o=this.definition();o.references.push(this),1==o.references.length&&!o.fixed&&o.orig[0]instanceof Yt&&e.loop_ids.set(o.id,e.in_loop),void 0!==o.fixed&&u(e,o)?o.fixed&&((i=this.fixed_value())instanceof Ie&&Ji(e,o)?o.recursive_refs++:i&&!n.exposed(o)&&function(e,t,n){return t.option("unused")&&!n.scope.pinned()&&n.references.length-n.recursive_refs==1&&e.loop_ids.get(n.id)===e.in_loop}(e,n,o)?o.single_use=i instanceof Ie&&!i.pinned()||i instanceof It||o.scope===this.scope&&i.is_constant_expression():o.single_use=!1,ci(n,e,this,i,0,!!(r=i)&&(r.is_constant()||r instanceof Ie||r instanceof un))&&(o.single_use?o.single_use="m":o.fixed=!1)):o.fixed=!1,l(e,o,this.scope,this,i,0,1)})),e(Ne,(function(e,i,r){this.globals.forEach((function(e){t(r,e)})),n(e,r,this)})),e(rt,(function(e,t,n){return i(n,this),r(e),Ee(this,e),o(e),this.bcatch&&(r(e),this.bcatch.walk(e),o(e)),this.bfinally&&this.bfinally.walk(e),!0})),e(vt,(function(e){var t=this;if("++"===t.operator||"--"===t.operator){var n=t.expression;if(n instanceof rn){var i=n.definition(),r=c(e,i,n.scope,!0);if(i.assignments++,r){var o=i.fixed;if(o)return i.references.push(n),i.chained=!0,i.fixed=function(){return p(yt,t,{operator:t.operator.slice(0,-1),left:p(At,t,{operator:"+",expression:o instanceof pe?o:o()}),right:p(pn,t,{value:1})})},s(e,i,!0),!0}}}})),e(ft,(function(e,t){var n=this;if(n.name instanceof Ke)f(n.name);else{var i=n.name.definition();if(n.value){if(c(e,i,n.name.scope,n.value))return i.fixed=function(){return n.value},e.loop_ids.set(i.id,e.in_loop),s(e,i,!1),t(),s(e,i,!0),!0;i.fixed=!1}}})),e(Oe,(function(e,t,n){i(n,this);const a=e.in_loop;return e.in_loop=this,r(e),t(),o(e),e.in_loop=a,!0}))}((function(e,t){e.DEFMETHOD("reduce_vars",t)})),Ne.DEFMETHOD("reset_opt_flags",(function(e){const t=this,n=e.option("reduce_vars"),i=new On((function(r,o){if(oi(r,1792),n)return e.top_retain&&r instanceof Be&&i.parent()===t&&ri(r,1024),r.reduce_vars(i,o,e)}));i.safe_ids=Object.create(null),i.in_loop=null,i.loop_ids=new Map,i.defs_to_safe_ids=new Map,t.walk(i)})),Bt.DEFMETHOD("fixed_value",(function(){var e=this.thedef.fixed;return!e||e instanceof pe?e:e()})),rn.DEFMETHOD("is_immutable",(function(){var e=this.definition().orig;return 1==e.length&&e[0]instanceof jt}));var bi=E("Array Boolean clearInterval clearTimeout console Date decodeURI decodeURIComponent encodeURI encodeURIComponent Error escape eval EvalError Function isFinite isNaN JSON Math Number parseFloat parseInt RangeError ReferenceError RegExp Object setInterval setTimeout String SyntaxError TypeError unescape URIError");rn.DEFMETHOD("is_declared",(function(e){return!this.definition().undeclared||e.option("unsafe")&&bi.has(this.name)}));var Ci,Oi=E("Infinity NaN undefined");function Fi(e){return e instanceof Sn||e instanceof En||e instanceof gn}function Mi(e,t){var n,r,o=t.find_parent(xe).get_defun_scope();!function(){var e=t.self(),i=0;do{if(e instanceof ot||e instanceof at)i++;else if(e instanceof ye)n=!0;else{if(e instanceof xe){o=e;break}e instanceof rt&&(r=!0)}}while(e=t.parent(i++))}();var a,s=10;do{a=!1,c(e),t.option("dead_code")&&_(e,t),t.option("if_return")&&l(e,t),t.sequences_limit>0&&(h(e,t),g(e,t)),t.option("join_vars")&&S(e),t.option("collapse_vars")&&u(e,t)}while(a&&s-- >0);function u(e,t){if(o.pinned())return e;for(var s,u=[],c=e.length,l=new Fn((function(e){if(M)return e;if(!F)return e!==d[m]?e:++m=0;){0==c&&t.option("unused")&&P();var d=[];for(V(e[c]);u.length>0;){d=u.pop();var m=0,h=d[d.length-1],E=null,g=null,D=null,S=B(h);if(S&&!fi(S)&&!S.has_side_effects(t)){var v=U(h),A=H(S);S instanceof rn&&v.set(S.name,!1);var y=X(h),b=z(),C=h.may_throw(t),O=h.name instanceof Wt,F=O,M=!1,R=0,w=!s||!F;if(!w){for(var x=t.self().argnames.lastIndexOf(h.name)+1;!M&&xR)R=!1;else{M=!1,m=0,F=O;for(N=c;!M&&N!(e instanceof ke))){var r=t.has_directive("use strict");r&&!i(r,n.body)&&(r=!1);var o=n.argnames.length;s=e.args.slice(o);for(var a=new Set,c=o;--c>=0;){var l=n.argnames[c],f=e.args[c];const i=l.definition&&l.definition();if(!(i&&i.orig.length>1)&&(s.unshift(p(ft,l,{name:l,value:f})),!a.has(l.name)))if(a.add(l.name),l instanceof ke){var _=e.args.slice(c);_.every(e=>!L(n,e,r))&&u.unshift([p(ft,l,{name:l.expression,value:p(Ft,e,{elements:_})})])}else f?(f instanceof Ie&&f.pinned()||L(n,f,r))&&(f=null):f=p(gn,l).transform(t),f&&u.unshift([p(ft,l,{name:l,value:f})])}}}function V(e){if(d.push(e),e instanceof Ct)e.left.has_side_effects(t)||u.push(d.slice()),V(e.right);else if(e instanceof yt)V(e.left),V(e.right);else if(e instanceof mt&&!T(e,wn))V(e.expression),e.args.forEach(V);else if(e instanceof it)V(e.expression);else if(e instanceof bt)V(e.condition),V(e.consequent),V(e.alternative);else if(e instanceof st){var n=e.definitions.length,i=n-200;for(i<0&&(i=0);i1&&!(e.name instanceof Wt)||(r>1?function(e){var t=e.value;if(t instanceof rn&&"arguments"!=t.name){var n=t.definition();if(!n.undeclared)return E=n}}(e):!t.exposed(n))?p(rn,e.name,e.name):void 0}}function K(e){return e[e instanceof Ct?"right":"value"]}function U(e){var n=new Map;if(e instanceof vt)return n;var i=new On((function(e){for(var r=e;r instanceof gt;)r=r.expression;(r instanceof rn||r instanceof un)&&n.set(r.name,n.get(r.name)||ci(t,i,e,e,0))}));return K(e).walk(i),n}function G(n){if(n.name instanceof Wt){var i=t.parent(),r=t.self().argnames,o=r.indexOf(n.name);if(o<0)i.args.length=Math.min(i.args.length,r.length-1);else{var a=i.args;a[o]&&(a[o]=p(pn,a[o],{value:0}))}return!0}var s=!1;return e[c].transform(new Fn((function(e,t,i){return s?e:e===n||e.body===n?(s=!0,e instanceof ft?(e.value=e.name instanceof Xt?p(gn,e.value):null,e):i?f.skip:null):void 0}),(function(e){if(e instanceof Et)switch(e.expressions.length){case 0:return null;case 1:return e.expressions[0]}})))}function H(e){for(;e instanceof gt;)e=e.expression;return e instanceof rn&&e.definition().scope===o&&!(n&&(v.has(e.name)||h instanceof vt||h instanceof Ct&&"="!=h.operator))}function X(e){return e instanceof vt?ki.has(e.operator):K(e).has_side_effects(t)}function z(){if(y)return!1;if(E)return!0;if(S instanceof rn){var e=S.definition();if(e.references.length-e.replaced==(h instanceof ft?1:2))return!0}return!1}function W(e){if(!e.definition)return!0;var t=e.definition();return!(1==t.orig.length&&t.orig[0]instanceof Yt)&&(t.scope.get_defun_scope()!==o||!t.references.every(e=>{var t=e.scope.get_defun_scope();return"Scope"==t.TYPE&&(t=t.parent_scope),t===o}))}}function c(e){for(var t=[],n=0;n=0;){var i=e[n];if(i instanceof Qe&&i.body instanceof We&&++t>1)return!0}return!1}(e),r=n instanceof Ie,o=e.length;--o>=0;){var s=e[o],u=S(o),c=e[u];if(r&&!c&&s instanceof We){if(!s.value){a=!0,e.splice(o,1);continue}if(s.value instanceof At&&"void"==s.value.operator){a=!0,e[o]=p(he,s,{body:s.value.expression});continue}}if(s instanceof Qe){var l;if(E(l=zi(s.body))){l.label&&m(l.label.thedef.references,l),a=!0,(s=s.clone()).condition=s.condition.negate(t);var f=D(s.body,l);s.body=p(Se,s,{body:Di(s.alternative).concat(g())}),s.alternative=p(Se,s,{body:f}),e[o]=s.transform(t);continue}if(E(l=zi(s.alternative))){l.label&&m(l.label.thedef.references,l),a=!0,(s=s.clone()).body=p(Se,s.body,{body:Di(s.body).concat(g())});f=D(s.alternative,l);s.alternative=p(Se,s.alternative,{body:f}),e[o]=s.transform(t);continue}}if(s instanceof Qe&&s.body instanceof We){var _=s.body.value;if(!_&&!s.alternative&&(r&&!c||c instanceof We&&!c.value)){a=!0,e[o]=p(he,s.condition,{body:s.condition});continue}if(_&&!s.alternative&&c instanceof We&&c.value){a=!0,(s=s.clone()).alternative=c,e[o]=s.transform(t),e.splice(u,1);continue}if(_&&!s.alternative&&(!c&&r&&i||c instanceof We)){a=!0,(s=s.clone()).alternative=c||p(We,s,{value:null}),e[o]=s.transform(t),c&&e.splice(u,1);continue}var h=e[v(o)];if(t.option("sequences")&&r&&!s.alternative&&h instanceof Qe&&h.body instanceof We&&S(u)==e.length&&c instanceof he){a=!0,(s=s.clone()).alternative=p(Se,c,{body:[c,p(We,c,{value:null})]}),e[o]=s.transform(t),e.splice(u,1);continue}}}function E(i){if(!i)return!1;for(var a=o+1,s=e.length;a=0;){var i=e[n];if(!(i instanceof ut&&d(i)))break}return n}}function _(e,t){for(var n,i=t.self(),r=0,o=0,s=e.length;r!e.value)}function h(e,t){if(!(e.length<2)){for(var n=[],i=0,r=0,o=e.length;r=t.sequences_limit&&c();var u=s.body;n.length>0&&(u=u.drop_side_effect_free(t)),u&&gi(n,u)}else s instanceof st&&d(s)||s instanceof Be||c(),e[i++]=s}c(),e.length=i,i!=o&&(a=!0)}function c(){if(n.length){var t=mi(n[0],n);e[i++]=p(he,t,{body:t}),n=[]}}}function E(e,t){if(!(e instanceof Se))return e;for(var n=null,i=0,r=e.body.length;ie instanceof xe||(e instanceof yt&&"in"===e.operator?Cn:void 0))||(s.init?s.init=n(s.init):(s.init=i.body,r--,a=!0))}}else s instanceof Me?s.init instanceof lt||s.init instanceof ct||(s.object=n(s.object)):s instanceof Qe?s.condition=n(s.condition):(s instanceof et||s instanceof we)&&(s.expression=n(s.expression));if(t.option("conditionals")&&s instanceof Qe){var u=[],c=E(s.body,u),l=E(s.alternative,u);if(!1!==c&&!1!==l&&u.length>0){var f=u.length;u.push(p(Qe,s,{condition:s.condition,body:c||p(ve,s.body),alternative:l})),u.unshift(r,1),[].splice.apply(e,u),o+=f,r+=f+1,i=null,a=!0;continue}}e[r++]=s,i=s instanceof he?s:null}e.length=r}function D(e,n){if(e instanceof st){var i,r=e.definitions[e.definitions.length-1];if(r.value instanceof Mt)if(n instanceof Ct?i=[n]:n instanceof Et&&(i=n.expressions.slice()),i){var a=!1;do{var s=i[0];if(!(s instanceof Ct))break;if("="!=s.operator)break;if(!(s.left instanceof gt))break;var u=s.left.expression;if(!(u instanceof rn))break;if(r.name.name!=u.name)break;if(!s.right.is_constant_expression(o))break;var c=s.left.property;if(c instanceof pe&&(c=c.evaluate(t)),c instanceof pe)break;c=""+c;var l=t.option("ecma")<2015&&t.has_directive("use strict")?function(e){return e.key!=c&&e.key&&e.key.name!=c}:function(e){return e.key&&e.key.name!=c};if(!r.value.properties.every(l))break;var f=r.value.properties.filter((function(e){return e.key===c}))[0];f?f.value=new Et({start:f.start,expressions:[f.value.clone(),s.right.clone()],end:f.end}):r.value.properties.push(p(wt,s,{key:c,value:s.right})),i.shift(),a=!0}while(i.length);return a&&i}}}function S(e){for(var t,n=0,i=-1,r=e.length;ni instanceof ut?(e.warn("Declarations in unreachable code! [{file}:{line},{col}]",i.start),i.remove_initializers(),n.push(i),!0):i instanceof Be&&(i===t||!e.has_directive("use strict"))?(n.push(i===t?i:p(ut,i,{definitions:[p(ft,i,{name:p(Gt,i.name,i.name),value:null})]})),!0):i instanceof xe||void 0)}function wi(e){return e instanceof ln?e.getValue():e instanceof At&&"void"==e.operator&&e.expression instanceof ln?void 0:e}function xi(e,t){return ii(e,8)||e instanceof gn||e instanceof At&&"void"==e.operator&&!e.expression.has_side_effects(t)}!function(e){function t(e){return/strict/.test(e.option("pure_getters"))}pe.DEFMETHOD("may_throw_on_access",(function(e){return!e.option("pure_getters")||this._dot_throw(e)})),e(pe,t),e(hn,u),e(gn,u),e(ln,s),e(Ft,s),e(Mt,(function(e){if(!t(e))return!1;for(var n=this.properties.length;--n>=0;)if(this.properties[n]._dot_throw(e))return!0;return!1})),e(Rt,s),e(Nt,u),e(ke,(function(e){return this.expression._dot_throw(e)})),e(Pe,s),e(Ve,s),e(Tt,s),e(At,(function(){return"void"==this.operator})),e(yt,(function(e){return("&&"==this.operator||"||"==this.operator||"??"==this.operator)&&(this.left._dot_throw(e)||this.right._dot_throw(e))})),e(Ct,(function(e){return"="==this.operator&&this.right._dot_throw(e)})),e(bt,(function(e){return this.consequent._dot_throw(e)||this.alternative._dot_throw(e)})),e(Dt,(function(e){return!!t(e)&&!(this.expression instanceof Pe&&"prototype"==this.property)})),e(Et,(function(e){return this.tail_node()._dot_throw(e)})),e(rn,(function(e){if("arguments"===this.name)return!1;if(ii(this,8))return!0;if(!t(e))return!1;if(yi(this)&&this.is_declared(e))return!1;if(this.is_immutable())return!1;var n=this.fixed_value();return!n||n._dot_throw(e)}))}((function(e,t){e.DEFMETHOD("_dot_throw",t)})),function(e){const t=E("! delete"),n=E("in instanceof == != === !== < <= >= >");e(pe,s),e(At,(function(){return t.has(this.operator)})),e(yt,(function(){return n.has(this.operator)||Ni.has(this.operator)&&this.left.is_boolean()&&this.right.is_boolean()})),e(bt,(function(){return this.consequent.is_boolean()&&this.alternative.is_boolean()})),e(Ct,(function(){return"="==this.operator&&this.right.is_boolean()})),e(Et,(function(){return this.tail_node().is_boolean()})),e(Tn,u),e(An,u)}((function(e,t){e.DEFMETHOD("is_boolean",t)})),function(e){e(pe,s),e(pn,u);var t=E("+ - ~ ++ --");e(vt,(function(){return t.has(this.operator)}));var n=E("- * / % & | ^ << >> >>>");e(yt,(function(e){return n.has(this.operator)||"+"==this.operator&&this.left.is_number(e)&&this.right.is_number(e)})),e(Ct,(function(e){return n.has(this.operator.slice(0,-1))||"="==this.operator&&this.right.is_number(e)})),e(Et,(function(e){return this.tail_node().is_number(e)})),e(bt,(function(e){return this.consequent.is_number(e)&&this.alternative.is_number(e)}))}((function(e,t){e.DEFMETHOD("is_number",t)})),(Ci=function(e,t){e.DEFMETHOD("is_string",t)})(pe,s),Ci(fn,u),Ci(Ge,u),Ci(At,(function(){return"typeof"==this.operator})),Ci(yt,(function(e){return"+"==this.operator&&(this.left.is_string(e)||this.right.is_string(e))})),Ci(Ct,(function(e){return("="==this.operator||"+="==this.operator)&&this.right.is_string(e)})),Ci(Et,(function(e){return this.tail_node().is_string(e)})),Ci(bt,(function(e){return this.consequent.is_string(e)&&this.alternative.is_string(e)}));var Ni=E("&& || ??"),ki=E("delete ++ --");function Ii(e,t){return t instanceof vt&&ki.has(t.operator)?t.expression:t instanceof Ct&&t.left===e?e:void 0}function Li(e,t){return e.size()>t.size()?t:e}function Pi(e,t){return Li(p(he,e,{body:e}),p(he,t,{body:t})).body}function Vi(e,t,n){return(In(e)?Pi:Li)(t,n)}function Bi(e){const t=new Map;for(var n of Object.keys(e))t.set(n,E(e[n]));return t}!function(e){function t(e,t){e.warn("global_defs "+t.print_to_string()+" redefined [{file}:{line},{col}]",t.start)}Ne.DEFMETHOD("resolve_defines",(function(e){return e.option("global_defs")?(this.figure_out_scope({ie8:e.option("ie8")}),this.transform(new Fn((function(n){var i=n._find_defs(e,"");if(i){for(var r,o=0,a=n;(r=this.parent(o++))&&r instanceof gt&&r.expression===a;)a=r;if(!Ii(a,r))return i;t(e,n)}})))):this})),e(pe,a),e(Dt,(function(e,t){return this.expression._find_defs(e,"."+this.property+t)})),e(Ut,(function(e){this.global()&&D(e.option("global_defs"),this.name)&&t(e,this)})),e(rn,(function(e,t){if(this.global()){var n=e.option("global_defs"),i=this.name+t;return D(n,i)?function e(t,n){if(t instanceof pe)return p(t.CTOR,n,t);if(Array.isArray(t))return p(Ft,n,{elements:t.map((function(t){return e(t,n)}))});if(t&&"object"==typeof t){var i=[];for(var r in t)D(t,r)&&i.push(p(wt,n,{key:r,value:e(t[r],n)}));return p(Mt,n,{properties:i})}return hi(t,n)}(n[i],this):void 0}}))}((function(e,t){e.DEFMETHOD("_find_defs",t)}));var Ki=["constructor","toString","valueOf"],Ui=Bi({Array:["indexOf","join","lastIndexOf","slice"].concat(Ki),Boolean:Ki,Function:Ki,Number:["toExponential","toFixed","toPrecision"].concat(Ki),Object:Ki,RegExp:["test"].concat(Ki),String:["charAt","charCodeAt","concat","indexOf","italics","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","trim"].concat(Ki)}),Gi=Bi({Array:["isArray"],Math:["abs","acos","asin","atan","ceil","cos","exp","floor","log","round","sin","sqrt","tan","atan2","pow","max","min"],Number:["isFinite","isNaN"],Object:["create","getOwnPropertyDescriptor","getOwnPropertyNames","getPrototypeOf","isExtensible","isFrozen","isSealed","keys"],String:["fromCharCode"]});!function(e){pe.DEFMETHOD("evaluate",(function(e){if(!e.option("evaluate"))return this;var t=this._eval(e,1);return!t||t instanceof RegExp?t:"function"==typeof t||"object"==typeof t?this:t}));var t=E("! ~ - + void");pe.DEFMETHOD("is_constant",(function(){return this instanceof ln?!(this instanceof dn):this instanceof At&&this.expression instanceof ln&&t.has(this.operator)})),e(_e,(function(){throw new Error(d("Cannot evaluate a statement [{file}:{line},{col}]",this.start))})),e(Ie,c),e(It,c),e(pe,c),e(ln,(function(){return this.getValue()})),e(_n,c),e(dn,(function(e){let t=e.evaluated_regexps.get(this);if(void 0===t){try{t=(0,eval)(this.print_to_string())}catch(e){t=null}e.evaluated_regexps.set(this,t)}return t||this})),e(Ge,(function(){return 1!==this.segments.length?this:this.segments[0].value})),e(Pe,(function(e){if(e.option("unsafe")){var t=function(){};return t.node=this,t.toString=function(){return this.node.print_to_string()},t}return this})),e(Ft,(function(e,t){if(e.option("unsafe")){for(var n=[],i=0,r=this.elements.length;i>":r=n>>o;break;case">>>":r=n>>>o;break;case"==":r=n==o;break;case"===":r=n===o;break;case"!=":r=n!=o;break;case"!==":r=n!==o;break;case"<":r=n":r=n>o;break;case">=":r=n>=o;break;default:return this}return isNaN(r)&&e.find_parent(we)?this:r})),e(bt,(function(e,t){var n=this.condition._eval(e,t);if(n===this.condition)return this;var i=n?this.consequent:this.alternative,r=i._eval(e,t);return r===i?this:r})),e(rn,(function(e,t){var n,i=this.fixed_value();if(!i)return this;if(D(i,"_eval"))n=i._eval();else{if(this._eval=c,n=i._eval(e,t),delete this._eval,n===i)return this;i._eval=function(){return n}}if(n&&"object"==typeof n){var r=this.definition().escaped;if(r&&t>r)return this}return n}));var r={Array:Array,Math:Math,Number:Number,Object:Object,String:String},o=Bi({Math:["E","LN10","LN2","LOG2E","LOG10E","PI","SQRT1_2","SQRT2"],Number:["MAX_VALUE","MIN_VALUE","NaN","NEGATIVE_INFINITY","POSITIVE_INFINITY"]});e(gt,(function(e,t){if(e.option("unsafe")){var n=this.property;if(n instanceof pe&&(n=n._eval(e,t))===this.property)return this;var i,a=this.expression;if(yi(a)){var s,u="hasOwnProperty"===a.name&&"call"===n&&(s=e.parent()&&e.parent().args)&&s&&s[0]&&s[0].evaluate(e);if(null==(u=u instanceof Dt?u.expression:u)||u.thedef&&u.thedef.undeclared)return this.clone();var c=o.get(a.name);if(!c||!c.has(n))return this;i=r[a.name]}else{if(!(i=a._eval(e,t+1))||i===a||!D(i,n))return this;if("function"==typeof i)switch(n){case"name":return i.node.name?i.node.name.name:"";case"length":return i.node.argnames.length;default:return this}}return i[n]}return this})),e(mt,(function(e,t){var n=this.expression;if(e.option("unsafe")&&n instanceof gt){var i,o=n.property;if(o instanceof pe&&(o=o._eval(e,t))===n.property)return this;var a=n.expression;if(yi(a)){var s="hasOwnProperty"===a.name&&"call"===o&&this.args[0]&&this.args[0].evaluate(e);if(null==(s=s instanceof Dt?s.expression:s)||s.thedef&&s.thedef.undeclared)return this.clone();var u=Gi.get(a.name);if(!u||!u.has(o))return this;i=r[a.name]}else{if((i=a._eval(e,t+1))===a||!i)return this;var c=Ui.get(i.constructor.name);if(!c||!c.has(o))return this}for(var l=[],f=0,p=this.args.length;f=":return r.operator="<",r;case">":return r.operator="<=",r}switch(o){case"==":return r.operator="!=",r;case"!=":return r.operator="==",r;case"===":return r.operator="!==",r;case"!==":return r.operator="===",r;case"&&":return r.operator="||",r.left=r.left.negate(e,i),r.right=r.right.negate(e),n(this,r,i);case"||":return r.operator="&&",r.left=r.left.negate(e,i),r.right=r.right.negate(e),n(this,r,i);case"??":return r.right=r.right.negate(e),n(this,r,i)}return t(this)}))}((function(e,t){e.DEFMETHOD("negate",(function(e,n){return t.call(this,e,n)}))}));var Hi=E("Boolean decodeURI decodeURIComponent Date encodeURI encodeURIComponent Error escape EvalError isFinite isNaN Number Object parseFloat parseInt RangeError ReferenceError String SyntaxError TypeError unescape URIError");mt.DEFMETHOD("is_expr_pure",(function(e){if(e.option("unsafe")){var t=this.expression,n=this.args&&this.args[0]&&this.args[0].evaluate(e);if(t.expression&&"hasOwnProperty"===t.expression.name&&(null==n||n.thedef&&n.thedef.undeclared))return!1;if(yi(t)&&Hi.has(t.name))return!0;let i;if(t instanceof Dt&&yi(t.expression)&&(i=Gi.get(t.expression.name))&&i.has(t.property))return!0}return!!T(this,Mn)||!e.pure_funcs(this)})),pe.DEFMETHOD("is_call_pure",s),Dt.DEFMETHOD("is_call_pure",(function(e){if(!e.option("unsafe"))return;const t=this.expression;let n;return t instanceof Ft?n=Ui.get("Array"):t.is_boolean()?n=Ui.get("Boolean"):t.is_number(e)?n=Ui.get("Number"):t instanceof dn?n=Ui.get("RegExp"):t.is_string(e)?n=Ui.get("String"):this.may_throw_on_access(e)||(n=Ui.get("Object")),n&&n.has(this.property)}));const Xi=new Set(["Number","String","Array","Object","Function","Promise"]);function zi(e){return e&&e.aborts()}!function(e){function t(e,t){for(var n=e.length;--n>=0;)if(e[n].has_side_effects(t))return!0;return!1}e(pe,u),e(ve,s),e(ln,s),e(un,s),e(De,(function(e){return t(this.body,e)})),e(mt,(function(e){return!(this.is_expr_pure(e)||this.expression.is_call_pure(e)&&!this.expression.has_side_effects(e))||t(this.args,e)})),e(et,(function(e){return this.expression.has_side_effects(e)||t(this.body,e)})),e(it,(function(e){return this.expression.has_side_effects(e)||t(this.body,e)})),e(rt,(function(e){return t(this.body,e)||this.bcatch&&this.bcatch.has_side_effects(e)||this.bfinally&&this.bfinally.has_side_effects(e)})),e(Qe,(function(e){return this.condition.has_side_effects(e)||this.body&&this.body.has_side_effects(e)||this.alternative&&this.alternative.has_side_effects(e)})),e(Te,(function(e){return this.body.has_side_effects(e)})),e(he,(function(e){return this.body.has_side_effects(e)})),e(Ie,s),e(It,(function(e){return!(!this.extends||!this.extends.has_side_effects(e))||t(this.properties,e)})),e(yt,(function(e){return this.left.has_side_effects(e)||this.right.has_side_effects(e)})),e(Ct,u),e(bt,(function(e){return this.condition.has_side_effects(e)||this.consequent.has_side_effects(e)||this.alternative.has_side_effects(e)})),e(vt,(function(e){return ki.has(this.operator)||this.expression.has_side_effects(e)})),e(rn,(function(e){return!this.is_declared(e)&&!Xi.has(this.name)})),e($t,s),e(Ut,s),e(Mt,(function(e){return t(this.properties,e)})),e(Rt,(function(e){return this.computed_key()&&this.key.has_side_effects(e)||this.value.has_side_effects(e)})),e(Lt,(function(e){return this.computed_key()&&this.key.has_side_effects(e)||this.static&&this.value&&this.value.has_side_effects(e)})),e(kt,(function(e){return this.computed_key()&&this.key.has_side_effects(e)})),e(Nt,(function(e){return this.computed_key()&&this.key.has_side_effects(e)})),e(xt,(function(e){return this.computed_key()&&this.key.has_side_effects(e)})),e(Ft,(function(e){return t(this.elements,e)})),e(Dt,(function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)})),e(St,(function(e){return this.expression.may_throw_on_access(e)||this.expression.has_side_effects(e)||this.property.has_side_effects(e)})),e(Et,(function(e){return t(this.expressions,e)})),e(st,(function(e){return t(this.definitions,e)})),e(ft,(function(){return this.value})),e(He,s),e(Ge,(function(e){return t(this.segments,e)}))}((function(e,t){e.DEFMETHOD("has_side_effects",t)})),function(e){function t(e,t){for(var n=e.length;--n>=0;)if(e[n].may_throw(t))return!0;return!1}e(pe,u),e(ln,s),e(ve,s),e(Ie,s),e(Ut,s),e(un,s),e(It,(function(e){return!(!this.extends||!this.extends.may_throw(e))||t(this.properties,e)})),e(Ft,(function(e){return t(this.elements,e)})),e(Ct,(function(e){return!!this.right.may_throw(e)||!(!e.has_directive("use strict")&&"="==this.operator&&this.left instanceof rn)&&this.left.may_throw(e)})),e(yt,(function(e){return this.left.may_throw(e)||this.right.may_throw(e)})),e(De,(function(e){return t(this.body,e)})),e(mt,(function(e){return!!t(this.args,e)||!this.is_expr_pure(e)&&(!!this.expression.may_throw(e)||(!(this.expression instanceof Ie)||t(this.expression.body,e)))})),e(it,(function(e){return this.expression.may_throw(e)||t(this.body,e)})),e(bt,(function(e){return this.condition.may_throw(e)||this.consequent.may_throw(e)||this.alternative.may_throw(e)})),e(st,(function(e){return t(this.definitions,e)})),e(Dt,(function(e){return this.expression.may_throw_on_access(e)||this.expression.may_throw(e)})),e(Qe,(function(e){return this.condition.may_throw(e)||this.body&&this.body.may_throw(e)||this.alternative&&this.alternative.may_throw(e)})),e(Te,(function(e){return this.body.may_throw(e)})),e(Mt,(function(e){return t(this.properties,e)})),e(Rt,(function(e){return this.value.may_throw(e)})),e(Lt,(function(e){return this.computed_key()&&this.key.may_throw(e)||this.static&&this.value&&this.value.may_throw(e)})),e(kt,(function(e){return this.computed_key()&&this.key.may_throw(e)})),e(Nt,(function(e){return this.computed_key()&&this.key.may_throw(e)})),e(xt,(function(e){return this.computed_key()&&this.key.may_throw(e)})),e(We,(function(e){return this.value&&this.value.may_throw(e)})),e(Et,(function(e){return t(this.expressions,e)})),e(he,(function(e){return this.body.may_throw(e)})),e(St,(function(e){return this.expression.may_throw_on_access(e)||this.expression.may_throw(e)||this.property.may_throw(e)})),e(et,(function(e){return this.expression.may_throw(e)||t(this.body,e)})),e(rn,(function(e){return!this.is_declared(e)&&!Xi.has(this.name)})),e($t,s),e(rt,(function(e){return this.bcatch?this.bcatch.may_throw(e):t(this.body,e)||this.bfinally&&this.bfinally.may_throw(e)})),e(vt,(function(e){return!("typeof"==this.operator&&this.expression instanceof rn)&&this.expression.may_throw(e)})),e(ft,(function(e){return!!this.value&&this.value.may_throw(e)}))}((function(e,t){e.DEFMETHOD("may_throw",t)})),function(e){function t(e){let t=!0;return yn(this,n=>{if(n instanceof rn){if(ii(this,16))return t=!1,Cn;var r=n.definition();if(i(r,this.enclosed)&&!this.variables.has(r.name)){if(e){var o=e.find_variable(n);if(r.undeclared?!o:o===r)return t="f",!0}return t=!1,Cn}return!0}if(n instanceof un&&this instanceof Ve)return t=!1,Cn}),t}e(pe,s),e(ln,u),e(It,(function(e){if(this.extends&&!this.extends.is_constant_expression(e))return!1;for(const t of this.properties){if(t.computed_key()&&!t.key.is_constant_expression(e))return!1;if(t.static&&t.value&&!t.value.is_constant_expression(e))return!1}return t.call(this,e)})),e(Ie,t),e(vt,(function(){return this.expression.is_constant_expression()})),e(yt,(function(){return this.left.is_constant_expression()&&this.right.is_constant_expression()})),e(Ft,(function(){return this.elements.every(e=>e.is_constant_expression())})),e(Mt,(function(){return this.properties.every(e=>e.is_constant_expression())})),e(Rt,(function(){return!(this.key instanceof pe)&&this.value.is_constant_expression()}))}((function(e,t){e.DEFMETHOD("is_constant_expression",t)})),function(e){function t(){for(var e=0;e{if(e instanceof Ut){const n=e.definition();!t&&!n.global||o.has(n.id)||o.set(n.id,n)}}),n.value){if(n.name instanceof Ke)n.walk(_);else{var r=n.name.definition();g(c,r.id,n.value),r.chained||n.name.fixed_value()!==n.value||a.set(r.id,n)}n.value.has_side_effects(e)&&n.value.walk(_)}})),!0}return h(r,s)}}));t.walk(_),_=new On(h),o.forEach((function(e){var t=c.get(e.id);t&&t.forEach((function(e){e.walk(_)}))}));var d=new Fn((function(s,c,_){var h=d.parent();if(i){const e=r(s);if(e instanceof rn){var E=e.definition(),g=o.has(E.id);if(s instanceof Ct){if(!g||a.has(E.id)&&a.get(E.id)!==s)return Ei(h,s,s.right.transform(d))}else if(!g)return _?f.skip:p(pn,s,{value:0})}}if(l===t){if(s.name&&(s instanceof Vt&&!S(e.option("keep_classnames"),(E=s.name.definition()).name)||s instanceof Pe&&!S(e.option("keep_fnames"),(E=s.name.definition()).name))&&(!o.has(E.id)||E.orig.length>1)&&(s.name=null),s instanceof Ie&&!(s instanceof Le))for(var D=!e.option("keep_fargs"),v=s.argnames,A=v.length;--A>=0;){var T=v[A];T instanceof ke&&(T=T.expression),T instanceof Ot&&(T=T.left),T instanceof Ke||o.has(T.definition().id)?D=!1:(ri(T,1),D&&(v.pop(),e[T.unreferenced()?"warn":"info"]("Dropping unused function argument {name} [{file}:{line},{col}]",R(T))))}if((s instanceof Be||s instanceof Pt)&&s!==t){const t=s.name.definition();if(!(t.global&&!n||o.has(t.id))){if(e[s.name.unreferenced()?"warn":"info"]("Dropping unused function {name} [{file}:{line},{col}]",R(s.name)),t.eliminated++,s instanceof Pt){const t=s.drop_side_effect_free(e);if(t)return p(he,s,{body:t})}return _?f.skip:p(ve,s)}}if(s instanceof st&&!(h instanceof Me&&h.init===s)){var y=!(h instanceof Ne||s instanceof ut),b=[],C=[],O=[],F=[];switch(s.definitions.forEach((function(t){t.value&&(t.value=t.value.transform(d));var n=t.name instanceof Ke,r=n?new zn(null,{name:""}):t.name.definition();if(y&&r.global)return O.push(t);if(!i&&!y||n&&(t.name.names.length||t.name.is_array||1!=e.option("pure_getters"))||o.has(r.id)){if(t.value&&a.has(r.id)&&a.get(r.id)!==t&&(t.value=t.value.drop_side_effect_free(e)),t.name instanceof Gt){var c=u.get(r.id);if(c.length>1&&(!t.value||r.orig.indexOf(t.name)>r.eliminated)){if(e.warn("Dropping duplicated definition of variable {name} [{file}:{line},{col}]",R(t.name)),t.value){var l=p(rn,t.name,t.name);r.references.push(l);var f=p(Ct,t,{operator:"=",left:l,right:t.value});a.get(r.id)===t&&a.set(r.id,f),F.push(f.transform(d))}return m(c,t),void r.eliminated++}}t.value?(F.length>0&&(O.length>0?(F.push(t.value),t.value=mi(t.value,F)):b.push(p(he,s,{body:mi(s,F)})),F=[]),O.push(t)):C.push(t)}else if(r.orig[0]instanceof Qt){(_=t.value&&t.value.drop_side_effect_free(e))&&F.push(_),t.value=null,C.push(t)}else{var _;(_=t.value&&t.value.drop_side_effect_free(e))?(n||e.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]",R(t.name)),F.push(_)):n||e[t.name.unreferenced()?"warn":"info"]("Dropping unused variable {name} [{file}:{line},{col}]",R(t.name)),r.eliminated++}})),(C.length>0||O.length>0)&&(s.definitions=C.concat(O),b.push(s)),F.length>0&&b.push(p(he,s,{body:mi(s,F)})),b.length){case 0:return _?f.skip:p(ve,s);case 1:return b[0];default:return _?f.splice(b):p(Se,s,{body:b})}}if(s instanceof Fe)return c(s,this),s.init instanceof Se&&(M=s.init,s.init=M.body.pop(),M.body.push(s)),s.init instanceof he?s.init=s.init.body:Si(s.init)&&(s.init=null),M?_?f.splice(M.body):M:s;if(s instanceof Te&&s.body instanceof Fe){if(c(s,this),s.body instanceof Se){var M=s.body;return s.body=M.body.pop(),M.body.push(s),_?f.splice(M.body):M}return s}if(s instanceof Se)return c(s,this),_&&s.body.every(vi)?f.splice(s.body):s;if(s instanceof xe){const e=l;return l=s,c(s,this),l=e,s}}function R(e){return{name:e.name,file:e.start.file,line:e.start.line,col:e.start.col}}}));function h(e,n){var i;const s=r(e);if(s instanceof rn&&!pi(e.left,Ht)&&t.variables.get(s.name)===(i=s.definition()))return e instanceof Ct&&(e.right.walk(_),i.chained||e.left.fixed_value()!==e.right||a.set(i.id,e)),!0;if(e instanceof rn){if(i=e.definition(),!o.has(i.id)&&(o.set(i.id,i),i.orig[0]instanceof Qt)){const e=i.scope.is_block_scope()&&i.scope.get_defun_scope().variables.get(i.name);e&&o.set(e.id,e)}return!0}if(e instanceof xe){var u=l;return l=e,n(),l=u,!0}}t.transform(d)})),xe.DEFMETHOD("hoist_declarations",(function(e){var t=this;if(e.has_directive("use asm"))return t;if(!Array.isArray(t.body))return t;var n=e.option("hoist_funs"),i=e.option("hoist_vars");if(n||i){var r=[],o=[],a=new Map,s=0,u=0;yn(t,e=>e instanceof xe&&e!==t||(e instanceof ut?(++u,!0):void 0)),i=i&&u>1;var c=new Fn((function(u){if(u!==t){if(u instanceof me)return r.push(u),p(ve,u);if(n&&u instanceof Be&&!(c.parent()instanceof dt)&&c.parent()===t)return o.push(u),p(ve,u);if(i&&u instanceof ut){u.definitions.forEach((function(e){e.name instanceof Ke||(a.set(e.name.name,e),++s)}));var l=u.to_assignments(e),f=c.parent();if(f instanceof Me&&f.init===u){if(null==l){var _=u.definitions[0].name;return p(rn,_,_)}return l}return f instanceof Fe&&f.init===u?l:l?p(he,u,{body:l}):p(ve,u)}if(u instanceof xe)return u}}));if(t=t.transform(c),s>0){var l=[];const e=t instanceof Ie,n=e?t.args_as_names():null;if(a.forEach((t,i)=>{e&&n.some(e=>e.name===t.name.name)?a.delete(i):((t=t.clone()).value=null,l.push(t),a.set(i,t))}),l.length>0){for(var f=0;f"string"==typeof e.key)){a(o,this);const e=new Map,t=[];return c.properties.forEach((function(n){t.push(p(ft,o,{name:s(r,n.key,e),value:n.value}))})),i.set(u.id,e),f.splice(t)}}else if(o instanceof gt&&o.expression instanceof rn){const e=i.get(o.expression.definition().id);if(e){const t=e.get(String(wi(o.property))),n=p(rn,o,{name:t.name,scope:o.expression.scope,thedef:t});return n.reference({}),n}}function s(e,n,i){const r=p(e.CTOR,e,{name:t.make_var_name(e.name+"_"+n),scope:t}),o=t.def_variable(r);return i.set(String(n),o),t.enclosed.push(o),r}}));return t.transform(r)})),function(e){function t(e,t,n){var i=e.length;if(!i)return null;for(var r=[],o=!1,a=0;a0&&(u[0].body=s.concat(u[0].body)),e.body=u;n=u[u.length-1];){var d=n.body[n.body.length-1];if(d instanceof $e&&t.loopcontrol_target(d)===e&&n.body.pop(),n.body.length||n instanceof it&&(o||n.expression.has_side_effects(t)))break;u.pop()===o&&(o=null)}if(0==u.length)return p(Se,e,{body:s.concat(p(he,e.expression,{body:e.expression}))}).optimize(t);if(1==u.length&&(u[0]===a||u[0]===o)){var m=!1,h=new On((function(t){if(m||t instanceof Ie||t instanceof he)return!0;t instanceof $e&&h.loopcontrol_target(t)===e&&(m=!0)}));if(e.walk(h),!m){var E,g=u[0].body.slice();return(E=u[0].expression)&&g.unshift(p(he,E,{body:E})),g.unshift(p(he,e.expression,{body:e.expression})),p(Se,e,{body:g}).optimize(t)}}return e;function D(e,n){n&&!zi(n)?n.body=n.body.concat(e.body):Ri(t,e,s)}})),si(rt,(function(e,t){if(Mi(e.body,t),e.bcatch&&e.bfinally&&e.bfinally.body.every(Si)&&(e.bfinally=null),t.option("dead_code")&&e.body.every(Si)){var n=[];return e.bcatch&&Ri(t,e.bcatch,n),e.bfinally&&n.push(...e.bfinally.body),p(Se,e,{body:n}).optimize(t)}return e})),st.DEFMETHOD("remove_initializers",(function(){var e=[];this.definitions.forEach((function(t){t.name instanceof Ut?(t.value=null,e.push(t)):yn(t.name,n=>{n instanceof Ut&&e.push(p(ft,t,{name:n,value:null}))})})),this.definitions=e})),st.DEFMETHOD("to_assignments",(function(e){var t=e.option("reduce_vars"),n=this.definitions.reduce((function(e,n){if(!n.value||n.name instanceof Ke){if(n.value){var i=p(ft,n,{name:n.name,value:n.value}),r=p(ut,n,{definitions:[i]});e.push(r)}}else{var o=p(rn,n.name,n.name);e.push(p(Ct,n,{operator:"=",left:o,right:n.value})),t&&(o.definition().fixed=!1)}return(n=n.name.definition()).eliminated++,n.replaced--,e}),[]);return 0==n.length?null:mi(this,n)})),si(st,(function(e){return 0==e.definitions.length?p(ve,e):e})),si(_t,(function(e){return e})),si(mt,(function(e,t){var n=e.expression,i=n;sr(e,t,e.args);var r=e.args.every(e=>!(e instanceof ke));if(t.option("reduce_vars")&&i instanceof rn&&!T(e,wn)){const e=i.fixed_value();ji(e,t)||(i=e)}var o=i instanceof Ie;if(t.option("unused")&&r&&o&&!i.uses_arguments&&!i.pinned()){for(var a=0,s=0,u=0,c=e.args.length;u=i.argnames.length;if(l||ii(i.argnames[u],1)){if(D=e.args[u].drop_side_effect_free(t))e.args[a++]=D;else if(!l){e.args[a++]=p(pn,e.args[u],{value:0});continue}}else e.args[a++]=e.args[u];s=a}e.args.length=s}if(t.option("unsafe"))if(yi(n))switch(n.name){case"Array":if(1!=e.args.length)return p(Ft,e,{elements:e.args}).optimize(t);if(e.args[0]instanceof pn&&e.args[0].value<=11){const t=[];for(let n=0;n=1&&e.args.length<=2&&e.args.every(e=>{var n=e.evaluate(t);return f.push(n),e!==n})){let[n,i]=f;n=A(new RegExp(n).source);const r=p(dn,e,{value:{source:n,flags:i}});if(r._eval(t)!==r)return r;t.warn("Error converting {expr} [{file}:{line},{col}]",{expr:e.print_to_string(),file:e.start.file,line:e.start.line,col:e.start.col})}}else if(n instanceof Dt)switch(n.property){case"toString":if(0==e.args.length&&!n.expression.may_throw_on_access(t))return p(yt,e,{left:p(fn,e,{value:""}),operator:"+",right:n.expression}).optimize(t);break;case"join":if(n.expression instanceof Ft)e:{var _;if(!(e.args.length>0&&(_=e.args[0].evaluate(t))===e.args[0])){var d,m=[],h=[];for(u=0,c=n.expression.elements.length;u0&&(m.push(p(fn,e,{value:h.join(_)})),h.length=0),m.push(E))}return h.length>0&&m.push(p(fn,e,{value:h.join(_)})),0==m.length?p(fn,e,{value:""}):1==m.length?m[0].is_string(t)?m[0]:p(yt,m[0],{operator:"+",left:p(fn,e,{value:""}),right:m[0]}):""==_?(d=m[0].is_string(t)||m[1].is_string(t)?m.shift():p(fn,e,{value:""}),m.reduce((function(e,t){return p(yt,t,{operator:"+",left:e,right:t})}),d).optimize(t)):((D=e.clone()).expression=D.expression.clone(),D.expression.expression=D.expression.expression.clone(),D.expression.expression.elements=m,Vi(t,e,D));var D}}break;case"charAt":if(n.expression.is_string(t)){var S=e.args[0],v=S?S.evaluate(t):0;if(v!==S)return p(St,n,{expression:n.expression,property:hi(0|v,S||n)}).optimize(t)}break;case"apply":if(2==e.args.length&&e.args[1]instanceof Ft)return(L=e.args[1].elements.slice()).unshift(e.args[0]),p(mt,e,{expression:p(Dt,n,{expression:n.expression,property:"call"}),args:L}).optimize(t);break;case"call":var y=n.expression;if(y instanceof rn&&(y=y.fixed_value()),y instanceof Ie&&!y.contains_this())return(e.args.length?mi(this,[e.args[0],p(mt,e,{expression:n.expression,args:e.args.slice(1)})]):p(mt,e,{expression:n.expression,args:[]})).optimize(t)}if(t.option("unsafe_Function")&&yi(n)&&"Function"==n.name){if(0==e.args.length)return p(Pe,e,{argnames:[],body:[]}).optimize(t);if(e.args.every(e=>e instanceof fn))try{var b=ce(M="n(function("+e.args.slice(0,-1).map((function(e){return e.value})).join(",")+"){"+e.args[e.args.length-1].value+"})"),C={ie8:t.option("ie8")};b.figure_out_scope(C);var O,F=new ai(t.options);(b=b.transform(F)).figure_out_scope(C),qn.reset(),b.compute_char_frequency(C),b.mangle_names(C),yn(b,e=>{if(li(e))return O=e,Cn});var M=Bn();return Se.prototype._codegen.call(O,O,M),e.args=[p(fn,e,{value:O.argnames.map((function(e){return e.print_to_string()})).join(",")}),p(fn,e.args[e.args.length-1],{value:M.get().replace(/^{|}$/g,"")})],e}catch(n){if(!(n instanceof Q))throw n;t.warn("Error parsing code passed to new Function [{file}:{line},{col}]",e.args[e.args.length-1].start),t.warn(n.toString())}}var R=o&&i.body[0],w=o&&!i.is_generator&&!i.async,x=w&&t.option("inline")&&!e.is_expr_pure(t);if(x&&R instanceof We){let n=R.value;if(!n||n.is_constant_expression()){n=n?n.clone(!0):p(gn,e);const i=e.args.concat(n);return mi(e,i).optimize(t)}if(1===i.argnames.length&&i.argnames[0]instanceof Wt&&e.args.length<2&&n instanceof rn&&n.name===i.argnames[0].name){let n;return e.args[0]instanceof gt&&(n=t.parent())instanceof mt&&n.expression===e?mi(e,[p(pn,e,{value:0}),e.args[0].optimize(t)]):(e.args[0]||p(gn)).optimize(t)}}if(x){var N,k,I=-1;let o,a,s;if(r&&!i.uses_arguments&&!i.pinned()&&!(t.parent()instanceof It)&&!(i.name&&i instanceof Pe)&&(a=function(e){var n=i.body,r=n.length;if(t.option("inline")<3)return 1==r&&V(e);e=null;for(var o=0;o!e.value))return!1}else{if(e)return!1;a instanceof ve||(e=a)}}return V(e)}(R))&&(n===i||T(e,Rn)||t.option("unused")&&1==(o=n.definition()).references.length&&!Ji(t,o)&&i.is_constant_expression(n.scope))&&!T(e,Mn|wn)&&!i.contains_this()&&function(){var n=new Set;do{if((N=t.parent(++I)).is_block_scope()&&N.block_scope&&N.block_scope.variables.forEach((function(e){n.add(e.name)})),N instanceof ot)N.argname&&n.add(N.argname.name);else if(N instanceof ye)k=[];else if(N instanceof rn&&N.fixed_value()instanceof xe)return!1}while(!(N instanceof xe));var r=!(N instanceof Ne)||t.toplevel.vars,o=t.option("inline");return!!function(e,t){for(var n=i.body.length,r=0;r=0;){var s=o.definitions[a].name;if(s instanceof Ke||e.has(s.name)||Oi.has(s.name)||N.var_names().has(s.name))return!1;k&&k.push(s.definition())}}}return!0}(n,o>=3&&r)&&(!!function(e,t){for(var n=0,r=i.argnames.length;n=2&&r)&&(!!function(){var t=new Set;const n=e=>{if(e instanceof xe){var n=new Set;return e.enclosed.forEach((function(e){n.add(e.name)})),e.variables.forEach((function(e){n.delete(e)})),n.forEach((function(e){t.add(e)})),!0}};for(let t=0;t=0;){var s=o.definitions[a].name;if(s instanceof Ke||t.has(s.name))return!1}}return!0}()&&(!k||0==k.length||!tr(i,k))))}()&&(s=_i(t))&&!Qi(s,i)&&!function(){let e,n=0;for(;e=t.parent(n++);){if(e instanceof Ot)return!0;if(e instanceof De)break}return!1}()&&!(N instanceof It))return ri(i,256),s.add_child_scope(i),mi(e,function(n){var r=[],o=[];if(function(t,n){for(var r=i.argnames.length,o=e.args.length;--o>=r;)n.push(e.args[o]);for(o=r;--o>=0;){var a=i.argnames[o],s=e.args[o];if(ii(a,1)||!a.name||N.var_names().has(a.name))s&&n.push(s);else{var u=p(Gt,a,a);a.definition().orig.push(u),!s&&k&&(s=p(gn,e)),B(t,n,u,s)}}t.reverse(),n.reverse()}(r,o),function(e,t){for(var n=t.length,r=0,o=i.body.length;re.name!=l.name)){var f=i.variables.get(l.name),_=p(rn,l,l);f.references.push(_),t.splice(n++,0,p(Ct,c,{operator:"=",left:_,right:p(gn,l)}))}}}}(r,o),o.push(n),r.length){const e=N.body.indexOf(t.parent(I-1))+1;N.body.splice(e,0,p(ut,i,{definitions:r}))}return o.map(e=>e.clone(!0))}(a)).optimize(t)}if(w&&t.option("side_effects")&&i.body.every(Si)){var L=e.args.concat(p(gn,e));return mi(e,L).optimize(t)}if(t.option("negate_iife")&&t.parent()instanceof he&&Ti(e))return e.negate(t,!0);var P=e.evaluate(t);return P!==e?(P=hi(P,e).optimize(t),Vi(t,P,e)):e;function V(t){return t?t instanceof We?t.value?t.value.clone(!0):p(gn,e):t instanceof he?p(At,t,{operator:"void",expression:t.body.clone(!0)}):void 0:p(gn,e)}function B(t,n,i,r){var o=i.definition();N.variables.set(i.name,o),N.enclosed.push(o),N.var_names().has(i.name)||(N.add_var_name(i.name),t.push(p(ft,i,{name:i,value:null})));var a=p(rn,i,i);o.references.push(a),r&&n.push(p(Ct,e,{operator:"=",left:a,right:r.clone()}))}})),si(ht,(function(e,t){return t.option("unsafe")&&yi(e.expression)&&["Object","RegExp","Function","Error","Array"].includes(e.expression.name)?p(mt,e,e).transform(t):e})),si(Et,(function(e,t){if(!t.option("side_effects"))return e;var n,i,r=[];n=In(t),i=e.expressions.length-1,e.expressions.forEach((function(e,o){o0&&xi(r[o],t);)o--;o0)return(n=this.clone()).right=mi(this.right,t.slice(o)),(t=t.slice(0,o)).push(n),mi(this,t).optimize(e)}}return this}));var Zi=E("== === != !== * & | ^");function Ji(e,t){for(var n,i=0;n=e.parent(i);i++)if(n instanceof Ie||n instanceof It){var r=n.name;if(r&&r.definition()===t)break}return n}function Qi(e,t){for(const n of t.enclosed){if(t.variables.has(n.name))continue;const i=e.find_variable(n.name);if(i){if(i===n)continue;return!0}}return!1}function er(e,t){return e instanceof rn||e.TYPE===t.TYPE}function tr(e,t){const n=e=>{if(e instanceof rn&&i(e.definition(),t))return Cn};return bn(e,(t,i)=>{if(t instanceof xe&&t!==e){var r=i.parent();if(r instanceof mt&&r.expression===t)return;return!yn(t,n)||Cn}})}si(yt,(function(e,t){function n(){return e.left.is_constant()||e.right.is_constant()||!e.left.has_side_effects(t)&&!e.right.has_side_effects(t)}function i(t){if(n()){t&&(e.operator=t);var i=e.left;e.left=e.right,e.right=i}}if(Zi.has(e.operator)&&e.right.is_constant()&&!e.left.is_constant()&&(e.left instanceof yt&&se[e.left.operator]>=se[e.operator]||i()),e=e.lift_sequences(t),t.option("comparisons"))switch(e.operator){case"===":case"!==":var r=!0;(e.left.is_string(t)&&e.right.is_string(t)||e.left.is_number(t)&&e.right.is_number(t)||e.left.is_boolean()&&e.right.is_boolean()||e.left.equivalent_to(e.right))&&(e.operator=e.operator.substr(0,2));case"==":case"!=":if(!r&&xi(e.left,t))e.left=p(hn,e.left);else if(t.option("typeofs")&&e.left instanceof fn&&"undefined"==e.left.value&&e.right instanceof At&&"typeof"==e.right.operator){var o=e.right.expression;(o instanceof rn?!o.is_declared(t):o instanceof gt&&t.option("ie8"))||(e.right=o,e.left=p(gn,e.left).optimize(t),2==e.operator.length&&(e.operator+="="))}else if(e.left instanceof rn&&e.right instanceof rn&&e.left.definition()===e.right.definition()&&((u=e.left.fixed_value())instanceof Ft||u instanceof Ie||u instanceof Mt||u instanceof It))return p("="==e.operator[0]?Tn:An,e);break;case"&&":case"||":var a=e.left;if(a.operator==e.operator&&(a=a.right),a instanceof yt&&a.operator==("&&"==e.operator?"!==":"===")&&e.right instanceof yt&&a.operator==e.right.operator&&(xi(a.left,t)&&e.right.left instanceof hn||a.left instanceof hn&&xi(e.right.left,t))&&!a.right.has_side_effects(t)&&a.right.equivalent_to(e.right.right)){var s=p(yt,e,{operator:a.operator.slice(0,-1),left:p(hn,e),right:a.right});return a!==e.left&&(s=p(yt,e,{operator:e.operator,left:e.left.left,right:s})),s}}var u;if("+"==e.operator&&t.in_boolean_context()){var c=e.left.evaluate(t),l=e.right.evaluate(t);if(c&&"string"==typeof c)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),mi(e,[e.right,p(Tn,e)]).optimize(t);if(l&&"string"==typeof l)return t.warn("+ in boolean context always true [{file}:{line},{col}]",e.start),mi(e,[e.left,p(Tn,e)]).optimize(t)}if(t.option("comparisons")&&e.is_boolean()){if(!(t.parent()instanceof yt)||t.parent()instanceof Ct){var f=p(At,e,{operator:"!",expression:e.negate(t,In(t))});e=Vi(t,e,f)}if(t.option("unsafe_comps"))switch(e.operator){case"<":i(">");break;case"<=":i(">=")}}if("+"==e.operator){if(e.right instanceof fn&&""==e.right.getValue()&&e.left.is_string(t))return e.left;if(e.left instanceof fn&&""==e.left.getValue()&&e.right.is_string(t))return e.right;if(e.left instanceof yt&&"+"==e.left.operator&&e.left.left instanceof fn&&""==e.left.left.getValue()&&e.right.is_string(t))return e.left=e.left.right,e.transform(t)}if(t.option("evaluate")){switch(e.operator){case"&&":if(!(c=!!ii(e.left,2)||!ii(e.left,4)&&e.left.evaluate(t)))return t.warn("Condition left of && always false [{file}:{line},{col}]",e.start),Ei(t.parent(),t.self(),e.left).optimize(t);if(!(c instanceof pe))return t.warn("Condition left of && always true [{file}:{line},{col}]",e.start),mi(e,[e.left,e.right]).optimize(t);if(l=e.right.evaluate(t)){if(!(l instanceof pe)){if("&&"==(_=t.parent()).operator&&_.left===t.self()||t.in_boolean_context())return t.warn("Dropping side-effect-free && [{file}:{line},{col}]",e.start),e.left.optimize(t)}}else{if(t.in_boolean_context())return t.warn("Boolean && always false [{file}:{line},{col}]",e.start),mi(e,[e.left,p(An,e)]).optimize(t);ri(e,4)}if("||"==e.left.operator)if(!(d=e.left.right.evaluate(t)))return p(bt,e,{condition:e.left.left,consequent:e.right,alternative:e.left.right}).optimize(t);break;case"||":var _,d;if(!(c=!!ii(e.left,2)||!ii(e.left,4)&&e.left.evaluate(t)))return t.warn("Condition left of || always false [{file}:{line},{col}]",e.start),mi(e,[e.left,e.right]).optimize(t);if(!(c instanceof pe))return t.warn("Condition left of || always true [{file}:{line},{col}]",e.start),Ei(t.parent(),t.self(),e.left).optimize(t);if(l=e.right.evaluate(t)){if(!(l instanceof pe)){if(t.in_boolean_context())return t.warn("Boolean || always true [{file}:{line},{col}]",e.start),mi(e,[e.left,p(Tn,e)]).optimize(t);ri(e,2)}}else if("||"==(_=t.parent()).operator&&_.left===t.self()||t.in_boolean_context())return t.warn("Dropping side-effect-free || [{file}:{line},{col}]",e.start),e.left.optimize(t);if("&&"==e.left.operator)if((d=e.left.right.evaluate(t))&&!(d instanceof pe))return p(bt,e,{condition:e.left.left,consequent:e.left.right,alternative:e.right}).optimize(t);break;case"??":if(rr(e.left))return e.right;if(!((c=e.left.evaluate(t))instanceof pe))return null==c?e.right:e.left;if(t.in_boolean_context()){const n=e.right.evaluate(t);if(!(n instanceof pe||n))return e.left}}var m=!0;switch(e.operator){case"+":if(e.left instanceof ln&&e.right instanceof yt&&"+"==e.right.operator&&e.right.is_string(t)){var h=(g=p(yt,e,{operator:"+",left:e.left,right:e.right.left})).optimize(t);g!==h&&(e=p(yt,e,{operator:"+",left:h,right:e.right.right}))}if(e.right instanceof ln&&e.left instanceof yt&&"+"==e.left.operator&&e.left.is_string(t)){var E=(g=p(yt,e,{operator:"+",left:e.left.right,right:e.right})).optimize(t);g!==E&&(e=p(yt,e,{operator:"+",left:e.left.left,right:E}))}if(e.left instanceof yt&&"+"==e.left.operator&&e.left.is_string(t)&&e.right instanceof yt&&"+"==e.right.operator&&e.right.is_string(t)){var g,D=(g=p(yt,e,{operator:"+",left:e.left.right,right:e.right.left})).optimize(t);g!==D&&(e=p(yt,e,{operator:"+",left:p(yt,e.left,{operator:"+",left:e.left.left,right:D}),right:e.right.right}))}if(e.right instanceof At&&"-"==e.right.operator&&e.left.is_number(t)){e=p(yt,e,{operator:"-",left:e.left,right:e.right.expression});break}if(e.left instanceof At&&"-"==e.left.operator&&n()&&e.right.is_number(t)){e=p(yt,e,{operator:"-",left:e.right,right:e.left.expression});break}if(e.left instanceof Ge){h=e.left;if((E=e.right.evaluate(t))!=e.right)return h.segments[h.segments.length-1].value+=E.toString(),h}if(e.right instanceof Ge){E=e.right;if((h=e.left.evaluate(t))!=e.left)return E.segments[0].value=h.toString()+E.segments[0].value,E}if(e.left instanceof Ge&&e.right instanceof Ge){var S=(h=e.left).segments;E=e.right;S[S.length-1].value+=E.segments[0].value;for(var v=1;v=se[e.operator])){var A=p(yt,e,{operator:e.operator,left:e.right,right:e.left});e=e.right instanceof ln&&!(e.left instanceof ln)?Vi(t,A,e):Vi(t,e,A)}m&&e.is_number(t)&&(e.right instanceof yt&&e.right.operator==e.operator&&(e=p(yt,e,{operator:e.operator,left:p(yt,e.left,{operator:e.operator,left:e.left,right:e.right.left,start:e.left.start,end:e.right.left.end}),right:e.right.right})),e.right instanceof ln&&e.left instanceof yt&&e.left.operator==e.operator&&(e.left.left instanceof ln?e=p(yt,e,{operator:e.operator,left:p(yt,e.left,{operator:e.operator,left:e.left.left,right:e.right,start:e.left.left.start,end:e.right.end}),right:e.left.right}):e.left.right instanceof ln&&(e=p(yt,e,{operator:e.operator,left:p(yt,e.left,{operator:e.operator,left:e.left.right,right:e.right,start:e.left.right.start,end:e.right.end}),right:e.left.left}))),e.left instanceof yt&&e.left.operator==e.operator&&e.left.right instanceof ln&&e.right instanceof yt&&e.right.operator==e.operator&&e.right.left instanceof ln&&(e=p(yt,e,{operator:e.operator,left:p(yt,e.left,{operator:e.operator,left:p(yt,e.left.left,{operator:e.operator,left:e.left.right,right:e.right.left,start:e.left.right.start,end:e.right.left.end}),right:e.left.left}),right:e.right.right})))}}if(e.right instanceof yt&&e.right.operator==e.operator&&(Ni.has(e.operator)||"+"==e.operator&&(e.right.left.is_string(t)||e.left.is_string(t)&&e.right.right.is_string(t))))return e.left=p(yt,e.left,{operator:e.operator,left:e.left,right:e.right.left}),e.right=e.right.right,e.transform(t);var T=e.evaluate(t);return T!==e?(T=hi(T,e).optimize(t),Vi(t,T,e)):e})),si(on,(function(e){return e})),si(rn,(function(e,t){if(!t.option("ie8")&&yi(e)&&(!e.scope.uses_with||!t.find_parent(we)))switch(e.name){case"undefined":return p(gn,e).optimize(t);case"NaN":return p(En,e).optimize(t);case"Infinity":return p(Sn,e).optimize(t)}var n=t.parent();if(t.option("reduce_vars")&&Ii(e,n)!==e){const f=e.definition();if(t.top_retain&&f.global&&t.top_retain(f))return f.fixed=!1,f.should_replace=!1,f.single_use=!1,e;var i=e.fixed_value(),r=f.single_use&&!(n instanceof mt&&n.is_expr_pure(t)||T(n,wn));if(r&&(i instanceof Ie||i instanceof It))if(ji(i,t))r=!1;else if(f.scope!==e.scope&&(1==f.escaped||ii(i,16)||function(e){for(var t,n=0;t=e.parent(n++);){if(t instanceof _e)return!1;if(t instanceof Ft||t instanceof wt||t instanceof Mt)return!0}return!1}(t)))r=!1;else if(Ji(t,f))r=!1;else if((f.scope!==e.scope||f.orig[0]instanceof Wt)&&"f"==(r=i.is_constant_expression(e.scope))){var o=e.scope;do{(o instanceof Be||li(o))&&ri(o,16)}while(o=o.parent_scope)}if(r&&i instanceof Ie){const o=_i(t);r=f.scope===e.scope&&!Qi(o,i)||n instanceof mt&&n.expression===e&&!Qi(o,i)}if(r&&i instanceof It){r=(!i.extends||!i.extends.may_throw(t)&&!i.extends.has_side_effects(t))&&!i.properties.some(e=>e.may_throw(t)||e.has_side_effects(t))}if(r&&i){if(i instanceof Pt&&(ri(i,256),i=p(Vt,i,i)),i instanceof Be&&(ri(i,256),i=p(Pe,i,i)),f.recursive_refs>0&&i.name instanceof Yt){const e=i.name.definition();let t=i.variables.get(i.name.name),n=t&&t.orig[0];n instanceof jt||(n=p(jt,i.name,i.name),n.scope=i,i.name=n,t=i.def_function(n)),yn(i,n=>{n instanceof rn&&n.definition()===e&&(n.thedef=t,t.references.push(n))})}return(i instanceof Ie||i instanceof It)&&_i(t).add_child_scope(i),i.optimize(t)}if(i&&void 0===f.should_replace){let e;if(i instanceof un)f.orig[0]instanceof Wt||!f.references.every(e=>f.scope===e.scope)||(e=i);else{var a=i.evaluate(t);a===i||!t.option("unsafe_regexp")&&a instanceof RegExp||(e=hi(a,i))}if(e){var s,u=e.optimize(t).size();yn(i,e=>{if(e instanceof rn)return Cn})?s=function(){var n=e.optimize(t);return n===e?n.clone(!0):n}:(u=Math.min(u,i.size()),s=function(){var n=Li(e.optimize(t),i);return n===e||n===i?n.clone(!0):n});var c=f.name.length,l=0;t.option("unused")&&!t.exposed(f)&&(l=(c+2+u)/(f.references.length-f.assignments)),f.should_replace=u<=c+l&&s}else f.should_replace=!1}if(f.should_replace)return f.should_replace()}return e})),si(gn,(function(e,t){if(t.option("unsafe_undefined")){var n=di(t,"undefined");if(n){var i=p(rn,e,{name:"undefined",scope:n.scope,thedef:n});return ri(i,8),i}}var r=Ii(t.self(),t.parent());return r&&er(r,e)?e:p(At,e,{operator:"void",expression:p(pn,e,{value:0})})})),si(Sn,(function(e,t){var n=Ii(t.self(),t.parent());return n&&er(n,e)?e:!t.option("keep_infinity")||n&&!er(n,e)||di(t,"Infinity")?p(yt,e,{operator:"/",left:p(pn,e,{value:1}),right:p(pn,e,{value:0})}):e})),si(En,(function(e,t){var n=Ii(t.self(),t.parent());return n&&!er(n,e)||di(t,"NaN")?p(yt,e,{operator:"/",left:p(pn,e,{value:0}),right:p(pn,e,{value:0})}):e}));const nr=E("+ - / * % >> << >>> | ^ &"),ir=E("* | ^ &");function rr(e){let t;return e instanceof hn||xi(e)||e instanceof rn&&(t=e.definition().fixed)instanceof pe&&rr(t)}function or(e,t){return e instanceof rn&&(e=e.fixed_value()),!!e&&(!(e instanceof Ie||e instanceof It)||(!(e instanceof Ie&&e.contains_this())||t.parent()instanceof ht))}function ar(e,t){return t.in_boolean_context()?Vi(t,e,mi(e,[e,p(Tn,e)]).optimize(t)):e}function sr(e,t,n){for(var i=0;i0&&s.args.length==u.args.length&&s.expression.equivalent_to(u.expression)&&!e.condition.has_side_effects(t)&&!s.expression.has_side_effects(t)&&"number"==typeof(o=function(){for(var e=s.args,t=u.args,n=0,i=e.length;n=2020&&function(e,t,n){if(t.may_throw(n))return!1;let i;if(e instanceof yt&&"=="===e.operator&&((i=rr(e.left)&&e.left)||(i=rr(e.right)&&e.right))&&(i===e.left?e.right:e.left).equivalent_to(t))return!0;if(e instanceof yt&&"||"===e.operator){let n,i;const r=e=>{if(!(e instanceof yt)||"==="!==e.operator&&"=="!==e.operator)return!1;let r,o=0;return e.left instanceof hn&&(o++,n=e,r=e.right),e.right instanceof hn&&(o++,n=e,r=e.left),xi(e.left)&&(o++,i=e,r=e.right),xi(e.right)&&(o++,i=e,r=e.left),1===o&&!!r.equivalent_to(t)};if(!r(e.left))return!1;if(!r(e.right))return!1;if(n&&i&&n!==i)return!0}return!1}(a,u,t))return p(yt,e,{operator:"??",left:u,right:s}).optimize(t);if(u instanceof Et&&s.equivalent_to(u.expressions[u.expressions.length-1]))return mi(e,[p(yt,e,{operator:"||",left:a,right:mi(e,u.expressions.slice(0,-1))}),s]).optimize(t);if(u instanceof yt&&"&&"==u.operator&&s.equivalent_to(u.right))return p(yt,e,{operator:"&&",left:p(yt,e,{operator:"||",left:a,right:u.left}),right:s}).optimize(t);if(s instanceof bt&&s.alternative.equivalent_to(u))return p(bt,e,{condition:p(yt,e,{left:e.condition,operator:"&&",right:s.condition}),consequent:s.consequent,alternative:u});if(s.equivalent_to(u))return mi(e,[e.condition,s]).optimize(t);if(s instanceof yt&&"||"==s.operator&&s.right.equivalent_to(u))return p(yt,e,{operator:"||",left:p(yt,e,{operator:"&&",left:e.condition,right:s.left}),right:u}).optimize(t);var l=t.in_boolean_context();return _(e.consequent)?d(e.alternative)?f(e.condition):p(yt,e,{operator:"||",left:f(e.condition),right:e.alternative}):d(e.consequent)?_(e.alternative)?f(e.condition.negate(t)):p(yt,e,{operator:"&&",left:f(e.condition.negate(t)),right:e.alternative}):_(e.alternative)?p(yt,e,{operator:"||",left:f(e.condition.negate(t)),right:e.consequent}):d(e.alternative)?p(yt,e,{operator:"&&",left:f(e.condition),right:e.consequent}):e;function f(e){return e.is_boolean()?e:p(At,e,{operator:"!",expression:e.negate(t)})}function _(e){return e instanceof Tn||l&&e instanceof ln&&e.getValue()||e instanceof At&&"!"==e.operator&&e.expression instanceof ln&&!e.expression.getValue()}function d(e){return e instanceof An||l&&e instanceof ln&&!e.getValue()||e instanceof At&&"!"==e.operator&&e.expression instanceof ln&&e.expression.getValue()}})),si(vn,(function(e,t){if(t.in_boolean_context())return p(pn,e,{value:+e.value});var n=t.parent();return t.option("booleans_as_integers")?(n instanceof yt&&("==="==n.operator||"!=="==n.operator)&&(n.operator=n.operator.replace(/=$/,"")),p(pn,e,{value:+e.value})):t.option("booleans")?n instanceof yt&&("=="==n.operator||"!="==n.operator)?(t.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]",{operator:n.operator,value:e.value,file:n.start.file,line:n.start.line,col:n.start.col}),p(pn,e,{value:+e.value})):p(At,e,{operator:"!",expression:p(pn,e,{value:1-e.value})}):e})),si(St,(function(e,t){var n,i=e.expression,r=e.property;if(t.option("properties")){var o=r.evaluate(t);if(o!==r){if("string"==typeof o)if("undefined"==o)o=void 0;else(A=parseFloat(o)).toString()==o&&(o=A);r=e.property=Li(r,hi(o,r).transform(t));var a=""+o;if(j(a)&&a.length<=r.size()+1)return p(Dt,e,{expression:i,property:a,quote:r.quote}).optimize(t)}}e:if(t.option("arguments")&&i instanceof rn&&"arguments"==i.name&&1==i.definition().orig.length&&(n=i.scope)instanceof Ie&&n.uses_arguments&&!(n instanceof Ve)&&r instanceof pn){for(var s=r.getValue(),u=new Set,c=n.argnames,l=0;l1)&&(_=null)}else if(!_&&!t.option("keep_fargs")&&s=n.argnames.length;)_=p(Wt,n,{name:n.make_var_name("argument_"+n.argnames.length),scope:n}),n.argnames.push(_),n.enclosed.push(n.def_variable(_));if(_){var m=p(rn,e,_);return m.reference({}),oi(_,1),m}}if(Ii(e,t.parent()))return e;if(o!==r){var h=e.flatten_object(a,t);h&&(i=e.expression=h.expression,r=e.property=h.property)}if(t.option("properties")&&t.option("side_effects")&&r instanceof pn&&i instanceof Ft){s=r.getValue();var E=i.elements,g=E[s];e:if(or(g,t)){for(var D=!0,S=[],v=E.length;--v>s;){(A=E[v].drop_side_effect_free(t))&&(S.unshift(A),D&&A.has_side_effects(t)&&(D=!1))}if(g instanceof ke)break e;for(g=g instanceof Dn?p(gn,g):g,D||S.unshift(g);--v>=0;){var A;if((A=E[v])instanceof ke)break e;(A=A.drop_side_effect_free(t))?S.unshift(A):s--}return D?(S.push(g),mi(e,S).optimize(t)):p(St,e,{expression:p(Ft,i,{elements:S}),property:p(pn,r,{value:s})})}}var T=e.evaluate(t);return T!==e?Vi(t,T=hi(T,e).optimize(t),e):e})),Ie.DEFMETHOD("contains_this",(function(){return yn(this,e=>e instanceof un?Cn:e!==this&&e instanceof xe&&!(e instanceof Ve)||void 0)})),gt.DEFMETHOD("flatten_object",(function(e,t){if(t.option("properties")){var n=t.option("unsafe_arrows")&&t.option("ecma")>=2015,i=this.expression;if(i instanceof Mt)for(var r=i.properties,o=r.length;--o>=0;){var a=r[o];if(""+(a instanceof kt?a.key.name:a.key)==e){if(!r.every(e=>e instanceof wt||n&&e instanceof kt&&!e.is_generator))break;if(!or(a.value,t))break;return p(St,this,{expression:p(Ft,i,{elements:r.map((function(e){var t=e.value;t instanceof Le&&(t=p(Pe,t,t));var n=e.key;return n instanceof pe&&!(n instanceof qt)?mi(e,[n,t]):t}))}),property:p(pn,this,{value:o})})}}}})),si(Dt,(function(e,t){"arguments"!=e.property&&"caller"!=e.property||t.warn("Function.prototype.{prop} not supported [{file}:{line},{col}]",{prop:e.property,file:e.start.file,line:e.start.line,col:e.start.col});const n=t.parent();if(Ii(e,n))return e;if(t.option("unsafe_proto")&&e.expression instanceof Dt&&"prototype"==e.expression.property){var i=e.expression.expression;if(yi(i))switch(i.name){case"Array":e.expression=p(Ft,e.expression,{elements:[]});break;case"Function":e.expression=p(Pe,e.expression,{argnames:[],body:[]});break;case"Number":e.expression=p(pn,e.expression,{value:0});break;case"Object":e.expression=p(Mt,e.expression,{properties:[]});break;case"RegExp":e.expression=p(dn,e.expression,{value:{source:"t",flags:""}});break;case"String":e.expression=p(fn,e.expression,{value:""})}}if(!(n instanceof mt&&T(n,wn))){const n=e.flatten_object(e.property,t);if(n)return n.optimize(t)}let r=e.evaluate(t);return r!==e?(r=hi(r,e).optimize(t),Vi(t,r,e)):e})),si(Ft,(function(e,t){var n=ar(e,t);return n!==e?n:sr(e,0,e.elements)})),si(Mt,(function(e,t){var n=ar(e,t);if(n!==e)return n;for(var i=e.properties,r=0;r=2015&&!e.name&&!e.is_generator&&!e.uses_arguments&&!e.pinned()){if(!yn(e,e=>{if(e instanceof un)return Cn}))return p(Ve,e,e).optimize(t)}return e})),si(It,(function(e){return e})),si(Je,(function(e,t){return e.expression&&!e.is_star&&xi(e.expression,t)&&(e.expression=null),e})),si(Ge,(function(e,t){if(!t.option("evaluate")||t.parent()instanceof Ue)return e;for(var n=[],i=0;i=2015&&(!(n instanceof RegExp)||n.test(e.key+""))){var i=e.key,r=e.value;if((r instanceof Ve&&Array.isArray(r.body)&&!r.contains_this()||r instanceof Pe)&&!r.name)return p(kt,e,{async:r.async,is_generator:r.is_generator,key:i instanceof pe?i:p(qt,e,{name:i}),value:p(Le,r,r),quote:e.quote})}return e})),si(Ke,(function(e,t){if(1==t.option("pure_getters")&&t.option("unused")&&!e.is_array&&Array.isArray(e.names)&&!function(e){for(var t=[/^VarDef$/,/^(Const|Let|Var)$/,/^Export$/],n=0,i=0,r=t.length;n1)throw new Error("inline source map only works with singular input");n.sourceMap.content=(i=e[f],r=void 0,(r=/(?:^|[^.])\/\/# sourceMappingURL=data:application\/json(;[\w=-]*)?;base64,([+/0-9A-Za-z]*=*)\s*$/.exec(i))?_r(r[2]):(pe.warn("inline source map not found"),null))}c=n.parse.toplevel}s&&"strict"!==n.mangle.properties.keep_quoted&&lr(c,s),n.wrap&&(c=c.wrap_commonjs(n.wrap)),n.enclose&&(c=c.wrap_enclose(n.enclose)),u&&(u.rename=Date.now()),u&&(u.compress=Date.now()),n.compress&&(c=new ai(n.compress).compress(c)),u&&(u.scope=Date.now()),n.mangle&&c.figure_out_scope(n.mangle),u&&(u.mangle=Date.now()),n.mangle&&(qn.reset(),c.compute_char_frequency(n.mangle),c.mangle_names(n.mangle)),u&&(u.properties=Date.now()),n.mangle&&n.mangle.properties&&(c=pr(c,n.mangle.properties)),u&&(u.output=Date.now());var p={};if(n.output.ast&&(p.ast=c),!D(n.output,"code")||n.output.code){if(n.sourceMap&&("string"==typeof n.sourceMap.content&&(n.sourceMap.content=JSON.parse(n.sourceMap.content)),n.output.source_map=function(e){e=o(e,{file:null,root:null,orig:null,orig_line_diff:0,dest_line_diff:0});var n=new t.SourceMapGenerator({file:e.file,sourceRoot:e.root}),i=e.orig&&new t.SourceMapConsumer(e.orig);return i&&i.sources.forEach((function(e){var t=i.sourceContentFor(e,!0);t&&n.setSourceContent(e,t)})),{add:function(t,r,o,a,s,u){if(i){var c=i.originalPositionFor({line:a,column:s});if(null===c.source)return;t=c.source,a=c.line,s=c.column,u=c.name||u}n.addMapping({generated:{line:r+e.dest_line_diff,column:o},original:{line:a+e.orig_line_diff,column:s},source:t,name:u})},get:function(){return n},toString:function(){return JSON.stringify(n.toJSON())}}}({file:n.sourceMap.filename,orig:n.sourceMap.content,root:n.sourceMap.root}),n.sourceMap.includeSources)){if(e instanceof Ne)throw new Error("original source content unavailable");for(var f in e)D(e,f)&&n.output.source_map.get().setSourceContent(f,e[f])}delete n.output.ast,delete n.output.code;var _=Bn(n.output);if(c.print(_),p.code=_.get(),n.sourceMap)if(n.sourceMap.asObject?p.map=n.output.source_map.get().toJSON():p.map=n.output.source_map.toString(),"inline"==n.sourceMap.url){var d="object"==typeof p.map?JSON.stringify(p.map):p.map;p.code+="\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,"+dr(d)}else n.sourceMap.url&&(p.code+="\n//# sourceMappingURL="+n.sourceMap.url)}return n.nameCache&&n.mangle&&(n.mangle.cache&&(n.nameCache.vars=Er(n.mangle.cache)),n.mangle.properties&&n.mangle.properties.cache&&(n.nameCache.props=Er(n.mangle.properties.cache))),u&&(u.end=Date.now(),p.timings={parse:.001*(u.rename-u.parse),rename:.001*(u.compress-u.rename),compress:.001*(u.scope-u.compress),scope:.001*(u.mangle-u.scope),mangle:.001*(u.properties-u.mangle),properties:.001*(u.output-u.properties),output:.001*(u.end-u.output),total:.001*(u.end-u.start)}),l.length&&(p.warnings=l),p}catch(e){return{error:e}}finally{pe.warn_function=a}}!function(){var e=function(e){for(var t=!0,n=0;n1||e.guardedHandlers&&e.guardedHandlers.length)throw new Error("Multiple catch clauses are not supported.");return new rt({start:i(e),end:r(e),body:s(e.block).body,bcatch:s(t[0]),bfinally:e.finalizer?new at(s(e.finalizer)):null})},Property:function(e){var t=e.key,n={start:i(t||e.value),end:r(e.value),key:"Identifier"==t.type?t.name:t.value,value:s(e.value)};return e.computed&&(n.key=s(e.key)),e.method?(n.is_generator=e.value.generator,n.async=e.value.async,e.computed?n.key=s(e.key):n.key=new qt({name:n.key}),new kt(n)):"init"==e.kind?("Identifier"!=t.type&&"Literal"!=t.type&&(n.key=s(t)),new wt(n)):("string"!=typeof n.key&&"number"!=typeof n.key||(n.key=new qt({name:n.key})),n.value=new Le(n.value),"get"==e.kind?new Nt(n):"set"==e.kind?new xt(n):"method"==e.kind?(n.async=e.value.async,n.is_generator=e.value.generator,n.quote=e.computed?'"':null,new kt(n)):void 0)},MethodDefinition:function(e){var t={start:i(e),end:r(e),key:e.computed?s(e.key):new qt({name:e.key.name||e.key.value}),value:s(e.value),static:e.static};return"get"==e.kind?new Nt(t):"set"==e.kind?new xt(t):(t.is_generator=e.value.generator,t.async=e.value.async,new kt(t))},FieldDefinition:function(e){let t;if(e.computed)t=s(e.key);else{if("Identifier"!==e.key.type)throw new Error("Non-Identifier key in FieldDefinition");t=s(e.key)}return new Lt({start:i(e),end:r(e),key:t,value:s(e.value),static:e.static})},ArrayExpression:function(e){return new Ft({start:i(e),end:r(e),elements:e.elements.map((function(e){return null===e?new Dn:s(e)}))})},ObjectExpression:function(e){return new Mt({start:i(e),end:r(e),properties:e.properties.map((function(e){return"SpreadElement"===e.type||(e.type="Property"),s(e)}))})},SequenceExpression:function(e){return new Et({start:i(e),end:r(e),expressions:e.expressions.map(s)})},MemberExpression:function(e){return new(e.computed?St:Dt)({start:i(e),end:r(e),property:e.computed?s(e.property):e.property.name,expression:s(e.object)})},SwitchCase:function(e){return new(e.test?it:nt)({start:i(e),end:r(e),expression:s(e.test),body:e.consequent.map(s)})},VariableDeclaration:function(e){return new("const"===e.kind?lt:"let"===e.kind?ct:ut)({start:i(e),end:r(e),definitions:e.declarations.map(s)})},ImportDeclaration:function(e){var t=null,n=null;return e.specifiers.forEach((function(e){"ImportSpecifier"===e.type?(n||(n=[]),n.push(new pt({start:i(e),end:r(e),foreign_name:s(e.imported),name:s(e.local)}))):"ImportDefaultSpecifier"===e.type?t=s(e.local):"ImportNamespaceSpecifier"===e.type&&(n||(n=[]),n.push(new pt({start:i(e),end:r(e),foreign_name:new tn({name:"*"}),name:s(e.local)})))})),new _t({start:i(e),end:r(e),imported_name:t,imported_names:n,module_name:s(e.source)})},ExportAllDeclaration:function(e){return new dt({start:i(e),end:r(e),exported_names:[new pt({name:new an({name:"*"}),foreign_name:new an({name:"*"})})],module_name:s(e.source)})},ExportNamedDeclaration:function(e){return new dt({start:i(e),end:r(e),exported_definition:s(e.declaration),exported_names:e.specifiers&&e.specifiers.length?e.specifiers.map((function(e){return new pt({foreign_name:s(e.exported),name:s(e.local)})})):null,module_name:s(e.source)})},ExportDefaultDeclaration:function(e){return new dt({start:i(e),end:r(e),exported_value:s(e.declaration),is_default:!0})},Literal:function(e){var t=e.value,n={start:i(e),end:r(e)},o=e.regex;if(o&&o.pattern)return n.value={source:o.pattern,flags:o.flags},new dn(n);if(o){const i=e.raw||t,r=i.match(/^\/(.*)\/(\w*)$/);if(!r)throw new Error("Invalid regex source "+i);const[o,a,s]=r;return n.value={source:a,flags:s},new dn(n)}if(null===t)return new hn(n);switch(typeof t){case"string":return n.value=t,new fn(n);case"number":return n.value=t,new pn(n);case"boolean":return new(t?Tn:An)(n)}},MetaProperty:function(e){if("new"===e.meta.name&&"target"===e.property.name)return new Kt({start:i(e),end:r(e)})},Identifier:function(e){var t=a[a.length-2];return new("LabeledStatement"==t.type?nn:"VariableDeclarator"==t.type&&t.id===e?"const"==t.kind?Xt:"let"==t.kind?zt:Gt:/Import.*Specifier/.test(t.type)?t.local===e?en:tn:"ExportSpecifier"==t.type?t.local===e?on:an:"FunctionExpression"==t.type?t.id===e?jt:Wt:"FunctionDeclaration"==t.type?t.id===e?Yt:Wt:"ArrowFunctionExpression"==t.type?t.params.includes(e)?Wt:rn:"ClassExpression"==t.type?t.id===e?Jt:rn:"Property"==t.type?t.key===e&&t.computed||t.value===e?rn:qt:"FieldDefinition"==t.type?t.key===e&&t.computed||t.value===e?rn:$t:"ClassDeclaration"==t.type?t.id===e?Zt:rn:"MethodDefinition"==t.type?t.computed?rn:qt:"CatchClause"==t.type?Qt:"BreakStatement"==t.type||"ContinueStatement"==t.type?sn:rn)({start:i(e),end:r(e),name:e.name})},BigIntLiteral:e=>new _n({start:i(e),end:r(e),value:e.value})};function n(e){if("Literal"==e.type)return null!=e.raw?e.raw:e.value+""}function i(e){var t=e.loc,i=t&&t.start,r=e.range;return new fe({file:t&&t.source,line:i&&i.line,col:i&&i.column,pos:r?r[0]:e.start,endline:i&&i.line,endcol:i&&i.column,endpos:r?r[0]:e.start,raw:n(e)})}function r(e){var t=e.loc,i=t&&t.end,r=e.range;return new fe({file:t&&t.source,line:i&&i.line,col:i&&i.column,pos:r?r[1]:e.end,endline:i&&i.line,endcol:i&&i.column,endpos:r?r[1]:e.end,raw:n(e)})}function o(e,n,o){var a="function From_Moz_"+e+"(M){\n";a+="return new U2."+n.name+"({\nstart: my_start_token(M),\nend: my_end_token(M)";var c="function To_Moz_"+e+"(M){\n";c+="return {\ntype: "+JSON.stringify(e),o&&o.split(/\s*,\s*/).forEach((function(e){var t=/([a-z0-9$_]+)([=@>%])([a-z0-9$_]+)/i.exec(e);if(!t)throw new Error("Can't understand property map: "+e);var n=t[1],i=t[2],r=t[3];switch(a+=",\n"+r+": ",c+=",\n"+n+": ",i){case"@":a+="M."+n+".map(from_moz)",c+="M."+r+".map(to_moz)";break;case">":a+="from_moz(M."+n+")",c+="to_moz(M."+r+")";break;case"=":a+="M."+n,c+="M."+r;break;case"%":a+="from_moz(M."+n+").body",c+="to_moz_block(M)";break;default:throw new Error("Can't understand operator in propmap: "+e)}})),a+="\n})\n}",c+="\n}\n}",a=new Function("U2","my_start_token","my_end_token","from_moz","return("+a+")")(xn,i,r,s),c=new Function("to_moz","to_moz_block","to_moz_scope","return("+c+")")(l,_,d),t[e]=a,u(n,c)}t.UpdateExpression=t.UnaryExpression=function(e){return new(("prefix"in e?e.prefix:"UnaryExpression"==e.type)?At:Tt)({start:i(e),end:r(e),operator:e.operator,expression:s(e.argument)})},t.ClassDeclaration=t.ClassExpression=function(e){return new("ClassDeclaration"===e.type?Pt:Vt)({start:i(e),end:r(e),name:s(e.id),extends:s(e.superClass),properties:e.body.body.map(s)})},o("EmptyStatement",ve),o("BlockStatement",Se,"body@body"),o("IfStatement",Qe,"test>condition, consequent>body, alternate>alternative"),o("LabeledStatement",Te,"label>label, body>body"),o("BreakStatement",$e,"label>label"),o("ContinueStatement",je,"label>label"),o("WithStatement",we,"object>expression, body>body"),o("SwitchStatement",et,"discriminant>expression, cases@body"),o("ReturnStatement",We,"argument>value"),o("ThrowStatement",Ye,"argument>value"),o("WhileStatement",Oe,"test>condition, body>body"),o("DoWhileStatement",Ce,"test>condition, body>body"),o("ForStatement",Fe,"init>init, test>condition, update>step, body>body"),o("ForInStatement",Me,"left>init, right>object, body>body"),o("ForOfStatement",Re,"left>init, right>object, body>body, await=await"),o("AwaitExpression",Ze,"argument>expression"),o("YieldExpression",Je,"argument>expression, delegate=is_star"),o("DebuggerStatement",de),o("VariableDeclarator",ft,"id>name, init>value"),o("CatchClause",ot,"param>argname, body%body"),o("ThisExpression",un),o("Super",cn),o("BinaryExpression",yt,"operator=operator, left>left, right>right"),o("LogicalExpression",yt,"operator=operator, left>left, right>right"),o("AssignmentExpression",Ct,"operator=operator, left>left, right>right"),o("ConditionalExpression",bt,"test>condition, consequent>consequent, alternate>alternative"),o("NewExpression",ht,"callee>expression, arguments@args"),o("CallExpression",mt,"callee>expression, arguments@args"),u(Ne,(function(e){return d("Program",e)})),u(ke,(function(e){return{type:f()?"RestElement":"SpreadElement",argument:l(e.expression)}})),u(Ue,(function(e){return{type:"TaggedTemplateExpression",tag:l(e.prefix),quasi:l(e.template_string)}})),u(Ge,(function(e){for(var t=[],n=[],i=0;i({type:"BigIntLiteral",value:e.value})),vn.DEFMETHOD("to_mozilla_ast",ln.prototype.to_mozilla_ast),hn.DEFMETHOD("to_mozilla_ast",ln.prototype.to_mozilla_ast),Dn.DEFMETHOD("to_mozilla_ast",(function(){return null})),De.DEFMETHOD("to_mozilla_ast",Se.prototype.to_mozilla_ast),Ie.DEFMETHOD("to_mozilla_ast",Pe.prototype.to_mozilla_ast);var a=null;function s(e){a.push(e);var n=null!=e?t[e.type](e):null;return a.pop(),n}function u(e,t){e.DEFMETHOD("to_mozilla_ast",(function(e){return n=this,i=t(this,e),r=n.start,o=n.end,r&&o?(null!=r.pos&&null!=o.endpos&&(i.range=[r.pos,o.endpos]),r.line&&(i.loc={start:{line:r.line,column:r.col},end:o.endline?{line:o.endline,column:o.endcol}:null},r.file&&(i.loc.source=r.file)),i):i;var n,i,r,o}))}pe.from_mozilla_ast=function(e){var t=a;a=[];var n=s(e);return a=t,n};var c=null;function l(e){null===c&&(c=[]),c.push(e);var t=null!=e?e.to_mozilla_ast(c[c.length-2]):null;return c.pop(),0===c.length&&(c=null),t}function f(){for(var e=c.length;e--;)if(c[e]instanceof Ke)return!0;return!1}function _(e){return{type:"BlockStatement",body:e.body.map(l)}}function d(e,t){var n=t.body.map(l);return t.body[0]instanceof he&&t.body[0].body instanceof fn&&n.unshift(l(new ve(t.body[0]))),{type:e,body:n}}}(),e.AST_Accessor=Le,e.AST_Array=Ft,e.AST_Arrow=Ve,e.AST_Assign=Ct,e.AST_Atom=mn,e.AST_Await=Ze,e.AST_Binary=yt,e.AST_Block=De,e.AST_BlockStatement=Se,e.AST_Boolean=vn,e.AST_Break=$e,e.AST_Call=mt,e.AST_Case=it,e.AST_Catch=ot,e.AST_Class=It,e.AST_ClassExpression=Vt,e.AST_ConciseMethod=kt,e.AST_Conditional=bt,e.AST_Const=lt,e.AST_Constant=ln,e.AST_Continue=je,e.AST_DWLoop=be,e.AST_Debugger=de,e.AST_DefClass=Pt,e.AST_Default=nt,e.AST_DefaultAssign=Ot,e.AST_Definitions=st,e.AST_Defun=Be,e.AST_Destructuring=Ke,e.AST_Directive=me,e.AST_Do=Ce,e.AST_Dot=Dt,e.AST_EmptyStatement=ve,e.AST_Exit=ze,e.AST_Expansion=ke,e.AST_Export=dt,e.AST_False=An,e.AST_Finally=at,e.AST_For=Fe,e.AST_ForIn=Me,e.AST_ForOf=Re,e.AST_Function=Pe,e.AST_Hole=Dn,e.AST_If=Qe,e.AST_Import=_t,e.AST_Infinity=Sn,e.AST_IterationStatement=ye,e.AST_Jump=Xe,e.AST_Label=nn,e.AST_LabelRef=sn,e.AST_LabeledStatement=Te,e.AST_Lambda=Ie,e.AST_Let=ct,e.AST_LoopControl=qe,e.AST_NaN=En,e.AST_NameMapping=pt,e.AST_New=ht,e.AST_NewTarget=Kt,e.AST_Node=pe,e.AST_Null=hn,e.AST_Number=pn,e.AST_Object=Mt,e.AST_ObjectGetter=Nt,e.AST_ObjectKeyVal=wt,e.AST_ObjectProperty=Rt,e.AST_ObjectSetter=xt,e.AST_PrefixedTemplateString=Ue,e.AST_PropAccess=gt,e.AST_RegExp=dn,e.AST_Return=We,e.AST_Scope=xe,e.AST_Sequence=Et,e.AST_SimpleStatement=he,e.AST_Statement=_e,e.AST_StatementWithBody=Ae,e.AST_String=fn,e.AST_Sub=St,e.AST_Super=cn,e.AST_Switch=et,e.AST_SwitchBranch=tt,e.AST_Symbol=Bt,e.AST_SymbolBlockDeclaration=Ht,e.AST_SymbolCatch=Qt,e.AST_SymbolClass=Jt,e.AST_SymbolConst=Xt,e.AST_SymbolDeclaration=Ut,e.AST_SymbolDefClass=Zt,e.AST_SymbolDefun=Yt,e.AST_SymbolExport=on,e.AST_SymbolExportForeign=an,e.AST_SymbolFunarg=Wt,e.AST_SymbolImport=en,e.AST_SymbolImportForeign=tn,e.AST_SymbolLambda=jt,e.AST_SymbolLet=zt,e.AST_SymbolMethod=qt,e.AST_SymbolRef=rn,e.AST_SymbolVar=Gt,e.AST_TemplateSegment=He,e.AST_TemplateString=Ge,e.AST_This=un,e.AST_Throw=Ye,e.AST_Token=fe,e.AST_Toplevel=Ne,e.AST_True=Tn,e.AST_Try=rt,e.AST_Unary=vt,e.AST_UnaryPostfix=Tt,e.AST_UnaryPrefix=At,e.AST_Undefined=gn,e.AST_Var=ut,e.AST_VarDef=ft,e.AST_While=Oe,e.AST_With=we,e.AST_Yield=Je,e.Compressor=ai,e.OutputStream=Bn,e.TreeTransformer=Fn,e.TreeWalker=On,e._INLINE=Rn,e._JS_Parse_Error=Q,e._NOINLINE=wn,e._PURE=Mn,e._has_annotation=T,e._tokenizer=ie,e.base54=qn,e.default_options=$n,e.defaults=o,e.mangle_properties=pr,e.minify=gr,e.parse=ce,e.push_uniq=_,e.reserve_quoted_keys=lr,e.string_template=d,e.to_ascii=_r})); -//# sourceMappingURL=bundle.min.js.map diff --git a/src/packages/CodePad/libs/typescript.min.js b/src/packages/CodePad/libs/typescript.min.js deleted file mode 100644 index 94c8e05..0000000 --- a/src/packages/CodePad/libs/typescript.min.js +++ /dev/null @@ -1,15 +0,0 @@ -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ -"use strict";var __spreadArray=this&&this.__spreadArray||function(e,t){for(var r=0,n=t.length,i=e.length;r0&&i[i.length-1])||6!==a[0]&&2!==a[0])){o=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]0;for(var r=0,n=e;r>1);switch(n(r(e[c],c),t)){case-1:o=c+1;break;case 0:return c;case 1:s=c-1}}return~o}function y(e,t,r,n,i){if(e&&e.length>0){var a=e.length;if(a>0){var o=void 0===n||n<0?0:n,s=void 0===i||o+i>a-1?a-1:o+i,c=void 0;for(arguments.length<=2?(c=e[o],o++):c=r;o<=s;)c=t(c,e[o],o),o++;return c}}return r}e.Map=t("Map","tryGetNativeMap","createMapShim"),e.Set=t("Set","tryGetNativeSet","createSetShim"),e.getIterator=r,e.emptyArray=[],e.emptyMap=new e.Map,e.emptySet=new e.Set,e.createMap=function(){return new e.Map},e.createMapFromTemplate=function(t){var r=new e.Map;for(var n in t)v.call(t,n)&&r.set(n,t[n]);return r},e.length=function(e){return e?e.length:0},e.forEach=function(e,t){if(e)for(var r=0;r=0;r--){var n=t(e[r],r);if(n)return n}},e.firstDefined=function(e,t){if(void 0!==e)for(var r=0;r=0;r--){var n=e[r];if(t(n,r))return n}},e.findIndex=function(e,t,r){for(var n=r||0;n=0;n--)if(t(e[n],n))return n;return-1},e.findMap=function(t,r){for(var n=0;n0&&e.Debug.assertGreaterThanOrEqual(n(r[o],r[o-1]),0);t:for(var s=a;as&&e.Debug.assertGreaterThanOrEqual(n(t[a],t[a-1]),0),n(r[o],t[a])){case-1:i.push(r[o]);continue e;case 0:continue e;case 1:continue t}}return i},e.sum=function(e,t){for(var r=0,n=0,i=e;nt?1:0}function R(e,t){return O(e,t)}e.toFileNameLowerCase=w,e.notImplemented=function(){throw new Error("Not implemented")},e.memoize=function(e){var t;return function(){return e&&(t=e(),e=void 0),t}},e.memoizeOne=function(t){var r=new e.Map;return function(e){var n=typeof e+":"+e,i=r.get(n);return void 0!==i||r.has(n)||(i=t(e),r.set(n,i)),i}},e.compose=function(e,t,r,n,i){if(i){for(var a=[],o=0;o0?1:0}function i(e){var t=new Intl.Collator(e,{usage:"sort",sensitivity:"variant"}).compare;return function(e,r){return n(e,r,t)}}function a(e){return void 0!==e?o():function(e,r){return n(e,r,t)};function t(e,t){return e.localeCompare(t)}}function o(){return function(t,r){return n(t,r,e)};function e(e,r){return t(e.toUpperCase(),r.toUpperCase())||t(e,r)}function t(e,t){return et?1:0}}}();function z(e,t,r){for(var n=new Array(t.length+1),i=new Array(t.length+1),a=r+.01,o=0;o<=t.length;o++)n[o]=o;for(o=1;o<=e.length;o++){var s=e.charCodeAt(o-1),c=Math.ceil(o>r?o-r:1),u=Math.floor(t.length>r+o?r+o:t.length);i[0]=o;for(var l=o,_=1;_r)return;var f=n;n=i,i=f}var g=n[t.length];return g>r?void 0:g}function U(e,t){var r=e.length-t.length;return r>=0&&e.indexOf(t,r)===r}function V(e,t){for(var r=t;r=r.length+n.length&&W(t,r)&&U(t,n)}function G(e,t,r,n){for(var i=0,a=e[n];ii&&(i=c.prefix.length,n=s)}return n},e.startsWith=W,e.removePrefix=function(e,t){return W(e,t)?e.substr(t.length):e},e.tryRemovePrefix=function(e,t,r){return void 0===r&&(r=A),W(r(e),r(t))?e.substring(t.length):void 0},e.and=function(e,t){return function(r){return e(r)&&t(r)}},e.or=function(){for(var e=[],t=0;t=e}function d(t,n){return!!_(t)||(l[n]={level:t,assertion:r[n]},r[n]=e.noop,!1)}function p(e,t){var r=new Error(e?"Debug Failure. "+e:"Debug Failure.");throw Error.captureStackTrace&&Error.captureStackTrace(r,t||p),r}function f(e,t,r,n){e||(t=t?"False expression: "+t:"False expression.",r&&(t+="\r\nVerbose Debug Information: "+("string"==typeof r?r:r())),p(t,n||f))}function g(e,t,r){null==e&&p(t,r||g)}function m(e,t,r){return g(e,t,r||m),e}function y(e,t,r){for(var n=0,i=e;n0&&0===i[0][0]?i[0][1]:"0";if(n){for(var a="",o=t,s=0,c=i;st)break;0!==l&&l&t&&(a=a+(a?"|":"")+_,o&=~l)}if(0===o)return a}else for(var d=0,p=i;dn)for(var i=0,o=e.getOwnKeys(l);i=c.level&&(r[s]=c,l[s]=void 0)}},r.shouldAssert=_,r.fail=p,r.failBadSyntaxKind=function e(t,r,n){return p((r||"Unexpected node.")+"\r\nNode "+x(t.kind)+" was unexpected.",n||e)},r.assert=f,r.assertEqual=function e(t,r,n,i,a){t!==r&&p("Expected "+t+" === "+r+". "+(n?i?n+" "+i:n:""),a||e)},r.assertLessThan=function e(t,r,n,i){t>=r&&p("Expected "+t+" < "+r+". "+(n||""),i||e)},r.assertLessThanOrEqual=function e(t,r,n){t>r&&p("Expected "+t+" <= "+r,n||e)},r.assertGreaterThanOrEqual=function e(t,r,n){t= "+r,n||e)},r.assertIsDefined=g,r.checkDefined=m,r.assertDefined=m,r.assertEachIsDefined=y,r.checkEachDefined=v,r.assertEachDefined=v,r.assertNever=function t(r,n,i){return void 0===n&&(n="Illegal value:"),p(n+" "+("object"==typeof r&&e.hasProperty(r,"kind")&&e.hasProperty(r,"pos")&&x?"SyntaxKind: "+x(r.kind):JSON.stringify(r)),i||t)},r.assertEachNode=function t(r,n,i,a){d(1,"assertEachNode")&&f(void 0===n||e.every(r,n),i||"Unexpected node.",(function(){return"Node array did not pass test '"+h(n)+"'."}),a||t)},r.assertNode=function e(t,r,n,i){d(1,"assertNode")&&f(void 0!==t&&(void 0===r||r(t)),n||"Unexpected node.",(function(){return"Node "+x(t.kind)+" did not pass test '"+h(r)+"'."}),i||e)},r.assertNotNode=function e(t,r,n,i){d(1,"assertNotNode")&&f(void 0===t||void 0===r||!r(t),n||"Unexpected node.",(function(){return"Node "+x(t.kind)+" should not have passed test '"+h(r)+"'."}),i||e)},r.assertOptionalNode=function e(t,r,n,i){d(1,"assertOptionalNode")&&f(void 0===r||void 0===t||r(t),n||"Unexpected node.",(function(){return"Node "+x(t.kind)+" did not pass test '"+h(r)+"'."}),i||e)},r.assertOptionalToken=function e(t,r,n,i){d(1,"assertOptionalToken")&&f(void 0===r||void 0===t||t.kind===r,n||"Unexpected node.",(function(){return"Node "+x(t.kind)+" was not a '"+x(r)+"' token."}),i||e)},r.assertMissingNode=function e(t,r,n){d(1,"assertMissingNode")&&f(void 0===t,r||"Unexpected node.",(function(){return"Node "+x(t.kind)+" was unexpected'."}),n||e)},r.getFunctionName=h,r.formatSymbol=function(t){return"{ name: "+e.unescapeLeadingUnderscores(t.escapedName)+"; flags: "+E(t.flags)+"; declarations: "+e.map(t.declarations,(function(e){return x(e.kind)}))+" }"},r.formatEnum=b,r.formatSyntaxKind=x,r.formatNodeFlags=D,r.formatModifierFlags=S,r.formatTransformFlags=T,r.formatEmitFlags=C,r.formatSymbolFlags=E,r.formatTypeFlags=k,r.formatSignatureFlags=N,r.formatObjectFlags=A,r.formatFlowFlags=F;var P,w,I,O=!1;function M(e){return function(){if(B(),!P)throw new Error("Debugging helpers could not be loaded.");return P}().formatControlFlowGraph(e)}function L(t){"__debugFlowFlags"in t||Object.defineProperties(t,{__tsDebuggerDisplay:{value:function(){var e=2&this.flags?"FlowStart":4&this.flags?"FlowBranchLabel":8&this.flags?"FlowLoopLabel":16&this.flags?"FlowAssignment":32&this.flags?"FlowTrueCondition":64&this.flags?"FlowFalseCondition":128&this.flags?"FlowSwitchClause":256&this.flags?"FlowArrayMutation":512&this.flags?"FlowCall":1024&this.flags?"FlowReduceLabel":1&this.flags?"FlowUnreachable":"UnknownFlow",t=-2048&this.flags;return e+(t?" ("+F(t)+")":"")}},__debugFlowFlags:{get:function(){return b(this.flags,e.FlowFlags,!0)}},__debugToString:{value:function(){return M(this)}}})}function R(e){"__tsDebuggerDisplay"in e||Object.defineProperties(e,{__tsDebuggerDisplay:{value:function(e){return"NodeArray "+(e=String(e).replace(/(?:,[\s\w\d_]+:[^,]+)+\]$/,"]"))}}})}function B(){if(!O){var t,r;Object.defineProperties(e.objectAllocator.getSymbolConstructor().prototype,{__tsDebuggerDisplay:{value:function(){var t=33554432&this.flags?"TransientSymbol":"Symbol",r=-33554433&this.flags;return t+" '"+e.symbolName(this)+"'"+(r?" ("+E(r)+")":"")}},__debugFlags:{get:function(){return E(this.flags)}}}),Object.defineProperties(e.objectAllocator.getTypeConstructor().prototype,{__tsDebuggerDisplay:{value:function(){var t=98304&this.flags?"NullableType":384&this.flags?"LiteralType "+JSON.stringify(this.value):2048&this.flags?"LiteralType "+(this.value.negative?"-":"")+this.value.base10Value+"n":8192&this.flags?"UniqueESSymbolType":32&this.flags?"EnumType":67359327&this.flags?"IntrinsicType "+this.intrinsicName:1048576&this.flags?"UnionType":2097152&this.flags?"IntersectionType":4194304&this.flags?"IndexType":8388608&this.flags?"IndexedAccessType":16777216&this.flags?"ConditionalType":33554432&this.flags?"SubstitutionType":262144&this.flags?"TypeParameter":524288&this.flags?3&this.objectFlags?"InterfaceType":4&this.objectFlags?"TypeReference":8&this.objectFlags?"TupleType":16&this.objectFlags?"AnonymousType":32&this.objectFlags?"MappedType":2048&this.objectFlags?"ReverseMappedType":256&this.objectFlags?"EvolvingArrayType":"ObjectType":"Type",r=524288&this.flags?-2368&this.objectFlags:0;return t+(this.symbol?" '"+e.symbolName(this.symbol)+"'":"")+(r?" ("+A(r)+")":"")}},__debugFlags:{get:function(){return k(this.flags)}},__debugObjectFlags:{get:function(){return 524288&this.flags?A(this.objectFlags):""}},__debugTypeToString:{value:function(){var e=(void 0===t&&"function"==typeof WeakMap&&(t=new WeakMap),t),r=null==e?void 0:e.get(this);return void 0===r&&(r=this.checker.typeToString(this),null==e||e.set(this,r)),r}}}),Object.defineProperties(e.objectAllocator.getSignatureConstructor().prototype,{__debugFlags:{get:function(){return N(this.flags)}},__debugSignatureToString:{value:function(){var e;return null===(e=this.checker)||void 0===e?void 0:e.signatureToString(this)}}});for(var n=0,i=[e.objectAllocator.getNodeConstructor(),e.objectAllocator.getIdentifierConstructor(),e.objectAllocator.getTokenConstructor(),e.objectAllocator.getSourceFileConstructor()];n=0;return _?function(e,t,r,n){var i=j(e,!0,t,r,n);return function(){throw new TypeError(i)}}(t,s,l,r.message):d?function(e,t,r,n){var i=!1;return function(){i||(u.warn(j(e,!1,t,r,n)),i=!0)}}(t,s,l,r.message):e.noop}r.printControlFlowGraph=function(e){return console.log(M(e))},r.formatControlFlowGraph=M,r.attachFlowNodeDebugInfo=function(e){O&&("function"==typeof Object.setPrototypeOf?(w||L(w=Object.create(Object.prototype)),Object.setPrototypeOf(e,w)):L(e))},r.attachNodeArrayDebugInfo=function(e){O&&("function"==typeof Object.setPrototypeOf?(I||R(I=Object.create(Array.prototype)),Object.setPrototypeOf(e,I)):R(e))},r.enableDebugInfo=B,r.deprecate=function(e,t){return function(e,t){return function(){return e(),t.apply(this,arguments)}}(J(h(e),t),e)}}(e.Debug||(e.Debug={}))}(ts||(ts={})),function(e){var t=/^(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\.(0|[1-9]\d*)(?:\-([a-z0-9-.]+))?(?:\+([a-z0-9-.]+))?)?)?$/i,r=/^(?:0|[1-9]\d*|[a-z-][a-z0-9-]*)(?:\.(?:0|[1-9]\d*|[a-z-][a-z0-9-]*))*$/i,n=/^[a-z0-9-]+(?:\.[a-z0-9-]+)*$/i,i=/^(0|[1-9]\d*)$/,a=function(){function t(t,i,a,s,c){if(void 0===i&&(i=0),void 0===a&&(a=0),void 0===s&&(s=""),void 0===c&&(c=""),"string"==typeof t){var u=e.Debug.checkDefined(o(t),"Invalid version");t=u.major,i=u.minor,a=u.patch,s=u.prerelease,c=u.build}e.Debug.assert(t>=0,"Invalid argument: major"),e.Debug.assert(i>=0,"Invalid argument: minor"),e.Debug.assert(a>=0,"Invalid argument: patch"),e.Debug.assert(!s||r.test(s),"Invalid argument: prerelease"),e.Debug.assert(!c||n.test(c),"Invalid argument: build"),this.major=t,this.minor=i,this.patch=a,this.prerelease=s?s.split("."):e.emptyArray,this.build=c?c.split("."):e.emptyArray}return t.tryParse=function(e){var r=o(e);if(r)return new t(r.major,r.minor,r.patch,r.prerelease,r.build)},t.prototype.compareTo=function(t){return this===t?0:void 0===t?1:e.compareValues(this.major,t.major)||e.compareValues(this.minor,t.minor)||e.compareValues(this.patch,t.patch)||function(t,r){if(t===r)return 0;if(0===t.length)return 0===r.length?0:1;if(0===r.length)return-1;for(var n=Math.min(t.length,r.length),a=0;a|>=|=)?\s*([a-z0-9-+.*]+)$/i;function p(e){for(var t=[],r=0,n=e.trim().split(c);r=",n.version)),y(i.major)||r.push(y(i.minor)?v("<",i.version.increment("major")):y(i.patch)?v("<",i.version.increment("minor")):v("<=",i.version)),!0)}function m(e,t,r){var n=f(t);if(!n)return!1;var i=n.version,o=n.major,s=n.minor,c=n.patch;if(y(o))"<"!==e&&">"!==e||r.push(v("<",a.zero));else switch(e){case"~":r.push(v(">=",i)),r.push(v("<",i.increment(y(s)?"major":"minor")));break;case"^":r.push(v(">=",i)),r.push(v("<",i.increment(i.major>0||y(s)?"major":i.minor>0||y(c)?"minor":"patch")));break;case"<":case">=":r.push(v(e,i));break;case"<=":case">":r.push(y(s)?v("<="===e?"<":">=",i.increment("major")):y(c)?v("<="===e?"<":">=",i.increment("minor")):v(e,i));break;case"=":case void 0:y(s)||y(c)?(r.push(v(">=",i)),r.push(v("<",i.increment(y(s)?"major":"minor")))):r.push(v("=",i));break;default:return!1}return!0}function y(e){return"*"===e||"x"===e||"X"===e}function v(e,t){return{operator:e,operand:t}}function h(e,t){for(var r=0,n=t;r":return i>0;case">=":return i>=0;case"=":return 0===i;default:return e.Debug.assertNever(r)}}function x(t){return e.map(t,D).join(" ")}function D(e){return""+e.operator+e.operand}}(ts||(ts={})),function(e){function t(e,t){return"object"==typeof e&&"number"==typeof e.timeOrigin&&"function"==typeof e.mark&&"function"==typeof e.measure&&"function"==typeof e.now&&"function"==typeof t}var r=function(){if("object"==typeof performance&&"function"==typeof PerformanceObserver&&t(performance,PerformanceObserver))return{shouldWriteNativeEvents:!0,performance:performance,PerformanceObserver:PerformanceObserver}}()||function(){if("undefined"!=typeof process&&process.nextTick&&!process.browser&&"object"==typeof module&&"function"==typeof require)try{var r,n=require("perf_hooks"),i=n.performance,a=n.PerformanceObserver;if(t(i,a)){r=i;var o=new e.Version(process.versions.node);return new e.VersionRange("<12.16.3 || 13 <13.13").test(o)&&(r={get timeOrigin(){return i.timeOrigin},now:function(){return i.now()},mark:function(e){return i.mark(e)},measure:function(e,t,r){void 0===t&&(t="nodeStart"),void 0===r&&(r="__performance.measure-fix__",i.mark(r)),i.measure(e,t,r),"__performance.measure-fix__"===r&&i.clearMarks("__performance.measure-fix__")}}),{shouldWriteNativeEvents:!1,performance:r,PerformanceObserver:a}}}catch(e){}}(),n=null==r?void 0:r.performance;e.tryGetNativePerformanceHooks=function(){return r},e.timestamp=n?function(){return n.now()}:Date.now?Date.now:function(){return+new Date}}(ts||(ts={})),function(e){!function(t){var r,n;function i(t,r,n){var i=0;return{enter:function(){1==++i&&l(r)},exit:function(){0==--i?(l(n),_(t,r,n)):i<0&&e.Debug.fail("enter/exit count does not match.")}}}t.createTimerIf=function(e,r,n,a){return e?i(r,n,a):t.nullTimer},t.createTimer=i,t.nullTimer={enter:e.noop,exit:e.noop};var a=!1,o=e.timestamp(),s=new e.Map,c=new e.Map,u=new e.Map;function l(t){var r;if(a){var i=null!==(r=c.get(t))&&void 0!==r?r:0;c.set(t,i+1),s.set(t,e.timestamp()),null==n||n.mark(t)}}function _(t,r,i){var c,l;if(a){var _=null!==(c=void 0!==i?s.get(i):void 0)&&void 0!==c?c:e.timestamp(),d=null!==(l=void 0!==r?s.get(r):void 0)&&void 0!==l?l:o,p=u.get(t)||0;u.set(t,p+(_-d)),null==n||n.measure(t,r,i)}}t.mark=l,t.measure=_,t.getCount=function(e){return c.get(e)||0},t.getDuration=function(e){return u.get(e)||0},t.forEachMeasure=function(e){u.forEach((function(t,r){return e(r,t)}))},t.isEnabled=function(){return a},t.enable=function(t){var i;return void 0===t&&(t=e.sys),a||(a=!0,r||(r=e.tryGetNativePerformanceHooks()),r&&(o=r.performance.timeOrigin,(r.shouldWriteNativeEvents||(null===(i=null==t?void 0:t.cpuProfilingEnabled)||void 0===i?void 0:i.call(t))||(null==t?void 0:t.debugMode))&&(n=r.performance))),!0},t.disable=function(){a&&(s.clear(),c.clear(),u.clear(),n=void 0,a=!1)}}(e.performance||(e.performance={}))}(ts||(ts={})),function(e){var t,r,n={logEvent:e.noop,logErrEvent:e.noop,logPerfEvent:e.noop,logInfoEvent:e.noop,logStartCommand:e.noop,logStopCommand:e.noop,logStartUpdateProgram:e.noop,logStopUpdateProgram:e.noop,logStartUpdateGraph:e.noop,logStopUpdateGraph:e.noop,logStartResolveModule:e.noop,logStopResolveModule:e.noop,logStartParseSourceFile:e.noop,logStopParseSourceFile:e.noop,logStartReadFile:e.noop,logStopReadFile:e.noop,logStartBindFile:e.noop,logStopBindFile:e.noop,logStartScheduledOperation:e.noop,logStopScheduledOperation:e.noop};try{var i=null!==(t=process.env.TS_ETW_MODULE_PATH)&&void 0!==t?t:"./node_modules/@microsoft/typescript-etw";r=require(i)}catch(e){r=void 0}e.perfLogger=r&&r.logEvent?r:n}(ts||(ts={})),ts||(ts={}),function(e){!function(t){var r;!function(e){e[e.Project=0]="Project",e[e.Build=1]="Build",e[e.Server=2]="Server"}(t.Mode||(t.Mode={}));var n,i,a=0,o=0,s=[];t.startTracing=function(c,u,l){if(e.Debug.assert(!e.tracing,"Tracing already started"),void 0===r)try{r=require("fs")}catch(e){throw new Error("tracing requires having fs\n(original error: "+(e.message||e)+")")}n=c,void 0===i&&(i=e.combinePaths(u,"legend.json")),r.existsSync(u)||r.mkdirSync(u,{recursive:!0});var _=1===n?"."+process.pid+"-"+ ++a:2===n?"."+process.pid:"",d=e.combinePaths(u,"trace"+_+".json"),p=e.combinePaths(u,"types"+_+".json");s.push({configFilePath:l,tracePath:d,typesPath:p}),o=r.openSync(d,"w"),e.tracing=t;var f={cat:"__metadata",ph:"M",ts:1e3*e.timestamp(),pid:1,tid:1};r.writeSync(o,"[\n"+[__assign({name:"process_name",args:{name:"tsc"}},f),__assign({name:"thread_name",args:{name:"Main"}},f),__assign(__assign({name:"TracingStartedInBrowser"},f),{cat:"disabled-by-default-devtools.timeline"})].map((function(e){return JSON.stringify(e)})).join(",\n"))},t.stopTracing=function(t){e.Debug.assert(e.tracing,"Tracing is not in progress"),e.Debug.assert(!!t==(2!==n)),r.writeSync(o,"\n]\n"),r.closeSync(o),e.tracing=void 0,t?function(t){var n,i,a,o,c,u,l,d,p,f,g,m,y,v,h,b;e.performance.mark("beginDumpTypes");var x=s[s.length-1].typesPath,D=r.openSync(x,"w"),S=new e.Map;r.writeSync(D,"[");for(var T=t.length,C=0;C0),u(c.length-1,1e3*e.timestamp()),c.length--},t.popAll=function(){for(var t=1e3*e.timestamp(),r=c.length-1;r>=0;r--)u(r,t);c.length=0};function u(e,t){var r=c[e],n=r.phase,i=r.name,a=r.args,o=r.time;r.separateBeginAndEnd?l("E",n,i,a,void 0,t):1e4-o%1e4<=t-o&&l("X",n,i,a,'"dur":'+(t-o),o)}function l(t,i,a,s,c,u){void 0===u&&(u=1e3*e.timestamp()),2===n&&"checkTypes"===i||(e.performance.mark("beginTracing"),r.writeSync(o,',\n{"pid":1,"tid":1,"ph":"'+t+'","cat":"'+i+'","ts":'+u+',"name":"'+a+'"'),c&&r.writeSync(o,","+c),s&&r.writeSync(o,',"args":'+JSON.stringify(s)),r.writeSync(o,"}"),e.performance.mark("endTracing"),e.performance.measure("Tracing","beginTracing","endTracing"))}function _(e){return{line:e.line+1,character:e.character+1}}t.dumpLegend=function(){i&&r.writeFileSync(i,JSON.stringify(s))}}(e.tracingEnabled||(e.tracingEnabled={}))}(ts||(ts={})),function(e){e.startTracing=e.tracingEnabled.startTracing}(ts||(ts={})),function(e){!function(e){e[e.Unknown=0]="Unknown",e[e.EndOfFileToken=1]="EndOfFileToken",e[e.SingleLineCommentTrivia=2]="SingleLineCommentTrivia",e[e.MultiLineCommentTrivia=3]="MultiLineCommentTrivia",e[e.NewLineTrivia=4]="NewLineTrivia",e[e.WhitespaceTrivia=5]="WhitespaceTrivia",e[e.ShebangTrivia=6]="ShebangTrivia",e[e.ConflictMarkerTrivia=7]="ConflictMarkerTrivia",e[e.NumericLiteral=8]="NumericLiteral",e[e.BigIntLiteral=9]="BigIntLiteral",e[e.StringLiteral=10]="StringLiteral",e[e.JsxText=11]="JsxText",e[e.JsxTextAllWhiteSpaces=12]="JsxTextAllWhiteSpaces",e[e.RegularExpressionLiteral=13]="RegularExpressionLiteral",e[e.NoSubstitutionTemplateLiteral=14]="NoSubstitutionTemplateLiteral",e[e.TemplateHead=15]="TemplateHead",e[e.TemplateMiddle=16]="TemplateMiddle",e[e.TemplateTail=17]="TemplateTail",e[e.OpenBraceToken=18]="OpenBraceToken",e[e.CloseBraceToken=19]="CloseBraceToken",e[e.OpenParenToken=20]="OpenParenToken",e[e.CloseParenToken=21]="CloseParenToken",e[e.OpenBracketToken=22]="OpenBracketToken",e[e.CloseBracketToken=23]="CloseBracketToken",e[e.DotToken=24]="DotToken",e[e.DotDotDotToken=25]="DotDotDotToken",e[e.SemicolonToken=26]="SemicolonToken",e[e.CommaToken=27]="CommaToken",e[e.QuestionDotToken=28]="QuestionDotToken",e[e.LessThanToken=29]="LessThanToken",e[e.LessThanSlashToken=30]="LessThanSlashToken",e[e.GreaterThanToken=31]="GreaterThanToken",e[e.LessThanEqualsToken=32]="LessThanEqualsToken",e[e.GreaterThanEqualsToken=33]="GreaterThanEqualsToken",e[e.EqualsEqualsToken=34]="EqualsEqualsToken",e[e.ExclamationEqualsToken=35]="ExclamationEqualsToken",e[e.EqualsEqualsEqualsToken=36]="EqualsEqualsEqualsToken",e[e.ExclamationEqualsEqualsToken=37]="ExclamationEqualsEqualsToken",e[e.EqualsGreaterThanToken=38]="EqualsGreaterThanToken",e[e.PlusToken=39]="PlusToken",e[e.MinusToken=40]="MinusToken",e[e.AsteriskToken=41]="AsteriskToken",e[e.AsteriskAsteriskToken=42]="AsteriskAsteriskToken",e[e.SlashToken=43]="SlashToken",e[e.PercentToken=44]="PercentToken",e[e.PlusPlusToken=45]="PlusPlusToken",e[e.MinusMinusToken=46]="MinusMinusToken",e[e.LessThanLessThanToken=47]="LessThanLessThanToken",e[e.GreaterThanGreaterThanToken=48]="GreaterThanGreaterThanToken",e[e.GreaterThanGreaterThanGreaterThanToken=49]="GreaterThanGreaterThanGreaterThanToken",e[e.AmpersandToken=50]="AmpersandToken",e[e.BarToken=51]="BarToken",e[e.CaretToken=52]="CaretToken",e[e.ExclamationToken=53]="ExclamationToken",e[e.TildeToken=54]="TildeToken",e[e.AmpersandAmpersandToken=55]="AmpersandAmpersandToken",e[e.BarBarToken=56]="BarBarToken",e[e.QuestionToken=57]="QuestionToken",e[e.ColonToken=58]="ColonToken",e[e.AtToken=59]="AtToken",e[e.QuestionQuestionToken=60]="QuestionQuestionToken",e[e.BacktickToken=61]="BacktickToken",e[e.EqualsToken=62]="EqualsToken",e[e.PlusEqualsToken=63]="PlusEqualsToken",e[e.MinusEqualsToken=64]="MinusEqualsToken",e[e.AsteriskEqualsToken=65]="AsteriskEqualsToken",e[e.AsteriskAsteriskEqualsToken=66]="AsteriskAsteriskEqualsToken",e[e.SlashEqualsToken=67]="SlashEqualsToken",e[e.PercentEqualsToken=68]="PercentEqualsToken",e[e.LessThanLessThanEqualsToken=69]="LessThanLessThanEqualsToken",e[e.GreaterThanGreaterThanEqualsToken=70]="GreaterThanGreaterThanEqualsToken",e[e.GreaterThanGreaterThanGreaterThanEqualsToken=71]="GreaterThanGreaterThanGreaterThanEqualsToken",e[e.AmpersandEqualsToken=72]="AmpersandEqualsToken",e[e.BarEqualsToken=73]="BarEqualsToken",e[e.BarBarEqualsToken=74]="BarBarEqualsToken",e[e.AmpersandAmpersandEqualsToken=75]="AmpersandAmpersandEqualsToken",e[e.QuestionQuestionEqualsToken=76]="QuestionQuestionEqualsToken",e[e.CaretEqualsToken=77]="CaretEqualsToken",e[e.Identifier=78]="Identifier",e[e.PrivateIdentifier=79]="PrivateIdentifier",e[e.BreakKeyword=80]="BreakKeyword",e[e.CaseKeyword=81]="CaseKeyword",e[e.CatchKeyword=82]="CatchKeyword",e[e.ClassKeyword=83]="ClassKeyword",e[e.ConstKeyword=84]="ConstKeyword",e[e.ContinueKeyword=85]="ContinueKeyword",e[e.DebuggerKeyword=86]="DebuggerKeyword",e[e.DefaultKeyword=87]="DefaultKeyword",e[e.DeleteKeyword=88]="DeleteKeyword",e[e.DoKeyword=89]="DoKeyword",e[e.ElseKeyword=90]="ElseKeyword",e[e.EnumKeyword=91]="EnumKeyword",e[e.ExportKeyword=92]="ExportKeyword",e[e.ExtendsKeyword=93]="ExtendsKeyword",e[e.FalseKeyword=94]="FalseKeyword",e[e.FinallyKeyword=95]="FinallyKeyword",e[e.ForKeyword=96]="ForKeyword",e[e.FunctionKeyword=97]="FunctionKeyword",e[e.IfKeyword=98]="IfKeyword",e[e.ImportKeyword=99]="ImportKeyword",e[e.InKeyword=100]="InKeyword",e[e.InstanceOfKeyword=101]="InstanceOfKeyword",e[e.NewKeyword=102]="NewKeyword",e[e.NullKeyword=103]="NullKeyword",e[e.ReturnKeyword=104]="ReturnKeyword",e[e.SuperKeyword=105]="SuperKeyword",e[e.SwitchKeyword=106]="SwitchKeyword",e[e.ThisKeyword=107]="ThisKeyword",e[e.ThrowKeyword=108]="ThrowKeyword",e[e.TrueKeyword=109]="TrueKeyword",e[e.TryKeyword=110]="TryKeyword",e[e.TypeOfKeyword=111]="TypeOfKeyword",e[e.VarKeyword=112]="VarKeyword",e[e.VoidKeyword=113]="VoidKeyword",e[e.WhileKeyword=114]="WhileKeyword",e[e.WithKeyword=115]="WithKeyword",e[e.ImplementsKeyword=116]="ImplementsKeyword",e[e.InterfaceKeyword=117]="InterfaceKeyword",e[e.LetKeyword=118]="LetKeyword",e[e.PackageKeyword=119]="PackageKeyword",e[e.PrivateKeyword=120]="PrivateKeyword",e[e.ProtectedKeyword=121]="ProtectedKeyword",e[e.PublicKeyword=122]="PublicKeyword",e[e.StaticKeyword=123]="StaticKeyword",e[e.YieldKeyword=124]="YieldKeyword",e[e.AbstractKeyword=125]="AbstractKeyword",e[e.AsKeyword=126]="AsKeyword",e[e.AssertsKeyword=127]="AssertsKeyword",e[e.AnyKeyword=128]="AnyKeyword",e[e.AsyncKeyword=129]="AsyncKeyword",e[e.AwaitKeyword=130]="AwaitKeyword",e[e.BooleanKeyword=131]="BooleanKeyword",e[e.ConstructorKeyword=132]="ConstructorKeyword",e[e.DeclareKeyword=133]="DeclareKeyword",e[e.GetKeyword=134]="GetKeyword",e[e.InferKeyword=135]="InferKeyword",e[e.IntrinsicKeyword=136]="IntrinsicKeyword",e[e.IsKeyword=137]="IsKeyword",e[e.KeyOfKeyword=138]="KeyOfKeyword",e[e.ModuleKeyword=139]="ModuleKeyword",e[e.NamespaceKeyword=140]="NamespaceKeyword",e[e.NeverKeyword=141]="NeverKeyword",e[e.ReadonlyKeyword=142]="ReadonlyKeyword",e[e.RequireKeyword=143]="RequireKeyword",e[e.NumberKeyword=144]="NumberKeyword",e[e.ObjectKeyword=145]="ObjectKeyword",e[e.SetKeyword=146]="SetKeyword",e[e.StringKeyword=147]="StringKeyword",e[e.SymbolKeyword=148]="SymbolKeyword",e[e.TypeKeyword=149]="TypeKeyword",e[e.UndefinedKeyword=150]="UndefinedKeyword",e[e.UniqueKeyword=151]="UniqueKeyword",e[e.UnknownKeyword=152]="UnknownKeyword",e[e.FromKeyword=153]="FromKeyword",e[e.GlobalKeyword=154]="GlobalKeyword",e[e.BigIntKeyword=155]="BigIntKeyword",e[e.OfKeyword=156]="OfKeyword",e[e.QualifiedName=157]="QualifiedName",e[e.ComputedPropertyName=158]="ComputedPropertyName",e[e.TypeParameter=159]="TypeParameter",e[e.Parameter=160]="Parameter",e[e.Decorator=161]="Decorator",e[e.PropertySignature=162]="PropertySignature",e[e.PropertyDeclaration=163]="PropertyDeclaration",e[e.MethodSignature=164]="MethodSignature",e[e.MethodDeclaration=165]="MethodDeclaration",e[e.Constructor=166]="Constructor",e[e.GetAccessor=167]="GetAccessor",e[e.SetAccessor=168]="SetAccessor",e[e.CallSignature=169]="CallSignature",e[e.ConstructSignature=170]="ConstructSignature",e[e.IndexSignature=171]="IndexSignature",e[e.TypePredicate=172]="TypePredicate",e[e.TypeReference=173]="TypeReference",e[e.FunctionType=174]="FunctionType",e[e.ConstructorType=175]="ConstructorType",e[e.TypeQuery=176]="TypeQuery",e[e.TypeLiteral=177]="TypeLiteral",e[e.ArrayType=178]="ArrayType",e[e.TupleType=179]="TupleType",e[e.OptionalType=180]="OptionalType",e[e.RestType=181]="RestType",e[e.UnionType=182]="UnionType",e[e.IntersectionType=183]="IntersectionType",e[e.ConditionalType=184]="ConditionalType",e[e.InferType=185]="InferType",e[e.ParenthesizedType=186]="ParenthesizedType",e[e.ThisType=187]="ThisType",e[e.TypeOperator=188]="TypeOperator",e[e.IndexedAccessType=189]="IndexedAccessType",e[e.MappedType=190]="MappedType",e[e.LiteralType=191]="LiteralType",e[e.NamedTupleMember=192]="NamedTupleMember",e[e.TemplateLiteralType=193]="TemplateLiteralType",e[e.TemplateLiteralTypeSpan=194]="TemplateLiteralTypeSpan",e[e.ImportType=195]="ImportType",e[e.ObjectBindingPattern=196]="ObjectBindingPattern",e[e.ArrayBindingPattern=197]="ArrayBindingPattern",e[e.BindingElement=198]="BindingElement",e[e.ArrayLiteralExpression=199]="ArrayLiteralExpression",e[e.ObjectLiteralExpression=200]="ObjectLiteralExpression",e[e.PropertyAccessExpression=201]="PropertyAccessExpression",e[e.ElementAccessExpression=202]="ElementAccessExpression",e[e.CallExpression=203]="CallExpression",e[e.NewExpression=204]="NewExpression",e[e.TaggedTemplateExpression=205]="TaggedTemplateExpression",e[e.TypeAssertionExpression=206]="TypeAssertionExpression",e[e.ParenthesizedExpression=207]="ParenthesizedExpression",e[e.FunctionExpression=208]="FunctionExpression",e[e.ArrowFunction=209]="ArrowFunction",e[e.DeleteExpression=210]="DeleteExpression",e[e.TypeOfExpression=211]="TypeOfExpression",e[e.VoidExpression=212]="VoidExpression",e[e.AwaitExpression=213]="AwaitExpression",e[e.PrefixUnaryExpression=214]="PrefixUnaryExpression",e[e.PostfixUnaryExpression=215]="PostfixUnaryExpression",e[e.BinaryExpression=216]="BinaryExpression",e[e.ConditionalExpression=217]="ConditionalExpression",e[e.TemplateExpression=218]="TemplateExpression",e[e.YieldExpression=219]="YieldExpression",e[e.SpreadElement=220]="SpreadElement",e[e.ClassExpression=221]="ClassExpression",e[e.OmittedExpression=222]="OmittedExpression",e[e.ExpressionWithTypeArguments=223]="ExpressionWithTypeArguments",e[e.AsExpression=224]="AsExpression",e[e.NonNullExpression=225]="NonNullExpression",e[e.MetaProperty=226]="MetaProperty",e[e.SyntheticExpression=227]="SyntheticExpression",e[e.TemplateSpan=228]="TemplateSpan",e[e.SemicolonClassElement=229]="SemicolonClassElement",e[e.Block=230]="Block",e[e.EmptyStatement=231]="EmptyStatement",e[e.VariableStatement=232]="VariableStatement",e[e.ExpressionStatement=233]="ExpressionStatement",e[e.IfStatement=234]="IfStatement",e[e.DoStatement=235]="DoStatement",e[e.WhileStatement=236]="WhileStatement",e[e.ForStatement=237]="ForStatement",e[e.ForInStatement=238]="ForInStatement",e[e.ForOfStatement=239]="ForOfStatement",e[e.ContinueStatement=240]="ContinueStatement",e[e.BreakStatement=241]="BreakStatement",e[e.ReturnStatement=242]="ReturnStatement",e[e.WithStatement=243]="WithStatement",e[e.SwitchStatement=244]="SwitchStatement",e[e.LabeledStatement=245]="LabeledStatement",e[e.ThrowStatement=246]="ThrowStatement",e[e.TryStatement=247]="TryStatement",e[e.DebuggerStatement=248]="DebuggerStatement",e[e.VariableDeclaration=249]="VariableDeclaration",e[e.VariableDeclarationList=250]="VariableDeclarationList",e[e.FunctionDeclaration=251]="FunctionDeclaration",e[e.ClassDeclaration=252]="ClassDeclaration",e[e.InterfaceDeclaration=253]="InterfaceDeclaration",e[e.TypeAliasDeclaration=254]="TypeAliasDeclaration",e[e.EnumDeclaration=255]="EnumDeclaration",e[e.ModuleDeclaration=256]="ModuleDeclaration",e[e.ModuleBlock=257]="ModuleBlock",e[e.CaseBlock=258]="CaseBlock",e[e.NamespaceExportDeclaration=259]="NamespaceExportDeclaration",e[e.ImportEqualsDeclaration=260]="ImportEqualsDeclaration",e[e.ImportDeclaration=261]="ImportDeclaration",e[e.ImportClause=262]="ImportClause",e[e.NamespaceImport=263]="NamespaceImport",e[e.NamedImports=264]="NamedImports",e[e.ImportSpecifier=265]="ImportSpecifier",e[e.ExportAssignment=266]="ExportAssignment",e[e.ExportDeclaration=267]="ExportDeclaration",e[e.NamedExports=268]="NamedExports",e[e.NamespaceExport=269]="NamespaceExport",e[e.ExportSpecifier=270]="ExportSpecifier",e[e.MissingDeclaration=271]="MissingDeclaration",e[e.ExternalModuleReference=272]="ExternalModuleReference",e[e.JsxElement=273]="JsxElement",e[e.JsxSelfClosingElement=274]="JsxSelfClosingElement",e[e.JsxOpeningElement=275]="JsxOpeningElement",e[e.JsxClosingElement=276]="JsxClosingElement",e[e.JsxFragment=277]="JsxFragment",e[e.JsxOpeningFragment=278]="JsxOpeningFragment",e[e.JsxClosingFragment=279]="JsxClosingFragment",e[e.JsxAttribute=280]="JsxAttribute",e[e.JsxAttributes=281]="JsxAttributes",e[e.JsxSpreadAttribute=282]="JsxSpreadAttribute",e[e.JsxExpression=283]="JsxExpression",e[e.CaseClause=284]="CaseClause",e[e.DefaultClause=285]="DefaultClause",e[e.HeritageClause=286]="HeritageClause",e[e.CatchClause=287]="CatchClause",e[e.PropertyAssignment=288]="PropertyAssignment",e[e.ShorthandPropertyAssignment=289]="ShorthandPropertyAssignment",e[e.SpreadAssignment=290]="SpreadAssignment",e[e.EnumMember=291]="EnumMember",e[e.UnparsedPrologue=292]="UnparsedPrologue",e[e.UnparsedPrepend=293]="UnparsedPrepend",e[e.UnparsedText=294]="UnparsedText",e[e.UnparsedInternalText=295]="UnparsedInternalText",e[e.UnparsedSyntheticReference=296]="UnparsedSyntheticReference",e[e.SourceFile=297]="SourceFile",e[e.Bundle=298]="Bundle",e[e.UnparsedSource=299]="UnparsedSource",e[e.InputFiles=300]="InputFiles",e[e.JSDocTypeExpression=301]="JSDocTypeExpression",e[e.JSDocNameReference=302]="JSDocNameReference",e[e.JSDocAllType=303]="JSDocAllType",e[e.JSDocUnknownType=304]="JSDocUnknownType",e[e.JSDocNullableType=305]="JSDocNullableType",e[e.JSDocNonNullableType=306]="JSDocNonNullableType",e[e.JSDocOptionalType=307]="JSDocOptionalType",e[e.JSDocFunctionType=308]="JSDocFunctionType",e[e.JSDocVariadicType=309]="JSDocVariadicType",e[e.JSDocNamepathType=310]="JSDocNamepathType",e[e.JSDocComment=311]="JSDocComment",e[e.JSDocTypeLiteral=312]="JSDocTypeLiteral",e[e.JSDocSignature=313]="JSDocSignature",e[e.JSDocTag=314]="JSDocTag",e[e.JSDocAugmentsTag=315]="JSDocAugmentsTag",e[e.JSDocImplementsTag=316]="JSDocImplementsTag",e[e.JSDocAuthorTag=317]="JSDocAuthorTag",e[e.JSDocDeprecatedTag=318]="JSDocDeprecatedTag",e[e.JSDocClassTag=319]="JSDocClassTag",e[e.JSDocPublicTag=320]="JSDocPublicTag",e[e.JSDocPrivateTag=321]="JSDocPrivateTag",e[e.JSDocProtectedTag=322]="JSDocProtectedTag",e[e.JSDocReadonlyTag=323]="JSDocReadonlyTag",e[e.JSDocCallbackTag=324]="JSDocCallbackTag",e[e.JSDocEnumTag=325]="JSDocEnumTag",e[e.JSDocParameterTag=326]="JSDocParameterTag",e[e.JSDocReturnTag=327]="JSDocReturnTag",e[e.JSDocThisTag=328]="JSDocThisTag",e[e.JSDocTypeTag=329]="JSDocTypeTag",e[e.JSDocTemplateTag=330]="JSDocTemplateTag",e[e.JSDocTypedefTag=331]="JSDocTypedefTag",e[e.JSDocSeeTag=332]="JSDocSeeTag",e[e.JSDocPropertyTag=333]="JSDocPropertyTag",e[e.SyntaxList=334]="SyntaxList",e[e.NotEmittedStatement=335]="NotEmittedStatement",e[e.PartiallyEmittedExpression=336]="PartiallyEmittedExpression",e[e.CommaListExpression=337]="CommaListExpression",e[e.MergeDeclarationMarker=338]="MergeDeclarationMarker",e[e.EndOfDeclarationMarker=339]="EndOfDeclarationMarker",e[e.SyntheticReferenceExpression=340]="SyntheticReferenceExpression",e[e.Count=341]="Count",e[e.FirstAssignment=62]="FirstAssignment",e[e.LastAssignment=77]="LastAssignment",e[e.FirstCompoundAssignment=63]="FirstCompoundAssignment",e[e.LastCompoundAssignment=77]="LastCompoundAssignment",e[e.FirstReservedWord=80]="FirstReservedWord",e[e.LastReservedWord=115]="LastReservedWord",e[e.FirstKeyword=80]="FirstKeyword",e[e.LastKeyword=156]="LastKeyword",e[e.FirstFutureReservedWord=116]="FirstFutureReservedWord",e[e.LastFutureReservedWord=124]="LastFutureReservedWord",e[e.FirstTypeNode=172]="FirstTypeNode",e[e.LastTypeNode=195]="LastTypeNode",e[e.FirstPunctuation=18]="FirstPunctuation",e[e.LastPunctuation=77]="LastPunctuation",e[e.FirstToken=0]="FirstToken",e[e.LastToken=156]="LastToken",e[e.FirstTriviaToken=2]="FirstTriviaToken",e[e.LastTriviaToken=7]="LastTriviaToken",e[e.FirstLiteralToken=8]="FirstLiteralToken",e[e.LastLiteralToken=14]="LastLiteralToken",e[e.FirstTemplateToken=14]="FirstTemplateToken",e[e.LastTemplateToken=17]="LastTemplateToken",e[e.FirstBinaryOperator=29]="FirstBinaryOperator",e[e.LastBinaryOperator=77]="LastBinaryOperator",e[e.FirstStatement=232]="FirstStatement",e[e.LastStatement=248]="LastStatement",e[e.FirstNode=157]="FirstNode",e[e.FirstJSDocNode=301]="FirstJSDocNode",e[e.LastJSDocNode=333]="LastJSDocNode",e[e.FirstJSDocTagNode=314]="FirstJSDocTagNode",e[e.LastJSDocTagNode=333]="LastJSDocTagNode",e[e.FirstContextualKeyword=125]="FirstContextualKeyword",e[e.LastContextualKeyword=156]="LastContextualKeyword"}(e.SyntaxKind||(e.SyntaxKind={})),function(e){e[e.None=0]="None",e[e.Let=1]="Let",e[e.Const=2]="Const",e[e.NestedNamespace=4]="NestedNamespace",e[e.Synthesized=8]="Synthesized",e[e.Namespace=16]="Namespace",e[e.OptionalChain=32]="OptionalChain",e[e.ExportContext=64]="ExportContext",e[e.ContainsThis=128]="ContainsThis",e[e.HasImplicitReturn=256]="HasImplicitReturn",e[e.HasExplicitReturn=512]="HasExplicitReturn",e[e.GlobalAugmentation=1024]="GlobalAugmentation",e[e.HasAsyncFunctions=2048]="HasAsyncFunctions",e[e.DisallowInContext=4096]="DisallowInContext",e[e.YieldContext=8192]="YieldContext",e[e.DecoratorContext=16384]="DecoratorContext",e[e.AwaitContext=32768]="AwaitContext",e[e.ThisNodeHasError=65536]="ThisNodeHasError",e[e.JavaScriptFile=131072]="JavaScriptFile",e[e.ThisNodeOrAnySubNodesHasError=262144]="ThisNodeOrAnySubNodesHasError",e[e.HasAggregatedChildData=524288]="HasAggregatedChildData",e[e.PossiblyContainsDynamicImport=1048576]="PossiblyContainsDynamicImport",e[e.PossiblyContainsImportMeta=2097152]="PossiblyContainsImportMeta",e[e.JSDoc=4194304]="JSDoc",e[e.Ambient=8388608]="Ambient",e[e.InWithStatement=16777216]="InWithStatement",e[e.JsonFile=33554432]="JsonFile",e[e.TypeCached=67108864]="TypeCached",e[e.Deprecated=134217728]="Deprecated",e[e.BlockScoped=3]="BlockScoped",e[e.ReachabilityCheckFlags=768]="ReachabilityCheckFlags",e[e.ReachabilityAndEmitFlags=2816]="ReachabilityAndEmitFlags",e[e.ContextFlags=25358336]="ContextFlags",e[e.TypeExcludesFlags=40960]="TypeExcludesFlags",e[e.PermanentlySetIncrementalFlags=3145728]="PermanentlySetIncrementalFlags"}(e.NodeFlags||(e.NodeFlags={})),function(e){e[e.None=0]="None",e[e.Export=1]="Export",e[e.Ambient=2]="Ambient",e[e.Public=4]="Public",e[e.Private=8]="Private",e[e.Protected=16]="Protected",e[e.Static=32]="Static",e[e.Readonly=64]="Readonly",e[e.Abstract=128]="Abstract",e[e.Async=256]="Async",e[e.Default=512]="Default",e[e.Const=2048]="Const",e[e.HasComputedJSDocModifiers=4096]="HasComputedJSDocModifiers",e[e.Deprecated=8192]="Deprecated",e[e.HasComputedFlags=536870912]="HasComputedFlags",e[e.AccessibilityModifier=28]="AccessibilityModifier",e[e.ParameterPropertyModifier=92]="ParameterPropertyModifier",e[e.NonPublicAccessibilityModifier=24]="NonPublicAccessibilityModifier",e[e.TypeScriptModifier=2270]="TypeScriptModifier",e[e.ExportDefault=513]="ExportDefault",e[e.All=11263]="All"}(e.ModifierFlags||(e.ModifierFlags={})),function(e){e[e.None=0]="None",e[e.IntrinsicNamedElement=1]="IntrinsicNamedElement",e[e.IntrinsicIndexedElement=2]="IntrinsicIndexedElement",e[e.IntrinsicElement=3]="IntrinsicElement"}(e.JsxFlags||(e.JsxFlags={})),function(e){e[e.Succeeded=1]="Succeeded",e[e.Failed=2]="Failed",e[e.Reported=4]="Reported",e[e.ReportsUnmeasurable=8]="ReportsUnmeasurable",e[e.ReportsUnreliable=16]="ReportsUnreliable",e[e.ReportsMask=24]="ReportsMask"}(e.RelationComparisonResult||(e.RelationComparisonResult={})),function(e){e[e.None=0]="None",e[e.Auto=1]="Auto",e[e.Loop=2]="Loop",e[e.Unique=3]="Unique",e[e.Node=4]="Node",e[e.KindMask=7]="KindMask",e[e.ReservedInNestedScopes=8]="ReservedInNestedScopes",e[e.Optimistic=16]="Optimistic",e[e.FileLevel=32]="FileLevel",e[e.AllowNameSubstitution=64]="AllowNameSubstitution"}(e.GeneratedIdentifierFlags||(e.GeneratedIdentifierFlags={})),function(e){e[e.None=0]="None",e[e.PrecedingLineBreak=1]="PrecedingLineBreak",e[e.PrecedingJSDocComment=2]="PrecedingJSDocComment",e[e.Unterminated=4]="Unterminated",e[e.ExtendedUnicodeEscape=8]="ExtendedUnicodeEscape",e[e.Scientific=16]="Scientific",e[e.Octal=32]="Octal",e[e.HexSpecifier=64]="HexSpecifier",e[e.BinarySpecifier=128]="BinarySpecifier",e[e.OctalSpecifier=256]="OctalSpecifier",e[e.ContainsSeparator=512]="ContainsSeparator",e[e.UnicodeEscape=1024]="UnicodeEscape",e[e.ContainsInvalidEscape=2048]="ContainsInvalidEscape",e[e.BinaryOrOctalSpecifier=384]="BinaryOrOctalSpecifier",e[e.NumericLiteralFlags=1008]="NumericLiteralFlags",e[e.TemplateLiteralLikeFlags=2048]="TemplateLiteralLikeFlags"}(e.TokenFlags||(e.TokenFlags={})),function(e){e[e.Unreachable=1]="Unreachable",e[e.Start=2]="Start",e[e.BranchLabel=4]="BranchLabel",e[e.LoopLabel=8]="LoopLabel",e[e.Assignment=16]="Assignment",e[e.TrueCondition=32]="TrueCondition",e[e.FalseCondition=64]="FalseCondition",e[e.SwitchClause=128]="SwitchClause",e[e.ArrayMutation=256]="ArrayMutation",e[e.Call=512]="Call",e[e.ReduceLabel=1024]="ReduceLabel",e[e.Referenced=2048]="Referenced",e[e.Shared=4096]="Shared",e[e.Label=12]="Label",e[e.Condition=96]="Condition"}(e.FlowFlags||(e.FlowFlags={})),function(e){e[e.ExpectError=0]="ExpectError",e[e.Ignore=1]="Ignore"}(e.CommentDirectiveType||(e.CommentDirectiveType={}));var t,r=function(){};e.OperationCanceledException=r,function(e){e[e.RootFile=0]="RootFile",e[e.SourceFromProjectReference=1]="SourceFromProjectReference",e[e.OutputFromProjectReference=2]="OutputFromProjectReference",e[e.Import=3]="Import",e[e.ReferenceFile=4]="ReferenceFile",e[e.TypeReferenceDirective=5]="TypeReferenceDirective",e[e.LibFile=6]="LibFile",e[e.LibReferenceDirective=7]="LibReferenceDirective",e[e.AutomaticTypeDirectiveFile=8]="AutomaticTypeDirectiveFile"}(e.FileIncludeKind||(e.FileIncludeKind={})),function(e){e[e.FilePreprocessingReferencedDiagnostic=0]="FilePreprocessingReferencedDiagnostic",e[e.FilePreprocessingFileExplainingDiagnostic=1]="FilePreprocessingFileExplainingDiagnostic"}(e.FilePreprocessingDiagnosticsKind||(e.FilePreprocessingDiagnosticsKind={})),function(e){e[e.Not=0]="Not",e[e.SafeModules=1]="SafeModules",e[e.Completely=2]="Completely"}(e.StructureIsReused||(e.StructureIsReused={})),function(e){e[e.Success=0]="Success",e[e.DiagnosticsPresent_OutputsSkipped=1]="DiagnosticsPresent_OutputsSkipped",e[e.DiagnosticsPresent_OutputsGenerated=2]="DiagnosticsPresent_OutputsGenerated",e[e.InvalidProject_OutputsSkipped=3]="InvalidProject_OutputsSkipped",e[e.ProjectReferenceCycle_OutputsSkipped=4]="ProjectReferenceCycle_OutputsSkipped",e[e.ProjectReferenceCycle_OutputsSkupped=4]="ProjectReferenceCycle_OutputsSkupped"}(e.ExitStatus||(e.ExitStatus={})),function(e){e[e.None=0]="None",e[e.Literal=1]="Literal",e[e.Subtype=2]="Subtype"}(e.UnionReduction||(e.UnionReduction={})),function(e){e[e.None=0]="None",e[e.Signature=1]="Signature",e[e.NoConstraints=2]="NoConstraints",e[e.Completions=4]="Completions",e[e.SkipBindingPatterns=8]="SkipBindingPatterns"}(e.ContextFlags||(e.ContextFlags={})),function(e){e[e.None=0]="None",e[e.NoTruncation=1]="NoTruncation",e[e.WriteArrayAsGenericType=2]="WriteArrayAsGenericType",e[e.GenerateNamesForShadowedTypeParams=4]="GenerateNamesForShadowedTypeParams",e[e.UseStructuralFallback=8]="UseStructuralFallback",e[e.ForbidIndexedAccessSymbolReferences=16]="ForbidIndexedAccessSymbolReferences",e[e.WriteTypeArgumentsOfSignature=32]="WriteTypeArgumentsOfSignature",e[e.UseFullyQualifiedType=64]="UseFullyQualifiedType",e[e.UseOnlyExternalAliasing=128]="UseOnlyExternalAliasing",e[e.SuppressAnyReturnType=256]="SuppressAnyReturnType",e[e.WriteTypeParametersInQualifiedName=512]="WriteTypeParametersInQualifiedName",e[e.MultilineObjectLiterals=1024]="MultilineObjectLiterals",e[e.WriteClassExpressionAsTypeLiteral=2048]="WriteClassExpressionAsTypeLiteral",e[e.UseTypeOfFunction=4096]="UseTypeOfFunction",e[e.OmitParameterModifiers=8192]="OmitParameterModifiers",e[e.UseAliasDefinedOutsideCurrentScope=16384]="UseAliasDefinedOutsideCurrentScope",e[e.UseSingleQuotesForStringLiteralType=268435456]="UseSingleQuotesForStringLiteralType",e[e.NoTypeReduction=536870912]="NoTypeReduction",e[e.NoUndefinedOptionalParameterType=1073741824]="NoUndefinedOptionalParameterType",e[e.AllowThisInObjectLiteral=32768]="AllowThisInObjectLiteral",e[e.AllowQualifedNameInPlaceOfIdentifier=65536]="AllowQualifedNameInPlaceOfIdentifier",e[e.AllowAnonymousIdentifier=131072]="AllowAnonymousIdentifier",e[e.AllowEmptyUnionOrIntersection=262144]="AllowEmptyUnionOrIntersection",e[e.AllowEmptyTuple=524288]="AllowEmptyTuple",e[e.AllowUniqueESSymbolType=1048576]="AllowUniqueESSymbolType",e[e.AllowEmptyIndexInfoType=2097152]="AllowEmptyIndexInfoType",e[e.AllowNodeModulesRelativePaths=67108864]="AllowNodeModulesRelativePaths",e[e.DoNotIncludeSymbolChain=134217728]="DoNotIncludeSymbolChain",e[e.IgnoreErrors=70221824]="IgnoreErrors",e[e.InObjectTypeLiteral=4194304]="InObjectTypeLiteral",e[e.InTypeAlias=8388608]="InTypeAlias",e[e.InInitialEntityName=16777216]="InInitialEntityName",e[e.InReverseMappedType=33554432]="InReverseMappedType"}(e.NodeBuilderFlags||(e.NodeBuilderFlags={})),function(e){e[e.None=0]="None",e[e.NoTruncation=1]="NoTruncation",e[e.WriteArrayAsGenericType=2]="WriteArrayAsGenericType",e[e.UseStructuralFallback=8]="UseStructuralFallback",e[e.WriteTypeArgumentsOfSignature=32]="WriteTypeArgumentsOfSignature",e[e.UseFullyQualifiedType=64]="UseFullyQualifiedType",e[e.SuppressAnyReturnType=256]="SuppressAnyReturnType",e[e.MultilineObjectLiterals=1024]="MultilineObjectLiterals",e[e.WriteClassExpressionAsTypeLiteral=2048]="WriteClassExpressionAsTypeLiteral",e[e.UseTypeOfFunction=4096]="UseTypeOfFunction",e[e.OmitParameterModifiers=8192]="OmitParameterModifiers",e[e.UseAliasDefinedOutsideCurrentScope=16384]="UseAliasDefinedOutsideCurrentScope",e[e.UseSingleQuotesForStringLiteralType=268435456]="UseSingleQuotesForStringLiteralType",e[e.NoTypeReduction=536870912]="NoTypeReduction",e[e.AllowUniqueESSymbolType=1048576]="AllowUniqueESSymbolType",e[e.AddUndefined=131072]="AddUndefined",e[e.WriteArrowStyleSignature=262144]="WriteArrowStyleSignature",e[e.InArrayType=524288]="InArrayType",e[e.InElementType=2097152]="InElementType",e[e.InFirstTypeArgument=4194304]="InFirstTypeArgument",e[e.InTypeAlias=8388608]="InTypeAlias",e[e.WriteOwnNameForAnyLike=0]="WriteOwnNameForAnyLike",e[e.NodeBuilderFlagsMask=814775659]="NodeBuilderFlagsMask"}(e.TypeFormatFlags||(e.TypeFormatFlags={})),function(e){e[e.None=0]="None",e[e.WriteTypeParametersOrArguments=1]="WriteTypeParametersOrArguments",e[e.UseOnlyExternalAliasing=2]="UseOnlyExternalAliasing",e[e.AllowAnyNodeKind=4]="AllowAnyNodeKind",e[e.UseAliasDefinedOutsideCurrentScope=8]="UseAliasDefinedOutsideCurrentScope",e[e.DoNotIncludeSymbolChain=16]="DoNotIncludeSymbolChain"}(e.SymbolFormatFlags||(e.SymbolFormatFlags={})),function(e){e[e.Accessible=0]="Accessible",e[e.NotAccessible=1]="NotAccessible",e[e.CannotBeNamed=2]="CannotBeNamed"}(e.SymbolAccessibility||(e.SymbolAccessibility={})),function(e){e[e.UnionOrIntersection=0]="UnionOrIntersection",e[e.Spread=1]="Spread"}(e.SyntheticSymbolKind||(e.SyntheticSymbolKind={})),function(e){e[e.This=0]="This",e[e.Identifier=1]="Identifier",e[e.AssertsThis=2]="AssertsThis",e[e.AssertsIdentifier=3]="AssertsIdentifier"}(e.TypePredicateKind||(e.TypePredicateKind={})),function(e){e[e.Unknown=0]="Unknown",e[e.TypeWithConstructSignatureAndValue=1]="TypeWithConstructSignatureAndValue",e[e.VoidNullableOrNeverType=2]="VoidNullableOrNeverType",e[e.NumberLikeType=3]="NumberLikeType",e[e.BigIntLikeType=4]="BigIntLikeType",e[e.StringLikeType=5]="StringLikeType",e[e.BooleanType=6]="BooleanType",e[e.ArrayLikeType=7]="ArrayLikeType",e[e.ESSymbolType=8]="ESSymbolType",e[e.Promise=9]="Promise",e[e.TypeWithCallSignature=10]="TypeWithCallSignature",e[e.ObjectType=11]="ObjectType"}(e.TypeReferenceSerializationKind||(e.TypeReferenceSerializationKind={})),function(e){e[e.None=0]="None",e[e.FunctionScopedVariable=1]="FunctionScopedVariable",e[e.BlockScopedVariable=2]="BlockScopedVariable",e[e.Property=4]="Property",e[e.EnumMember=8]="EnumMember",e[e.Function=16]="Function",e[e.Class=32]="Class",e[e.Interface=64]="Interface",e[e.ConstEnum=128]="ConstEnum",e[e.RegularEnum=256]="RegularEnum",e[e.ValueModule=512]="ValueModule",e[e.NamespaceModule=1024]="NamespaceModule",e[e.TypeLiteral=2048]="TypeLiteral",e[e.ObjectLiteral=4096]="ObjectLiteral",e[e.Method=8192]="Method",e[e.Constructor=16384]="Constructor",e[e.GetAccessor=32768]="GetAccessor",e[e.SetAccessor=65536]="SetAccessor",e[e.Signature=131072]="Signature",e[e.TypeParameter=262144]="TypeParameter",e[e.TypeAlias=524288]="TypeAlias",e[e.ExportValue=1048576]="ExportValue",e[e.Alias=2097152]="Alias",e[e.Prototype=4194304]="Prototype",e[e.ExportStar=8388608]="ExportStar",e[e.Optional=16777216]="Optional",e[e.Transient=33554432]="Transient",e[e.Assignment=67108864]="Assignment",e[e.ModuleExports=134217728]="ModuleExports",e[e.All=67108863]="All",e[e.Enum=384]="Enum",e[e.Variable=3]="Variable",e[e.Value=111551]="Value",e[e.Type=788968]="Type",e[e.Namespace=1920]="Namespace",e[e.Module=1536]="Module",e[e.Accessor=98304]="Accessor",e[e.FunctionScopedVariableExcludes=111550]="FunctionScopedVariableExcludes",e[e.BlockScopedVariableExcludes=111551]="BlockScopedVariableExcludes",e[e.ParameterExcludes=111551]="ParameterExcludes",e[e.PropertyExcludes=0]="PropertyExcludes",e[e.EnumMemberExcludes=900095]="EnumMemberExcludes",e[e.FunctionExcludes=110991]="FunctionExcludes",e[e.ClassExcludes=899503]="ClassExcludes",e[e.InterfaceExcludes=788872]="InterfaceExcludes",e[e.RegularEnumExcludes=899327]="RegularEnumExcludes",e[e.ConstEnumExcludes=899967]="ConstEnumExcludes",e[e.ValueModuleExcludes=110735]="ValueModuleExcludes",e[e.NamespaceModuleExcludes=0]="NamespaceModuleExcludes",e[e.MethodExcludes=103359]="MethodExcludes",e[e.GetAccessorExcludes=46015]="GetAccessorExcludes",e[e.SetAccessorExcludes=78783]="SetAccessorExcludes",e[e.TypeParameterExcludes=526824]="TypeParameterExcludes",e[e.TypeAliasExcludes=788968]="TypeAliasExcludes",e[e.AliasExcludes=2097152]="AliasExcludes",e[e.ModuleMember=2623475]="ModuleMember",e[e.ExportHasLocal=944]="ExportHasLocal",e[e.BlockScoped=418]="BlockScoped",e[e.PropertyOrAccessor=98308]="PropertyOrAccessor",e[e.ClassMember=106500]="ClassMember",e[e.ExportSupportsDefaultModifier=112]="ExportSupportsDefaultModifier",e[e.ExportDoesNotSupportDefaultModifier=-113]="ExportDoesNotSupportDefaultModifier",e[e.Classifiable=2885600]="Classifiable",e[e.LateBindingContainer=6256]="LateBindingContainer"}(e.SymbolFlags||(e.SymbolFlags={})),function(e){e[e.Numeric=0]="Numeric",e[e.Literal=1]="Literal"}(e.EnumKind||(e.EnumKind={})),function(e){e[e.Instantiated=1]="Instantiated",e[e.SyntheticProperty=2]="SyntheticProperty",e[e.SyntheticMethod=4]="SyntheticMethod",e[e.Readonly=8]="Readonly",e[e.ReadPartial=16]="ReadPartial",e[e.WritePartial=32]="WritePartial",e[e.HasNonUniformType=64]="HasNonUniformType",e[e.HasLiteralType=128]="HasLiteralType",e[e.ContainsPublic=256]="ContainsPublic",e[e.ContainsProtected=512]="ContainsProtected",e[e.ContainsPrivate=1024]="ContainsPrivate",e[e.ContainsStatic=2048]="ContainsStatic",e[e.Late=4096]="Late",e[e.ReverseMapped=8192]="ReverseMapped",e[e.OptionalParameter=16384]="OptionalParameter",e[e.RestParameter=32768]="RestParameter",e[e.DeferredType=65536]="DeferredType",e[e.HasNeverType=131072]="HasNeverType",e[e.Mapped=262144]="Mapped",e[e.StripOptional=524288]="StripOptional",e[e.Synthetic=6]="Synthetic",e[e.Discriminant=192]="Discriminant",e[e.Partial=48]="Partial"}(e.CheckFlags||(e.CheckFlags={})),function(e){e.Call="__call",e.Constructor="__constructor",e.New="__new",e.Index="__index",e.ExportStar="__export",e.Global="__global",e.Missing="__missing",e.Type="__type",e.Object="__object",e.JSXAttributes="__jsxAttributes",e.Class="__class",e.Function="__function",e.Computed="__computed",e.Resolving="__resolving__",e.ExportEquals="export=",e.Default="default",e.This="this"}(e.InternalSymbolName||(e.InternalSymbolName={})),function(e){e[e.TypeChecked=1]="TypeChecked",e[e.LexicalThis=2]="LexicalThis",e[e.CaptureThis=4]="CaptureThis",e[e.CaptureNewTarget=8]="CaptureNewTarget",e[e.SuperInstance=256]="SuperInstance",e[e.SuperStatic=512]="SuperStatic",e[e.ContextChecked=1024]="ContextChecked",e[e.AsyncMethodWithSuper=2048]="AsyncMethodWithSuper",e[e.AsyncMethodWithSuperBinding=4096]="AsyncMethodWithSuperBinding",e[e.CaptureArguments=8192]="CaptureArguments",e[e.EnumValuesComputed=16384]="EnumValuesComputed",e[e.LexicalModuleMergesWithClass=32768]="LexicalModuleMergesWithClass",e[e.LoopWithCapturedBlockScopedBinding=65536]="LoopWithCapturedBlockScopedBinding",e[e.ContainsCapturedBlockScopeBinding=131072]="ContainsCapturedBlockScopeBinding",e[e.CapturedBlockScopedBinding=262144]="CapturedBlockScopedBinding",e[e.BlockScopedBindingInLoop=524288]="BlockScopedBindingInLoop",e[e.ClassWithBodyScopedClassBinding=1048576]="ClassWithBodyScopedClassBinding",e[e.BodyScopedClassBinding=2097152]="BodyScopedClassBinding",e[e.NeedsLoopOutParameter=4194304]="NeedsLoopOutParameter",e[e.AssignmentsMarked=8388608]="AssignmentsMarked",e[e.ClassWithConstructorReference=16777216]="ClassWithConstructorReference",e[e.ConstructorReferenceInClass=33554432]="ConstructorReferenceInClass",e[e.ContainsClassWithPrivateIdentifiers=67108864]="ContainsClassWithPrivateIdentifiers"}(e.NodeCheckFlags||(e.NodeCheckFlags={})),function(e){e[e.Any=1]="Any",e[e.Unknown=2]="Unknown",e[e.String=4]="String",e[e.Number=8]="Number",e[e.Boolean=16]="Boolean",e[e.Enum=32]="Enum",e[e.BigInt=64]="BigInt",e[e.StringLiteral=128]="StringLiteral",e[e.NumberLiteral=256]="NumberLiteral",e[e.BooleanLiteral=512]="BooleanLiteral",e[e.EnumLiteral=1024]="EnumLiteral",e[e.BigIntLiteral=2048]="BigIntLiteral",e[e.ESSymbol=4096]="ESSymbol",e[e.UniqueESSymbol=8192]="UniqueESSymbol",e[e.Void=16384]="Void",e[e.Undefined=32768]="Undefined",e[e.Null=65536]="Null",e[e.Never=131072]="Never",e[e.TypeParameter=262144]="TypeParameter",e[e.Object=524288]="Object",e[e.Union=1048576]="Union",e[e.Intersection=2097152]="Intersection",e[e.Index=4194304]="Index",e[e.IndexedAccess=8388608]="IndexedAccess",e[e.Conditional=16777216]="Conditional",e[e.Substitution=33554432]="Substitution",e[e.NonPrimitive=67108864]="NonPrimitive",e[e.TemplateLiteral=134217728]="TemplateLiteral",e[e.StringMapping=268435456]="StringMapping",e[e.AnyOrUnknown=3]="AnyOrUnknown",e[e.Nullable=98304]="Nullable",e[e.Literal=2944]="Literal",e[e.Unit=109440]="Unit",e[e.StringOrNumberLiteral=384]="StringOrNumberLiteral",e[e.StringOrNumberLiteralOrUnique=8576]="StringOrNumberLiteralOrUnique",e[e.DefinitelyFalsy=117632]="DefinitelyFalsy",e[e.PossiblyFalsy=117724]="PossiblyFalsy",e[e.Intrinsic=67359327]="Intrinsic",e[e.Primitive=131068]="Primitive",e[e.StringLike=402653316]="StringLike",e[e.NumberLike=296]="NumberLike",e[e.BigIntLike=2112]="BigIntLike",e[e.BooleanLike=528]="BooleanLike",e[e.EnumLike=1056]="EnumLike",e[e.ESSymbolLike=12288]="ESSymbolLike",e[e.VoidLike=49152]="VoidLike",e[e.DisjointDomains=469892092]="DisjointDomains",e[e.UnionOrIntersection=3145728]="UnionOrIntersection",e[e.StructuredType=3670016]="StructuredType",e[e.TypeVariable=8650752]="TypeVariable",e[e.InstantiableNonPrimitive=58982400]="InstantiableNonPrimitive",e[e.InstantiablePrimitive=406847488]="InstantiablePrimitive",e[e.Instantiable=465829888]="Instantiable",e[e.StructuredOrInstantiable=469499904]="StructuredOrInstantiable",e[e.ObjectFlagsType=3899393]="ObjectFlagsType",e[e.Simplifiable=25165824]="Simplifiable",e[e.Substructure=469237760]="Substructure",e[e.Narrowable=536624127]="Narrowable",e[e.NotPrimitiveUnion=468598819]="NotPrimitiveUnion",e[e.IncludesMask=205258751]="IncludesMask",e[e.IncludesStructuredOrInstantiable=262144]="IncludesStructuredOrInstantiable",e[e.IncludesNonWideningType=4194304]="IncludesNonWideningType",e[e.IncludesWildcard=8388608]="IncludesWildcard",e[e.IncludesEmptyObject=16777216]="IncludesEmptyObject"}(e.TypeFlags||(e.TypeFlags={})),function(e){e[e.Class=1]="Class",e[e.Interface=2]="Interface",e[e.Reference=4]="Reference",e[e.Tuple=8]="Tuple",e[e.Anonymous=16]="Anonymous",e[e.Mapped=32]="Mapped",e[e.Instantiated=64]="Instantiated",e[e.ObjectLiteral=128]="ObjectLiteral",e[e.EvolvingArray=256]="EvolvingArray",e[e.ObjectLiteralPatternWithComputedProperties=512]="ObjectLiteralPatternWithComputedProperties",e[e.ContainsSpread=1024]="ContainsSpread",e[e.ReverseMapped=2048]="ReverseMapped",e[e.JsxAttributes=4096]="JsxAttributes",e[e.MarkerType=8192]="MarkerType",e[e.JSLiteral=16384]="JSLiteral",e[e.FreshLiteral=32768]="FreshLiteral",e[e.ArrayLiteral=65536]="ArrayLiteral",e[e.ObjectRestType=131072]="ObjectRestType",e[e.PrimitiveUnion=262144]="PrimitiveUnion",e[e.ContainsWideningType=524288]="ContainsWideningType",e[e.ContainsObjectOrArrayLiteral=1048576]="ContainsObjectOrArrayLiteral",e[e.NonInferrableType=2097152]="NonInferrableType",e[e.IsGenericObjectTypeComputed=4194304]="IsGenericObjectTypeComputed",e[e.IsGenericObjectType=8388608]="IsGenericObjectType",e[e.IsGenericIndexTypeComputed=16777216]="IsGenericIndexTypeComputed",e[e.IsGenericIndexType=33554432]="IsGenericIndexType",e[e.CouldContainTypeVariablesComputed=67108864]="CouldContainTypeVariablesComputed",e[e.CouldContainTypeVariables=134217728]="CouldContainTypeVariables",e[e.ContainsIntersections=268435456]="ContainsIntersections",e[e.IsNeverIntersectionComputed=268435456]="IsNeverIntersectionComputed",e[e.IsNeverIntersection=536870912]="IsNeverIntersection",e[e.IsClassInstanceClone=1073741824]="IsClassInstanceClone",e[e.ClassOrInterface=3]="ClassOrInterface",e[e.RequiresWidening=1572864]="RequiresWidening",e[e.PropagatingFlags=3670016]="PropagatingFlags",e[e.ObjectTypeKindMask=2367]="ObjectTypeKindMask"}(e.ObjectFlags||(e.ObjectFlags={})),function(e){e[e.Invariant=0]="Invariant",e[e.Covariant=1]="Covariant",e[e.Contravariant=2]="Contravariant",e[e.Bivariant=3]="Bivariant",e[e.Independent=4]="Independent",e[e.VarianceMask=7]="VarianceMask",e[e.Unmeasurable=8]="Unmeasurable",e[e.Unreliable=16]="Unreliable",e[e.AllowsStructuralFallback=24]="AllowsStructuralFallback"}(e.VarianceFlags||(e.VarianceFlags={})),function(e){e[e.Required=1]="Required",e[e.Optional=2]="Optional",e[e.Rest=4]="Rest",e[e.Variadic=8]="Variadic",e[e.Fixed=3]="Fixed",e[e.Variable=12]="Variable",e[e.NonRequired=14]="NonRequired",e[e.NonRest=11]="NonRest"}(e.ElementFlags||(e.ElementFlags={})),function(e){e[e.Component=0]="Component",e[e.Function=1]="Function",e[e.Mixed=2]="Mixed"}(e.JsxReferenceKind||(e.JsxReferenceKind={})),function(e){e[e.Call=0]="Call",e[e.Construct=1]="Construct"}(e.SignatureKind||(e.SignatureKind={})),function(e){e[e.None=0]="None",e[e.HasRestParameter=1]="HasRestParameter",e[e.HasLiteralTypes=2]="HasLiteralTypes",e[e.Abstract=4]="Abstract",e[e.IsInnerCallChain=8]="IsInnerCallChain",e[e.IsOuterCallChain=16]="IsOuterCallChain",e[e.IsUntypedSignatureInJSFile=32]="IsUntypedSignatureInJSFile",e[e.PropagatingFlags=39]="PropagatingFlags",e[e.CallChainFlags=24]="CallChainFlags"}(e.SignatureFlags||(e.SignatureFlags={})),function(e){e[e.String=0]="String",e[e.Number=1]="Number"}(e.IndexKind||(e.IndexKind={})),function(e){e[e.Simple=0]="Simple",e[e.Array=1]="Array",e[e.Function=2]="Function",e[e.Composite=3]="Composite",e[e.Merged=4]="Merged"}(e.TypeMapKind||(e.TypeMapKind={})),function(e){e[e.NakedTypeVariable=1]="NakedTypeVariable",e[e.SpeculativeTuple=2]="SpeculativeTuple",e[e.HomomorphicMappedType=4]="HomomorphicMappedType",e[e.PartialHomomorphicMappedType=8]="PartialHomomorphicMappedType",e[e.MappedTypeConstraint=16]="MappedTypeConstraint",e[e.ContravariantConditional=32]="ContravariantConditional",e[e.ReturnType=64]="ReturnType",e[e.LiteralKeyof=128]="LiteralKeyof",e[e.NoConstraints=256]="NoConstraints",e[e.AlwaysStrict=512]="AlwaysStrict",e[e.MaxValue=1024]="MaxValue",e[e.PriorityImpliesCombination=208]="PriorityImpliesCombination",e[e.Circularity=-1]="Circularity"}(e.InferencePriority||(e.InferencePriority={})),function(e){e[e.None=0]="None",e[e.NoDefault=1]="NoDefault",e[e.AnyDefault=2]="AnyDefault",e[e.SkippedGenericFunction=4]="SkippedGenericFunction"}(e.InferenceFlags||(e.InferenceFlags={})),function(e){e[e.False=0]="False",e[e.Unknown=1]="Unknown",e[e.Maybe=3]="Maybe",e[e.True=-1]="True"}(e.Ternary||(e.Ternary={})),function(e){e[e.None=0]="None",e[e.ExportsProperty=1]="ExportsProperty",e[e.ModuleExports=2]="ModuleExports",e[e.PrototypeProperty=3]="PrototypeProperty",e[e.ThisProperty=4]="ThisProperty",e[e.Property=5]="Property",e[e.Prototype=6]="Prototype",e[e.ObjectDefinePropertyValue=7]="ObjectDefinePropertyValue",e[e.ObjectDefinePropertyExports=8]="ObjectDefinePropertyExports",e[e.ObjectDefinePrototypeProperty=9]="ObjectDefinePrototypeProperty"}(e.AssignmentDeclarationKind||(e.AssignmentDeclarationKind={})),function(e){e[e.Warning=0]="Warning",e[e.Error=1]="Error",e[e.Suggestion=2]="Suggestion",e[e.Message=3]="Message"}(t=e.DiagnosticCategory||(e.DiagnosticCategory={})),e.diagnosticCategoryName=function(e,r){void 0===r&&(r=!0);var n=t[e.category];return r?n.toLowerCase():n},function(e){e[e.Classic=1]="Classic",e[e.NodeJs=2]="NodeJs"}(e.ModuleResolutionKind||(e.ModuleResolutionKind={})),function(e){e[e.FixedPollingInterval=0]="FixedPollingInterval",e[e.PriorityPollingInterval=1]="PriorityPollingInterval",e[e.DynamicPriorityPolling=2]="DynamicPriorityPolling",e[e.UseFsEvents=3]="UseFsEvents",e[e.UseFsEventsOnParentDirectory=4]="UseFsEventsOnParentDirectory"}(e.WatchFileKind||(e.WatchFileKind={})),function(e){e[e.UseFsEvents=0]="UseFsEvents",e[e.FixedPollingInterval=1]="FixedPollingInterval",e[e.DynamicPriorityPolling=2]="DynamicPriorityPolling"}(e.WatchDirectoryKind||(e.WatchDirectoryKind={})),function(e){e[e.FixedInterval=0]="FixedInterval",e[e.PriorityInterval=1]="PriorityInterval",e[e.DynamicPriority=2]="DynamicPriority"}(e.PollingWatchKind||(e.PollingWatchKind={})),function(e){e[e.None=0]="None",e[e.CommonJS=1]="CommonJS",e[e.AMD=2]="AMD",e[e.UMD=3]="UMD",e[e.System=4]="System",e[e.ES2015=5]="ES2015",e[e.ES2020=6]="ES2020",e[e.ESNext=99]="ESNext"}(e.ModuleKind||(e.ModuleKind={})),function(e){e[e.None=0]="None",e[e.Preserve=1]="Preserve",e[e.React=2]="React",e[e.ReactNative=3]="ReactNative",e[e.ReactJSX=4]="ReactJSX",e[e.ReactJSXDev=5]="ReactJSXDev"}(e.JsxEmit||(e.JsxEmit={})),function(e){e[e.Remove=0]="Remove",e[e.Preserve=1]="Preserve",e[e.Error=2]="Error"}(e.ImportsNotUsedAsValues||(e.ImportsNotUsedAsValues={})),function(e){e[e.CarriageReturnLineFeed=0]="CarriageReturnLineFeed",e[e.LineFeed=1]="LineFeed"}(e.NewLineKind||(e.NewLineKind={})),function(e){e[e.Unknown=0]="Unknown",e[e.JS=1]="JS",e[e.JSX=2]="JSX",e[e.TS=3]="TS",e[e.TSX=4]="TSX",e[e.External=5]="External",e[e.JSON=6]="JSON",e[e.Deferred=7]="Deferred"}(e.ScriptKind||(e.ScriptKind={})),function(e){e[e.ES3=0]="ES3",e[e.ES5=1]="ES5",e[e.ES2015=2]="ES2015",e[e.ES2016=3]="ES2016",e[e.ES2017=4]="ES2017",e[e.ES2018=5]="ES2018",e[e.ES2019=6]="ES2019",e[e.ES2020=7]="ES2020",e[e.ESNext=99]="ESNext",e[e.JSON=100]="JSON",e[e.Latest=99]="Latest"}(e.ScriptTarget||(e.ScriptTarget={})),function(e){e[e.Standard=0]="Standard",e[e.JSX=1]="JSX"}(e.LanguageVariant||(e.LanguageVariant={})),function(e){e[e.None=0]="None",e[e.Recursive=1]="Recursive"}(e.WatchDirectoryFlags||(e.WatchDirectoryFlags={})),function(e){e[e.nullCharacter=0]="nullCharacter",e[e.maxAsciiCharacter=127]="maxAsciiCharacter",e[e.lineFeed=10]="lineFeed",e[e.carriageReturn=13]="carriageReturn",e[e.lineSeparator=8232]="lineSeparator",e[e.paragraphSeparator=8233]="paragraphSeparator",e[e.nextLine=133]="nextLine",e[e.space=32]="space",e[e.nonBreakingSpace=160]="nonBreakingSpace",e[e.enQuad=8192]="enQuad",e[e.emQuad=8193]="emQuad",e[e.enSpace=8194]="enSpace",e[e.emSpace=8195]="emSpace",e[e.threePerEmSpace=8196]="threePerEmSpace",e[e.fourPerEmSpace=8197]="fourPerEmSpace",e[e.sixPerEmSpace=8198]="sixPerEmSpace",e[e.figureSpace=8199]="figureSpace",e[e.punctuationSpace=8200]="punctuationSpace",e[e.thinSpace=8201]="thinSpace",e[e.hairSpace=8202]="hairSpace",e[e.zeroWidthSpace=8203]="zeroWidthSpace",e[e.narrowNoBreakSpace=8239]="narrowNoBreakSpace",e[e.ideographicSpace=12288]="ideographicSpace",e[e.mathematicalSpace=8287]="mathematicalSpace",e[e.ogham=5760]="ogham",e[e._=95]="_",e[e.$=36]="$",e[e._0=48]="_0",e[e._1=49]="_1",e[e._2=50]="_2",e[e._3=51]="_3",e[e._4=52]="_4",e[e._5=53]="_5",e[e._6=54]="_6",e[e._7=55]="_7",e[e._8=56]="_8",e[e._9=57]="_9",e[e.a=97]="a",e[e.b=98]="b",e[e.c=99]="c",e[e.d=100]="d",e[e.e=101]="e",e[e.f=102]="f",e[e.g=103]="g",e[e.h=104]="h",e[e.i=105]="i",e[e.j=106]="j",e[e.k=107]="k",e[e.l=108]="l",e[e.m=109]="m",e[e.n=110]="n",e[e.o=111]="o",e[e.p=112]="p",e[e.q=113]="q",e[e.r=114]="r",e[e.s=115]="s",e[e.t=116]="t",e[e.u=117]="u",e[e.v=118]="v",e[e.w=119]="w",e[e.x=120]="x",e[e.y=121]="y",e[e.z=122]="z",e[e.A=65]="A",e[e.B=66]="B",e[e.C=67]="C",e[e.D=68]="D",e[e.E=69]="E",e[e.F=70]="F",e[e.G=71]="G",e[e.H=72]="H",e[e.I=73]="I",e[e.J=74]="J",e[e.K=75]="K",e[e.L=76]="L",e[e.M=77]="M",e[e.N=78]="N",e[e.O=79]="O",e[e.P=80]="P",e[e.Q=81]="Q",e[e.R=82]="R",e[e.S=83]="S",e[e.T=84]="T",e[e.U=85]="U",e[e.V=86]="V",e[e.W=87]="W",e[e.X=88]="X",e[e.Y=89]="Y",e[e.Z=90]="Z",e[e.ampersand=38]="ampersand",e[e.asterisk=42]="asterisk",e[e.at=64]="at",e[e.backslash=92]="backslash",e[e.backtick=96]="backtick",e[e.bar=124]="bar",e[e.caret=94]="caret",e[e.closeBrace=125]="closeBrace",e[e.closeBracket=93]="closeBracket",e[e.closeParen=41]="closeParen",e[e.colon=58]="colon",e[e.comma=44]="comma",e[e.dot=46]="dot",e[e.doubleQuote=34]="doubleQuote",e[e.equals=61]="equals",e[e.exclamation=33]="exclamation",e[e.greaterThan=62]="greaterThan",e[e.hash=35]="hash",e[e.lessThan=60]="lessThan",e[e.minus=45]="minus",e[e.openBrace=123]="openBrace",e[e.openBracket=91]="openBracket",e[e.openParen=40]="openParen",e[e.percent=37]="percent",e[e.plus=43]="plus",e[e.question=63]="question",e[e.semicolon=59]="semicolon",e[e.singleQuote=39]="singleQuote",e[e.slash=47]="slash",e[e.tilde=126]="tilde",e[e.backspace=8]="backspace",e[e.formFeed=12]="formFeed",e[e.byteOrderMark=65279]="byteOrderMark",e[e.tab=9]="tab",e[e.verticalTab=11]="verticalTab"}(e.CharacterCodes||(e.CharacterCodes={})),function(e){e.Ts=".ts",e.Tsx=".tsx",e.Dts=".d.ts",e.Js=".js",e.Jsx=".jsx",e.Json=".json",e.TsBuildInfo=".tsbuildinfo"}(e.Extension||(e.Extension={})),function(e){e[e.None=0]="None",e[e.ContainsTypeScript=1]="ContainsTypeScript",e[e.ContainsJsx=2]="ContainsJsx",e[e.ContainsESNext=4]="ContainsESNext",e[e.ContainsES2020=8]="ContainsES2020",e[e.ContainsES2019=16]="ContainsES2019",e[e.ContainsES2018=32]="ContainsES2018",e[e.ContainsES2017=64]="ContainsES2017",e[e.ContainsES2016=128]="ContainsES2016",e[e.ContainsES2015=256]="ContainsES2015",e[e.ContainsGenerator=512]="ContainsGenerator",e[e.ContainsDestructuringAssignment=1024]="ContainsDestructuringAssignment",e[e.ContainsTypeScriptClassSyntax=2048]="ContainsTypeScriptClassSyntax",e[e.ContainsLexicalThis=4096]="ContainsLexicalThis",e[e.ContainsRestOrSpread=8192]="ContainsRestOrSpread",e[e.ContainsObjectRestOrSpread=16384]="ContainsObjectRestOrSpread",e[e.ContainsComputedPropertyName=32768]="ContainsComputedPropertyName",e[e.ContainsBlockScopedBinding=65536]="ContainsBlockScopedBinding",e[e.ContainsBindingPattern=131072]="ContainsBindingPattern",e[e.ContainsYield=262144]="ContainsYield",e[e.ContainsAwait=524288]="ContainsAwait",e[e.ContainsHoistedDeclarationOrCompletion=1048576]="ContainsHoistedDeclarationOrCompletion",e[e.ContainsDynamicImport=2097152]="ContainsDynamicImport",e[e.ContainsClassFields=4194304]="ContainsClassFields",e[e.ContainsPossibleTopLevelAwait=8388608]="ContainsPossibleTopLevelAwait",e[e.HasComputedFlags=536870912]="HasComputedFlags",e[e.AssertTypeScript=1]="AssertTypeScript",e[e.AssertJsx=2]="AssertJsx",e[e.AssertESNext=4]="AssertESNext",e[e.AssertES2020=8]="AssertES2020",e[e.AssertES2019=16]="AssertES2019",e[e.AssertES2018=32]="AssertES2018",e[e.AssertES2017=64]="AssertES2017",e[e.AssertES2016=128]="AssertES2016",e[e.AssertES2015=256]="AssertES2015",e[e.AssertGenerator=512]="AssertGenerator",e[e.AssertDestructuringAssignment=1024]="AssertDestructuringAssignment",e[e.OuterExpressionExcludes=536870912]="OuterExpressionExcludes",e[e.PropertyAccessExcludes=536870912]="PropertyAccessExcludes",e[e.NodeExcludes=536870912]="NodeExcludes",e[e.ArrowFunctionExcludes=547309568]="ArrowFunctionExcludes",e[e.FunctionExcludes=547313664]="FunctionExcludes",e[e.ConstructorExcludes=547311616]="ConstructorExcludes",e[e.MethodOrAccessorExcludes=538923008]="MethodOrAccessorExcludes",e[e.PropertyExcludes=536875008]="PropertyExcludes",e[e.ClassExcludes=536905728]="ClassExcludes",e[e.ModuleExcludes=546379776]="ModuleExcludes",e[e.TypeExcludes=-2]="TypeExcludes",e[e.ObjectLiteralExcludes=536922112]="ObjectLiteralExcludes",e[e.ArrayLiteralOrCallOrNewExcludes=536879104]="ArrayLiteralOrCallOrNewExcludes",e[e.VariableDeclarationListExcludes=537018368]="VariableDeclarationListExcludes",e[e.ParameterExcludes=536870912]="ParameterExcludes",e[e.CatchClauseExcludes=536887296]="CatchClauseExcludes",e[e.BindingPatternExcludes=536879104]="BindingPatternExcludes",e[e.PropertyNamePropagatingFlags=4096]="PropertyNamePropagatingFlags"}(e.TransformFlags||(e.TransformFlags={})),function(e){e[e.None=0]="None",e[e.SingleLine=1]="SingleLine",e[e.AdviseOnEmitNode=2]="AdviseOnEmitNode",e[e.NoSubstitution=4]="NoSubstitution",e[e.CapturesThis=8]="CapturesThis",e[e.NoLeadingSourceMap=16]="NoLeadingSourceMap",e[e.NoTrailingSourceMap=32]="NoTrailingSourceMap",e[e.NoSourceMap=48]="NoSourceMap",e[e.NoNestedSourceMaps=64]="NoNestedSourceMaps",e[e.NoTokenLeadingSourceMaps=128]="NoTokenLeadingSourceMaps",e[e.NoTokenTrailingSourceMaps=256]="NoTokenTrailingSourceMaps",e[e.NoTokenSourceMaps=384]="NoTokenSourceMaps",e[e.NoLeadingComments=512]="NoLeadingComments",e[e.NoTrailingComments=1024]="NoTrailingComments",e[e.NoComments=1536]="NoComments",e[e.NoNestedComments=2048]="NoNestedComments",e[e.HelperName=4096]="HelperName",e[e.ExportName=8192]="ExportName",e[e.LocalName=16384]="LocalName",e[e.InternalName=32768]="InternalName",e[e.Indented=65536]="Indented",e[e.NoIndentation=131072]="NoIndentation",e[e.AsyncFunctionBody=262144]="AsyncFunctionBody",e[e.ReuseTempVariableScope=524288]="ReuseTempVariableScope",e[e.CustomPrologue=1048576]="CustomPrologue",e[e.NoHoisting=2097152]="NoHoisting",e[e.HasEndOfDeclarationMarker=4194304]="HasEndOfDeclarationMarker",e[e.Iterator=8388608]="Iterator",e[e.NoAsciiEscaping=16777216]="NoAsciiEscaping",e[e.TypeScriptClassWrapper=33554432]="TypeScriptClassWrapper",e[e.NeverApplyImportHelper=67108864]="NeverApplyImportHelper",e[e.IgnoreSourceNewlines=134217728]="IgnoreSourceNewlines"}(e.EmitFlags||(e.EmitFlags={})),function(e){e[e.Extends=1]="Extends",e[e.Assign=2]="Assign",e[e.Rest=4]="Rest",e[e.Decorate=8]="Decorate",e[e.Metadata=16]="Metadata",e[e.Param=32]="Param",e[e.Awaiter=64]="Awaiter",e[e.Generator=128]="Generator",e[e.Values=256]="Values",e[e.Read=512]="Read",e[e.SpreadArray=1024]="SpreadArray",e[e.Await=2048]="Await",e[e.AsyncGenerator=4096]="AsyncGenerator",e[e.AsyncDelegator=8192]="AsyncDelegator",e[e.AsyncValues=16384]="AsyncValues",e[e.ExportStar=32768]="ExportStar",e[e.ImportStar=65536]="ImportStar",e[e.ImportDefault=131072]="ImportDefault",e[e.MakeTemplateObject=262144]="MakeTemplateObject",e[e.ClassPrivateFieldGet=524288]="ClassPrivateFieldGet",e[e.ClassPrivateFieldSet=1048576]="ClassPrivateFieldSet",e[e.CreateBinding=2097152]="CreateBinding",e[e.FirstEmitHelper=1]="FirstEmitHelper",e[e.LastEmitHelper=2097152]="LastEmitHelper",e[e.ForOfIncludes=256]="ForOfIncludes",e[e.ForAwaitOfIncludes=16384]="ForAwaitOfIncludes",e[e.AsyncGeneratorIncludes=6144]="AsyncGeneratorIncludes",e[e.AsyncDelegatorIncludes=26624]="AsyncDelegatorIncludes",e[e.SpreadIncludes=1536]="SpreadIncludes"}(e.ExternalEmitHelpers||(e.ExternalEmitHelpers={})),function(e){e[e.SourceFile=0]="SourceFile",e[e.Expression=1]="Expression",e[e.IdentifierName=2]="IdentifierName",e[e.MappedTypeParameter=3]="MappedTypeParameter",e[e.Unspecified=4]="Unspecified",e[e.EmbeddedStatement=5]="EmbeddedStatement",e[e.JsxAttributeValue=6]="JsxAttributeValue"}(e.EmitHint||(e.EmitHint={})),function(e){e[e.Parentheses=1]="Parentheses",e[e.TypeAssertions=2]="TypeAssertions",e[e.NonNullAssertions=4]="NonNullAssertions",e[e.PartiallyEmittedExpressions=8]="PartiallyEmittedExpressions",e[e.Assertions=6]="Assertions",e[e.All=15]="All"}(e.OuterExpressionKinds||(e.OuterExpressionKinds={})),function(e){e[e.None=0]="None",e[e.InParameters=1]="InParameters",e[e.VariablesHoistedInParameters=2]="VariablesHoistedInParameters"}(e.LexicalEnvironmentFlags||(e.LexicalEnvironmentFlags={})),function(e){e.Prologue="prologue",e.EmitHelpers="emitHelpers",e.NoDefaultLib="no-default-lib",e.Reference="reference",e.Type="type",e.Lib="lib",e.Prepend="prepend",e.Text="text",e.Internal="internal"}(e.BundleFileSectionKind||(e.BundleFileSectionKind={})),function(e){e[e.None=0]="None",e[e.SingleLine=0]="SingleLine",e[e.MultiLine=1]="MultiLine",e[e.PreserveLines=2]="PreserveLines",e[e.LinesMask=3]="LinesMask",e[e.NotDelimited=0]="NotDelimited",e[e.BarDelimited=4]="BarDelimited",e[e.AmpersandDelimited=8]="AmpersandDelimited",e[e.CommaDelimited=16]="CommaDelimited",e[e.AsteriskDelimited=32]="AsteriskDelimited",e[e.DelimitersMask=60]="DelimitersMask",e[e.AllowTrailingComma=64]="AllowTrailingComma",e[e.Indented=128]="Indented",e[e.SpaceBetweenBraces=256]="SpaceBetweenBraces",e[e.SpaceBetweenSiblings=512]="SpaceBetweenSiblings",e[e.Braces=1024]="Braces",e[e.Parenthesis=2048]="Parenthesis",e[e.AngleBrackets=4096]="AngleBrackets",e[e.SquareBrackets=8192]="SquareBrackets",e[e.BracketsMask=15360]="BracketsMask",e[e.OptionalIfUndefined=16384]="OptionalIfUndefined",e[e.OptionalIfEmpty=32768]="OptionalIfEmpty",e[e.Optional=49152]="Optional",e[e.PreferNewLine=65536]="PreferNewLine",e[e.NoTrailingNewLine=131072]="NoTrailingNewLine",e[e.NoInterveningComments=262144]="NoInterveningComments",e[e.NoSpaceIfEmpty=524288]="NoSpaceIfEmpty",e[e.SingleElement=1048576]="SingleElement",e[e.SpaceAfterList=2097152]="SpaceAfterList",e[e.Modifiers=262656]="Modifiers",e[e.HeritageClauses=512]="HeritageClauses",e[e.SingleLineTypeLiteralMembers=768]="SingleLineTypeLiteralMembers",e[e.MultiLineTypeLiteralMembers=32897]="MultiLineTypeLiteralMembers",e[e.SingleLineTupleTypeElements=528]="SingleLineTupleTypeElements",e[e.MultiLineTupleTypeElements=657]="MultiLineTupleTypeElements",e[e.UnionTypeConstituents=516]="UnionTypeConstituents",e[e.IntersectionTypeConstituents=520]="IntersectionTypeConstituents",e[e.ObjectBindingPatternElements=525136]="ObjectBindingPatternElements",e[e.ArrayBindingPatternElements=524880]="ArrayBindingPatternElements",e[e.ObjectLiteralExpressionProperties=526226]="ObjectLiteralExpressionProperties",e[e.ArrayLiteralExpressionElements=8914]="ArrayLiteralExpressionElements",e[e.CommaListElements=528]="CommaListElements",e[e.CallExpressionArguments=2576]="CallExpressionArguments",e[e.NewExpressionArguments=18960]="NewExpressionArguments",e[e.TemplateExpressionSpans=262144]="TemplateExpressionSpans",e[e.SingleLineBlockStatements=768]="SingleLineBlockStatements",e[e.MultiLineBlockStatements=129]="MultiLineBlockStatements",e[e.VariableDeclarationList=528]="VariableDeclarationList",e[e.SingleLineFunctionBodyStatements=768]="SingleLineFunctionBodyStatements",e[e.MultiLineFunctionBodyStatements=1]="MultiLineFunctionBodyStatements",e[e.ClassHeritageClauses=0]="ClassHeritageClauses",e[e.ClassMembers=129]="ClassMembers",e[e.InterfaceMembers=129]="InterfaceMembers",e[e.EnumMembers=145]="EnumMembers",e[e.CaseBlockClauses=129]="CaseBlockClauses",e[e.NamedImportsOrExportsElements=525136]="NamedImportsOrExportsElements",e[e.JsxElementOrFragmentChildren=262144]="JsxElementOrFragmentChildren",e[e.JsxElementAttributes=262656]="JsxElementAttributes",e[e.CaseOrDefaultClauseStatements=163969]="CaseOrDefaultClauseStatements",e[e.HeritageClauseTypes=528]="HeritageClauseTypes",e[e.SourceFileStatements=131073]="SourceFileStatements",e[e.Decorators=2146305]="Decorators",e[e.TypeArguments=53776]="TypeArguments",e[e.TypeParameters=53776]="TypeParameters",e[e.Parameters=2576]="Parameters",e[e.IndexSignatureParameters=8848]="IndexSignatureParameters",e[e.JSDocComment=33]="JSDocComment"}(e.ListFormat||(e.ListFormat={})),function(e){e[e.None=0]="None",e[e.TripleSlashXML=1]="TripleSlashXML",e[e.SingleLine=2]="SingleLine",e[e.MultiLine=4]="MultiLine",e[e.All=7]="All",e[e.Default=7]="Default"}(e.PragmaKindFlags||(e.PragmaKindFlags={})),e.commentPragmas={reference:{args:[{name:"types",optional:!0,captureSpan:!0},{name:"lib",optional:!0,captureSpan:!0},{name:"path",optional:!0,captureSpan:!0},{name:"no-default-lib",optional:!0}],kind:1},"amd-dependency":{args:[{name:"path"},{name:"name",optional:!0}],kind:1},"amd-module":{args:[{name:"name"}],kind:1},"ts-check":{kind:2},"ts-nocheck":{kind:2},jsx:{args:[{name:"factory"}],kind:4},jsxfrag:{args:[{name:"factory"}],kind:4},jsximportsource:{args:[{name:"factory"}],kind:4},jsxruntime:{args:[{name:"factory"}],kind:4}}}(ts||(ts={})),function(e){e.directorySeparator="/",e.altDirectorySeparator="\\";var t=/\\/g;function r(e){return 47===e||92===e}function n(e){return u(e)>0}function i(e){return 0!==u(e)}function a(e){return/^\.\.?($|[\\/])/.test(e)}function o(t,r){return t.length>r.length&&e.endsWith(t,r)}function s(e){return e.length>0&&r(e.charCodeAt(e.length-1))}function c(e){return e>=97&&e<=122||e>=65&&e<=90}function u(t){if(!t)return 0;var r=t.charCodeAt(0);if(47===r||92===r){if(t.charCodeAt(1)!==r)return 1;var n=t.indexOf(47===r?e.directorySeparator:e.altDirectorySeparator,2);return n<0?t.length:n+1}if(c(r)&&58===t.charCodeAt(1)){var i=t.charCodeAt(2);if(47===i||92===i)return 3;if(2===t.length)return 2}var a=t.indexOf("://");if(-1!==a){var o=a+"://".length,s=t.indexOf(e.directorySeparator,o);if(-1!==s){var u=t.slice(0,a),l=t.slice(o,s);if("file"===u&&(""===l||"localhost"===l)&&c(t.charCodeAt(s+1))){var _=function(e,t){var r=e.charCodeAt(t);if(58===r)return t+1;if(37===r&&51===e.charCodeAt(t+1)){var n=e.charCodeAt(t+2);if(97===n||65===n)return t+3}return-1}(t,s+2);if(-1!==_){if(47===t.charCodeAt(_))return~(_+1);if(_===t.length)return~_}}return~(s+1)}return~t.length}return 0}function l(e){var t=u(e);return t<0?~t:t}function _(t){var r=l(t=y(t));return r===t.length?t:(t=T(t)).slice(0,Math.max(r,t.lastIndexOf(e.directorySeparator)))}function d(t,r,n){if(l(t=y(t))===t.length)return"";var i=(t=T(t)).slice(Math.max(l(t),t.lastIndexOf(e.directorySeparator)+1)),a=void 0!==r&&void 0!==n?f(i,r,n):void 0;return a?i.slice(0,i.length-a.length):i}function p(t,r,n){if(e.startsWith(r,".")||(r="."+r),t.length>=r.length&&46===t.charCodeAt(t.length-r.length)){var i=t.slice(t.length-r.length);if(n(i,r))return i}}function f(t,r,n){if(r)return function(e,t,r){if("string"==typeof t)return p(e,t,r)||"";for(var n=0,i=t;n=0?i.substring(a):""}function g(t,r){return void 0===r&&(r=""),function(t,r){var n=t.substring(0,r),i=t.substring(r).split(e.directorySeparator);return i.length&&!e.lastOrUndefined(i)&&i.pop(),__spreadArray([n],i)}(t=h(r,t),l(t))}function m(t){return 0===t.length?"":(t[0]&&C(t[0]))+t.slice(1).join(e.directorySeparator)}function y(r){return r.replace(t,e.directorySeparator)}function v(t){if(!e.some(t))return[];for(var r=[t[0]],n=1;n1){if(".."!==r[r.length-1]){r.pop();continue}}else if(r[0])continue;r.push(i)}}return r}function h(e){for(var t=[],r=1;r0&&t===e.length},e.pathIsAbsolute=i,e.pathIsRelative=a,e.pathIsBareSpecifier=function(e){return!i(e)&&!a(e)},e.hasExtension=function(t){return e.stringContains(d(t),".")},e.fileExtensionIs=o,e.fileExtensionIsOneOf=function(e,t){for(var r=0,n=t;r0==l(r)>0,"Paths must either both be absolute or both be relative");var i="function"==typeof n?n:e.identity;return m(A(t,r,"boolean"==typeof n&&n?e.equateStringsCaseInsensitive:e.equateStringsCaseSensitive,i))}function P(t,r,i,a,o){var s=A(b(i,t),b(i,r),e.equateStringsCaseSensitive,a),c=s[0];if(o&&n(c)){var u=c.charAt(0)===e.directorySeparator?"file://":"file:///";s[0]=u+c}return m(s)}e.comparePathsCaseSensitive=function(t,r){return N(t,r,e.compareStringsCaseSensitive)},e.comparePathsCaseInsensitive=function(t,r){return N(t,r,e.compareStringsCaseInsensitive)},e.comparePaths=function(t,r,n,i){return"string"==typeof n?(t=h(n,t),r=h(n,r)):"boolean"==typeof n&&(i=n),N(t,r,e.getStringComparer(i))},e.containsPath=function(t,r,n,i){if("string"==typeof n?(t=h(n,t),r=h(n,r)):"boolean"==typeof n&&(i=n),void 0===t||void 0===r)return!1;if(t===r)return!0;var a=v(g(t)),o=v(g(r));if(o.length0;p(),s--){var l=t[a];if(l)if(l.isClosed)t[a]=void 0;else{u++;var _=d(l,h(l.fileName));l.isClosed?t[a]=void 0:_?(l.unchangedPolls=0,t!==i&&(t[a]=void 0,m(l))):l.unchangedPolls!==e.unchangedPollThresholds[r]?l.unchangedPolls++:t===i?(l.unchangedPolls=1,t[a]=void 0,g(l,n.Low)):r!==n.High&&(l.unchangedPolls++,t[a]=void 0,g(l,r===n.Low?n.Medium:n.High)),t[a]&&(c=4,m="linux"===process.platform||"darwin"===process.platform,y=u.platform(),h="win32"!==y&&"win64"!==y&&!I((l=__filename,l.replace(/\w/g,(function(e){var t=e.toUpperCase();return e===t?e.toLowerCase():t})))),x=h&&null!==(n=s.realpathSync.native)&&void 0!==n?n:s.realpathSync,D=f&&("win32"===process.platform||"darwin"===process.platform),S=e.memoize((function(){return process.cwd()})),T=v({pollingWatchFile:_((function(e,t,n){var i;return s.watchFile(e,{persistent:!0,interval:n},a),{close:function(){return s.unwatchFile(e,a)}};function a(n,a){var o=0==+a.mtime||i===r.Deleted;if(0==+n.mtime){if(o)return;i=r.Deleted}else if(o)i=r.Created;else{if(+n.mtime==+a.mtime)return;i=r.Changed}t(e,i)}}),h),getModifiedTime:L,setTimeout:setTimeout,clearTimeout:clearTimeout,fsWatch:function(t,n,i,a,o,c){var u,l,_;m&&(l=t.substr(t.lastIndexOf(e.directorySeparator)),_=l.slice(e.directorySeparator.length));var d=w(t,n)?f():v();return{close:function(){d.close(),d=void 0}};function p(r){e.sysLog("sysLog:: "+t+":: Changing watcher to "+(r===f?"Present":"Missing")+"FileSystemEntryWatcher"),i("rename",""),d&&(d.close(),d=r())}function f(){void 0===u&&(u=D?{persistent:!0,recursive:!!a}:{persistent:!0});try{var r=s.watch(t,u,m?y:i);return r.on("error",(function(){return p(v)})),r}catch(r){return e.sysLog("sysLog:: "+t+":: Changing to fsWatchFile"),C(t,g(i),o,c)}}function y(e,r){return"rename"!==e||r&&r!==_&&(-1===r.lastIndexOf(l)||r.lastIndexOf(l)!==r.length-l.length)||w(t,n)?i(e,r):p(v)}function v(){return C(t,(function(e,i){i===r.Created&&w(t,n)&&p(f)}),o,c)}},useCaseSensitiveFileNames:h,getCurrentDirectory:S,fileExists:I,fsSupportsRecursiveFsWatch:D,directoryExists:O,getAccessibleSortedChildDirectories:function(e){return P(e).directories},realpath:M,tscWatchFile:process.env.TSC_WATCHFILE,useNonPollingWatchers:process.env.TSC_NONPOLLING_WATCHER,tscWatchDirectory:process.env.TSC_WATCHDIRECTORY}),C=T.watchFile,E=T.watchDirectory,k={args:process.argv.slice(2),newLine:u.EOL,useCaseSensitiveFileNames:h,write:function(e){process.stdout.write(e)},writeOutputIsTTY:function(){return process.stdout.isTTY},readFile:function(t,r){e.perfLogger.logStartReadFile(t);var n=function(e,t){var r;try{r=s.readFileSync(e)}catch(e){return}var n=r.length;if(n>=2&&254===r[0]&&255===r[1]){n&=-2;for(var i=0;i=2&&255===r[0]&&254===r[1]?r.toString("utf16le",2):n>=3&&239===r[0]&&187===r[1]&&191===r[2]?r.toString("utf8",3):r.toString("utf8")}(t);return e.perfLogger.logStopReadFile(),n},writeFile:function(t,r,n){var i;e.perfLogger.logEvent("WriteFile: "+t),n&&(r="\ufeff"+r);try{i=s.openSync(t,"w"),s.writeSync(i,r,void 0,"utf8")}finally{void 0!==i&&s.closeSync(i)}},watchFile:C,watchDirectory:E,resolvePath:function(e){return c.resolve(e)},fileExists:I,directoryExists:O,createDirectory:function(e){if(!k.directoryExists(e))try{s.mkdirSync(e)}catch(e){if("EEXIST"!==e.code)throw e}},getExecutingFilePath:function(){return __filename},getCurrentDirectory:S,getDirectories:function(e){return P(e).directories.slice()},getEnvironmentVariable:function(e){return process.env[e]||""},readDirectory:function(t,r,n,i,a){return e.matchFiles(t,r,n,i,h,process.cwd(),a,P,M)},getModifiedTime:L,setModifiedTime:function(e,t){try{s.utimesSync(e,t,t)}catch(e){return}},deleteFile:function(e){try{return s.unlinkSync(e)}catch(e){return}},createHash:i?R:t,createSHA256Hash:i?R:void 0,getMemoryUsage:function(){return global.gc&&global.gc(),process.memoryUsage().heapUsed},getFileSize:function(e){try{var t=N(e);if(null==t?void 0:t.isFile())return t.size}catch(e){}return 0},exit:function(e){A((function(){return process.exit(e)}))},enableCPUProfiler:function(e,t){if(a)return t(),!1;var r=require("inspector");if(!r||!r.Session)return t(),!1;var n=new r.Session;return n.connect(),n.post("Profiler.enable",(function(){n.post("Profiler.start",(function(){a=n,d=e,t()}))})),!0},disableCPUProfiler:A,cpuProfilingEnabled:function(){return!!a||e.contains(process.execArgv,"--cpu-prof")||e.contains(process.execArgv,"--prof")},realpath:M,debugMode:!!process.env.NODE_INSPECTOR_IPC||!!process.env.VSCODE_INSPECTOR_OPTIONS||e.some(process.execArgv,(function(e){return/^--(inspect|debug)(-brk)?(=\d+)?$/i.test(e)})),tryEnableSourceMapsForHost:function(){try{require("source-map-support").install()}catch(e){}},setTimeout:setTimeout,clearTimeout:clearTimeout,clearScreen:function(){process.stdout.write("c")},setBlocking:function(){process.stdout&&process.stdout._handle&&process.stdout._handle.setBlocking&&process.stdout._handle.setBlocking(!0)},bufferFrom:F,base64decode:function(e){return F(e,"base64").toString("utf8")},base64encode:function(e){return F(e).toString("base64")},require:function(t,r){try{var n=e.resolveJSModule(r,t,k);return{module:require(n),modulePath:n,error:void 0}}catch(e){return{module:void 0,modulePath:void 0,error:e}}}};return k;function N(e){return s.statSync(e,{throwIfNoEntry:!1})}function A(t){if(a&&"stopping"!==a){var r=a;return a.post("Profiler.stop",(function(n,i){var u,l=i.profile;if(!n){try{(null===(u=N(d))||void 0===u?void 0:u.isDirectory())&&(d=c.join(d,(new Date).toISOString().replace(/:/g,"-")+"+P"+process.pid+".cpuprofile"))}catch(e){}try{s.mkdirSync(c.dirname(d),{recursive:!0})}catch(e){}s.writeFileSync(d,JSON.stringify(function(t){for(var r=0,n=new e.Map,i=e.normalizeSlashes(__dirname),a="file://"+(1===e.getRootLength(i)?"":"/")+i,s=0,c=t.nodes;s type. Did you mean to write 'Promise<{0}>'?"),In_ambient_enum_declarations_member_initializer_must_be_constant_expression:t(1066,e.DiagnosticCategory.Error,"In_ambient_enum_declarations_member_initializer_must_be_constant_expression_1066","In ambient enum declarations member initializer must be constant expression."),Unexpected_token_A_constructor_method_accessor_or_property_was_expected:t(1068,e.DiagnosticCategory.Error,"Unexpected_token_A_constructor_method_accessor_or_property_was_expected_1068","Unexpected token. A constructor, method, accessor, or property was expected."),Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces:t(1069,e.DiagnosticCategory.Error,"Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces_1069","Unexpected token. A type parameter name was expected without curly braces."),_0_modifier_cannot_appear_on_a_type_member:t(1070,e.DiagnosticCategory.Error,"_0_modifier_cannot_appear_on_a_type_member_1070","'{0}' modifier cannot appear on a type member."),_0_modifier_cannot_appear_on_an_index_signature:t(1071,e.DiagnosticCategory.Error,"_0_modifier_cannot_appear_on_an_index_signature_1071","'{0}' modifier cannot appear on an index signature."),A_0_modifier_cannot_be_used_with_an_import_declaration:t(1079,e.DiagnosticCategory.Error,"A_0_modifier_cannot_be_used_with_an_import_declaration_1079","A '{0}' modifier cannot be used with an import declaration."),Invalid_reference_directive_syntax:t(1084,e.DiagnosticCategory.Error,"Invalid_reference_directive_syntax_1084","Invalid 'reference' directive syntax."),Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0:t(1085,e.DiagnosticCategory.Error,"Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0_1085","Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'."),_0_modifier_cannot_appear_on_a_constructor_declaration:t(1089,e.DiagnosticCategory.Error,"_0_modifier_cannot_appear_on_a_constructor_declaration_1089","'{0}' modifier cannot appear on a constructor declaration."),_0_modifier_cannot_appear_on_a_parameter:t(1090,e.DiagnosticCategory.Error,"_0_modifier_cannot_appear_on_a_parameter_1090","'{0}' modifier cannot appear on a parameter."),Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement:t(1091,e.DiagnosticCategory.Error,"Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement_1091","Only a single variable declaration is allowed in a 'for...in' statement."),Type_parameters_cannot_appear_on_a_constructor_declaration:t(1092,e.DiagnosticCategory.Error,"Type_parameters_cannot_appear_on_a_constructor_declaration_1092","Type parameters cannot appear on a constructor declaration."),Type_annotation_cannot_appear_on_a_constructor_declaration:t(1093,e.DiagnosticCategory.Error,"Type_annotation_cannot_appear_on_a_constructor_declaration_1093","Type annotation cannot appear on a constructor declaration."),An_accessor_cannot_have_type_parameters:t(1094,e.DiagnosticCategory.Error,"An_accessor_cannot_have_type_parameters_1094","An accessor cannot have type parameters."),A_set_accessor_cannot_have_a_return_type_annotation:t(1095,e.DiagnosticCategory.Error,"A_set_accessor_cannot_have_a_return_type_annotation_1095","A 'set' accessor cannot have a return type annotation."),An_index_signature_must_have_exactly_one_parameter:t(1096,e.DiagnosticCategory.Error,"An_index_signature_must_have_exactly_one_parameter_1096","An index signature must have exactly one parameter."),_0_list_cannot_be_empty:t(1097,e.DiagnosticCategory.Error,"_0_list_cannot_be_empty_1097","'{0}' list cannot be empty."),Type_parameter_list_cannot_be_empty:t(1098,e.DiagnosticCategory.Error,"Type_parameter_list_cannot_be_empty_1098","Type parameter list cannot be empty."),Type_argument_list_cannot_be_empty:t(1099,e.DiagnosticCategory.Error,"Type_argument_list_cannot_be_empty_1099","Type argument list cannot be empty."),Invalid_use_of_0_in_strict_mode:t(1100,e.DiagnosticCategory.Error,"Invalid_use_of_0_in_strict_mode_1100","Invalid use of '{0}' in strict mode."),with_statements_are_not_allowed_in_strict_mode:t(1101,e.DiagnosticCategory.Error,"with_statements_are_not_allowed_in_strict_mode_1101","'with' statements are not allowed in strict mode."),delete_cannot_be_called_on_an_identifier_in_strict_mode:t(1102,e.DiagnosticCategory.Error,"delete_cannot_be_called_on_an_identifier_in_strict_mode_1102","'delete' cannot be called on an identifier in strict mode."),for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules:t(1103,e.DiagnosticCategory.Error,"for_await_loops_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1103","'for await' loops are only allowed within async functions and at the top levels of modules."),A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement:t(1104,e.DiagnosticCategory.Error,"A_continue_statement_can_only_be_used_within_an_enclosing_iteration_statement_1104","A 'continue' statement can only be used within an enclosing iteration statement."),A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement:t(1105,e.DiagnosticCategory.Error,"A_break_statement_can_only_be_used_within_an_enclosing_iteration_or_switch_statement_1105","A 'break' statement can only be used within an enclosing iteration or switch statement."),Jump_target_cannot_cross_function_boundary:t(1107,e.DiagnosticCategory.Error,"Jump_target_cannot_cross_function_boundary_1107","Jump target cannot cross function boundary."),A_return_statement_can_only_be_used_within_a_function_body:t(1108,e.DiagnosticCategory.Error,"A_return_statement_can_only_be_used_within_a_function_body_1108","A 'return' statement can only be used within a function body."),Expression_expected:t(1109,e.DiagnosticCategory.Error,"Expression_expected_1109","Expression expected."),Type_expected:t(1110,e.DiagnosticCategory.Error,"Type_expected_1110","Type expected."),A_default_clause_cannot_appear_more_than_once_in_a_switch_statement:t(1113,e.DiagnosticCategory.Error,"A_default_clause_cannot_appear_more_than_once_in_a_switch_statement_1113","A 'default' clause cannot appear more than once in a 'switch' statement."),Duplicate_label_0:t(1114,e.DiagnosticCategory.Error,"Duplicate_label_0_1114","Duplicate label '{0}'."),A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement:t(1115,e.DiagnosticCategory.Error,"A_continue_statement_can_only_jump_to_a_label_of_an_enclosing_iteration_statement_1115","A 'continue' statement can only jump to a label of an enclosing iteration statement."),A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement:t(1116,e.DiagnosticCategory.Error,"A_break_statement_can_only_jump_to_a_label_of_an_enclosing_statement_1116","A 'break' statement can only jump to a label of an enclosing statement."),An_object_literal_cannot_have_multiple_properties_with_the_same_name_in_strict_mode:t(1117,e.DiagnosticCategory.Error,"An_object_literal_cannot_have_multiple_properties_with_the_same_name_in_strict_mode_1117","An object literal cannot have multiple properties with the same name in strict mode."),An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name:t(1118,e.DiagnosticCategory.Error,"An_object_literal_cannot_have_multiple_get_Slashset_accessors_with_the_same_name_1118","An object literal cannot have multiple get/set accessors with the same name."),An_object_literal_cannot_have_property_and_accessor_with_the_same_name:t(1119,e.DiagnosticCategory.Error,"An_object_literal_cannot_have_property_and_accessor_with_the_same_name_1119","An object literal cannot have property and accessor with the same name."),An_export_assignment_cannot_have_modifiers:t(1120,e.DiagnosticCategory.Error,"An_export_assignment_cannot_have_modifiers_1120","An export assignment cannot have modifiers."),Octal_literals_are_not_allowed_in_strict_mode:t(1121,e.DiagnosticCategory.Error,"Octal_literals_are_not_allowed_in_strict_mode_1121","Octal literals are not allowed in strict mode."),Variable_declaration_list_cannot_be_empty:t(1123,e.DiagnosticCategory.Error,"Variable_declaration_list_cannot_be_empty_1123","Variable declaration list cannot be empty."),Digit_expected:t(1124,e.DiagnosticCategory.Error,"Digit_expected_1124","Digit expected."),Hexadecimal_digit_expected:t(1125,e.DiagnosticCategory.Error,"Hexadecimal_digit_expected_1125","Hexadecimal digit expected."),Unexpected_end_of_text:t(1126,e.DiagnosticCategory.Error,"Unexpected_end_of_text_1126","Unexpected end of text."),Invalid_character:t(1127,e.DiagnosticCategory.Error,"Invalid_character_1127","Invalid character."),Declaration_or_statement_expected:t(1128,e.DiagnosticCategory.Error,"Declaration_or_statement_expected_1128","Declaration or statement expected."),Statement_expected:t(1129,e.DiagnosticCategory.Error,"Statement_expected_1129","Statement expected."),case_or_default_expected:t(1130,e.DiagnosticCategory.Error,"case_or_default_expected_1130","'case' or 'default' expected."),Property_or_signature_expected:t(1131,e.DiagnosticCategory.Error,"Property_or_signature_expected_1131","Property or signature expected."),Enum_member_expected:t(1132,e.DiagnosticCategory.Error,"Enum_member_expected_1132","Enum member expected."),Variable_declaration_expected:t(1134,e.DiagnosticCategory.Error,"Variable_declaration_expected_1134","Variable declaration expected."),Argument_expression_expected:t(1135,e.DiagnosticCategory.Error,"Argument_expression_expected_1135","Argument expression expected."),Property_assignment_expected:t(1136,e.DiagnosticCategory.Error,"Property_assignment_expected_1136","Property assignment expected."),Expression_or_comma_expected:t(1137,e.DiagnosticCategory.Error,"Expression_or_comma_expected_1137","Expression or comma expected."),Parameter_declaration_expected:t(1138,e.DiagnosticCategory.Error,"Parameter_declaration_expected_1138","Parameter declaration expected."),Type_parameter_declaration_expected:t(1139,e.DiagnosticCategory.Error,"Type_parameter_declaration_expected_1139","Type parameter declaration expected."),Type_argument_expected:t(1140,e.DiagnosticCategory.Error,"Type_argument_expected_1140","Type argument expected."),String_literal_expected:t(1141,e.DiagnosticCategory.Error,"String_literal_expected_1141","String literal expected."),Line_break_not_permitted_here:t(1142,e.DiagnosticCategory.Error,"Line_break_not_permitted_here_1142","Line break not permitted here."),or_expected:t(1144,e.DiagnosticCategory.Error,"or_expected_1144","'{' or ';' expected."),Declaration_expected:t(1146,e.DiagnosticCategory.Error,"Declaration_expected_1146","Declaration expected."),Import_declarations_in_a_namespace_cannot_reference_a_module:t(1147,e.DiagnosticCategory.Error,"Import_declarations_in_a_namespace_cannot_reference_a_module_1147","Import declarations in a namespace cannot reference a module."),Cannot_use_imports_exports_or_module_augmentations_when_module_is_none:t(1148,e.DiagnosticCategory.Error,"Cannot_use_imports_exports_or_module_augmentations_when_module_is_none_1148","Cannot use imports, exports, or module augmentations when '--module' is 'none'."),File_name_0_differs_from_already_included_file_name_1_only_in_casing:t(1149,e.DiagnosticCategory.Error,"File_name_0_differs_from_already_included_file_name_1_only_in_casing_1149","File name '{0}' differs from already included file name '{1}' only in casing."),const_declarations_must_be_initialized:t(1155,e.DiagnosticCategory.Error,"const_declarations_must_be_initialized_1155","'const' declarations must be initialized."),const_declarations_can_only_be_declared_inside_a_block:t(1156,e.DiagnosticCategory.Error,"const_declarations_can_only_be_declared_inside_a_block_1156","'const' declarations can only be declared inside a block."),let_declarations_can_only_be_declared_inside_a_block:t(1157,e.DiagnosticCategory.Error,"let_declarations_can_only_be_declared_inside_a_block_1157","'let' declarations can only be declared inside a block."),Unterminated_template_literal:t(1160,e.DiagnosticCategory.Error,"Unterminated_template_literal_1160","Unterminated template literal."),Unterminated_regular_expression_literal:t(1161,e.DiagnosticCategory.Error,"Unterminated_regular_expression_literal_1161","Unterminated regular expression literal."),An_object_member_cannot_be_declared_optional:t(1162,e.DiagnosticCategory.Error,"An_object_member_cannot_be_declared_optional_1162","An object member cannot be declared optional."),A_yield_expression_is_only_allowed_in_a_generator_body:t(1163,e.DiagnosticCategory.Error,"A_yield_expression_is_only_allowed_in_a_generator_body_1163","A 'yield' expression is only allowed in a generator body."),Computed_property_names_are_not_allowed_in_enums:t(1164,e.DiagnosticCategory.Error,"Computed_property_names_are_not_allowed_in_enums_1164","Computed property names are not allowed in enums."),A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type:t(1165,e.DiagnosticCategory.Error,"A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_t_1165","A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type."),A_computed_property_name_in_a_class_property_declaration_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type:t(1166,e.DiagnosticCategory.Error,"A_computed_property_name_in_a_class_property_declaration_must_refer_to_an_expression_whose_type_is_a_1166","A computed property name in a class property declaration must refer to an expression whose type is a literal type or a 'unique symbol' type."),A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type:t(1168,e.DiagnosticCategory.Error,"A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_ty_1168","A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type."),A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type:t(1169,e.DiagnosticCategory.Error,"A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_1169","A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type."),A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type:t(1170,e.DiagnosticCategory.Error,"A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type__1170","A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type."),A_comma_expression_is_not_allowed_in_a_computed_property_name:t(1171,e.DiagnosticCategory.Error,"A_comma_expression_is_not_allowed_in_a_computed_property_name_1171","A comma expression is not allowed in a computed property name."),extends_clause_already_seen:t(1172,e.DiagnosticCategory.Error,"extends_clause_already_seen_1172","'extends' clause already seen."),extends_clause_must_precede_implements_clause:t(1173,e.DiagnosticCategory.Error,"extends_clause_must_precede_implements_clause_1173","'extends' clause must precede 'implements' clause."),Classes_can_only_extend_a_single_class:t(1174,e.DiagnosticCategory.Error,"Classes_can_only_extend_a_single_class_1174","Classes can only extend a single class."),implements_clause_already_seen:t(1175,e.DiagnosticCategory.Error,"implements_clause_already_seen_1175","'implements' clause already seen."),Interface_declaration_cannot_have_implements_clause:t(1176,e.DiagnosticCategory.Error,"Interface_declaration_cannot_have_implements_clause_1176","Interface declaration cannot have 'implements' clause."),Binary_digit_expected:t(1177,e.DiagnosticCategory.Error,"Binary_digit_expected_1177","Binary digit expected."),Octal_digit_expected:t(1178,e.DiagnosticCategory.Error,"Octal_digit_expected_1178","Octal digit expected."),Unexpected_token_expected:t(1179,e.DiagnosticCategory.Error,"Unexpected_token_expected_1179","Unexpected token. '{' expected."),Property_destructuring_pattern_expected:t(1180,e.DiagnosticCategory.Error,"Property_destructuring_pattern_expected_1180","Property destructuring pattern expected."),Array_element_destructuring_pattern_expected:t(1181,e.DiagnosticCategory.Error,"Array_element_destructuring_pattern_expected_1181","Array element destructuring pattern expected."),A_destructuring_declaration_must_have_an_initializer:t(1182,e.DiagnosticCategory.Error,"A_destructuring_declaration_must_have_an_initializer_1182","A destructuring declaration must have an initializer."),An_implementation_cannot_be_declared_in_ambient_contexts:t(1183,e.DiagnosticCategory.Error,"An_implementation_cannot_be_declared_in_ambient_contexts_1183","An implementation cannot be declared in ambient contexts."),Modifiers_cannot_appear_here:t(1184,e.DiagnosticCategory.Error,"Modifiers_cannot_appear_here_1184","Modifiers cannot appear here."),Merge_conflict_marker_encountered:t(1185,e.DiagnosticCategory.Error,"Merge_conflict_marker_encountered_1185","Merge conflict marker encountered."),A_rest_element_cannot_have_an_initializer:t(1186,e.DiagnosticCategory.Error,"A_rest_element_cannot_have_an_initializer_1186","A rest element cannot have an initializer."),A_parameter_property_may_not_be_declared_using_a_binding_pattern:t(1187,e.DiagnosticCategory.Error,"A_parameter_property_may_not_be_declared_using_a_binding_pattern_1187","A parameter property may not be declared using a binding pattern."),Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement:t(1188,e.DiagnosticCategory.Error,"Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement_1188","Only a single variable declaration is allowed in a 'for...of' statement."),The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer:t(1189,e.DiagnosticCategory.Error,"The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer_1189","The variable declaration of a 'for...in' statement cannot have an initializer."),The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer:t(1190,e.DiagnosticCategory.Error,"The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer_1190","The variable declaration of a 'for...of' statement cannot have an initializer."),An_import_declaration_cannot_have_modifiers:t(1191,e.DiagnosticCategory.Error,"An_import_declaration_cannot_have_modifiers_1191","An import declaration cannot have modifiers."),Module_0_has_no_default_export:t(1192,e.DiagnosticCategory.Error,"Module_0_has_no_default_export_1192","Module '{0}' has no default export."),An_export_declaration_cannot_have_modifiers:t(1193,e.DiagnosticCategory.Error,"An_export_declaration_cannot_have_modifiers_1193","An export declaration cannot have modifiers."),Export_declarations_are_not_permitted_in_a_namespace:t(1194,e.DiagnosticCategory.Error,"Export_declarations_are_not_permitted_in_a_namespace_1194","Export declarations are not permitted in a namespace."),export_Asterisk_does_not_re_export_a_default:t(1195,e.DiagnosticCategory.Error,"export_Asterisk_does_not_re_export_a_default_1195","'export *' does not re-export a default."),Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified:t(1196,e.DiagnosticCategory.Error,"Catch_clause_variable_type_annotation_must_be_any_or_unknown_if_specified_1196","Catch clause variable type annotation must be 'any' or 'unknown' if specified."),Catch_clause_variable_cannot_have_an_initializer:t(1197,e.DiagnosticCategory.Error,"Catch_clause_variable_cannot_have_an_initializer_1197","Catch clause variable cannot have an initializer."),An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive:t(1198,e.DiagnosticCategory.Error,"An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive_1198","An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive."),Unterminated_Unicode_escape_sequence:t(1199,e.DiagnosticCategory.Error,"Unterminated_Unicode_escape_sequence_1199","Unterminated Unicode escape sequence."),Line_terminator_not_permitted_before_arrow:t(1200,e.DiagnosticCategory.Error,"Line_terminator_not_permitted_before_arrow_1200","Line terminator not permitted before arrow."),Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead:t(1202,e.DiagnosticCategory.Error,"Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_1202","Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead."),Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead:t(1203,e.DiagnosticCategory.Error,"Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or__1203","Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead."),Re_exporting_a_type_when_the_isolatedModules_flag_is_provided_requires_using_export_type:t(1205,e.DiagnosticCategory.Error,"Re_exporting_a_type_when_the_isolatedModules_flag_is_provided_requires_using_export_type_1205","Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'."),Decorators_are_not_valid_here:t(1206,e.DiagnosticCategory.Error,"Decorators_are_not_valid_here_1206","Decorators are not valid here."),Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name:t(1207,e.DiagnosticCategory.Error,"Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name_1207","Decorators cannot be applied to multiple get/set accessors of the same name."),_0_cannot_be_compiled_under_isolatedModules_because_it_is_considered_a_global_script_file_Add_an_import_export_or_an_empty_export_statement_to_make_it_a_module:t(1208,e.DiagnosticCategory.Error,"_0_cannot_be_compiled_under_isolatedModules_because_it_is_considered_a_global_script_file_Add_an_imp_1208","'{0}' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module."),Invalid_use_of_0_Class_definitions_are_automatically_in_strict_mode:t(1210,e.DiagnosticCategory.Error,"Invalid_use_of_0_Class_definitions_are_automatically_in_strict_mode_1210","Invalid use of '{0}'. Class definitions are automatically in strict mode."),A_class_declaration_without_the_default_modifier_must_have_a_name:t(1211,e.DiagnosticCategory.Error,"A_class_declaration_without_the_default_modifier_must_have_a_name_1211","A class declaration without the 'default' modifier must have a name."),Identifier_expected_0_is_a_reserved_word_in_strict_mode:t(1212,e.DiagnosticCategory.Error,"Identifier_expected_0_is_a_reserved_word_in_strict_mode_1212","Identifier expected. '{0}' is a reserved word in strict mode."),Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode:t(1213,e.DiagnosticCategory.Error,"Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_stric_1213","Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode."),Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode:t(1214,e.DiagnosticCategory.Error,"Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode_1214","Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode."),Invalid_use_of_0_Modules_are_automatically_in_strict_mode:t(1215,e.DiagnosticCategory.Error,"Invalid_use_of_0_Modules_are_automatically_in_strict_mode_1215","Invalid use of '{0}'. Modules are automatically in strict mode."),Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules:t(1216,e.DiagnosticCategory.Error,"Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules_1216","Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules."),Export_assignment_is_not_supported_when_module_flag_is_system:t(1218,e.DiagnosticCategory.Error,"Export_assignment_is_not_supported_when_module_flag_is_system_1218","Export assignment is not supported when '--module' flag is 'system'."),Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_the_experimentalDecorators_option_in_your_tsconfig_or_jsconfig_to_remove_this_warning:t(1219,e.DiagnosticCategory.Error,"Experimental_support_for_decorators_is_a_feature_that_is_subject_to_change_in_a_future_release_Set_t_1219","Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning."),Generators_are_only_available_when_targeting_ECMAScript_2015_or_higher:t(1220,e.DiagnosticCategory.Error,"Generators_are_only_available_when_targeting_ECMAScript_2015_or_higher_1220","Generators are only available when targeting ECMAScript 2015 or higher."),Generators_are_not_allowed_in_an_ambient_context:t(1221,e.DiagnosticCategory.Error,"Generators_are_not_allowed_in_an_ambient_context_1221","Generators are not allowed in an ambient context."),An_overload_signature_cannot_be_declared_as_a_generator:t(1222,e.DiagnosticCategory.Error,"An_overload_signature_cannot_be_declared_as_a_generator_1222","An overload signature cannot be declared as a generator."),_0_tag_already_specified:t(1223,e.DiagnosticCategory.Error,"_0_tag_already_specified_1223","'{0}' tag already specified."),Signature_0_must_be_a_type_predicate:t(1224,e.DiagnosticCategory.Error,"Signature_0_must_be_a_type_predicate_1224","Signature '{0}' must be a type predicate."),Cannot_find_parameter_0:t(1225,e.DiagnosticCategory.Error,"Cannot_find_parameter_0_1225","Cannot find parameter '{0}'."),Type_predicate_0_is_not_assignable_to_1:t(1226,e.DiagnosticCategory.Error,"Type_predicate_0_is_not_assignable_to_1_1226","Type predicate '{0}' is not assignable to '{1}'."),Parameter_0_is_not_in_the_same_position_as_parameter_1:t(1227,e.DiagnosticCategory.Error,"Parameter_0_is_not_in_the_same_position_as_parameter_1_1227","Parameter '{0}' is not in the same position as parameter '{1}'."),A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods:t(1228,e.DiagnosticCategory.Error,"A_type_predicate_is_only_allowed_in_return_type_position_for_functions_and_methods_1228","A type predicate is only allowed in return type position for functions and methods."),A_type_predicate_cannot_reference_a_rest_parameter:t(1229,e.DiagnosticCategory.Error,"A_type_predicate_cannot_reference_a_rest_parameter_1229","A type predicate cannot reference a rest parameter."),A_type_predicate_cannot_reference_element_0_in_a_binding_pattern:t(1230,e.DiagnosticCategory.Error,"A_type_predicate_cannot_reference_element_0_in_a_binding_pattern_1230","A type predicate cannot reference element '{0}' in a binding pattern."),An_export_assignment_can_only_be_used_in_a_module:t(1231,e.DiagnosticCategory.Error,"An_export_assignment_can_only_be_used_in_a_module_1231","An export assignment can only be used in a module."),An_import_declaration_can_only_be_used_in_a_namespace_or_module:t(1232,e.DiagnosticCategory.Error,"An_import_declaration_can_only_be_used_in_a_namespace_or_module_1232","An import declaration can only be used in a namespace or module."),An_export_declaration_can_only_be_used_in_a_module:t(1233,e.DiagnosticCategory.Error,"An_export_declaration_can_only_be_used_in_a_module_1233","An export declaration can only be used in a module."),An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file:t(1234,e.DiagnosticCategory.Error,"An_ambient_module_declaration_is_only_allowed_at_the_top_level_in_a_file_1234","An ambient module declaration is only allowed at the top level in a file."),A_namespace_declaration_is_only_allowed_in_a_namespace_or_module:t(1235,e.DiagnosticCategory.Error,"A_namespace_declaration_is_only_allowed_in_a_namespace_or_module_1235","A namespace declaration is only allowed in a namespace or module."),The_return_type_of_a_property_decorator_function_must_be_either_void_or_any:t(1236,e.DiagnosticCategory.Error,"The_return_type_of_a_property_decorator_function_must_be_either_void_or_any_1236","The return type of a property decorator function must be either 'void' or 'any'."),The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any:t(1237,e.DiagnosticCategory.Error,"The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any_1237","The return type of a parameter decorator function must be either 'void' or 'any'."),Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression:t(1238,e.DiagnosticCategory.Error,"Unable_to_resolve_signature_of_class_decorator_when_called_as_an_expression_1238","Unable to resolve signature of class decorator when called as an expression."),Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression:t(1239,e.DiagnosticCategory.Error,"Unable_to_resolve_signature_of_parameter_decorator_when_called_as_an_expression_1239","Unable to resolve signature of parameter decorator when called as an expression."),Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression:t(1240,e.DiagnosticCategory.Error,"Unable_to_resolve_signature_of_property_decorator_when_called_as_an_expression_1240","Unable to resolve signature of property decorator when called as an expression."),Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression:t(1241,e.DiagnosticCategory.Error,"Unable_to_resolve_signature_of_method_decorator_when_called_as_an_expression_1241","Unable to resolve signature of method decorator when called as an expression."),abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration:t(1242,e.DiagnosticCategory.Error,"abstract_modifier_can_only_appear_on_a_class_method_or_property_declaration_1242","'abstract' modifier can only appear on a class, method, or property declaration."),_0_modifier_cannot_be_used_with_1_modifier:t(1243,e.DiagnosticCategory.Error,"_0_modifier_cannot_be_used_with_1_modifier_1243","'{0}' modifier cannot be used with '{1}' modifier."),Abstract_methods_can_only_appear_within_an_abstract_class:t(1244,e.DiagnosticCategory.Error,"Abstract_methods_can_only_appear_within_an_abstract_class_1244","Abstract methods can only appear within an abstract class."),Method_0_cannot_have_an_implementation_because_it_is_marked_abstract:t(1245,e.DiagnosticCategory.Error,"Method_0_cannot_have_an_implementation_because_it_is_marked_abstract_1245","Method '{0}' cannot have an implementation because it is marked abstract."),An_interface_property_cannot_have_an_initializer:t(1246,e.DiagnosticCategory.Error,"An_interface_property_cannot_have_an_initializer_1246","An interface property cannot have an initializer."),A_type_literal_property_cannot_have_an_initializer:t(1247,e.DiagnosticCategory.Error,"A_type_literal_property_cannot_have_an_initializer_1247","A type literal property cannot have an initializer."),A_class_member_cannot_have_the_0_keyword:t(1248,e.DiagnosticCategory.Error,"A_class_member_cannot_have_the_0_keyword_1248","A class member cannot have the '{0}' keyword."),A_decorator_can_only_decorate_a_method_implementation_not_an_overload:t(1249,e.DiagnosticCategory.Error,"A_decorator_can_only_decorate_a_method_implementation_not_an_overload_1249","A decorator can only decorate a method implementation, not an overload."),Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5:t(1250,e.DiagnosticCategory.Error,"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_1250","Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'."),Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_definitions_are_automatically_in_strict_mode:t(1251,e.DiagnosticCategory.Error,"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_d_1251","Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode."),Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_are_automatically_in_strict_mode:t(1252,e.DiagnosticCategory.Error,"Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_1252","Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode."),_0_tag_cannot_be_used_independently_as_a_top_level_JSDoc_tag:t(1253,e.DiagnosticCategory.Error,"_0_tag_cannot_be_used_independently_as_a_top_level_JSDoc_tag_1253","'{0}' tag cannot be used independently as a top level JSDoc tag."),A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference:t(1254,e.DiagnosticCategory.Error,"A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_refere_1254","A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference."),A_definite_assignment_assertion_is_not_permitted_in_this_context:t(1255,e.DiagnosticCategory.Error,"A_definite_assignment_assertion_is_not_permitted_in_this_context_1255","A definite assignment assertion '!' is not permitted in this context."),A_required_element_cannot_follow_an_optional_element:t(1257,e.DiagnosticCategory.Error,"A_required_element_cannot_follow_an_optional_element_1257","A required element cannot follow an optional element."),Module_0_can_only_be_default_imported_using_the_1_flag:t(1259,e.DiagnosticCategory.Error,"Module_0_can_only_be_default_imported_using_the_1_flag_1259","Module '{0}' can only be default-imported using the '{1}' flag"),Keywords_cannot_contain_escape_characters:t(1260,e.DiagnosticCategory.Error,"Keywords_cannot_contain_escape_characters_1260","Keywords cannot contain escape characters."),Already_included_file_name_0_differs_from_file_name_1_only_in_casing:t(1261,e.DiagnosticCategory.Error,"Already_included_file_name_0_differs_from_file_name_1_only_in_casing_1261","Already included file name '{0}' differs from file name '{1}' only in casing."),Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module:t(1262,e.DiagnosticCategory.Error,"Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module_1262","Identifier expected. '{0}' is a reserved word at the top-level of a module."),Declarations_with_initializers_cannot_also_have_definite_assignment_assertions:t(1263,e.DiagnosticCategory.Error,"Declarations_with_initializers_cannot_also_have_definite_assignment_assertions_1263","Declarations with initializers cannot also have definite assignment assertions."),Declarations_with_definite_assignment_assertions_must_also_have_type_annotations:t(1264,e.DiagnosticCategory.Error,"Declarations_with_definite_assignment_assertions_must_also_have_type_annotations_1264","Declarations with definite assignment assertions must also have type annotations."),A_rest_element_cannot_follow_another_rest_element:t(1265,e.DiagnosticCategory.Error,"A_rest_element_cannot_follow_another_rest_element_1265","A rest element cannot follow another rest element."),An_optional_element_cannot_follow_a_rest_element:t(1266,e.DiagnosticCategory.Error,"An_optional_element_cannot_follow_a_rest_element_1266","An optional element cannot follow a rest element."),with_statements_are_not_allowed_in_an_async_function_block:t(1300,e.DiagnosticCategory.Error,"with_statements_are_not_allowed_in_an_async_function_block_1300","'with' statements are not allowed in an async function block."),await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules:t(1308,e.DiagnosticCategory.Error,"await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308","'await' expressions are only allowed within async functions and at the top levels of modules."),Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern:t(1312,e.DiagnosticCategory.Error,"Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_1312","Did you mean to use a ':'? An '=' can only follow a property name when the containing object literal is part of a destructuring pattern."),The_body_of_an_if_statement_cannot_be_the_empty_statement:t(1313,e.DiagnosticCategory.Error,"The_body_of_an_if_statement_cannot_be_the_empty_statement_1313","The body of an 'if' statement cannot be the empty statement."),Global_module_exports_may_only_appear_in_module_files:t(1314,e.DiagnosticCategory.Error,"Global_module_exports_may_only_appear_in_module_files_1314","Global module exports may only appear in module files."),Global_module_exports_may_only_appear_in_declaration_files:t(1315,e.DiagnosticCategory.Error,"Global_module_exports_may_only_appear_in_declaration_files_1315","Global module exports may only appear in declaration files."),Global_module_exports_may_only_appear_at_top_level:t(1316,e.DiagnosticCategory.Error,"Global_module_exports_may_only_appear_at_top_level_1316","Global module exports may only appear at top level."),A_parameter_property_cannot_be_declared_using_a_rest_parameter:t(1317,e.DiagnosticCategory.Error,"A_parameter_property_cannot_be_declared_using_a_rest_parameter_1317","A parameter property cannot be declared using a rest parameter."),An_abstract_accessor_cannot_have_an_implementation:t(1318,e.DiagnosticCategory.Error,"An_abstract_accessor_cannot_have_an_implementation_1318","An abstract accessor cannot have an implementation."),A_default_export_can_only_be_used_in_an_ECMAScript_style_module:t(1319,e.DiagnosticCategory.Error,"A_default_export_can_only_be_used_in_an_ECMAScript_style_module_1319","A default export can only be used in an ECMAScript-style module."),Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member:t(1320,e.DiagnosticCategory.Error,"Type_of_await_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member_1320","Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member."),Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member:t(1321,e.DiagnosticCategory.Error,"Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_cal_1321","Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member."),Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member:t(1322,e.DiagnosticCategory.Error,"Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_con_1322","Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member."),Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_esnext_commonjs_amd_system_or_umd:t(1323,e.DiagnosticCategory.Error,"Dynamic_imports_are_only_supported_when_the_module_flag_is_set_to_es2020_esnext_commonjs_amd_system__1323","Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'esnext', 'commonjs', 'amd', 'system', or 'umd'."),Dynamic_import_must_have_one_specifier_as_an_argument:t(1324,e.DiagnosticCategory.Error,"Dynamic_import_must_have_one_specifier_as_an_argument_1324","Dynamic import must have one specifier as an argument."),Specifier_of_dynamic_import_cannot_be_spread_element:t(1325,e.DiagnosticCategory.Error,"Specifier_of_dynamic_import_cannot_be_spread_element_1325","Specifier of dynamic import cannot be spread element."),Dynamic_import_cannot_have_type_arguments:t(1326,e.DiagnosticCategory.Error,"Dynamic_import_cannot_have_type_arguments_1326","Dynamic import cannot have type arguments."),String_literal_with_double_quotes_expected:t(1327,e.DiagnosticCategory.Error,"String_literal_with_double_quotes_expected_1327","String literal with double quotes expected."),Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_literal:t(1328,e.DiagnosticCategory.Error,"Property_value_can_only_be_string_literal_numeric_literal_true_false_null_object_literal_or_array_li_1328","Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal."),_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0:t(1329,e.DiagnosticCategory.Error,"_0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write__1329","'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?"),A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly:t(1330,e.DiagnosticCategory.Error,"A_property_of_an_interface_or_type_literal_whose_type_is_a_unique_symbol_type_must_be_readonly_1330","A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'."),A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly:t(1331,e.DiagnosticCategory.Error,"A_property_of_a_class_whose_type_is_a_unique_symbol_type_must_be_both_static_and_readonly_1331","A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'."),A_variable_whose_type_is_a_unique_symbol_type_must_be_const:t(1332,e.DiagnosticCategory.Error,"A_variable_whose_type_is_a_unique_symbol_type_must_be_const_1332","A variable whose type is a 'unique symbol' type must be 'const'."),unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name:t(1333,e.DiagnosticCategory.Error,"unique_symbol_types_may_not_be_used_on_a_variable_declaration_with_a_binding_name_1333","'unique symbol' types may not be used on a variable declaration with a binding name."),unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement:t(1334,e.DiagnosticCategory.Error,"unique_symbol_types_are_only_allowed_on_variables_in_a_variable_statement_1334","'unique symbol' types are only allowed on variables in a variable statement."),unique_symbol_types_are_not_allowed_here:t(1335,e.DiagnosticCategory.Error,"unique_symbol_types_are_not_allowed_here_1335","'unique symbol' types are not allowed here."),An_index_signature_parameter_type_cannot_be_a_type_alias_Consider_writing_0_Colon_1_Colon_2_instead:t(1336,e.DiagnosticCategory.Error,"An_index_signature_parameter_type_cannot_be_a_type_alias_Consider_writing_0_Colon_1_Colon_2_instead_1336","An index signature parameter type cannot be a type alias. Consider writing '[{0}: {1}]: {2}' instead."),An_index_signature_parameter_type_cannot_be_a_union_type_Consider_using_a_mapped_object_type_instead:t(1337,e.DiagnosticCategory.Error,"An_index_signature_parameter_type_cannot_be_a_union_type_Consider_using_a_mapped_object_type_instead_1337","An index signature parameter type cannot be a union type. Consider using a mapped object type instead."),infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type:t(1338,e.DiagnosticCategory.Error,"infer_declarations_are_only_permitted_in_the_extends_clause_of_a_conditional_type_1338","'infer' declarations are only permitted in the 'extends' clause of a conditional type."),Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here:t(1339,e.DiagnosticCategory.Error,"Module_0_does_not_refer_to_a_value_but_is_used_as_a_value_here_1339","Module '{0}' does not refer to a value, but is used as a value here."),Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0:t(1340,e.DiagnosticCategory.Error,"Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0_1340","Module '{0}' does not refer to a type, but is used as a type here. Did you mean 'typeof import('{0}')'?"),Type_arguments_cannot_be_used_here:t(1342,e.DiagnosticCategory.Error,"Type_arguments_cannot_be_used_here_1342","Type arguments cannot be used here."),The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_esnext_or_system:t(1343,e.DiagnosticCategory.Error,"The_import_meta_meta_property_is_only_allowed_when_the_module_option_is_es2020_esnext_or_system_1343","The 'import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'esnext', or 'system'."),A_label_is_not_allowed_here:t(1344,e.DiagnosticCategory.Error,"A_label_is_not_allowed_here_1344","'A label is not allowed here."),An_expression_of_type_void_cannot_be_tested_for_truthiness:t(1345,e.DiagnosticCategory.Error,"An_expression_of_type_void_cannot_be_tested_for_truthiness_1345","An expression of type 'void' cannot be tested for truthiness."),This_parameter_is_not_allowed_with_use_strict_directive:t(1346,e.DiagnosticCategory.Error,"This_parameter_is_not_allowed_with_use_strict_directive_1346","This parameter is not allowed with 'use strict' directive."),use_strict_directive_cannot_be_used_with_non_simple_parameter_list:t(1347,e.DiagnosticCategory.Error,"use_strict_directive_cannot_be_used_with_non_simple_parameter_list_1347","'use strict' directive cannot be used with non-simple parameter list."),Non_simple_parameter_declared_here:t(1348,e.DiagnosticCategory.Error,"Non_simple_parameter_declared_here_1348","Non-simple parameter declared here."),use_strict_directive_used_here:t(1349,e.DiagnosticCategory.Error,"use_strict_directive_used_here_1349","'use strict' directive used here."),Print_the_final_configuration_instead_of_building:t(1350,e.DiagnosticCategory.Message,"Print_the_final_configuration_instead_of_building_1350","Print the final configuration instead of building."),An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal:t(1351,e.DiagnosticCategory.Error,"An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal_1351","An identifier or keyword cannot immediately follow a numeric literal."),A_bigint_literal_cannot_use_exponential_notation:t(1352,e.DiagnosticCategory.Error,"A_bigint_literal_cannot_use_exponential_notation_1352","A bigint literal cannot use exponential notation."),A_bigint_literal_must_be_an_integer:t(1353,e.DiagnosticCategory.Error,"A_bigint_literal_must_be_an_integer_1353","A bigint literal must be an integer."),readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types:t(1354,e.DiagnosticCategory.Error,"readonly_type_modifier_is_only_permitted_on_array_and_tuple_literal_types_1354","'readonly' type modifier is only permitted on array and tuple literal types."),A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array_or_object_literals:t(1355,e.DiagnosticCategory.Error,"A_const_assertions_can_only_be_applied_to_references_to_enum_members_or_string_number_boolean_array__1355","A 'const' assertions can only be applied to references to enum members, or string, number, boolean, array, or object literals."),Did_you_mean_to_mark_this_function_as_async:t(1356,e.DiagnosticCategory.Error,"Did_you_mean_to_mark_this_function_as_async_1356","Did you mean to mark this function as 'async'?"),An_enum_member_name_must_be_followed_by_a_or:t(1357,e.DiagnosticCategory.Error,"An_enum_member_name_must_be_followed_by_a_or_1357","An enum member name must be followed by a ',', '=', or '}'."),Tagged_template_expressions_are_not_permitted_in_an_optional_chain:t(1358,e.DiagnosticCategory.Error,"Tagged_template_expressions_are_not_permitted_in_an_optional_chain_1358","Tagged template expressions are not permitted in an optional chain."),Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here:t(1359,e.DiagnosticCategory.Error,"Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here_1359","Identifier expected. '{0}' is a reserved word that cannot be used here."),Did_you_mean_to_parenthesize_this_function_type:t(1360,e.DiagnosticCategory.Error,"Did_you_mean_to_parenthesize_this_function_type_1360","Did you mean to parenthesize this function type?"),_0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type:t(1361,e.DiagnosticCategory.Error,"_0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type_1361","'{0}' cannot be used as a value because it was imported using 'import type'."),_0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type:t(1362,e.DiagnosticCategory.Error,"_0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type_1362","'{0}' cannot be used as a value because it was exported using 'export type'."),A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both:t(1363,e.DiagnosticCategory.Error,"A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both_1363","A type-only import can specify a default import or named bindings, but not both."),Convert_to_type_only_export:t(1364,e.DiagnosticCategory.Message,"Convert_to_type_only_export_1364","Convert to type-only export"),Convert_all_re_exported_types_to_type_only_exports:t(1365,e.DiagnosticCategory.Message,"Convert_all_re_exported_types_to_type_only_exports_1365","Convert all re-exported types to type-only exports"),Split_into_two_separate_import_declarations:t(1366,e.DiagnosticCategory.Message,"Split_into_two_separate_import_declarations_1366","Split into two separate import declarations"),Split_all_invalid_type_only_imports:t(1367,e.DiagnosticCategory.Message,"Split_all_invalid_type_only_imports_1367","Split all invalid type-only imports"),Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types:t(1368,e.DiagnosticCategory.Message,"Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types_1368","Specify emit/checking behavior for imports that are only used for types"),Did_you_mean_0:t(1369,e.DiagnosticCategory.Message,"Did_you_mean_0_1369","Did you mean '{0}'?"),This_import_is_never_used_as_a_value_and_must_use_import_type_because_importsNotUsedAsValues_is_set_to_error:t(1371,e.DiagnosticCategory.Error,"This_import_is_never_used_as_a_value_and_must_use_import_type_because_importsNotUsedAsValues_is_set__1371","This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'."),Convert_to_type_only_import:t(1373,e.DiagnosticCategory.Message,"Convert_to_type_only_import_1373","Convert to type-only import"),Convert_all_imports_not_used_as_a_value_to_type_only_imports:t(1374,e.DiagnosticCategory.Message,"Convert_all_imports_not_used_as_a_value_to_type_only_imports_1374","Convert all imports not used as a value to type-only imports"),await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module:t(1375,e.DiagnosticCategory.Error,"await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375","'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."),_0_was_imported_here:t(1376,e.DiagnosticCategory.Message,"_0_was_imported_here_1376","'{0}' was imported here."),_0_was_exported_here:t(1377,e.DiagnosticCategory.Message,"_0_was_exported_here_1377","'{0}' was exported here."),Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_esnext_or_system_and_the_target_option_is_set_to_es2017_or_higher:t(1378,e.DiagnosticCategory.Error,"Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_esnext_or_system_and_t_1378","Top-level 'await' expressions are only allowed when the 'module' option is set to 'esnext' or 'system', and the 'target' option is set to 'es2017' or higher."),An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type:t(1379,e.DiagnosticCategory.Error,"An_import_alias_cannot_reference_a_declaration_that_was_exported_using_export_type_1379","An import alias cannot reference a declaration that was exported using 'export type'."),An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type:t(1380,e.DiagnosticCategory.Error,"An_import_alias_cannot_reference_a_declaration_that_was_imported_using_import_type_1380","An import alias cannot reference a declaration that was imported using 'import type'."),Unexpected_token_Did_you_mean_or_rbrace:t(1381,e.DiagnosticCategory.Error,"Unexpected_token_Did_you_mean_or_rbrace_1381","Unexpected token. Did you mean `{'}'}` or `}`?"),Unexpected_token_Did_you_mean_or_gt:t(1382,e.DiagnosticCategory.Error,"Unexpected_token_Did_you_mean_or_gt_1382","Unexpected token. Did you mean `{'>'}` or `>`?"),Only_named_exports_may_use_export_type:t(1383,e.DiagnosticCategory.Error,"Only_named_exports_may_use_export_type_1383","Only named exports may use 'export type'."),A_new_expression_with_type_arguments_must_always_be_followed_by_a_parenthesized_argument_list:t(1384,e.DiagnosticCategory.Error,"A_new_expression_with_type_arguments_must_always_be_followed_by_a_parenthesized_argument_list_1384","A 'new' expression with type arguments must always be followed by a parenthesized argument list."),Function_type_notation_must_be_parenthesized_when_used_in_a_union_type:t(1385,e.DiagnosticCategory.Error,"Function_type_notation_must_be_parenthesized_when_used_in_a_union_type_1385","Function type notation must be parenthesized when used in a union type."),Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type:t(1386,e.DiagnosticCategory.Error,"Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type_1386","Constructor type notation must be parenthesized when used in a union type."),Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type:t(1387,e.DiagnosticCategory.Error,"Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type_1387","Function type notation must be parenthesized when used in an intersection type."),Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type:t(1388,e.DiagnosticCategory.Error,"Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type_1388","Constructor type notation must be parenthesized when used in an intersection type."),_0_is_not_allowed_as_a_variable_declaration_name:t(1389,e.DiagnosticCategory.Error,"_0_is_not_allowed_as_a_variable_declaration_name_1389","'{0}' is not allowed as a variable declaration name."),Provides_a_root_package_name_when_using_outFile_with_declarations:t(1390,e.DiagnosticCategory.Message,"Provides_a_root_package_name_when_using_outFile_with_declarations_1390","Provides a root package name when using outFile with declarations."),The_bundledPackageName_option_must_be_provided_when_using_outFile_and_node_module_resolution_with_declaration_emit:t(1391,e.DiagnosticCategory.Error,"The_bundledPackageName_option_must_be_provided_when_using_outFile_and_node_module_resolution_with_de_1391","The `bundledPackageName` option must be provided when using outFile and node module resolution with declaration emit."),An_import_alias_cannot_use_import_type:t(1392,e.DiagnosticCategory.Error,"An_import_alias_cannot_use_import_type_1392","An import alias cannot use 'import type'"),Imported_via_0_from_file_1:t(1393,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_1393","Imported via {0} from file '{1}'"),Imported_via_0_from_file_1_with_packageId_2:t(1394,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_with_packageId_2_1394","Imported via {0} from file '{1}' with packageId '{2}'"),Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions:t(1395,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_to_import_importHelpers_as_specified_in_compilerOptions_1395","Imported via {0} from file '{1}' to import 'importHelpers' as specified in compilerOptions"),Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions:t(1396,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_with_packageId_2_to_import_importHelpers_as_specified_in_compilerOptions_1396","Imported via {0} from file '{1}' with packageId '{2}' to import 'importHelpers' as specified in compilerOptions"),Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions:t(1397,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_to_import_jsx_and_jsxs_factory_functions_1397","Imported via {0} from file '{1}' to import 'jsx' and 'jsxs' factory functions"),Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions:t(1398,e.DiagnosticCategory.Message,"Imported_via_0_from_file_1_with_packageId_2_to_import_jsx_and_jsxs_factory_functions_1398","Imported via {0} from file '{1}' with packageId '{2}' to import 'jsx' and 'jsxs' factory functions"),File_is_included_via_import_here:t(1399,e.DiagnosticCategory.Message,"File_is_included_via_import_here_1399","File is included via import here."),Referenced_via_0_from_file_1:t(1400,e.DiagnosticCategory.Message,"Referenced_via_0_from_file_1_1400","Referenced via '{0}' from file '{1}'"),File_is_included_via_reference_here:t(1401,e.DiagnosticCategory.Message,"File_is_included_via_reference_here_1401","File is included via reference here."),Type_library_referenced_via_0_from_file_1:t(1402,e.DiagnosticCategory.Message,"Type_library_referenced_via_0_from_file_1_1402","Type library referenced via '{0}' from file '{1}'"),Type_library_referenced_via_0_from_file_1_with_packageId_2:t(1403,e.DiagnosticCategory.Message,"Type_library_referenced_via_0_from_file_1_with_packageId_2_1403","Type library referenced via '{0}' from file '{1}' with packageId '{2}'"),File_is_included_via_type_library_reference_here:t(1404,e.DiagnosticCategory.Message,"File_is_included_via_type_library_reference_here_1404","File is included via type library reference here."),Library_referenced_via_0_from_file_1:t(1405,e.DiagnosticCategory.Message,"Library_referenced_via_0_from_file_1_1405","Library referenced via '{0}' from file '{1}'"),File_is_included_via_library_reference_here:t(1406,e.DiagnosticCategory.Message,"File_is_included_via_library_reference_here_1406","File is included via library reference here."),Matched_by_include_pattern_0_in_1:t(1407,e.DiagnosticCategory.Message,"Matched_by_include_pattern_0_in_1_1407","Matched by include pattern '{0}' in '{1}'"),File_is_matched_by_include_pattern_specified_here:t(1408,e.DiagnosticCategory.Message,"File_is_matched_by_include_pattern_specified_here_1408","File is matched by include pattern specified here."),Part_of_files_list_in_tsconfig_json:t(1409,e.DiagnosticCategory.Message,"Part_of_files_list_in_tsconfig_json_1409","Part of 'files' list in tsconfig.json"),File_is_matched_by_files_list_specified_here:t(1410,e.DiagnosticCategory.Message,"File_is_matched_by_files_list_specified_here_1410","File is matched by 'files' list specified here."),Output_from_referenced_project_0_included_because_1_specified:t(1411,e.DiagnosticCategory.Message,"Output_from_referenced_project_0_included_because_1_specified_1411","Output from referenced project '{0}' included because '{1}' specified"),Output_from_referenced_project_0_included_because_module_is_specified_as_none:t(1412,e.DiagnosticCategory.Message,"Output_from_referenced_project_0_included_because_module_is_specified_as_none_1412","Output from referenced project '{0}' included because '--module' is specified as 'none'"),File_is_output_from_referenced_project_specified_here:t(1413,e.DiagnosticCategory.Message,"File_is_output_from_referenced_project_specified_here_1413","File is output from referenced project specified here."),Source_from_referenced_project_0_included_because_1_specified:t(1414,e.DiagnosticCategory.Message,"Source_from_referenced_project_0_included_because_1_specified_1414","Source from referenced project '{0}' included because '{1}' specified"),Source_from_referenced_project_0_included_because_module_is_specified_as_none:t(1415,e.DiagnosticCategory.Message,"Source_from_referenced_project_0_included_because_module_is_specified_as_none_1415","Source from referenced project '{0}' included because '--module' is specified as 'none'"),File_is_source_from_referenced_project_specified_here:t(1416,e.DiagnosticCategory.Message,"File_is_source_from_referenced_project_specified_here_1416","File is source from referenced project specified here."),Entry_point_of_type_library_0_specified_in_compilerOptions:t(1417,e.DiagnosticCategory.Message,"Entry_point_of_type_library_0_specified_in_compilerOptions_1417","Entry point of type library '{0}' specified in compilerOptions"),Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1:t(1418,e.DiagnosticCategory.Message,"Entry_point_of_type_library_0_specified_in_compilerOptions_with_packageId_1_1418","Entry point of type library '{0}' specified in compilerOptions with packageId '{1}'"),File_is_entry_point_of_type_library_specified_here:t(1419,e.DiagnosticCategory.Message,"File_is_entry_point_of_type_library_specified_here_1419","File is entry point of type library specified here."),Entry_point_for_implicit_type_library_0:t(1420,e.DiagnosticCategory.Message,"Entry_point_for_implicit_type_library_0_1420","Entry point for implicit type library '{0}'"),Entry_point_for_implicit_type_library_0_with_packageId_1:t(1421,e.DiagnosticCategory.Message,"Entry_point_for_implicit_type_library_0_with_packageId_1_1421","Entry point for implicit type library '{0}' with packageId '{1}'"),Library_0_specified_in_compilerOptions:t(1422,e.DiagnosticCategory.Message,"Library_0_specified_in_compilerOptions_1422","Library '{0}' specified in compilerOptions"),File_is_library_specified_here:t(1423,e.DiagnosticCategory.Message,"File_is_library_specified_here_1423","File is library specified here."),Default_library:t(1424,e.DiagnosticCategory.Message,"Default_library_1424","Default library"),Default_library_for_target_0:t(1425,e.DiagnosticCategory.Message,"Default_library_for_target_0_1425","Default library for target '{0}'"),File_is_default_library_for_target_specified_here:t(1426,e.DiagnosticCategory.Message,"File_is_default_library_for_target_specified_here_1426","File is default library for target specified here."),Root_file_specified_for_compilation:t(1427,e.DiagnosticCategory.Message,"Root_file_specified_for_compilation_1427","Root file specified for compilation"),File_is_output_of_project_reference_source_0:t(1428,e.DiagnosticCategory.Message,"File_is_output_of_project_reference_source_0_1428","File is output of project reference source '{0}'"),File_redirects_to_file_0:t(1429,e.DiagnosticCategory.Message,"File_redirects_to_file_0_1429","File redirects to file '{0}'"),The_file_is_in_the_program_because_Colon:t(1430,e.DiagnosticCategory.Message,"The_file_is_in_the_program_because_Colon_1430","The file is in the program because:"),for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module:t(1431,e.DiagnosticCategory.Error,"for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_1431","'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."),Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_esnext_or_system_and_the_target_option_is_set_to_es2017_or_higher:t(1432,e.DiagnosticCategory.Error,"Top_level_for_await_loops_are_only_allowed_when_the_module_option_is_set_to_esnext_or_system_and_the_1432","Top-level 'for await' loops are only allowed when the 'module' option is set to 'esnext' or 'system', and the 'target' option is set to 'es2017' or higher."),The_types_of_0_are_incompatible_between_these_types:t(2200,e.DiagnosticCategory.Error,"The_types_of_0_are_incompatible_between_these_types_2200","The types of '{0}' are incompatible between these types."),The_types_returned_by_0_are_incompatible_between_these_types:t(2201,e.DiagnosticCategory.Error,"The_types_returned_by_0_are_incompatible_between_these_types_2201","The types returned by '{0}' are incompatible between these types."),Call_signature_return_types_0_and_1_are_incompatible:t(2202,e.DiagnosticCategory.Error,"Call_signature_return_types_0_and_1_are_incompatible_2202","Call signature return types '{0}' and '{1}' are incompatible.",void 0,!0),Construct_signature_return_types_0_and_1_are_incompatible:t(2203,e.DiagnosticCategory.Error,"Construct_signature_return_types_0_and_1_are_incompatible_2203","Construct signature return types '{0}' and '{1}' are incompatible.",void 0,!0),Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1:t(2204,e.DiagnosticCategory.Error,"Call_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2204","Call signatures with no arguments have incompatible return types '{0}' and '{1}'.",void 0,!0),Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1:t(2205,e.DiagnosticCategory.Error,"Construct_signatures_with_no_arguments_have_incompatible_return_types_0_and_1_2205","Construct signatures with no arguments have incompatible return types '{0}' and '{1}'.",void 0,!0),Duplicate_identifier_0:t(2300,e.DiagnosticCategory.Error,"Duplicate_identifier_0_2300","Duplicate identifier '{0}'."),Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor:t(2301,e.DiagnosticCategory.Error,"Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor_2301","Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor."),Static_members_cannot_reference_class_type_parameters:t(2302,e.DiagnosticCategory.Error,"Static_members_cannot_reference_class_type_parameters_2302","Static members cannot reference class type parameters."),Circular_definition_of_import_alias_0:t(2303,e.DiagnosticCategory.Error,"Circular_definition_of_import_alias_0_2303","Circular definition of import alias '{0}'."),Cannot_find_name_0:t(2304,e.DiagnosticCategory.Error,"Cannot_find_name_0_2304","Cannot find name '{0}'."),Module_0_has_no_exported_member_1:t(2305,e.DiagnosticCategory.Error,"Module_0_has_no_exported_member_1_2305","Module '{0}' has no exported member '{1}'."),File_0_is_not_a_module:t(2306,e.DiagnosticCategory.Error,"File_0_is_not_a_module_2306","File '{0}' is not a module."),Cannot_find_module_0_or_its_corresponding_type_declarations:t(2307,e.DiagnosticCategory.Error,"Cannot_find_module_0_or_its_corresponding_type_declarations_2307","Cannot find module '{0}' or its corresponding type declarations."),Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambiguity:t(2308,e.DiagnosticCategory.Error,"Module_0_has_already_exported_a_member_named_1_Consider_explicitly_re_exporting_to_resolve_the_ambig_2308","Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity."),An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements:t(2309,e.DiagnosticCategory.Error,"An_export_assignment_cannot_be_used_in_a_module_with_other_exported_elements_2309","An export assignment cannot be used in a module with other exported elements."),Type_0_recursively_references_itself_as_a_base_type:t(2310,e.DiagnosticCategory.Error,"Type_0_recursively_references_itself_as_a_base_type_2310","Type '{0}' recursively references itself as a base type."),A_class_may_only_extend_another_class:t(2311,e.DiagnosticCategory.Error,"A_class_may_only_extend_another_class_2311","A class may only extend another class."),An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_members:t(2312,e.DiagnosticCategory.Error,"An_interface_can_only_extend_an_object_type_or_intersection_of_object_types_with_statically_known_me_2312","An interface can only extend an object type or intersection of object types with statically known members."),Type_parameter_0_has_a_circular_constraint:t(2313,e.DiagnosticCategory.Error,"Type_parameter_0_has_a_circular_constraint_2313","Type parameter '{0}' has a circular constraint."),Generic_type_0_requires_1_type_argument_s:t(2314,e.DiagnosticCategory.Error,"Generic_type_0_requires_1_type_argument_s_2314","Generic type '{0}' requires {1} type argument(s)."),Type_0_is_not_generic:t(2315,e.DiagnosticCategory.Error,"Type_0_is_not_generic_2315","Type '{0}' is not generic."),Global_type_0_must_be_a_class_or_interface_type:t(2316,e.DiagnosticCategory.Error,"Global_type_0_must_be_a_class_or_interface_type_2316","Global type '{0}' must be a class or interface type."),Global_type_0_must_have_1_type_parameter_s:t(2317,e.DiagnosticCategory.Error,"Global_type_0_must_have_1_type_parameter_s_2317","Global type '{0}' must have {1} type parameter(s)."),Cannot_find_global_type_0:t(2318,e.DiagnosticCategory.Error,"Cannot_find_global_type_0_2318","Cannot find global type '{0}'."),Named_property_0_of_types_1_and_2_are_not_identical:t(2319,e.DiagnosticCategory.Error,"Named_property_0_of_types_1_and_2_are_not_identical_2319","Named property '{0}' of types '{1}' and '{2}' are not identical."),Interface_0_cannot_simultaneously_extend_types_1_and_2:t(2320,e.DiagnosticCategory.Error,"Interface_0_cannot_simultaneously_extend_types_1_and_2_2320","Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'."),Excessive_stack_depth_comparing_types_0_and_1:t(2321,e.DiagnosticCategory.Error,"Excessive_stack_depth_comparing_types_0_and_1_2321","Excessive stack depth comparing types '{0}' and '{1}'."),Type_0_is_not_assignable_to_type_1:t(2322,e.DiagnosticCategory.Error,"Type_0_is_not_assignable_to_type_1_2322","Type '{0}' is not assignable to type '{1}'."),Cannot_redeclare_exported_variable_0:t(2323,e.DiagnosticCategory.Error,"Cannot_redeclare_exported_variable_0_2323","Cannot redeclare exported variable '{0}'."),Property_0_is_missing_in_type_1:t(2324,e.DiagnosticCategory.Error,"Property_0_is_missing_in_type_1_2324","Property '{0}' is missing in type '{1}'."),Property_0_is_private_in_type_1_but_not_in_type_2:t(2325,e.DiagnosticCategory.Error,"Property_0_is_private_in_type_1_but_not_in_type_2_2325","Property '{0}' is private in type '{1}' but not in type '{2}'."),Types_of_property_0_are_incompatible:t(2326,e.DiagnosticCategory.Error,"Types_of_property_0_are_incompatible_2326","Types of property '{0}' are incompatible."),Property_0_is_optional_in_type_1_but_required_in_type_2:t(2327,e.DiagnosticCategory.Error,"Property_0_is_optional_in_type_1_but_required_in_type_2_2327","Property '{0}' is optional in type '{1}' but required in type '{2}'."),Types_of_parameters_0_and_1_are_incompatible:t(2328,e.DiagnosticCategory.Error,"Types_of_parameters_0_and_1_are_incompatible_2328","Types of parameters '{0}' and '{1}' are incompatible."),Index_signature_is_missing_in_type_0:t(2329,e.DiagnosticCategory.Error,"Index_signature_is_missing_in_type_0_2329","Index signature is missing in type '{0}'."),Index_signatures_are_incompatible:t(2330,e.DiagnosticCategory.Error,"Index_signatures_are_incompatible_2330","Index signatures are incompatible."),this_cannot_be_referenced_in_a_module_or_namespace_body:t(2331,e.DiagnosticCategory.Error,"this_cannot_be_referenced_in_a_module_or_namespace_body_2331","'this' cannot be referenced in a module or namespace body."),this_cannot_be_referenced_in_current_location:t(2332,e.DiagnosticCategory.Error,"this_cannot_be_referenced_in_current_location_2332","'this' cannot be referenced in current location."),this_cannot_be_referenced_in_constructor_arguments:t(2333,e.DiagnosticCategory.Error,"this_cannot_be_referenced_in_constructor_arguments_2333","'this' cannot be referenced in constructor arguments."),this_cannot_be_referenced_in_a_static_property_initializer:t(2334,e.DiagnosticCategory.Error,"this_cannot_be_referenced_in_a_static_property_initializer_2334","'this' cannot be referenced in a static property initializer."),super_can_only_be_referenced_in_a_derived_class:t(2335,e.DiagnosticCategory.Error,"super_can_only_be_referenced_in_a_derived_class_2335","'super' can only be referenced in a derived class."),super_cannot_be_referenced_in_constructor_arguments:t(2336,e.DiagnosticCategory.Error,"super_cannot_be_referenced_in_constructor_arguments_2336","'super' cannot be referenced in constructor arguments."),Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors:t(2337,e.DiagnosticCategory.Error,"Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors_2337","Super calls are not permitted outside constructors or in nested functions inside constructors."),super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class:t(2338,e.DiagnosticCategory.Error,"super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_der_2338","'super' property access is permitted only in a constructor, member function, or member accessor of a derived class."),Property_0_does_not_exist_on_type_1:t(2339,e.DiagnosticCategory.Error,"Property_0_does_not_exist_on_type_1_2339","Property '{0}' does not exist on type '{1}'."),Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword:t(2340,e.DiagnosticCategory.Error,"Only_public_and_protected_methods_of_the_base_class_are_accessible_via_the_super_keyword_2340","Only public and protected methods of the base class are accessible via the 'super' keyword."),Property_0_is_private_and_only_accessible_within_class_1:t(2341,e.DiagnosticCategory.Error,"Property_0_is_private_and_only_accessible_within_class_1_2341","Property '{0}' is private and only accessible within class '{1}'."),An_index_expression_argument_must_be_of_type_string_number_symbol_or_any:t(2342,e.DiagnosticCategory.Error,"An_index_expression_argument_must_be_of_type_string_number_symbol_or_any_2342","An index expression argument must be of type 'string', 'number', 'symbol', or 'any'."),This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0:t(2343,e.DiagnosticCategory.Error,"This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_ve_2343","This syntax requires an imported helper named '{1}' which does not exist in '{0}'. Consider upgrading your version of '{0}'."),Type_0_does_not_satisfy_the_constraint_1:t(2344,e.DiagnosticCategory.Error,"Type_0_does_not_satisfy_the_constraint_1_2344","Type '{0}' does not satisfy the constraint '{1}'."),Argument_of_type_0_is_not_assignable_to_parameter_of_type_1:t(2345,e.DiagnosticCategory.Error,"Argument_of_type_0_is_not_assignable_to_parameter_of_type_1_2345","Argument of type '{0}' is not assignable to parameter of type '{1}'."),Call_target_does_not_contain_any_signatures:t(2346,e.DiagnosticCategory.Error,"Call_target_does_not_contain_any_signatures_2346","Call target does not contain any signatures."),Untyped_function_calls_may_not_accept_type_arguments:t(2347,e.DiagnosticCategory.Error,"Untyped_function_calls_may_not_accept_type_arguments_2347","Untyped function calls may not accept type arguments."),Value_of_type_0_is_not_callable_Did_you_mean_to_include_new:t(2348,e.DiagnosticCategory.Error,"Value_of_type_0_is_not_callable_Did_you_mean_to_include_new_2348","Value of type '{0}' is not callable. Did you mean to include 'new'?"),This_expression_is_not_callable:t(2349,e.DiagnosticCategory.Error,"This_expression_is_not_callable_2349","This expression is not callable."),Only_a_void_function_can_be_called_with_the_new_keyword:t(2350,e.DiagnosticCategory.Error,"Only_a_void_function_can_be_called_with_the_new_keyword_2350","Only a void function can be called with the 'new' keyword."),This_expression_is_not_constructable:t(2351,e.DiagnosticCategory.Error,"This_expression_is_not_constructable_2351","This expression is not constructable."),Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first:t(2352,e.DiagnosticCategory.Error,"Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the__2352","Conversion of type '{0}' to type '{1}' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first."),Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1:t(2353,e.DiagnosticCategory.Error,"Object_literal_may_only_specify_known_properties_and_0_does_not_exist_in_type_1_2353","Object literal may only specify known properties, and '{0}' does not exist in type '{1}'."),This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found:t(2354,e.DiagnosticCategory.Error,"This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found_2354","This syntax requires an imported helper but module '{0}' cannot be found."),A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value:t(2355,e.DiagnosticCategory.Error,"A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value_2355","A function whose declared type is neither 'void' nor 'any' must return a value."),An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type:t(2356,e.DiagnosticCategory.Error,"An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type_2356","An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type."),The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access:t(2357,e.DiagnosticCategory.Error,"The_operand_of_an_increment_or_decrement_operator_must_be_a_variable_or_a_property_access_2357","The operand of an increment or decrement operator must be a variable or a property access."),The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter:t(2358,e.DiagnosticCategory.Error,"The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_paramete_2358","The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter."),The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_Function_interface_type:t(2359,e.DiagnosticCategory.Error,"The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_F_2359","The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type."),The_left_hand_side_of_an_in_expression_must_be_of_type_any_string_number_or_symbol:t(2360,e.DiagnosticCategory.Error,"The_left_hand_side_of_an_in_expression_must_be_of_type_any_string_number_or_symbol_2360","The left-hand side of an 'in' expression must be of type 'any', 'string', 'number', or 'symbol'."),The_right_hand_side_of_an_in_expression_must_not_be_a_primitive:t(2361,e.DiagnosticCategory.Error,"The_right_hand_side_of_an_in_expression_must_not_be_a_primitive_2361","The right-hand side of an 'in' expression must not be a primitive."),The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type:t(2362,e.DiagnosticCategory.Error,"The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type_2362","The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type."),The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type:t(2363,e.DiagnosticCategory.Error,"The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type_2363","The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type."),The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access:t(2364,e.DiagnosticCategory.Error,"The_left_hand_side_of_an_assignment_expression_must_be_a_variable_or_a_property_access_2364","The left-hand side of an assignment expression must be a variable or a property access."),Operator_0_cannot_be_applied_to_types_1_and_2:t(2365,e.DiagnosticCategory.Error,"Operator_0_cannot_be_applied_to_types_1_and_2_2365","Operator '{0}' cannot be applied to types '{1}' and '{2}'."),Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined:t(2366,e.DiagnosticCategory.Error,"Function_lacks_ending_return_statement_and_return_type_does_not_include_undefined_2366","Function lacks ending return statement and return type does not include 'undefined'."),This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap:t(2367,e.DiagnosticCategory.Error,"This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap_2367","This condition will always return '{0}' since the types '{1}' and '{2}' have no overlap."),Type_parameter_name_cannot_be_0:t(2368,e.DiagnosticCategory.Error,"Type_parameter_name_cannot_be_0_2368","Type parameter name cannot be '{0}'."),A_parameter_property_is_only_allowed_in_a_constructor_implementation:t(2369,e.DiagnosticCategory.Error,"A_parameter_property_is_only_allowed_in_a_constructor_implementation_2369","A parameter property is only allowed in a constructor implementation."),A_rest_parameter_must_be_of_an_array_type:t(2370,e.DiagnosticCategory.Error,"A_rest_parameter_must_be_of_an_array_type_2370","A rest parameter must be of an array type."),A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation:t(2371,e.DiagnosticCategory.Error,"A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation_2371","A parameter initializer is only allowed in a function or constructor implementation."),Parameter_0_cannot_reference_itself:t(2372,e.DiagnosticCategory.Error,"Parameter_0_cannot_reference_itself_2372","Parameter '{0}' cannot reference itself."),Parameter_0_cannot_reference_identifier_1_declared_after_it:t(2373,e.DiagnosticCategory.Error,"Parameter_0_cannot_reference_identifier_1_declared_after_it_2373","Parameter '{0}' cannot reference identifier '{1}' declared after it."),Duplicate_string_index_signature:t(2374,e.DiagnosticCategory.Error,"Duplicate_string_index_signature_2374","Duplicate string index signature."),Duplicate_number_index_signature:t(2375,e.DiagnosticCategory.Error,"Duplicate_number_index_signature_2375","Duplicate number index signature."),A_super_call_must_be_the_first_statement_in_the_constructor_when_a_class_contains_initialized_properties_parameter_properties_or_private_identifiers:t(2376,e.DiagnosticCategory.Error,"A_super_call_must_be_the_first_statement_in_the_constructor_when_a_class_contains_initialized_proper_2376","A 'super' call must be the first statement in the constructor when a class contains initialized properties, parameter properties, or private identifiers."),Constructors_for_derived_classes_must_contain_a_super_call:t(2377,e.DiagnosticCategory.Error,"Constructors_for_derived_classes_must_contain_a_super_call_2377","Constructors for derived classes must contain a 'super' call."),A_get_accessor_must_return_a_value:t(2378,e.DiagnosticCategory.Error,"A_get_accessor_must_return_a_value_2378","A 'get' accessor must return a value."),Getter_and_setter_accessors_do_not_agree_in_visibility:t(2379,e.DiagnosticCategory.Error,"Getter_and_setter_accessors_do_not_agree_in_visibility_2379","Getter and setter accessors do not agree in visibility."),get_and_set_accessor_must_have_the_same_type:t(2380,e.DiagnosticCategory.Error,"get_and_set_accessor_must_have_the_same_type_2380","'get' and 'set' accessor must have the same type."),A_signature_with_an_implementation_cannot_use_a_string_literal_type:t(2381,e.DiagnosticCategory.Error,"A_signature_with_an_implementation_cannot_use_a_string_literal_type_2381","A signature with an implementation cannot use a string literal type."),Specialized_overload_signature_is_not_assignable_to_any_non_specialized_signature:t(2382,e.DiagnosticCategory.Error,"Specialized_overload_signature_is_not_assignable_to_any_non_specialized_signature_2382","Specialized overload signature is not assignable to any non-specialized signature."),Overload_signatures_must_all_be_exported_or_non_exported:t(2383,e.DiagnosticCategory.Error,"Overload_signatures_must_all_be_exported_or_non_exported_2383","Overload signatures must all be exported or non-exported."),Overload_signatures_must_all_be_ambient_or_non_ambient:t(2384,e.DiagnosticCategory.Error,"Overload_signatures_must_all_be_ambient_or_non_ambient_2384","Overload signatures must all be ambient or non-ambient."),Overload_signatures_must_all_be_public_private_or_protected:t(2385,e.DiagnosticCategory.Error,"Overload_signatures_must_all_be_public_private_or_protected_2385","Overload signatures must all be public, private or protected."),Overload_signatures_must_all_be_optional_or_required:t(2386,e.DiagnosticCategory.Error,"Overload_signatures_must_all_be_optional_or_required_2386","Overload signatures must all be optional or required."),Function_overload_must_be_static:t(2387,e.DiagnosticCategory.Error,"Function_overload_must_be_static_2387","Function overload must be static."),Function_overload_must_not_be_static:t(2388,e.DiagnosticCategory.Error,"Function_overload_must_not_be_static_2388","Function overload must not be static."),Function_implementation_name_must_be_0:t(2389,e.DiagnosticCategory.Error,"Function_implementation_name_must_be_0_2389","Function implementation name must be '{0}'."),Constructor_implementation_is_missing:t(2390,e.DiagnosticCategory.Error,"Constructor_implementation_is_missing_2390","Constructor implementation is missing."),Function_implementation_is_missing_or_not_immediately_following_the_declaration:t(2391,e.DiagnosticCategory.Error,"Function_implementation_is_missing_or_not_immediately_following_the_declaration_2391","Function implementation is missing or not immediately following the declaration."),Multiple_constructor_implementations_are_not_allowed:t(2392,e.DiagnosticCategory.Error,"Multiple_constructor_implementations_are_not_allowed_2392","Multiple constructor implementations are not allowed."),Duplicate_function_implementation:t(2393,e.DiagnosticCategory.Error,"Duplicate_function_implementation_2393","Duplicate function implementation."),This_overload_signature_is_not_compatible_with_its_implementation_signature:t(2394,e.DiagnosticCategory.Error,"This_overload_signature_is_not_compatible_with_its_implementation_signature_2394","This overload signature is not compatible with its implementation signature."),Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local:t(2395,e.DiagnosticCategory.Error,"Individual_declarations_in_merged_declaration_0_must_be_all_exported_or_all_local_2395","Individual declarations in merged declaration '{0}' must be all exported or all local."),Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters:t(2396,e.DiagnosticCategory.Error,"Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters_2396","Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters."),Declaration_name_conflicts_with_built_in_global_identifier_0:t(2397,e.DiagnosticCategory.Error,"Declaration_name_conflicts_with_built_in_global_identifier_0_2397","Declaration name conflicts with built-in global identifier '{0}'."),constructor_cannot_be_used_as_a_parameter_property_name:t(2398,e.DiagnosticCategory.Error,"constructor_cannot_be_used_as_a_parameter_property_name_2398","'constructor' cannot be used as a parameter property name."),Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference:t(2399,e.DiagnosticCategory.Error,"Duplicate_identifier_this_Compiler_uses_variable_declaration_this_to_capture_this_reference_2399","Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference."),Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference:t(2400,e.DiagnosticCategory.Error,"Expression_resolves_to_variable_declaration_this_that_compiler_uses_to_capture_this_reference_2400","Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference."),Duplicate_identifier_super_Compiler_uses_super_to_capture_base_class_reference:t(2401,e.DiagnosticCategory.Error,"Duplicate_identifier_super_Compiler_uses_super_to_capture_base_class_reference_2401","Duplicate identifier '_super'. Compiler uses '_super' to capture base class reference."),Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference:t(2402,e.DiagnosticCategory.Error,"Expression_resolves_to_super_that_compiler_uses_to_capture_base_class_reference_2402","Expression resolves to '_super' that compiler uses to capture base class reference."),Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2:t(2403,e.DiagnosticCategory.Error,"Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_t_2403","Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'."),The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation:t(2404,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation_2404","The left-hand side of a 'for...in' statement cannot use a type annotation."),The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any:t(2405,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_in_statement_must_be_of_type_string_or_any_2405","The left-hand side of a 'for...in' statement must be of type 'string' or 'any'."),The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access:t(2406,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_in_statement_must_be_a_variable_or_a_property_access_2406","The left-hand side of a 'for...in' statement must be a variable or a property access."),The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_here_has_type_0:t(2407,e.DiagnosticCategory.Error,"The_right_hand_side_of_a_for_in_statement_must_be_of_type_any_an_object_type_or_a_type_parameter_but_2407","The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'."),Setters_cannot_return_a_value:t(2408,e.DiagnosticCategory.Error,"Setters_cannot_return_a_value_2408","Setters cannot return a value."),Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class:t(2409,e.DiagnosticCategory.Error,"Return_type_of_constructor_signature_must_be_assignable_to_the_instance_type_of_the_class_2409","Return type of constructor signature must be assignable to the instance type of the class."),The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any:t(2410,e.DiagnosticCategory.Error,"The_with_statement_is_not_supported_All_symbols_in_a_with_block_will_have_type_any_2410","The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'."),Property_0_of_type_1_is_not_assignable_to_string_index_type_2:t(2411,e.DiagnosticCategory.Error,"Property_0_of_type_1_is_not_assignable_to_string_index_type_2_2411","Property '{0}' of type '{1}' is not assignable to string index type '{2}'."),Property_0_of_type_1_is_not_assignable_to_numeric_index_type_2:t(2412,e.DiagnosticCategory.Error,"Property_0_of_type_1_is_not_assignable_to_numeric_index_type_2_2412","Property '{0}' of type '{1}' is not assignable to numeric index type '{2}'."),Numeric_index_type_0_is_not_assignable_to_string_index_type_1:t(2413,e.DiagnosticCategory.Error,"Numeric_index_type_0_is_not_assignable_to_string_index_type_1_2413","Numeric index type '{0}' is not assignable to string index type '{1}'."),Class_name_cannot_be_0:t(2414,e.DiagnosticCategory.Error,"Class_name_cannot_be_0_2414","Class name cannot be '{0}'."),Class_0_incorrectly_extends_base_class_1:t(2415,e.DiagnosticCategory.Error,"Class_0_incorrectly_extends_base_class_1_2415","Class '{0}' incorrectly extends base class '{1}'."),Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2:t(2416,e.DiagnosticCategory.Error,"Property_0_in_type_1_is_not_assignable_to_the_same_property_in_base_type_2_2416","Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'."),Class_static_side_0_incorrectly_extends_base_class_static_side_1:t(2417,e.DiagnosticCategory.Error,"Class_static_side_0_incorrectly_extends_base_class_static_side_1_2417","Class static side '{0}' incorrectly extends base class static side '{1}'."),Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1:t(2418,e.DiagnosticCategory.Error,"Type_of_computed_property_s_value_is_0_which_is_not_assignable_to_type_1_2418","Type of computed property's value is '{0}', which is not assignable to type '{1}'."),Types_of_construct_signatures_are_incompatible:t(2419,e.DiagnosticCategory.Error,"Types_of_construct_signatures_are_incompatible_2419","Types of construct signatures are incompatible."),Class_0_incorrectly_implements_interface_1:t(2420,e.DiagnosticCategory.Error,"Class_0_incorrectly_implements_interface_1_2420","Class '{0}' incorrectly implements interface '{1}'."),A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_members:t(2422,e.DiagnosticCategory.Error,"A_class_can_only_implement_an_object_type_or_intersection_of_object_types_with_statically_known_memb_2422","A class can only implement an object type or intersection of object types with statically known members."),Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_accessor:t(2423,e.DiagnosticCategory.Error,"Class_0_defines_instance_member_function_1_but_extended_class_2_defines_it_as_instance_member_access_2423","Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor."),Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_function:t(2425,e.DiagnosticCategory.Error,"Class_0_defines_instance_member_property_1_but_extended_class_2_defines_it_as_instance_member_functi_2425","Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function."),Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_function:t(2426,e.DiagnosticCategory.Error,"Class_0_defines_instance_member_accessor_1_but_extended_class_2_defines_it_as_instance_member_functi_2426","Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function."),Interface_name_cannot_be_0:t(2427,e.DiagnosticCategory.Error,"Interface_name_cannot_be_0_2427","Interface name cannot be '{0}'."),All_declarations_of_0_must_have_identical_type_parameters:t(2428,e.DiagnosticCategory.Error,"All_declarations_of_0_must_have_identical_type_parameters_2428","All declarations of '{0}' must have identical type parameters."),Interface_0_incorrectly_extends_interface_1:t(2430,e.DiagnosticCategory.Error,"Interface_0_incorrectly_extends_interface_1_2430","Interface '{0}' incorrectly extends interface '{1}'."),Enum_name_cannot_be_0:t(2431,e.DiagnosticCategory.Error,"Enum_name_cannot_be_0_2431","Enum name cannot be '{0}'."),In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element:t(2432,e.DiagnosticCategory.Error,"In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enu_2432","In an enum with multiple declarations, only one declaration can omit an initializer for its first enum element."),A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merged:t(2433,e.DiagnosticCategory.Error,"A_namespace_declaration_cannot_be_in_a_different_file_from_a_class_or_function_with_which_it_is_merg_2433","A namespace declaration cannot be in a different file from a class or function with which it is merged."),A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged:t(2434,e.DiagnosticCategory.Error,"A_namespace_declaration_cannot_be_located_prior_to_a_class_or_function_with_which_it_is_merged_2434","A namespace declaration cannot be located prior to a class or function with which it is merged."),Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces:t(2435,e.DiagnosticCategory.Error,"Ambient_modules_cannot_be_nested_in_other_modules_or_namespaces_2435","Ambient modules cannot be nested in other modules or namespaces."),Ambient_module_declaration_cannot_specify_relative_module_name:t(2436,e.DiagnosticCategory.Error,"Ambient_module_declaration_cannot_specify_relative_module_name_2436","Ambient module declaration cannot specify relative module name."),Module_0_is_hidden_by_a_local_declaration_with_the_same_name:t(2437,e.DiagnosticCategory.Error,"Module_0_is_hidden_by_a_local_declaration_with_the_same_name_2437","Module '{0}' is hidden by a local declaration with the same name."),Import_name_cannot_be_0:t(2438,e.DiagnosticCategory.Error,"Import_name_cannot_be_0_2438","Import name cannot be '{0}'."),Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relative_module_name:t(2439,e.DiagnosticCategory.Error,"Import_or_export_declaration_in_an_ambient_module_declaration_cannot_reference_module_through_relati_2439","Import or export declaration in an ambient module declaration cannot reference module through relative module name."),Import_declaration_conflicts_with_local_declaration_of_0:t(2440,e.DiagnosticCategory.Error,"Import_declaration_conflicts_with_local_declaration_of_0_2440","Import declaration conflicts with local declaration of '{0}'."),Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module:t(2441,e.DiagnosticCategory.Error,"Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_2441","Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module."),Types_have_separate_declarations_of_a_private_property_0:t(2442,e.DiagnosticCategory.Error,"Types_have_separate_declarations_of_a_private_property_0_2442","Types have separate declarations of a private property '{0}'."),Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2:t(2443,e.DiagnosticCategory.Error,"Property_0_is_protected_but_type_1_is_not_a_class_derived_from_2_2443","Property '{0}' is protected but type '{1}' is not a class derived from '{2}'."),Property_0_is_protected_in_type_1_but_public_in_type_2:t(2444,e.DiagnosticCategory.Error,"Property_0_is_protected_in_type_1_but_public_in_type_2_2444","Property '{0}' is protected in type '{1}' but public in type '{2}'."),Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses:t(2445,e.DiagnosticCategory.Error,"Property_0_is_protected_and_only_accessible_within_class_1_and_its_subclasses_2445","Property '{0}' is protected and only accessible within class '{1}' and its subclasses."),Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1:t(2446,e.DiagnosticCategory.Error,"Property_0_is_protected_and_only_accessible_through_an_instance_of_class_1_2446","Property '{0}' is protected and only accessible through an instance of class '{1}'."),The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead:t(2447,e.DiagnosticCategory.Error,"The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead_2447","The '{0}' operator is not allowed for boolean types. Consider using '{1}' instead."),Block_scoped_variable_0_used_before_its_declaration:t(2448,e.DiagnosticCategory.Error,"Block_scoped_variable_0_used_before_its_declaration_2448","Block-scoped variable '{0}' used before its declaration."),Class_0_used_before_its_declaration:t(2449,e.DiagnosticCategory.Error,"Class_0_used_before_its_declaration_2449","Class '{0}' used before its declaration."),Enum_0_used_before_its_declaration:t(2450,e.DiagnosticCategory.Error,"Enum_0_used_before_its_declaration_2450","Enum '{0}' used before its declaration."),Cannot_redeclare_block_scoped_variable_0:t(2451,e.DiagnosticCategory.Error,"Cannot_redeclare_block_scoped_variable_0_2451","Cannot redeclare block-scoped variable '{0}'."),An_enum_member_cannot_have_a_numeric_name:t(2452,e.DiagnosticCategory.Error,"An_enum_member_cannot_have_a_numeric_name_2452","An enum member cannot have a numeric name."),The_type_argument_for_type_parameter_0_cannot_be_inferred_from_the_usage_Consider_specifying_the_type_arguments_explicitly:t(2453,e.DiagnosticCategory.Error,"The_type_argument_for_type_parameter_0_cannot_be_inferred_from_the_usage_Consider_specifying_the_typ_2453","The type argument for type parameter '{0}' cannot be inferred from the usage. Consider specifying the type arguments explicitly."),Variable_0_is_used_before_being_assigned:t(2454,e.DiagnosticCategory.Error,"Variable_0_is_used_before_being_assigned_2454","Variable '{0}' is used before being assigned."),Type_argument_candidate_1_is_not_a_valid_type_argument_because_it_is_not_a_supertype_of_candidate_0:t(2455,e.DiagnosticCategory.Error,"Type_argument_candidate_1_is_not_a_valid_type_argument_because_it_is_not_a_supertype_of_candidate_0_2455","Type argument candidate '{1}' is not a valid type argument because it is not a supertype of candidate '{0}'."),Type_alias_0_circularly_references_itself:t(2456,e.DiagnosticCategory.Error,"Type_alias_0_circularly_references_itself_2456","Type alias '{0}' circularly references itself."),Type_alias_name_cannot_be_0:t(2457,e.DiagnosticCategory.Error,"Type_alias_name_cannot_be_0_2457","Type alias name cannot be '{0}'."),An_AMD_module_cannot_have_multiple_name_assignments:t(2458,e.DiagnosticCategory.Error,"An_AMD_module_cannot_have_multiple_name_assignments_2458","An AMD module cannot have multiple name assignments."),Module_0_declares_1_locally_but_it_is_not_exported:t(2459,e.DiagnosticCategory.Error,"Module_0_declares_1_locally_but_it_is_not_exported_2459","Module '{0}' declares '{1}' locally, but it is not exported."),Module_0_declares_1_locally_but_it_is_exported_as_2:t(2460,e.DiagnosticCategory.Error,"Module_0_declares_1_locally_but_it_is_exported_as_2_2460","Module '{0}' declares '{1}' locally, but it is exported as '{2}'."),Type_0_is_not_an_array_type:t(2461,e.DiagnosticCategory.Error,"Type_0_is_not_an_array_type_2461","Type '{0}' is not an array type."),A_rest_element_must_be_last_in_a_destructuring_pattern:t(2462,e.DiagnosticCategory.Error,"A_rest_element_must_be_last_in_a_destructuring_pattern_2462","A rest element must be last in a destructuring pattern."),A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature:t(2463,e.DiagnosticCategory.Error,"A_binding_pattern_parameter_cannot_be_optional_in_an_implementation_signature_2463","A binding pattern parameter cannot be optional in an implementation signature."),A_computed_property_name_must_be_of_type_string_number_symbol_or_any:t(2464,e.DiagnosticCategory.Error,"A_computed_property_name_must_be_of_type_string_number_symbol_or_any_2464","A computed property name must be of type 'string', 'number', 'symbol', or 'any'."),this_cannot_be_referenced_in_a_computed_property_name:t(2465,e.DiagnosticCategory.Error,"this_cannot_be_referenced_in_a_computed_property_name_2465","'this' cannot be referenced in a computed property name."),super_cannot_be_referenced_in_a_computed_property_name:t(2466,e.DiagnosticCategory.Error,"super_cannot_be_referenced_in_a_computed_property_name_2466","'super' cannot be referenced in a computed property name."),A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type:t(2467,e.DiagnosticCategory.Error,"A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type_2467","A computed property name cannot reference a type parameter from its containing type."),Cannot_find_global_value_0:t(2468,e.DiagnosticCategory.Error,"Cannot_find_global_value_0_2468","Cannot find global value '{0}'."),The_0_operator_cannot_be_applied_to_type_symbol:t(2469,e.DiagnosticCategory.Error,"The_0_operator_cannot_be_applied_to_type_symbol_2469","The '{0}' operator cannot be applied to type 'symbol'."),Symbol_reference_does_not_refer_to_the_global_Symbol_constructor_object:t(2470,e.DiagnosticCategory.Error,"Symbol_reference_does_not_refer_to_the_global_Symbol_constructor_object_2470","'Symbol' reference does not refer to the global Symbol constructor object."),A_computed_property_name_of_the_form_0_must_be_of_type_symbol:t(2471,e.DiagnosticCategory.Error,"A_computed_property_name_of_the_form_0_must_be_of_type_symbol_2471","A computed property name of the form '{0}' must be of type 'symbol'."),Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher:t(2472,e.DiagnosticCategory.Error,"Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher_2472","Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher."),Enum_declarations_must_all_be_const_or_non_const:t(2473,e.DiagnosticCategory.Error,"Enum_declarations_must_all_be_const_or_non_const_2473","Enum declarations must all be const or non-const."),const_enum_member_initializers_can_only_contain_literal_values_and_other_computed_enum_values:t(2474,e.DiagnosticCategory.Error,"const_enum_member_initializers_can_only_contain_literal_values_and_other_computed_enum_values_2474","const enum member initializers can only contain literal values and other computed enum values."),const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query:t(2475,e.DiagnosticCategory.Error,"const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475","'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query."),A_const_enum_member_can_only_be_accessed_using_a_string_literal:t(2476,e.DiagnosticCategory.Error,"A_const_enum_member_can_only_be_accessed_using_a_string_literal_2476","A const enum member can only be accessed using a string literal."),const_enum_member_initializer_was_evaluated_to_a_non_finite_value:t(2477,e.DiagnosticCategory.Error,"const_enum_member_initializer_was_evaluated_to_a_non_finite_value_2477","'const' enum member initializer was evaluated to a non-finite value."),const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN:t(2478,e.DiagnosticCategory.Error,"const_enum_member_initializer_was_evaluated_to_disallowed_value_NaN_2478","'const' enum member initializer was evaluated to disallowed value 'NaN'."),Property_0_does_not_exist_on_const_enum_1:t(2479,e.DiagnosticCategory.Error,"Property_0_does_not_exist_on_const_enum_1_2479","Property '{0}' does not exist on 'const' enum '{1}'."),let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations:t(2480,e.DiagnosticCategory.Error,"let_is_not_allowed_to_be_used_as_a_name_in_let_or_const_declarations_2480","'let' is not allowed to be used as a name in 'let' or 'const' declarations."),Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1:t(2481,e.DiagnosticCategory.Error,"Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1_2481","Cannot initialize outer scoped variable '{0}' in the same scope as block scoped declaration '{1}'."),The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation:t(2483,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation_2483","The left-hand side of a 'for...of' statement cannot use a type annotation."),Export_declaration_conflicts_with_exported_declaration_of_0:t(2484,e.DiagnosticCategory.Error,"Export_declaration_conflicts_with_exported_declaration_of_0_2484","Export declaration conflicts with exported declaration of '{0}'."),The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access:t(2487,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_of_statement_must_be_a_variable_or_a_property_access_2487","The left-hand side of a 'for...of' statement must be a variable or a property access."),Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator:t(2488,e.DiagnosticCategory.Error,"Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator_2488","Type '{0}' must have a '[Symbol.iterator]()' method that returns an iterator."),An_iterator_must_have_a_next_method:t(2489,e.DiagnosticCategory.Error,"An_iterator_must_have_a_next_method_2489","An iterator must have a 'next()' method."),The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property:t(2490,e.DiagnosticCategory.Error,"The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property_2490","The type returned by the '{0}()' method of an iterator must have a 'value' property."),The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern:t(2491,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_in_statement_cannot_be_a_destructuring_pattern_2491","The left-hand side of a 'for...in' statement cannot be a destructuring pattern."),Cannot_redeclare_identifier_0_in_catch_clause:t(2492,e.DiagnosticCategory.Error,"Cannot_redeclare_identifier_0_in_catch_clause_2492","Cannot redeclare identifier '{0}' in catch clause."),Tuple_type_0_of_length_1_has_no_element_at_index_2:t(2493,e.DiagnosticCategory.Error,"Tuple_type_0_of_length_1_has_no_element_at_index_2_2493","Tuple type '{0}' of length '{1}' has no element at index '{2}'."),Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher:t(2494,e.DiagnosticCategory.Error,"Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher_2494","Using a string in a 'for...of' statement is only supported in ECMAScript 5 and higher."),Type_0_is_not_an_array_type_or_a_string_type:t(2495,e.DiagnosticCategory.Error,"Type_0_is_not_an_array_type_or_a_string_type_2495","Type '{0}' is not an array type or a string type."),The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES3_and_ES5_Consider_using_a_standard_function_expression:t(2496,e.DiagnosticCategory.Error,"The_arguments_object_cannot_be_referenced_in_an_arrow_function_in_ES3_and_ES5_Consider_using_a_stand_2496","The 'arguments' object cannot be referenced in an arrow function in ES3 and ES5. Consider using a standard function expression."),This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export:t(2497,e.DiagnosticCategory.Error,"This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_2497","This module can only be referenced with ECMAScript imports/exports by turning on the '{0}' flag and referencing its default export."),Module_0_uses_export_and_cannot_be_used_with_export_Asterisk:t(2498,e.DiagnosticCategory.Error,"Module_0_uses_export_and_cannot_be_used_with_export_Asterisk_2498","Module '{0}' uses 'export =' and cannot be used with 'export *'."),An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments:t(2499,e.DiagnosticCategory.Error,"An_interface_can_only_extend_an_identifier_Slashqualified_name_with_optional_type_arguments_2499","An interface can only extend an identifier/qualified-name with optional type arguments."),A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments:t(2500,e.DiagnosticCategory.Error,"A_class_can_only_implement_an_identifier_Slashqualified_name_with_optional_type_arguments_2500","A class can only implement an identifier/qualified-name with optional type arguments."),A_rest_element_cannot_contain_a_binding_pattern:t(2501,e.DiagnosticCategory.Error,"A_rest_element_cannot_contain_a_binding_pattern_2501","A rest element cannot contain a binding pattern."),_0_is_referenced_directly_or_indirectly_in_its_own_type_annotation:t(2502,e.DiagnosticCategory.Error,"_0_is_referenced_directly_or_indirectly_in_its_own_type_annotation_2502","'{0}' is referenced directly or indirectly in its own type annotation."),Cannot_find_namespace_0:t(2503,e.DiagnosticCategory.Error,"Cannot_find_namespace_0_2503","Cannot find namespace '{0}'."),Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator:t(2504,e.DiagnosticCategory.Error,"Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator_2504","Type '{0}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator."),A_generator_cannot_have_a_void_type_annotation:t(2505,e.DiagnosticCategory.Error,"A_generator_cannot_have_a_void_type_annotation_2505","A generator cannot have a 'void' type annotation."),_0_is_referenced_directly_or_indirectly_in_its_own_base_expression:t(2506,e.DiagnosticCategory.Error,"_0_is_referenced_directly_or_indirectly_in_its_own_base_expression_2506","'{0}' is referenced directly or indirectly in its own base expression."),Type_0_is_not_a_constructor_function_type:t(2507,e.DiagnosticCategory.Error,"Type_0_is_not_a_constructor_function_type_2507","Type '{0}' is not a constructor function type."),No_base_constructor_has_the_specified_number_of_type_arguments:t(2508,e.DiagnosticCategory.Error,"No_base_constructor_has_the_specified_number_of_type_arguments_2508","No base constructor has the specified number of type arguments."),Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members:t(2509,e.DiagnosticCategory.Error,"Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_2509","Base constructor return type '{0}' is not an object type or intersection of object types with statically known members."),Base_constructors_must_all_have_the_same_return_type:t(2510,e.DiagnosticCategory.Error,"Base_constructors_must_all_have_the_same_return_type_2510","Base constructors must all have the same return type."),Cannot_create_an_instance_of_an_abstract_class:t(2511,e.DiagnosticCategory.Error,"Cannot_create_an_instance_of_an_abstract_class_2511","Cannot create an instance of an abstract class."),Overload_signatures_must_all_be_abstract_or_non_abstract:t(2512,e.DiagnosticCategory.Error,"Overload_signatures_must_all_be_abstract_or_non_abstract_2512","Overload signatures must all be abstract or non-abstract."),Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression:t(2513,e.DiagnosticCategory.Error,"Abstract_method_0_in_class_1_cannot_be_accessed_via_super_expression_2513","Abstract method '{0}' in class '{1}' cannot be accessed via super expression."),Classes_containing_abstract_methods_must_be_marked_abstract:t(2514,e.DiagnosticCategory.Error,"Classes_containing_abstract_methods_must_be_marked_abstract_2514","Classes containing abstract methods must be marked abstract."),Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2:t(2515,e.DiagnosticCategory.Error,"Non_abstract_class_0_does_not_implement_inherited_abstract_member_1_from_class_2_2515","Non-abstract class '{0}' does not implement inherited abstract member '{1}' from class '{2}'."),All_declarations_of_an_abstract_method_must_be_consecutive:t(2516,e.DiagnosticCategory.Error,"All_declarations_of_an_abstract_method_must_be_consecutive_2516","All declarations of an abstract method must be consecutive."),Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type:t(2517,e.DiagnosticCategory.Error,"Cannot_assign_an_abstract_constructor_type_to_a_non_abstract_constructor_type_2517","Cannot assign an abstract constructor type to a non-abstract constructor type."),A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard:t(2518,e.DiagnosticCategory.Error,"A_this_based_type_guard_is_not_compatible_with_a_parameter_based_type_guard_2518","A 'this'-based type guard is not compatible with a parameter-based type guard."),An_async_iterator_must_have_a_next_method:t(2519,e.DiagnosticCategory.Error,"An_async_iterator_must_have_a_next_method_2519","An async iterator must have a 'next()' method."),Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions:t(2520,e.DiagnosticCategory.Error,"Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions_2520","Duplicate identifier '{0}'. Compiler uses declaration '{1}' to support async functions."),Expression_resolves_to_variable_declaration_0_that_compiler_uses_to_support_async_functions:t(2521,e.DiagnosticCategory.Error,"Expression_resolves_to_variable_declaration_0_that_compiler_uses_to_support_async_functions_2521","Expression resolves to variable declaration '{0}' that compiler uses to support async functions."),The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES3_and_ES5_Consider_using_a_standard_function_or_method:t(2522,e.DiagnosticCategory.Error,"The_arguments_object_cannot_be_referenced_in_an_async_function_or_method_in_ES3_and_ES5_Consider_usi_2522","The 'arguments' object cannot be referenced in an async function or method in ES3 and ES5. Consider using a standard function or method."),yield_expressions_cannot_be_used_in_a_parameter_initializer:t(2523,e.DiagnosticCategory.Error,"yield_expressions_cannot_be_used_in_a_parameter_initializer_2523","'yield' expressions cannot be used in a parameter initializer."),await_expressions_cannot_be_used_in_a_parameter_initializer:t(2524,e.DiagnosticCategory.Error,"await_expressions_cannot_be_used_in_a_parameter_initializer_2524","'await' expressions cannot be used in a parameter initializer."),Initializer_provides_no_value_for_this_binding_element_and_the_binding_element_has_no_default_value:t(2525,e.DiagnosticCategory.Error,"Initializer_provides_no_value_for_this_binding_element_and_the_binding_element_has_no_default_value_2525","Initializer provides no value for this binding element and the binding element has no default value."),A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface:t(2526,e.DiagnosticCategory.Error,"A_this_type_is_available_only_in_a_non_static_member_of_a_class_or_interface_2526","A 'this' type is available only in a non-static member of a class or interface."),The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary:t(2527,e.DiagnosticCategory.Error,"The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary_2527","The inferred type of '{0}' references an inaccessible '{1}' type. A type annotation is necessary."),A_module_cannot_have_multiple_default_exports:t(2528,e.DiagnosticCategory.Error,"A_module_cannot_have_multiple_default_exports_2528","A module cannot have multiple default exports."),Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions:t(2529,e.DiagnosticCategory.Error,"Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_func_2529","Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module containing async functions."),Property_0_is_incompatible_with_index_signature:t(2530,e.DiagnosticCategory.Error,"Property_0_is_incompatible_with_index_signature_2530","Property '{0}' is incompatible with index signature."),Object_is_possibly_null:t(2531,e.DiagnosticCategory.Error,"Object_is_possibly_null_2531","Object is possibly 'null'."),Object_is_possibly_undefined:t(2532,e.DiagnosticCategory.Error,"Object_is_possibly_undefined_2532","Object is possibly 'undefined'."),Object_is_possibly_null_or_undefined:t(2533,e.DiagnosticCategory.Error,"Object_is_possibly_null_or_undefined_2533","Object is possibly 'null' or 'undefined'."),A_function_returning_never_cannot_have_a_reachable_end_point:t(2534,e.DiagnosticCategory.Error,"A_function_returning_never_cannot_have_a_reachable_end_point_2534","A function returning 'never' cannot have a reachable end point."),Enum_type_0_has_members_with_initializers_that_are_not_literals:t(2535,e.DiagnosticCategory.Error,"Enum_type_0_has_members_with_initializers_that_are_not_literals_2535","Enum type '{0}' has members with initializers that are not literals."),Type_0_cannot_be_used_to_index_type_1:t(2536,e.DiagnosticCategory.Error,"Type_0_cannot_be_used_to_index_type_1_2536","Type '{0}' cannot be used to index type '{1}'."),Type_0_has_no_matching_index_signature_for_type_1:t(2537,e.DiagnosticCategory.Error,"Type_0_has_no_matching_index_signature_for_type_1_2537","Type '{0}' has no matching index signature for type '{1}'."),Type_0_cannot_be_used_as_an_index_type:t(2538,e.DiagnosticCategory.Error,"Type_0_cannot_be_used_as_an_index_type_2538","Type '{0}' cannot be used as an index type."),Cannot_assign_to_0_because_it_is_not_a_variable:t(2539,e.DiagnosticCategory.Error,"Cannot_assign_to_0_because_it_is_not_a_variable_2539","Cannot assign to '{0}' because it is not a variable."),Cannot_assign_to_0_because_it_is_a_read_only_property:t(2540,e.DiagnosticCategory.Error,"Cannot_assign_to_0_because_it_is_a_read_only_property_2540","Cannot assign to '{0}' because it is a read-only property."),The_target_of_an_assignment_must_be_a_variable_or_a_property_access:t(2541,e.DiagnosticCategory.Error,"The_target_of_an_assignment_must_be_a_variable_or_a_property_access_2541","The target of an assignment must be a variable or a property access."),Index_signature_in_type_0_only_permits_reading:t(2542,e.DiagnosticCategory.Error,"Index_signature_in_type_0_only_permits_reading_2542","Index signature in type '{0}' only permits reading."),Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_meta_property_reference:t(2543,e.DiagnosticCategory.Error,"Duplicate_identifier_newTarget_Compiler_uses_variable_declaration_newTarget_to_capture_new_target_me_2543","Duplicate identifier '_newTarget'. Compiler uses variable declaration '_newTarget' to capture 'new.target' meta-property reference."),Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta_property_reference:t(2544,e.DiagnosticCategory.Error,"Expression_resolves_to_variable_declaration_newTarget_that_compiler_uses_to_capture_new_target_meta__2544","Expression resolves to variable declaration '_newTarget' that compiler uses to capture 'new.target' meta-property reference."),A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any:t(2545,e.DiagnosticCategory.Error,"A_mixin_class_must_have_a_constructor_with_a_single_rest_parameter_of_type_any_2545","A mixin class must have a constructor with a single rest parameter of type 'any[]'."),The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property:t(2547,e.DiagnosticCategory.Error,"The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_pro_2547","The type returned by the '{0}()' method of an async iterator must be a promise for a type with a 'value' property."),Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator:t(2548,e.DiagnosticCategory.Error,"Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator_2548","Type '{0}' is not an array type or does not have a '[Symbol.iterator]()' method that returns an iterator."),Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator:t(2549,e.DiagnosticCategory.Error,"Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns__2549","Type '{0}' is not an array type or a string type or does not have a '[Symbol.iterator]()' method that returns an iterator."),Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2_or_later:t(2550,e.DiagnosticCategory.Error,"Property_0_does_not_exist_on_type_1_Do_you_need_to_change_your_target_library_Try_changing_the_lib_c_2550","Property '{0}' does not exist on type '{1}'. Do you need to change your target library? Try changing the `lib` compiler option to '{2}' or later."),Property_0_does_not_exist_on_type_1_Did_you_mean_2:t(2551,e.DiagnosticCategory.Error,"Property_0_does_not_exist_on_type_1_Did_you_mean_2_2551","Property '{0}' does not exist on type '{1}'. Did you mean '{2}'?"),Cannot_find_name_0_Did_you_mean_1:t(2552,e.DiagnosticCategory.Error,"Cannot_find_name_0_Did_you_mean_1_2552","Cannot find name '{0}'. Did you mean '{1}'?"),Computed_values_are_not_permitted_in_an_enum_with_string_valued_members:t(2553,e.DiagnosticCategory.Error,"Computed_values_are_not_permitted_in_an_enum_with_string_valued_members_2553","Computed values are not permitted in an enum with string valued members."),Expected_0_arguments_but_got_1:t(2554,e.DiagnosticCategory.Error,"Expected_0_arguments_but_got_1_2554","Expected {0} arguments, but got {1}."),Expected_at_least_0_arguments_but_got_1:t(2555,e.DiagnosticCategory.Error,"Expected_at_least_0_arguments_but_got_1_2555","Expected at least {0} arguments, but got {1}."),Expected_0_arguments_but_got_1_or_more:t(2556,e.DiagnosticCategory.Error,"Expected_0_arguments_but_got_1_or_more_2556","Expected {0} arguments, but got {1} or more."),Expected_at_least_0_arguments_but_got_1_or_more:t(2557,e.DiagnosticCategory.Error,"Expected_at_least_0_arguments_but_got_1_or_more_2557","Expected at least {0} arguments, but got {1} or more."),Expected_0_type_arguments_but_got_1:t(2558,e.DiagnosticCategory.Error,"Expected_0_type_arguments_but_got_1_2558","Expected {0} type arguments, but got {1}."),Type_0_has_no_properties_in_common_with_type_1:t(2559,e.DiagnosticCategory.Error,"Type_0_has_no_properties_in_common_with_type_1_2559","Type '{0}' has no properties in common with type '{1}'."),Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it:t(2560,e.DiagnosticCategory.Error,"Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it_2560","Value of type '{0}' has no properties in common with type '{1}'. Did you mean to call it?"),Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_write_2:t(2561,e.DiagnosticCategory.Error,"Object_literal_may_only_specify_known_properties_but_0_does_not_exist_in_type_1_Did_you_mean_to_writ_2561","Object literal may only specify known properties, but '{0}' does not exist in type '{1}'. Did you mean to write '{2}'?"),Base_class_expressions_cannot_reference_class_type_parameters:t(2562,e.DiagnosticCategory.Error,"Base_class_expressions_cannot_reference_class_type_parameters_2562","Base class expressions cannot reference class type parameters."),The_containing_function_or_module_body_is_too_large_for_control_flow_analysis:t(2563,e.DiagnosticCategory.Error,"The_containing_function_or_module_body_is_too_large_for_control_flow_analysis_2563","The containing function or module body is too large for control flow analysis."),Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor:t(2564,e.DiagnosticCategory.Error,"Property_0_has_no_initializer_and_is_not_definitely_assigned_in_the_constructor_2564","Property '{0}' has no initializer and is not definitely assigned in the constructor."),Property_0_is_used_before_being_assigned:t(2565,e.DiagnosticCategory.Error,"Property_0_is_used_before_being_assigned_2565","Property '{0}' is used before being assigned."),A_rest_element_cannot_have_a_property_name:t(2566,e.DiagnosticCategory.Error,"A_rest_element_cannot_have_a_property_name_2566","A rest element cannot have a property name."),Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations:t(2567,e.DiagnosticCategory.Error,"Enum_declarations_can_only_merge_with_namespace_or_other_enum_declarations_2567","Enum declarations can only merge with namespace or other enum declarations."),Type_0_is_not_an_array_type_or_a_string_type_Use_compiler_option_downlevelIteration_to_allow_iterating_of_iterators:t(2569,e.DiagnosticCategory.Error,"Type_0_is_not_an_array_type_or_a_string_type_Use_compiler_option_downlevelIteration_to_allow_iterati_2569","Type '{0}' is not an array type or a string type. Use compiler option '--downlevelIteration' to allow iterating of iterators."),Object_is_of_type_unknown:t(2571,e.DiagnosticCategory.Error,"Object_is_of_type_unknown_2571","Object is of type 'unknown'."),Rest_signatures_are_incompatible:t(2572,e.DiagnosticCategory.Error,"Rest_signatures_are_incompatible_2572","Rest signatures are incompatible."),Property_0_is_incompatible_with_rest_element_type:t(2573,e.DiagnosticCategory.Error,"Property_0_is_incompatible_with_rest_element_type_2573","Property '{0}' is incompatible with rest element type."),A_rest_element_type_must_be_an_array_type:t(2574,e.DiagnosticCategory.Error,"A_rest_element_type_must_be_an_array_type_2574","A rest element type must be an array type."),No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments:t(2575,e.DiagnosticCategory.Error,"No_overload_expects_0_arguments_but_overloads_do_exist_that_expect_either_1_or_2_arguments_2575","No overload expects {0} arguments, but overloads do exist that expect either {1} or {2} arguments."),Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead:t(2576,e.DiagnosticCategory.Error,"Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead_2576","Property '{0}' does not exist on type '{1}'. Did you mean to access the static member '{2}' instead?"),Return_type_annotation_circularly_references_itself:t(2577,e.DiagnosticCategory.Error,"Return_type_annotation_circularly_references_itself_2577","Return type annotation circularly references itself."),Unused_ts_expect_error_directive:t(2578,e.DiagnosticCategory.Error,"Unused_ts_expect_error_directive_2578","Unused '@ts-expect-error' directive."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode:t(2580,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashno_2580","Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery:t(2581,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slash_2581","Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery`."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha:t(2582,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_type_2582","Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`."),Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_1_or_later:t(2583,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2583","Cannot find name '{0}'. Do you need to change your target library? Try changing the `lib` compiler option to '{1}' or later."),Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_include_dom:t(2584,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_2584","Cannot find name '{0}'. Do you need to change your target library? Try changing the `lib` compiler option to include 'dom'."),_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later:t(2585,e.DiagnosticCategory.Error,"_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_2585","'{0}' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the `lib` compiler option to es2015 or later."),Enum_type_0_circularly_references_itself:t(2586,e.DiagnosticCategory.Error,"Enum_type_0_circularly_references_itself_2586","Enum type '{0}' circularly references itself."),JSDoc_type_0_circularly_references_itself:t(2587,e.DiagnosticCategory.Error,"JSDoc_type_0_circularly_references_itself_2587","JSDoc type '{0}' circularly references itself."),Cannot_assign_to_0_because_it_is_a_constant:t(2588,e.DiagnosticCategory.Error,"Cannot_assign_to_0_because_it_is_a_constant_2588","Cannot assign to '{0}' because it is a constant."),Type_instantiation_is_excessively_deep_and_possibly_infinite:t(2589,e.DiagnosticCategory.Error,"Type_instantiation_is_excessively_deep_and_possibly_infinite_2589","Type instantiation is excessively deep and possibly infinite."),Expression_produces_a_union_type_that_is_too_complex_to_represent:t(2590,e.DiagnosticCategory.Error,"Expression_produces_a_union_type_that_is_too_complex_to_represent_2590","Expression produces a union type that is too complex to represent."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashnode_and_then_add_node_to_the_types_field_in_your_tsconfig:t(2591,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_node_Try_npm_i_save_dev_types_Slashno_2591","Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add `node` to the types field in your tsconfig."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slashjquery_and_then_add_jquery_to_the_types_field_in_your_tsconfig:t(2592,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_jQuery_Try_npm_i_save_dev_types_Slash_2592","Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add `jquery` to the types field in your tsconfig."),Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_types_Slashjest_or_npm_i_save_dev_types_Slashmocha_and_then_add_jest_or_mocha_to_the_types_field_in_your_tsconfig:t(2593,e.DiagnosticCategory.Error,"Cannot_find_name_0_Do_you_need_to_install_type_definitions_for_a_test_runner_Try_npm_i_save_dev_type_2593","Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig."),This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag:t(2594,e.DiagnosticCategory.Error,"This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the__2594","This module is declared with using 'export =', and can only be used with a default import when using the '{0}' flag."),_0_can_only_be_imported_by_using_a_default_import:t(2595,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_using_a_default_import_2595","'{0}' can only be imported by using a default import."),_0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import:t(2596,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import_2596","'{0}' can only be imported by turning on the 'esModuleInterop' flag and using a default import."),_0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import:t(2597,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import_2597","'{0}' can only be imported by using a 'require' call or by using a default import."),_0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import:t(2598,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using__2598","'{0}' can only be imported by using a 'require' call or by turning on the 'esModuleInterop' flag and using a default import."),JSX_element_attributes_type_0_may_not_be_a_union_type:t(2600,e.DiagnosticCategory.Error,"JSX_element_attributes_type_0_may_not_be_a_union_type_2600","JSX element attributes type '{0}' may not be a union type."),The_return_type_of_a_JSX_element_constructor_must_return_an_object_type:t(2601,e.DiagnosticCategory.Error,"The_return_type_of_a_JSX_element_constructor_must_return_an_object_type_2601","The return type of a JSX element constructor must return an object type."),JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist:t(2602,e.DiagnosticCategory.Error,"JSX_element_implicitly_has_type_any_because_the_global_type_JSX_Element_does_not_exist_2602","JSX element implicitly has type 'any' because the global type 'JSX.Element' does not exist."),Property_0_in_type_1_is_not_assignable_to_type_2:t(2603,e.DiagnosticCategory.Error,"Property_0_in_type_1_is_not_assignable_to_type_2_2603","Property '{0}' in type '{1}' is not assignable to type '{2}'."),JSX_element_type_0_does_not_have_any_construct_or_call_signatures:t(2604,e.DiagnosticCategory.Error,"JSX_element_type_0_does_not_have_any_construct_or_call_signatures_2604","JSX element type '{0}' does not have any construct or call signatures."),JSX_element_type_0_is_not_a_constructor_function_for_JSX_elements:t(2605,e.DiagnosticCategory.Error,"JSX_element_type_0_is_not_a_constructor_function_for_JSX_elements_2605","JSX element type '{0}' is not a constructor function for JSX elements."),Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property:t(2606,e.DiagnosticCategory.Error,"Property_0_of_JSX_spread_attribute_is_not_assignable_to_target_property_2606","Property '{0}' of JSX spread attribute is not assignable to target property."),JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property:t(2607,e.DiagnosticCategory.Error,"JSX_element_class_does_not_support_attributes_because_it_does_not_have_a_0_property_2607","JSX element class does not support attributes because it does not have a '{0}' property."),The_global_type_JSX_0_may_not_have_more_than_one_property:t(2608,e.DiagnosticCategory.Error,"The_global_type_JSX_0_may_not_have_more_than_one_property_2608","The global type 'JSX.{0}' may not have more than one property."),JSX_spread_child_must_be_an_array_type:t(2609,e.DiagnosticCategory.Error,"JSX_spread_child_must_be_an_array_type_2609","JSX spread child must be an array type."),_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property:t(2610,e.DiagnosticCategory.Error,"_0_is_defined_as_an_accessor_in_class_1_but_is_overridden_here_in_2_as_an_instance_property_2610","'{0}' is defined as an accessor in class '{1}', but is overridden here in '{2}' as an instance property."),_0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor:t(2611,e.DiagnosticCategory.Error,"_0_is_defined_as_a_property_in_class_1_but_is_overridden_here_in_2_as_an_accessor_2611","'{0}' is defined as a property in class '{1}', but is overridden here in '{2}' as an accessor."),Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration:t(2612,e.DiagnosticCategory.Error,"Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_2612","Property '{0}' will overwrite the base property in '{1}'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration."),Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead:t(2613,e.DiagnosticCategory.Error,"Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead_2613","Module '{0}' has no default export. Did you mean to use 'import { {1} } from {0}' instead?"),Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead:t(2614,e.DiagnosticCategory.Error,"Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead_2614","Module '{0}' has no exported member '{1}'. Did you mean to use 'import {1} from {0}' instead?"),Type_of_property_0_circularly_references_itself_in_mapped_type_1:t(2615,e.DiagnosticCategory.Error,"Type_of_property_0_circularly_references_itself_in_mapped_type_1_2615","Type of property '{0}' circularly references itself in mapped type '{1}'."),_0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import:t(2616,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import_2616","'{0}' can only be imported by using 'import {1} = require({2})' or a default import."),_0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import:t(2617,e.DiagnosticCategory.Error,"_0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_us_2617","'{0}' can only be imported by using 'import {1} = require({2})' or by turning on the 'esModuleInterop' flag and using a default import."),Source_has_0_element_s_but_target_requires_1:t(2618,e.DiagnosticCategory.Error,"Source_has_0_element_s_but_target_requires_1_2618","Source has {0} element(s) but target requires {1}."),Source_has_0_element_s_but_target_allows_only_1:t(2619,e.DiagnosticCategory.Error,"Source_has_0_element_s_but_target_allows_only_1_2619","Source has {0} element(s) but target allows only {1}."),Target_requires_0_element_s_but_source_may_have_fewer:t(2620,e.DiagnosticCategory.Error,"Target_requires_0_element_s_but_source_may_have_fewer_2620","Target requires {0} element(s) but source may have fewer."),Target_allows_only_0_element_s_but_source_may_have_more:t(2621,e.DiagnosticCategory.Error,"Target_allows_only_0_element_s_but_source_may_have_more_2621","Target allows only {0} element(s) but source may have more."),Source_provides_no_match_for_required_element_at_position_0_in_target:t(2623,e.DiagnosticCategory.Error,"Source_provides_no_match_for_required_element_at_position_0_in_target_2623","Source provides no match for required element at position {0} in target."),Source_provides_no_match_for_variadic_element_at_position_0_in_target:t(2624,e.DiagnosticCategory.Error,"Source_provides_no_match_for_variadic_element_at_position_0_in_target_2624","Source provides no match for variadic element at position {0} in target."),Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target:t(2625,e.DiagnosticCategory.Error,"Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target_2625","Variadic element at position {0} in source does not match element at position {1} in target."),Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target:t(2626,e.DiagnosticCategory.Error,"Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target_2626","Type at position {0} in source is not compatible with type at position {1} in target."),Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target:t(2627,e.DiagnosticCategory.Error,"Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target_2627","Type at positions {0} through {1} in source is not compatible with type at position {2} in target."),Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity:t(2649,e.DiagnosticCategory.Error,"Cannot_augment_module_0_with_value_exports_because_it_resolves_to_a_non_module_entity_2649","Cannot augment module '{0}' with value exports because it resolves to a non-module entity."),A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_members_defined_in_other_enums:t(2651,e.DiagnosticCategory.Error,"A_member_initializer_in_a_enum_declaration_cannot_reference_members_declared_after_it_including_memb_2651","A member initializer in a enum declaration cannot reference members declared after it, including members defined in other enums."),Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_default_0_declaration_instead:t(2652,e.DiagnosticCategory.Error,"Merged_declaration_0_cannot_include_a_default_export_declaration_Consider_adding_a_separate_export_d_2652","Merged declaration '{0}' cannot include a default export declaration. Consider adding a separate 'export default {0}' declaration instead."),Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1:t(2653,e.DiagnosticCategory.Error,"Non_abstract_class_expression_does_not_implement_inherited_abstract_member_0_from_class_1_2653","Non-abstract class expression does not implement inherited abstract member '{0}' from class '{1}'."),Exported_external_package_typings_file_cannot_contain_tripleslash_references_Please_contact_the_package_author_to_update_the_package_definition:t(2654,e.DiagnosticCategory.Error,"Exported_external_package_typings_file_cannot_contain_tripleslash_references_Please_contact_the_pack_2654","Exported external package typings file cannot contain tripleslash references. Please contact the package author to update the package definition."),Exported_external_package_typings_file_0_is_not_a_module_Please_contact_the_package_author_to_update_the_package_definition:t(2656,e.DiagnosticCategory.Error,"Exported_external_package_typings_file_0_is_not_a_module_Please_contact_the_package_author_to_update_2656","Exported external package typings file '{0}' is not a module. Please contact the package author to update the package definition."),JSX_expressions_must_have_one_parent_element:t(2657,e.DiagnosticCategory.Error,"JSX_expressions_must_have_one_parent_element_2657","JSX expressions must have one parent element."),Type_0_provides_no_match_for_the_signature_1:t(2658,e.DiagnosticCategory.Error,"Type_0_provides_no_match_for_the_signature_1_2658","Type '{0}' provides no match for the signature '{1}'."),super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher:t(2659,e.DiagnosticCategory.Error,"super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_highe_2659","'super' is only allowed in members of object literal expressions when option 'target' is 'ES2015' or higher."),super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions:t(2660,e.DiagnosticCategory.Error,"super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions_2660","'super' can only be referenced in members of derived classes or object literal expressions."),Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module:t(2661,e.DiagnosticCategory.Error,"Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module_2661","Cannot export '{0}'. Only local declarations can be exported from a module."),Cannot_find_name_0_Did_you_mean_the_static_member_1_0:t(2662,e.DiagnosticCategory.Error,"Cannot_find_name_0_Did_you_mean_the_static_member_1_0_2662","Cannot find name '{0}'. Did you mean the static member '{1}.{0}'?"),Cannot_find_name_0_Did_you_mean_the_instance_member_this_0:t(2663,e.DiagnosticCategory.Error,"Cannot_find_name_0_Did_you_mean_the_instance_member_this_0_2663","Cannot find name '{0}'. Did you mean the instance member 'this.{0}'?"),Invalid_module_name_in_augmentation_module_0_cannot_be_found:t(2664,e.DiagnosticCategory.Error,"Invalid_module_name_in_augmentation_module_0_cannot_be_found_2664","Invalid module name in augmentation, module '{0}' cannot be found."),Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented:t(2665,e.DiagnosticCategory.Error,"Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augm_2665","Invalid module name in augmentation. Module '{0}' resolves to an untyped module at '{1}', which cannot be augmented."),Exports_and_export_assignments_are_not_permitted_in_module_augmentations:t(2666,e.DiagnosticCategory.Error,"Exports_and_export_assignments_are_not_permitted_in_module_augmentations_2666","Exports and export assignments are not permitted in module augmentations."),Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_module:t(2667,e.DiagnosticCategory.Error,"Imports_are_not_permitted_in_module_augmentations_Consider_moving_them_to_the_enclosing_external_mod_2667","Imports are not permitted in module augmentations. Consider moving them to the enclosing external module."),export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always_visible:t(2668,e.DiagnosticCategory.Error,"export_modifier_cannot_be_applied_to_ambient_modules_and_module_augmentations_since_they_are_always__2668","'export' modifier cannot be applied to ambient modules and module augmentations since they are always visible."),Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_declarations:t(2669,e.DiagnosticCategory.Error,"Augmentations_for_the_global_scope_can_only_be_directly_nested_in_external_modules_or_ambient_module_2669","Augmentations for the global scope can only be directly nested in external modules or ambient module declarations."),Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambient_context:t(2670,e.DiagnosticCategory.Error,"Augmentations_for_the_global_scope_should_have_declare_modifier_unless_they_appear_in_already_ambien_2670","Augmentations for the global scope should have 'declare' modifier unless they appear in already ambient context."),Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity:t(2671,e.DiagnosticCategory.Error,"Cannot_augment_module_0_because_it_resolves_to_a_non_module_entity_2671","Cannot augment module '{0}' because it resolves to a non-module entity."),Cannot_assign_a_0_constructor_type_to_a_1_constructor_type:t(2672,e.DiagnosticCategory.Error,"Cannot_assign_a_0_constructor_type_to_a_1_constructor_type_2672","Cannot assign a '{0}' constructor type to a '{1}' constructor type."),Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration:t(2673,e.DiagnosticCategory.Error,"Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration_2673","Constructor of class '{0}' is private and only accessible within the class declaration."),Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration:t(2674,e.DiagnosticCategory.Error,"Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration_2674","Constructor of class '{0}' is protected and only accessible within the class declaration."),Cannot_extend_a_class_0_Class_constructor_is_marked_as_private:t(2675,e.DiagnosticCategory.Error,"Cannot_extend_a_class_0_Class_constructor_is_marked_as_private_2675","Cannot extend a class '{0}'. Class constructor is marked as private."),Accessors_must_both_be_abstract_or_non_abstract:t(2676,e.DiagnosticCategory.Error,"Accessors_must_both_be_abstract_or_non_abstract_2676","Accessors must both be abstract or non-abstract."),A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type:t(2677,e.DiagnosticCategory.Error,"A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type_2677","A type predicate's type must be assignable to its parameter's type."),Type_0_is_not_comparable_to_type_1:t(2678,e.DiagnosticCategory.Error,"Type_0_is_not_comparable_to_type_1_2678","Type '{0}' is not comparable to type '{1}'."),A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void:t(2679,e.DiagnosticCategory.Error,"A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void_2679","A function that is called with the 'new' keyword cannot have a 'this' type that is 'void'."),A_0_parameter_must_be_the_first_parameter:t(2680,e.DiagnosticCategory.Error,"A_0_parameter_must_be_the_first_parameter_2680","A '{0}' parameter must be the first parameter."),A_constructor_cannot_have_a_this_parameter:t(2681,e.DiagnosticCategory.Error,"A_constructor_cannot_have_a_this_parameter_2681","A constructor cannot have a 'this' parameter."),get_and_set_accessor_must_have_the_same_this_type:t(2682,e.DiagnosticCategory.Error,"get_and_set_accessor_must_have_the_same_this_type_2682","'get' and 'set' accessor must have the same 'this' type."),this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation:t(2683,e.DiagnosticCategory.Error,"this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_2683","'this' implicitly has type 'any' because it does not have a type annotation."),The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1:t(2684,e.DiagnosticCategory.Error,"The_this_context_of_type_0_is_not_assignable_to_method_s_this_of_type_1_2684","The 'this' context of type '{0}' is not assignable to method's 'this' of type '{1}'."),The_this_types_of_each_signature_are_incompatible:t(2685,e.DiagnosticCategory.Error,"The_this_types_of_each_signature_are_incompatible_2685","The 'this' types of each signature are incompatible."),_0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead:t(2686,e.DiagnosticCategory.Error,"_0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead_2686","'{0}' refers to a UMD global, but the current file is a module. Consider adding an import instead."),All_declarations_of_0_must_have_identical_modifiers:t(2687,e.DiagnosticCategory.Error,"All_declarations_of_0_must_have_identical_modifiers_2687","All declarations of '{0}' must have identical modifiers."),Cannot_find_type_definition_file_for_0:t(2688,e.DiagnosticCategory.Error,"Cannot_find_type_definition_file_for_0_2688","Cannot find type definition file for '{0}'."),Cannot_extend_an_interface_0_Did_you_mean_implements:t(2689,e.DiagnosticCategory.Error,"Cannot_extend_an_interface_0_Did_you_mean_implements_2689","Cannot extend an interface '{0}'. Did you mean 'implements'?"),_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0:t(2690,e.DiagnosticCategory.Error,"_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0_2690","'{0}' only refers to a type, but is being used as a value here. Did you mean to use '{1} in {0}'?"),An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead:t(2691,e.DiagnosticCategory.Error,"An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead_2691","An import path cannot end with a '{0}' extension. Consider importing '{1}' instead."),_0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible:t(2692,e.DiagnosticCategory.Error,"_0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible_2692","'{0}' is a primitive, but '{1}' is a wrapper object. Prefer using '{0}' when possible."),_0_only_refers_to_a_type_but_is_being_used_as_a_value_here:t(2693,e.DiagnosticCategory.Error,"_0_only_refers_to_a_type_but_is_being_used_as_a_value_here_2693","'{0}' only refers to a type, but is being used as a value here."),Namespace_0_has_no_exported_member_1:t(2694,e.DiagnosticCategory.Error,"Namespace_0_has_no_exported_member_1_2694","Namespace '{0}' has no exported member '{1}'."),Left_side_of_comma_operator_is_unused_and_has_no_side_effects:t(2695,e.DiagnosticCategory.Error,"Left_side_of_comma_operator_is_unused_and_has_no_side_effects_2695","Left side of comma operator is unused and has no side effects.",!0),The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead:t(2696,e.DiagnosticCategory.Error,"The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead_2696","The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?"),An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option:t(2697,e.DiagnosticCategory.Error,"An_async_function_or_method_must_return_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_in_2697","An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your `--lib` option."),Spread_types_may_only_be_created_from_object_types:t(2698,e.DiagnosticCategory.Error,"Spread_types_may_only_be_created_from_object_types_2698","Spread types may only be created from object types."),Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1:t(2699,e.DiagnosticCategory.Error,"Static_property_0_conflicts_with_built_in_property_Function_0_of_constructor_function_1_2699","Static property '{0}' conflicts with built-in property 'Function.{0}' of constructor function '{1}'."),Rest_types_may_only_be_created_from_object_types:t(2700,e.DiagnosticCategory.Error,"Rest_types_may_only_be_created_from_object_types_2700","Rest types may only be created from object types."),The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access:t(2701,e.DiagnosticCategory.Error,"The_target_of_an_object_rest_assignment_must_be_a_variable_or_a_property_access_2701","The target of an object rest assignment must be a variable or a property access."),_0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here:t(2702,e.DiagnosticCategory.Error,"_0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here_2702","'{0}' only refers to a type, but is being used as a namespace here."),The_operand_of_a_delete_operator_must_be_a_property_reference:t(2703,e.DiagnosticCategory.Error,"The_operand_of_a_delete_operator_must_be_a_property_reference_2703","The operand of a 'delete' operator must be a property reference."),The_operand_of_a_delete_operator_cannot_be_a_read_only_property:t(2704,e.DiagnosticCategory.Error,"The_operand_of_a_delete_operator_cannot_be_a_read_only_property_2704","The operand of a 'delete' operator cannot be a read-only property."),An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option:t(2705,e.DiagnosticCategory.Error,"An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_de_2705","An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your `--lib` option."),Required_type_parameters_may_not_follow_optional_type_parameters:t(2706,e.DiagnosticCategory.Error,"Required_type_parameters_may_not_follow_optional_type_parameters_2706","Required type parameters may not follow optional type parameters."),Generic_type_0_requires_between_1_and_2_type_arguments:t(2707,e.DiagnosticCategory.Error,"Generic_type_0_requires_between_1_and_2_type_arguments_2707","Generic type '{0}' requires between {1} and {2} type arguments."),Cannot_use_namespace_0_as_a_value:t(2708,e.DiagnosticCategory.Error,"Cannot_use_namespace_0_as_a_value_2708","Cannot use namespace '{0}' as a value."),Cannot_use_namespace_0_as_a_type:t(2709,e.DiagnosticCategory.Error,"Cannot_use_namespace_0_as_a_type_2709","Cannot use namespace '{0}' as a type."),_0_are_specified_twice_The_attribute_named_0_will_be_overwritten:t(2710,e.DiagnosticCategory.Error,"_0_are_specified_twice_The_attribute_named_0_will_be_overwritten_2710","'{0}' are specified twice. The attribute named '{0}' will be overwritten."),A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES2015_in_your_lib_option:t(2711,e.DiagnosticCategory.Error,"A_dynamic_import_call_returns_a_Promise_Make_sure_you_have_a_declaration_for_Promise_or_include_ES20_2711","A dynamic import call returns a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your `--lib` option."),A_dynamic_import_call_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option:t(2712,e.DiagnosticCategory.Error,"A_dynamic_import_call_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declarat_2712","A dynamic import call in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your `--lib` option."),Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1:t(2713,e.DiagnosticCategory.Error,"Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_p_2713","Cannot access '{0}.{1}' because '{0}' is a type, but not a namespace. Did you mean to retrieve the type of the property '{1}' in '{0}' with '{0}[\"{1}\"]'?"),The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context:t(2714,e.DiagnosticCategory.Error,"The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context_2714","The expression of an export assignment must be an identifier or qualified name in an ambient context."),Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor:t(2715,e.DiagnosticCategory.Error,"Abstract_property_0_in_class_1_cannot_be_accessed_in_the_constructor_2715","Abstract property '{0}' in class '{1}' cannot be accessed in the constructor."),Type_parameter_0_has_a_circular_default:t(2716,e.DiagnosticCategory.Error,"Type_parameter_0_has_a_circular_default_2716","Type parameter '{0}' has a circular default."),Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2:t(2717,e.DiagnosticCategory.Error,"Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_t_2717","Subsequent property declarations must have the same type. Property '{0}' must be of type '{1}', but here has type '{2}'."),Duplicate_property_0:t(2718,e.DiagnosticCategory.Error,"Duplicate_property_0_2718","Duplicate property '{0}'."),Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated:t(2719,e.DiagnosticCategory.Error,"Type_0_is_not_assignable_to_type_1_Two_different_types_with_this_name_exist_but_they_are_unrelated_2719","Type '{0}' is not assignable to type '{1}'. Two different types with this name exist, but they are unrelated."),Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclass:t(2720,e.DiagnosticCategory.Error,"Class_0_incorrectly_implements_class_1_Did_you_mean_to_extend_1_and_inherit_its_members_as_a_subclas_2720","Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?"),Cannot_invoke_an_object_which_is_possibly_null:t(2721,e.DiagnosticCategory.Error,"Cannot_invoke_an_object_which_is_possibly_null_2721","Cannot invoke an object which is possibly 'null'."),Cannot_invoke_an_object_which_is_possibly_undefined:t(2722,e.DiagnosticCategory.Error,"Cannot_invoke_an_object_which_is_possibly_undefined_2722","Cannot invoke an object which is possibly 'undefined'."),Cannot_invoke_an_object_which_is_possibly_null_or_undefined:t(2723,e.DiagnosticCategory.Error,"Cannot_invoke_an_object_which_is_possibly_null_or_undefined_2723","Cannot invoke an object which is possibly 'null' or 'undefined'."),_0_has_no_exported_member_named_1_Did_you_mean_2:t(2724,e.DiagnosticCategory.Error,"_0_has_no_exported_member_named_1_Did_you_mean_2_2724","'{0}' has no exported member named '{1}'. Did you mean '{2}'?"),Class_name_cannot_be_Object_when_targeting_ES5_with_module_0:t(2725,e.DiagnosticCategory.Error,"Class_name_cannot_be_Object_when_targeting_ES5_with_module_0_2725","Class name cannot be 'Object' when targeting ES5 with module {0}."),Cannot_find_lib_definition_for_0:t(2726,e.DiagnosticCategory.Error,"Cannot_find_lib_definition_for_0_2726","Cannot find lib definition for '{0}'."),Cannot_find_lib_definition_for_0_Did_you_mean_1:t(2727,e.DiagnosticCategory.Error,"Cannot_find_lib_definition_for_0_Did_you_mean_1_2727","Cannot find lib definition for '{0}'. Did you mean '{1}'?"),_0_is_declared_here:t(2728,e.DiagnosticCategory.Message,"_0_is_declared_here_2728","'{0}' is declared here."),Property_0_is_used_before_its_initialization:t(2729,e.DiagnosticCategory.Error,"Property_0_is_used_before_its_initialization_2729","Property '{0}' is used before its initialization."),An_arrow_function_cannot_have_a_this_parameter:t(2730,e.DiagnosticCategory.Error,"An_arrow_function_cannot_have_a_this_parameter_2730","An arrow function cannot have a 'this' parameter."),Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_in_String:t(2731,e.DiagnosticCategory.Error,"Implicit_conversion_of_a_symbol_to_a_string_will_fail_at_runtime_Consider_wrapping_this_expression_i_2731","Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'."),Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension:t(2732,e.DiagnosticCategory.Error,"Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension_2732","Cannot find module '{0}'. Consider using '--resolveJsonModule' to import module with '.json' extension."),Property_0_was_also_declared_here:t(2733,e.DiagnosticCategory.Error,"Property_0_was_also_declared_here_2733","Property '{0}' was also declared here."),Are_you_missing_a_semicolon:t(2734,e.DiagnosticCategory.Error,"Are_you_missing_a_semicolon_2734","Are you missing a semicolon?"),Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1:t(2735,e.DiagnosticCategory.Error,"Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1_2735","Did you mean for '{0}' to be constrained to type 'new (...args: any[]) => {1}'?"),Operator_0_cannot_be_applied_to_type_1:t(2736,e.DiagnosticCategory.Error,"Operator_0_cannot_be_applied_to_type_1_2736","Operator '{0}' cannot be applied to type '{1}'."),BigInt_literals_are_not_available_when_targeting_lower_than_ES2020:t(2737,e.DiagnosticCategory.Error,"BigInt_literals_are_not_available_when_targeting_lower_than_ES2020_2737","BigInt literals are not available when targeting lower than ES2020."),An_outer_value_of_this_is_shadowed_by_this_container:t(2738,e.DiagnosticCategory.Message,"An_outer_value_of_this_is_shadowed_by_this_container_2738","An outer value of 'this' is shadowed by this container."),Type_0_is_missing_the_following_properties_from_type_1_Colon_2:t(2739,e.DiagnosticCategory.Error,"Type_0_is_missing_the_following_properties_from_type_1_Colon_2_2739","Type '{0}' is missing the following properties from type '{1}': {2}"),Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more:t(2740,e.DiagnosticCategory.Error,"Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more_2740","Type '{0}' is missing the following properties from type '{1}': {2}, and {3} more."),Property_0_is_missing_in_type_1_but_required_in_type_2:t(2741,e.DiagnosticCategory.Error,"Property_0_is_missing_in_type_1_but_required_in_type_2_2741","Property '{0}' is missing in type '{1}' but required in type '{2}'."),The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary:t(2742,e.DiagnosticCategory.Error,"The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_a_2742","The inferred type of '{0}' cannot be named without a reference to '{1}'. This is likely not portable. A type annotation is necessary."),No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments:t(2743,e.DiagnosticCategory.Error,"No_overload_expects_0_type_arguments_but_overloads_do_exist_that_expect_either_1_or_2_type_arguments_2743","No overload expects {0} type arguments, but overloads do exist that expect either {1} or {2} type arguments."),Type_parameter_defaults_can_only_reference_previously_declared_type_parameters:t(2744,e.DiagnosticCategory.Error,"Type_parameter_defaults_can_only_reference_previously_declared_type_parameters_2744","Type parameter defaults can only reference previously declared type parameters."),This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_provided:t(2745,e.DiagnosticCategory.Error,"This_JSX_tag_s_0_prop_expects_type_1_which_requires_multiple_children_but_only_a_single_child_was_pr_2745","This JSX tag's '{0}' prop expects type '{1}' which requires multiple children, but only a single child was provided."),This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided:t(2746,e.DiagnosticCategory.Error,"This_JSX_tag_s_0_prop_expects_a_single_child_of_type_1_but_multiple_children_were_provided_2746","This JSX tag's '{0}' prop expects a single child of type '{1}', but multiple children were provided."),_0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_type_of_1_is_2:t(2747,e.DiagnosticCategory.Error,"_0_components_don_t_accept_text_as_child_elements_Text_in_JSX_has_the_type_string_but_the_expected_t_2747","'{0}' components don't accept text as child elements. Text in JSX has the type 'string', but the expected type of '{1}' is '{2}'."),Cannot_access_ambient_const_enums_when_the_isolatedModules_flag_is_provided:t(2748,e.DiagnosticCategory.Error,"Cannot_access_ambient_const_enums_when_the_isolatedModules_flag_is_provided_2748","Cannot access ambient const enums when the '--isolatedModules' flag is provided."),_0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0:t(2749,e.DiagnosticCategory.Error,"_0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0_2749","'{0}' refers to a value, but is being used as a type here. Did you mean 'typeof {0}'?"),The_implementation_signature_is_declared_here:t(2750,e.DiagnosticCategory.Error,"The_implementation_signature_is_declared_here_2750","The implementation signature is declared here."),Circularity_originates_in_type_at_this_location:t(2751,e.DiagnosticCategory.Error,"Circularity_originates_in_type_at_this_location_2751","Circularity originates in type at this location."),The_first_export_default_is_here:t(2752,e.DiagnosticCategory.Error,"The_first_export_default_is_here_2752","The first export default is here."),Another_export_default_is_here:t(2753,e.DiagnosticCategory.Error,"Another_export_default_is_here_2753","Another export default is here."),super_may_not_use_type_arguments:t(2754,e.DiagnosticCategory.Error,"super_may_not_use_type_arguments_2754","'super' may not use type arguments."),No_constituent_of_type_0_is_callable:t(2755,e.DiagnosticCategory.Error,"No_constituent_of_type_0_is_callable_2755","No constituent of type '{0}' is callable."),Not_all_constituents_of_type_0_are_callable:t(2756,e.DiagnosticCategory.Error,"Not_all_constituents_of_type_0_are_callable_2756","Not all constituents of type '{0}' are callable."),Type_0_has_no_call_signatures:t(2757,e.DiagnosticCategory.Error,"Type_0_has_no_call_signatures_2757","Type '{0}' has no call signatures."),Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_other:t(2758,e.DiagnosticCategory.Error,"Each_member_of_the_union_type_0_has_signatures_but_none_of_those_signatures_are_compatible_with_each_2758","Each member of the union type '{0}' has signatures, but none of those signatures are compatible with each other."),No_constituent_of_type_0_is_constructable:t(2759,e.DiagnosticCategory.Error,"No_constituent_of_type_0_is_constructable_2759","No constituent of type '{0}' is constructable."),Not_all_constituents_of_type_0_are_constructable:t(2760,e.DiagnosticCategory.Error,"Not_all_constituents_of_type_0_are_constructable_2760","Not all constituents of type '{0}' are constructable."),Type_0_has_no_construct_signatures:t(2761,e.DiagnosticCategory.Error,"Type_0_has_no_construct_signatures_2761","Type '{0}' has no construct signatures."),Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_with_each_other:t(2762,e.DiagnosticCategory.Error,"Each_member_of_the_union_type_0_has_construct_signatures_but_none_of_those_signatures_are_compatible_2762","Each member of the union type '{0}' has construct signatures, but none of those signatures are compatible with each other."),Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0:t(2763,e.DiagnosticCategory.Error,"Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_s_2763","Cannot iterate value because the 'next' method of its iterator expects type '{1}', but for-of will always send '{0}'."),Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0:t(2764,e.DiagnosticCategory.Error,"Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_al_2764","Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array spread will always send '{0}'."),Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0:t(2765,e.DiagnosticCategory.Error,"Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring__2765","Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array destructuring will always send '{0}'."),Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0:t(2766,e.DiagnosticCategory.Error,"Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_co_2766","Cannot delegate iteration to value because the 'next' method of its iterator expects type '{1}', but the containing generator will always send '{0}'."),The_0_property_of_an_iterator_must_be_a_method:t(2767,e.DiagnosticCategory.Error,"The_0_property_of_an_iterator_must_be_a_method_2767","The '{0}' property of an iterator must be a method."),The_0_property_of_an_async_iterator_must_be_a_method:t(2768,e.DiagnosticCategory.Error,"The_0_property_of_an_async_iterator_must_be_a_method_2768","The '{0}' property of an async iterator must be a method."),No_overload_matches_this_call:t(2769,e.DiagnosticCategory.Error,"No_overload_matches_this_call_2769","No overload matches this call."),The_last_overload_gave_the_following_error:t(2770,e.DiagnosticCategory.Error,"The_last_overload_gave_the_following_error_2770","The last overload gave the following error."),The_last_overload_is_declared_here:t(2771,e.DiagnosticCategory.Error,"The_last_overload_is_declared_here_2771","The last overload is declared here."),Overload_0_of_1_2_gave_the_following_error:t(2772,e.DiagnosticCategory.Error,"Overload_0_of_1_2_gave_the_following_error_2772","Overload {0} of {1}, '{2}', gave the following error."),Did_you_forget_to_use_await:t(2773,e.DiagnosticCategory.Error,"Did_you_forget_to_use_await_2773","Did you forget to use 'await'?"),This_condition_will_always_return_true_since_the_function_is_always_defined_Did_you_mean_to_call_it_instead:t(2774,e.DiagnosticCategory.Error,"This_condition_will_always_return_true_since_the_function_is_always_defined_Did_you_mean_to_call_it__2774","This condition will always return true since the function is always defined. Did you mean to call it instead?"),Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation:t(2775,e.DiagnosticCategory.Error,"Assertions_require_every_name_in_the_call_target_to_be_declared_with_an_explicit_type_annotation_2775","Assertions require every name in the call target to be declared with an explicit type annotation."),Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name:t(2776,e.DiagnosticCategory.Error,"Assertions_require_the_call_target_to_be_an_identifier_or_qualified_name_2776","Assertions require the call target to be an identifier or qualified name."),The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access:t(2777,e.DiagnosticCategory.Error,"The_operand_of_an_increment_or_decrement_operator_may_not_be_an_optional_property_access_2777","The operand of an increment or decrement operator may not be an optional property access."),The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access:t(2778,e.DiagnosticCategory.Error,"The_target_of_an_object_rest_assignment_may_not_be_an_optional_property_access_2778","The target of an object rest assignment may not be an optional property access."),The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access:t(2779,e.DiagnosticCategory.Error,"The_left_hand_side_of_an_assignment_expression_may_not_be_an_optional_property_access_2779","The left-hand side of an assignment expression may not be an optional property access."),The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access:t(2780,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_in_statement_may_not_be_an_optional_property_access_2780","The left-hand side of a 'for...in' statement may not be an optional property access."),The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access:t(2781,e.DiagnosticCategory.Error,"The_left_hand_side_of_a_for_of_statement_may_not_be_an_optional_property_access_2781","The left-hand side of a 'for...of' statement may not be an optional property access."),_0_needs_an_explicit_type_annotation:t(2782,e.DiagnosticCategory.Message,"_0_needs_an_explicit_type_annotation_2782","'{0}' needs an explicit type annotation."),_0_is_specified_more_than_once_so_this_usage_will_be_overwritten:t(2783,e.DiagnosticCategory.Error,"_0_is_specified_more_than_once_so_this_usage_will_be_overwritten_2783","'{0}' is specified more than once, so this usage will be overwritten."),get_and_set_accessors_cannot_declare_this_parameters:t(2784,e.DiagnosticCategory.Error,"get_and_set_accessors_cannot_declare_this_parameters_2784","'get' and 'set' accessors cannot declare 'this' parameters."),This_spread_always_overwrites_this_property:t(2785,e.DiagnosticCategory.Error,"This_spread_always_overwrites_this_property_2785","This spread always overwrites this property."),_0_cannot_be_used_as_a_JSX_component:t(2786,e.DiagnosticCategory.Error,"_0_cannot_be_used_as_a_JSX_component_2786","'{0}' cannot be used as a JSX component."),Its_return_type_0_is_not_a_valid_JSX_element:t(2787,e.DiagnosticCategory.Error,"Its_return_type_0_is_not_a_valid_JSX_element_2787","Its return type '{0}' is not a valid JSX element."),Its_instance_type_0_is_not_a_valid_JSX_element:t(2788,e.DiagnosticCategory.Error,"Its_instance_type_0_is_not_a_valid_JSX_element_2788","Its instance type '{0}' is not a valid JSX element."),Its_element_type_0_is_not_a_valid_JSX_element:t(2789,e.DiagnosticCategory.Error,"Its_element_type_0_is_not_a_valid_JSX_element_2789","Its element type '{0}' is not a valid JSX element."),The_operand_of_a_delete_operator_must_be_optional:t(2790,e.DiagnosticCategory.Error,"The_operand_of_a_delete_operator_must_be_optional_2790","The operand of a 'delete' operator must be optional."),Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later:t(2791,e.DiagnosticCategory.Error,"Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_lat_2791","Exponentiation cannot be performed on 'bigint' values unless the 'target' option is set to 'es2016' or later."),Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option:t(2792,e.DiagnosticCategory.Error,"Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_th_2792","Cannot find module '{0}'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?"),The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible:t(2793,e.DiagnosticCategory.Error,"The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_2793","The call would have succeeded against this implementation, but implementation signatures of overloads are not externally visible."),Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise:t(2794,e.DiagnosticCategory.Error,"Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise_2794","Expected {0} arguments, but got {1}. Did you forget to include 'void' in your type argument to 'Promise'?"),The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types:t(2795,e.DiagnosticCategory.Error,"The_intrinsic_keyword_can_only_be_used_to_declare_compiler_provided_intrinsic_types_2795","The 'intrinsic' keyword can only be used to declare compiler provided intrinsic types."),It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tagged_template_expression_which_cannot_be_invoked:t(2796,e.DiagnosticCategory.Error,"It_is_likely_that_you_are_missing_a_comma_to_separate_these_two_template_expressions_They_form_a_tag_2796","It is likely that you are missing a comma to separate these two template expressions. They form a tagged template expression which cannot be invoked."),A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_be_declared_abstract:t(2797,e.DiagnosticCategory.Error,"A_mixin_class_that_extends_from_a_type_variable_containing_an_abstract_construct_signature_must_also_2797","A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'."),The_declaration_was_marked_as_deprecated_here:t(2798,e.DiagnosticCategory.Error,"The_declaration_was_marked_as_deprecated_here_2798","The declaration was marked as deprecated here."),Type_produces_a_tuple_type_that_is_too_large_to_represent:t(2799,e.DiagnosticCategory.Error,"Type_produces_a_tuple_type_that_is_too_large_to_represent_2799","Type produces a tuple type that is too large to represent."),Expression_produces_a_tuple_type_that_is_too_large_to_represent:t(2800,e.DiagnosticCategory.Error,"Expression_produces_a_tuple_type_that_is_too_large_to_represent_2800","Expression produces a tuple type that is too large to represent."),Import_declaration_0_is_using_private_name_1:t(4e3,e.DiagnosticCategory.Error,"Import_declaration_0_is_using_private_name_1_4000","Import declaration '{0}' is using private name '{1}'."),Type_parameter_0_of_exported_class_has_or_is_using_private_name_1:t(4002,e.DiagnosticCategory.Error,"Type_parameter_0_of_exported_class_has_or_is_using_private_name_1_4002","Type parameter '{0}' of exported class has or is using private name '{1}'."),Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1:t(4004,e.DiagnosticCategory.Error,"Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1_4004","Type parameter '{0}' of exported interface has or is using private name '{1}'."),Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1:t(4006,e.DiagnosticCategory.Error,"Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1_4006","Type parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'."),Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1:t(4008,e.DiagnosticCategory.Error,"Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1_4008","Type parameter '{0}' of call signature from exported interface has or is using private name '{1}'."),Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1:t(4010,e.DiagnosticCategory.Error,"Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1_4010","Type parameter '{0}' of public static method from exported class has or is using private name '{1}'."),Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1:t(4012,e.DiagnosticCategory.Error,"Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1_4012","Type parameter '{0}' of public method from exported class has or is using private name '{1}'."),Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1:t(4014,e.DiagnosticCategory.Error,"Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1_4014","Type parameter '{0}' of method from exported interface has or is using private name '{1}'."),Type_parameter_0_of_exported_function_has_or_is_using_private_name_1:t(4016,e.DiagnosticCategory.Error,"Type_parameter_0_of_exported_function_has_or_is_using_private_name_1_4016","Type parameter '{0}' of exported function has or is using private name '{1}'."),Implements_clause_of_exported_class_0_has_or_is_using_private_name_1:t(4019,e.DiagnosticCategory.Error,"Implements_clause_of_exported_class_0_has_or_is_using_private_name_1_4019","Implements clause of exported class '{0}' has or is using private name '{1}'."),extends_clause_of_exported_class_0_has_or_is_using_private_name_1:t(4020,e.DiagnosticCategory.Error,"extends_clause_of_exported_class_0_has_or_is_using_private_name_1_4020","'extends' clause of exported class '{0}' has or is using private name '{1}'."),extends_clause_of_exported_class_has_or_is_using_private_name_0:t(4021,e.DiagnosticCategory.Error,"extends_clause_of_exported_class_has_or_is_using_private_name_0_4021","'extends' clause of exported class has or is using private name '{0}'."),extends_clause_of_exported_interface_0_has_or_is_using_private_name_1:t(4022,e.DiagnosticCategory.Error,"extends_clause_of_exported_interface_0_has_or_is_using_private_name_1_4022","'extends' clause of exported interface '{0}' has or is using private name '{1}'."),Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4023,e.DiagnosticCategory.Error,"Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4023","Exported variable '{0}' has or is using name '{1}' from external module {2} but cannot be named."),Exported_variable_0_has_or_is_using_name_1_from_private_module_2:t(4024,e.DiagnosticCategory.Error,"Exported_variable_0_has_or_is_using_name_1_from_private_module_2_4024","Exported variable '{0}' has or is using name '{1}' from private module '{2}'."),Exported_variable_0_has_or_is_using_private_name_1:t(4025,e.DiagnosticCategory.Error,"Exported_variable_0_has_or_is_using_private_name_1_4025","Exported variable '{0}' has or is using private name '{1}'."),Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4026,e.DiagnosticCategory.Error,"Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot__4026","Public static property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."),Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:t(4027,e.DiagnosticCategory.Error,"Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4027","Public static property '{0}' of exported class has or is using name '{1}' from private module '{2}'."),Public_static_property_0_of_exported_class_has_or_is_using_private_name_1:t(4028,e.DiagnosticCategory.Error,"Public_static_property_0_of_exported_class_has_or_is_using_private_name_1_4028","Public static property '{0}' of exported class has or is using private name '{1}'."),Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4029,e.DiagnosticCategory.Error,"Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_name_4029","Public property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."),Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:t(4030,e.DiagnosticCategory.Error,"Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4030","Public property '{0}' of exported class has or is using name '{1}' from private module '{2}'."),Public_property_0_of_exported_class_has_or_is_using_private_name_1:t(4031,e.DiagnosticCategory.Error,"Public_property_0_of_exported_class_has_or_is_using_private_name_1_4031","Public property '{0}' of exported class has or is using private name '{1}'."),Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4032,e.DiagnosticCategory.Error,"Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2_4032","Property '{0}' of exported interface has or is using name '{1}' from private module '{2}'."),Property_0_of_exported_interface_has_or_is_using_private_name_1:t(4033,e.DiagnosticCategory.Error,"Property_0_of_exported_interface_has_or_is_using_private_name_1_4033","Property '{0}' of exported interface has or is using private name '{1}'."),Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4034,e.DiagnosticCategory.Error,"Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_mod_4034","Parameter type of public static setter '{0}' from exported class has or is using name '{1}' from private module '{2}'."),Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1:t(4035,e.DiagnosticCategory.Error,"Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1_4035","Parameter type of public static setter '{0}' from exported class has or is using private name '{1}'."),Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4036,e.DiagnosticCategory.Error,"Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2_4036","Parameter type of public setter '{0}' from exported class has or is using name '{1}' from private module '{2}'."),Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1:t(4037,e.DiagnosticCategory.Error,"Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1_4037","Parameter type of public setter '{0}' from exported class has or is using private name '{1}'."),Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4038,e.DiagnosticCategory.Error,"Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_modul_4038","Return type of public static getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named."),Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4039,e.DiagnosticCategory.Error,"Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_4039","Return type of public static getter '{0}' from exported class has or is using name '{1}' from private module '{2}'."),Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1:t(4040,e.DiagnosticCategory.Error,"Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1_4040","Return type of public static getter '{0}' from exported class has or is using private name '{1}'."),Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4041,e.DiagnosticCategory.Error,"Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_4041","Return type of public getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named."),Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4042,e.DiagnosticCategory.Error,"Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2_4042","Return type of public getter '{0}' from exported class has or is using name '{1}' from private module '{2}'."),Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1:t(4043,e.DiagnosticCategory.Error,"Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1_4043","Return type of public getter '{0}' from exported class has or is using private name '{1}'."),Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:t(4044,e.DiagnosticCategory.Error,"Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_mod_4044","Return type of constructor signature from exported interface has or is using name '{0}' from private module '{1}'."),Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0:t(4045,e.DiagnosticCategory.Error,"Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0_4045","Return type of constructor signature from exported interface has or is using private name '{0}'."),Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:t(4046,e.DiagnosticCategory.Error,"Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4046","Return type of call signature from exported interface has or is using name '{0}' from private module '{1}'."),Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0:t(4047,e.DiagnosticCategory.Error,"Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0_4047","Return type of call signature from exported interface has or is using private name '{0}'."),Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:t(4048,e.DiagnosticCategory.Error,"Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4048","Return type of index signature from exported interface has or is using name '{0}' from private module '{1}'."),Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0:t(4049,e.DiagnosticCategory.Error,"Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0_4049","Return type of index signature from exported interface has or is using private name '{0}'."),Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:t(4050,e.DiagnosticCategory.Error,"Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module__4050","Return type of public static method from exported class has or is using name '{0}' from external module {1} but cannot be named."),Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1:t(4051,e.DiagnosticCategory.Error,"Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1_4051","Return type of public static method from exported class has or is using name '{0}' from private module '{1}'."),Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0:t(4052,e.DiagnosticCategory.Error,"Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0_4052","Return type of public static method from exported class has or is using private name '{0}'."),Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:t(4053,e.DiagnosticCategory.Error,"Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_c_4053","Return type of public method from exported class has or is using name '{0}' from external module {1} but cannot be named."),Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1:t(4054,e.DiagnosticCategory.Error,"Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1_4054","Return type of public method from exported class has or is using name '{0}' from private module '{1}'."),Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0:t(4055,e.DiagnosticCategory.Error,"Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0_4055","Return type of public method from exported class has or is using private name '{0}'."),Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1:t(4056,e.DiagnosticCategory.Error,"Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1_4056","Return type of method from exported interface has or is using name '{0}' from private module '{1}'."),Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0:t(4057,e.DiagnosticCategory.Error,"Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0_4057","Return type of method from exported interface has or is using private name '{0}'."),Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:t(4058,e.DiagnosticCategory.Error,"Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named_4058","Return type of exported function has or is using name '{0}' from external module {1} but cannot be named."),Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1:t(4059,e.DiagnosticCategory.Error,"Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1_4059","Return type of exported function has or is using name '{0}' from private module '{1}'."),Return_type_of_exported_function_has_or_is_using_private_name_0:t(4060,e.DiagnosticCategory.Error,"Return_type_of_exported_function_has_or_is_using_private_name_0_4060","Return type of exported function has or is using private name '{0}'."),Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4061,e.DiagnosticCategory.Error,"Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_can_4061","Parameter '{0}' of constructor from exported class has or is using name '{1}' from external module {2} but cannot be named."),Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4062,e.DiagnosticCategory.Error,"Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2_4062","Parameter '{0}' of constructor from exported class has or is using name '{1}' from private module '{2}'."),Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1:t(4063,e.DiagnosticCategory.Error,"Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1_4063","Parameter '{0}' of constructor from exported class has or is using private name '{1}'."),Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4064,e.DiagnosticCategory.Error,"Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_mod_4064","Parameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'."),Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1:t(4065,e.DiagnosticCategory.Error,"Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1_4065","Parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'."),Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4066,e.DiagnosticCategory.Error,"Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4066","Parameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'."),Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1:t(4067,e.DiagnosticCategory.Error,"Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1_4067","Parameter '{0}' of call signature from exported interface has or is using private name '{1}'."),Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4068,e.DiagnosticCategory.Error,"Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module__4068","Parameter '{0}' of public static method from exported class has or is using name '{1}' from external module {2} but cannot be named."),Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4069,e.DiagnosticCategory.Error,"Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2_4069","Parameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'."),Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1:t(4070,e.DiagnosticCategory.Error,"Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1_4070","Parameter '{0}' of public static method from exported class has or is using private name '{1}'."),Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4071,e.DiagnosticCategory.Error,"Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_c_4071","Parameter '{0}' of public method from exported class has or is using name '{1}' from external module {2} but cannot be named."),Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2:t(4072,e.DiagnosticCategory.Error,"Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2_4072","Parameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'."),Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1:t(4073,e.DiagnosticCategory.Error,"Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1_4073","Parameter '{0}' of public method from exported class has or is using private name '{1}'."),Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4074,e.DiagnosticCategory.Error,"Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4074","Parameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'."),Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1:t(4075,e.DiagnosticCategory.Error,"Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1_4075","Parameter '{0}' of method from exported interface has or is using private name '{1}'."),Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4076,e.DiagnosticCategory.Error,"Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4076","Parameter '{0}' of exported function has or is using name '{1}' from external module {2} but cannot be named."),Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2:t(4077,e.DiagnosticCategory.Error,"Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2_4077","Parameter '{0}' of exported function has or is using name '{1}' from private module '{2}'."),Parameter_0_of_exported_function_has_or_is_using_private_name_1:t(4078,e.DiagnosticCategory.Error,"Parameter_0_of_exported_function_has_or_is_using_private_name_1_4078","Parameter '{0}' of exported function has or is using private name '{1}'."),Exported_type_alias_0_has_or_is_using_private_name_1:t(4081,e.DiagnosticCategory.Error,"Exported_type_alias_0_has_or_is_using_private_name_1_4081","Exported type alias '{0}' has or is using private name '{1}'."),Default_export_of_the_module_has_or_is_using_private_name_0:t(4082,e.DiagnosticCategory.Error,"Default_export_of_the_module_has_or_is_using_private_name_0_4082","Default export of the module has or is using private name '{0}'."),Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1:t(4083,e.DiagnosticCategory.Error,"Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1_4083","Type parameter '{0}' of exported type alias has or is using private name '{1}'."),Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2:t(4084,e.DiagnosticCategory.Error,"Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2_4084","Exported type alias '{0}' has or is using private name '{1}' from module {2}."),Conflicting_definitions_for_0_found_at_1_and_2_Consider_installing_a_specific_version_of_this_library_to_resolve_the_conflict:t(4090,e.DiagnosticCategory.Error,"Conflicting_definitions_for_0_found_at_1_and_2_Consider_installing_a_specific_version_of_this_librar_4090","Conflicting definitions for '{0}' found at '{1}' and '{2}'. Consider installing a specific version of this library to resolve the conflict."),Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4091,e.DiagnosticCategory.Error,"Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2_4091","Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'."),Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1:t(4092,e.DiagnosticCategory.Error,"Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1_4092","Parameter '{0}' of index signature from exported interface has or is using private name '{1}'."),Property_0_of_exported_class_expression_may_not_be_private_or_protected:t(4094,e.DiagnosticCategory.Error,"Property_0_of_exported_class_expression_may_not_be_private_or_protected_4094","Property '{0}' of exported class expression may not be private or protected."),Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4095,e.DiagnosticCategory.Error,"Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_4095","Public static method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."),Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:t(4096,e.DiagnosticCategory.Error,"Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4096","Public static method '{0}' of exported class has or is using name '{1}' from private module '{2}'."),Public_static_method_0_of_exported_class_has_or_is_using_private_name_1:t(4097,e.DiagnosticCategory.Error,"Public_static_method_0_of_exported_class_has_or_is_using_private_name_1_4097","Public static method '{0}' of exported class has or is using private name '{1}'."),Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4098,e.DiagnosticCategory.Error,"Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4098","Public method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named."),Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:t(4099,e.DiagnosticCategory.Error,"Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2_4099","Public method '{0}' of exported class has or is using name '{1}' from private module '{2}'."),Public_method_0_of_exported_class_has_or_is_using_private_name_1:t(4100,e.DiagnosticCategory.Error,"Public_method_0_of_exported_class_has_or_is_using_private_name_1_4100","Public method '{0}' of exported class has or is using private name '{1}'."),Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2:t(4101,e.DiagnosticCategory.Error,"Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2_4101","Method '{0}' of exported interface has or is using name '{1}' from private module '{2}'."),Method_0_of_exported_interface_has_or_is_using_private_name_1:t(4102,e.DiagnosticCategory.Error,"Method_0_of_exported_interface_has_or_is_using_private_name_1_4102","Method '{0}' of exported interface has or is using private name '{1}'."),Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1:t(4103,e.DiagnosticCategory.Error,"Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1_4103","Type parameter '{0}' of exported mapped object type is using private name '{1}'."),The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1:t(4104,e.DiagnosticCategory.Error,"The_type_0_is_readonly_and_cannot_be_assigned_to_the_mutable_type_1_4104","The type '{0}' is 'readonly' and cannot be assigned to the mutable type '{1}'."),Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter:t(4105,e.DiagnosticCategory.Error,"Private_or_protected_member_0_cannot_be_accessed_on_a_type_parameter_4105","Private or protected member '{0}' cannot be accessed on a type parameter."),Parameter_0_of_accessor_has_or_is_using_private_name_1:t(4106,e.DiagnosticCategory.Error,"Parameter_0_of_accessor_has_or_is_using_private_name_1_4106","Parameter '{0}' of accessor has or is using private name '{1}'."),Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2:t(4107,e.DiagnosticCategory.Error,"Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2_4107","Parameter '{0}' of accessor has or is using name '{1}' from private module '{2}'."),Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:t(4108,e.DiagnosticCategory.Error,"Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named_4108","Parameter '{0}' of accessor has or is using name '{1}' from external module '{2}' but cannot be named."),Type_arguments_for_0_circularly_reference_themselves:t(4109,e.DiagnosticCategory.Error,"Type_arguments_for_0_circularly_reference_themselves_4109","Type arguments for '{0}' circularly reference themselves."),Tuple_type_arguments_circularly_reference_themselves:t(4110,e.DiagnosticCategory.Error,"Tuple_type_arguments_circularly_reference_themselves_4110","Tuple type arguments circularly reference themselves."),Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0:t(4111,e.DiagnosticCategory.Error,"Property_0_comes_from_an_index_signature_so_it_must_be_accessed_with_0_4111","Property '{0}' comes from an index signature, so it must be accessed with ['{0}']."),The_current_host_does_not_support_the_0_option:t(5001,e.DiagnosticCategory.Error,"The_current_host_does_not_support_the_0_option_5001","The current host does not support the '{0}' option."),Cannot_find_the_common_subdirectory_path_for_the_input_files:t(5009,e.DiagnosticCategory.Error,"Cannot_find_the_common_subdirectory_path_for_the_input_files_5009","Cannot find the common subdirectory path for the input files."),File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0:t(5010,e.DiagnosticCategory.Error,"File_specification_cannot_end_in_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0_5010","File specification cannot end in a recursive directory wildcard ('**'): '{0}'."),Cannot_read_file_0_Colon_1:t(5012,e.DiagnosticCategory.Error,"Cannot_read_file_0_Colon_1_5012","Cannot read file '{0}': {1}."),Failed_to_parse_file_0_Colon_1:t(5014,e.DiagnosticCategory.Error,"Failed_to_parse_file_0_Colon_1_5014","Failed to parse file '{0}': {1}."),Unknown_compiler_option_0:t(5023,e.DiagnosticCategory.Error,"Unknown_compiler_option_0_5023","Unknown compiler option '{0}'."),Compiler_option_0_requires_a_value_of_type_1:t(5024,e.DiagnosticCategory.Error,"Compiler_option_0_requires_a_value_of_type_1_5024","Compiler option '{0}' requires a value of type {1}."),Unknown_compiler_option_0_Did_you_mean_1:t(5025,e.DiagnosticCategory.Error,"Unknown_compiler_option_0_Did_you_mean_1_5025","Unknown compiler option '{0}'. Did you mean '{1}'?"),Could_not_write_file_0_Colon_1:t(5033,e.DiagnosticCategory.Error,"Could_not_write_file_0_Colon_1_5033","Could not write file '{0}': {1}."),Option_project_cannot_be_mixed_with_source_files_on_a_command_line:t(5042,e.DiagnosticCategory.Error,"Option_project_cannot_be_mixed_with_source_files_on_a_command_line_5042","Option 'project' cannot be mixed with source files on a command line."),Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES2015_or_higher:t(5047,e.DiagnosticCategory.Error,"Option_isolatedModules_can_only_be_used_when_either_option_module_is_provided_or_option_target_is_ES_5047","Option 'isolatedModules' can only be used when either option '--module' is provided or option 'target' is 'ES2015' or higher."),Option_0_cannot_be_specified_when_option_target_is_ES3:t(5048,e.DiagnosticCategory.Error,"Option_0_cannot_be_specified_when_option_target_is_ES3_5048","Option '{0}' cannot be specified when option 'target' is 'ES3'."),Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided:t(5051,e.DiagnosticCategory.Error,"Option_0_can_only_be_used_when_either_option_inlineSourceMap_or_option_sourceMap_is_provided_5051","Option '{0} can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided."),Option_0_cannot_be_specified_without_specifying_option_1:t(5052,e.DiagnosticCategory.Error,"Option_0_cannot_be_specified_without_specifying_option_1_5052","Option '{0}' cannot be specified without specifying option '{1}'."),Option_0_cannot_be_specified_with_option_1:t(5053,e.DiagnosticCategory.Error,"Option_0_cannot_be_specified_with_option_1_5053","Option '{0}' cannot be specified with option '{1}'."),A_tsconfig_json_file_is_already_defined_at_Colon_0:t(5054,e.DiagnosticCategory.Error,"A_tsconfig_json_file_is_already_defined_at_Colon_0_5054","A 'tsconfig.json' file is already defined at: '{0}'."),Cannot_write_file_0_because_it_would_overwrite_input_file:t(5055,e.DiagnosticCategory.Error,"Cannot_write_file_0_because_it_would_overwrite_input_file_5055","Cannot write file '{0}' because it would overwrite input file."),Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files:t(5056,e.DiagnosticCategory.Error,"Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files_5056","Cannot write file '{0}' because it would be overwritten by multiple input files."),Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0:t(5057,e.DiagnosticCategory.Error,"Cannot_find_a_tsconfig_json_file_at_the_specified_directory_Colon_0_5057","Cannot find a tsconfig.json file at the specified directory: '{0}'."),The_specified_path_does_not_exist_Colon_0:t(5058,e.DiagnosticCategory.Error,"The_specified_path_does_not_exist_Colon_0_5058","The specified path does not exist: '{0}'."),Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier:t(5059,e.DiagnosticCategory.Error,"Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier_5059","Invalid value for '--reactNamespace'. '{0}' is not a valid identifier."),Pattern_0_can_have_at_most_one_Asterisk_character:t(5061,e.DiagnosticCategory.Error,"Pattern_0_can_have_at_most_one_Asterisk_character_5061","Pattern '{0}' can have at most one '*' character."),Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character:t(5062,e.DiagnosticCategory.Error,"Substitution_0_in_pattern_1_can_have_at_most_one_Asterisk_character_5062","Substitution '{0}' in pattern '{1}' can have at most one '*' character."),Substitutions_for_pattern_0_should_be_an_array:t(5063,e.DiagnosticCategory.Error,"Substitutions_for_pattern_0_should_be_an_array_5063","Substitutions for pattern '{0}' should be an array."),Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2:t(5064,e.DiagnosticCategory.Error,"Substitution_0_for_pattern_1_has_incorrect_type_expected_string_got_2_5064","Substitution '{0}' for pattern '{1}' has incorrect type, expected 'string', got '{2}'."),File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0:t(5065,e.DiagnosticCategory.Error,"File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildca_5065","File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'."),Substitutions_for_pattern_0_shouldn_t_be_an_empty_array:t(5066,e.DiagnosticCategory.Error,"Substitutions_for_pattern_0_shouldn_t_be_an_empty_array_5066","Substitutions for pattern '{0}' shouldn't be an empty array."),Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name:t(5067,e.DiagnosticCategory.Error,"Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name_5067","Invalid value for 'jsxFactory'. '{0}' is not a valid identifier or qualified-name."),Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig:t(5068,e.DiagnosticCategory.Error,"Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript__5068","Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig."),Option_0_cannot_be_specified_without_specifying_option_1_or_option_2:t(5069,e.DiagnosticCategory.Error,"Option_0_cannot_be_specified_without_specifying_option_1_or_option_2_5069","Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'."),Option_resolveJsonModule_cannot_be_specified_without_node_module_resolution_strategy:t(5070,e.DiagnosticCategory.Error,"Option_resolveJsonModule_cannot_be_specified_without_node_module_resolution_strategy_5070","Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy."),Option_resolveJsonModule_can_only_be_specified_when_module_code_generation_is_commonjs_amd_es2015_or_esNext:t(5071,e.DiagnosticCategory.Error,"Option_resolveJsonModule_can_only_be_specified_when_module_code_generation_is_commonjs_amd_es2015_or_5071","Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext'."),Unknown_build_option_0:t(5072,e.DiagnosticCategory.Error,"Unknown_build_option_0_5072","Unknown build option '{0}'."),Build_option_0_requires_a_value_of_type_1:t(5073,e.DiagnosticCategory.Error,"Build_option_0_requires_a_value_of_type_1_5073","Build option '{0}' requires a value of type {1}."),Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBuildInfoFile_is_specified:t(5074,e.DiagnosticCategory.Error,"Option_incremental_can_only_be_specified_using_tsconfig_emitting_to_single_file_or_when_option_tsBui_5074","Option '--incremental' can only be specified using tsconfig, emitting to single file or when option `--tsBuildInfoFile` is specified."),_0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_constraint_2:t(5075,e.DiagnosticCategory.Error,"_0_is_assignable_to_the_constraint_of_type_1_but_1_could_be_instantiated_with_a_different_subtype_of_5075","'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'."),_0_and_1_operations_cannot_be_mixed_without_parentheses:t(5076,e.DiagnosticCategory.Error,"_0_and_1_operations_cannot_be_mixed_without_parentheses_5076","'{0}' and '{1}' operations cannot be mixed without parentheses."),Unknown_build_option_0_Did_you_mean_1:t(5077,e.DiagnosticCategory.Error,"Unknown_build_option_0_Did_you_mean_1_5077","Unknown build option '{0}'. Did you mean '{1}'?"),Unknown_watch_option_0:t(5078,e.DiagnosticCategory.Error,"Unknown_watch_option_0_5078","Unknown watch option '{0}'."),Unknown_watch_option_0_Did_you_mean_1:t(5079,e.DiagnosticCategory.Error,"Unknown_watch_option_0_Did_you_mean_1_5079","Unknown watch option '{0}'. Did you mean '{1}'?"),Watch_option_0_requires_a_value_of_type_1:t(5080,e.DiagnosticCategory.Error,"Watch_option_0_requires_a_value_of_type_1_5080","Watch option '{0}' requires a value of type {1}."),Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0:t(5081,e.DiagnosticCategory.Error,"Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0_5081","Cannot find a tsconfig.json file at the current directory: {0}."),_0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1:t(5082,e.DiagnosticCategory.Error,"_0_could_be_instantiated_with_an_arbitrary_type_which_could_be_unrelated_to_1_5082","'{0}' could be instantiated with an arbitrary type which could be unrelated to '{1}'."),Cannot_read_file_0:t(5083,e.DiagnosticCategory.Error,"Cannot_read_file_0_5083","Cannot read file '{0}'."),Tuple_members_must_all_have_names_or_all_not_have_names:t(5084,e.DiagnosticCategory.Error,"Tuple_members_must_all_have_names_or_all_not_have_names_5084","Tuple members must all have names or all not have names."),A_tuple_member_cannot_be_both_optional_and_rest:t(5085,e.DiagnosticCategory.Error,"A_tuple_member_cannot_be_both_optional_and_rest_5085","A tuple member cannot be both optional and rest."),A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type:t(5086,e.DiagnosticCategory.Error,"A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_c_5086","A labeled tuple element is declared as optional with a question mark after the name and before the colon, rather than after the type."),A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type:t(5087,e.DiagnosticCategory.Error,"A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type_5087","A labeled tuple element is declared as rest with a `...` before the name, rather than before the type."),The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary:t(5088,e.DiagnosticCategory.Error,"The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialize_5088","The inferred type of '{0}' references a type with a cyclic structure which cannot be trivially serialized. A type annotation is necessary."),Option_0_cannot_be_specified_when_option_jsx_is_1:t(5089,e.DiagnosticCategory.Error,"Option_0_cannot_be_specified_when_option_jsx_is_1_5089","Option '{0}' cannot be specified when option 'jsx' is '{1}'."),Non_relative_paths_are_not_allowed_when_baseUrl_is_not_set_Did_you_forget_a_leading_Slash:t(5090,e.DiagnosticCategory.Error,"Non_relative_paths_are_not_allowed_when_baseUrl_is_not_set_Did_you_forget_a_leading_Slash_5090","Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?"),Option_preserveConstEnums_cannot_be_disabled_when_isolatedModules_is_enabled:t(5091,e.DiagnosticCategory.Error,"Option_preserveConstEnums_cannot_be_disabled_when_isolatedModules_is_enabled_5091","Option 'preserveConstEnums' cannot be disabled when 'isolatedModules' is enabled."),Generates_a_sourcemap_for_each_corresponding_d_ts_file:t(6e3,e.DiagnosticCategory.Message,"Generates_a_sourcemap_for_each_corresponding_d_ts_file_6000","Generates a sourcemap for each corresponding '.d.ts' file."),Concatenate_and_emit_output_to_single_file:t(6001,e.DiagnosticCategory.Message,"Concatenate_and_emit_output_to_single_file_6001","Concatenate and emit output to single file."),Generates_corresponding_d_ts_file:t(6002,e.DiagnosticCategory.Message,"Generates_corresponding_d_ts_file_6002","Generates corresponding '.d.ts' file."),Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations:t(6003,e.DiagnosticCategory.Message,"Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations_6003","Specify the location where debugger should locate map files instead of generated locations."),Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations:t(6004,e.DiagnosticCategory.Message,"Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations_6004","Specify the location where debugger should locate TypeScript files instead of source locations."),Watch_input_files:t(6005,e.DiagnosticCategory.Message,"Watch_input_files_6005","Watch input files."),Redirect_output_structure_to_the_directory:t(6006,e.DiagnosticCategory.Message,"Redirect_output_structure_to_the_directory_6006","Redirect output structure to the directory."),Do_not_erase_const_enum_declarations_in_generated_code:t(6007,e.DiagnosticCategory.Message,"Do_not_erase_const_enum_declarations_in_generated_code_6007","Do not erase const enum declarations in generated code."),Do_not_emit_outputs_if_any_errors_were_reported:t(6008,e.DiagnosticCategory.Message,"Do_not_emit_outputs_if_any_errors_were_reported_6008","Do not emit outputs if any errors were reported."),Do_not_emit_comments_to_output:t(6009,e.DiagnosticCategory.Message,"Do_not_emit_comments_to_output_6009","Do not emit comments to output."),Do_not_emit_outputs:t(6010,e.DiagnosticCategory.Message,"Do_not_emit_outputs_6010","Do not emit outputs."),Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking:t(6011,e.DiagnosticCategory.Message,"Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typech_6011","Allow default imports from modules with no default export. This does not affect code emit, just typechecking."),Skip_type_checking_of_declaration_files:t(6012,e.DiagnosticCategory.Message,"Skip_type_checking_of_declaration_files_6012","Skip type checking of declaration files."),Do_not_resolve_the_real_path_of_symlinks:t(6013,e.DiagnosticCategory.Message,"Do_not_resolve_the_real_path_of_symlinks_6013","Do not resolve the real path of symlinks."),Only_emit_d_ts_declaration_files:t(6014,e.DiagnosticCategory.Message,"Only_emit_d_ts_declaration_files_6014","Only emit '.d.ts' declaration files."),Specify_ECMAScript_target_version_Colon_ES3_default_ES5_ES2015_ES2016_ES2017_ES2018_ES2019_ES2020_or_ESNEXT:t(6015,e.DiagnosticCategory.Message,"Specify_ECMAScript_target_version_Colon_ES3_default_ES5_ES2015_ES2016_ES2017_ES2018_ES2019_ES2020_or_6015","Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'."),Specify_module_code_generation_Colon_none_commonjs_amd_system_umd_es2015_es2020_or_ESNext:t(6016,e.DiagnosticCategory.Message,"Specify_module_code_generation_Colon_none_commonjs_amd_system_umd_es2015_es2020_or_ESNext_6016","Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'."),Print_this_message:t(6017,e.DiagnosticCategory.Message,"Print_this_message_6017","Print this message."),Print_the_compiler_s_version:t(6019,e.DiagnosticCategory.Message,"Print_the_compiler_s_version_6019","Print the compiler's version."),Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json:t(6020,e.DiagnosticCategory.Message,"Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json_6020","Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'."),Syntax_Colon_0:t(6023,e.DiagnosticCategory.Message,"Syntax_Colon_0_6023","Syntax: {0}"),options:t(6024,e.DiagnosticCategory.Message,"options_6024","options"),file:t(6025,e.DiagnosticCategory.Message,"file_6025","file"),Examples_Colon_0:t(6026,e.DiagnosticCategory.Message,"Examples_Colon_0_6026","Examples: {0}"),Options_Colon:t(6027,e.DiagnosticCategory.Message,"Options_Colon_6027","Options:"),Version_0:t(6029,e.DiagnosticCategory.Message,"Version_0_6029","Version {0}"),Insert_command_line_options_and_files_from_a_file:t(6030,e.DiagnosticCategory.Message,"Insert_command_line_options_and_files_from_a_file_6030","Insert command line options and files from a file."),Starting_compilation_in_watch_mode:t(6031,e.DiagnosticCategory.Message,"Starting_compilation_in_watch_mode_6031","Starting compilation in watch mode..."),File_change_detected_Starting_incremental_compilation:t(6032,e.DiagnosticCategory.Message,"File_change_detected_Starting_incremental_compilation_6032","File change detected. Starting incremental compilation..."),KIND:t(6034,e.DiagnosticCategory.Message,"KIND_6034","KIND"),FILE:t(6035,e.DiagnosticCategory.Message,"FILE_6035","FILE"),VERSION:t(6036,e.DiagnosticCategory.Message,"VERSION_6036","VERSION"),LOCATION:t(6037,e.DiagnosticCategory.Message,"LOCATION_6037","LOCATION"),DIRECTORY:t(6038,e.DiagnosticCategory.Message,"DIRECTORY_6038","DIRECTORY"),STRATEGY:t(6039,e.DiagnosticCategory.Message,"STRATEGY_6039","STRATEGY"),FILE_OR_DIRECTORY:t(6040,e.DiagnosticCategory.Message,"FILE_OR_DIRECTORY_6040","FILE OR DIRECTORY"),Generates_corresponding_map_file:t(6043,e.DiagnosticCategory.Message,"Generates_corresponding_map_file_6043","Generates corresponding '.map' file."),Compiler_option_0_expects_an_argument:t(6044,e.DiagnosticCategory.Error,"Compiler_option_0_expects_an_argument_6044","Compiler option '{0}' expects an argument."),Unterminated_quoted_string_in_response_file_0:t(6045,e.DiagnosticCategory.Error,"Unterminated_quoted_string_in_response_file_0_6045","Unterminated quoted string in response file '{0}'."),Argument_for_0_option_must_be_Colon_1:t(6046,e.DiagnosticCategory.Error,"Argument_for_0_option_must_be_Colon_1_6046","Argument for '{0}' option must be: {1}."),Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1:t(6048,e.DiagnosticCategory.Error,"Locale_must_be_of_the_form_language_or_language_territory_For_example_0_or_1_6048","Locale must be of the form or -. For example '{0}' or '{1}'."),Unsupported_locale_0:t(6049,e.DiagnosticCategory.Error,"Unsupported_locale_0_6049","Unsupported locale '{0}'."),Unable_to_open_file_0:t(6050,e.DiagnosticCategory.Error,"Unable_to_open_file_0_6050","Unable to open file '{0}'."),Corrupted_locale_file_0:t(6051,e.DiagnosticCategory.Error,"Corrupted_locale_file_0_6051","Corrupted locale file {0}."),Raise_error_on_expressions_and_declarations_with_an_implied_any_type:t(6052,e.DiagnosticCategory.Message,"Raise_error_on_expressions_and_declarations_with_an_implied_any_type_6052","Raise error on expressions and declarations with an implied 'any' type."),File_0_not_found:t(6053,e.DiagnosticCategory.Error,"File_0_not_found_6053","File '{0}' not found."),File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1:t(6054,e.DiagnosticCategory.Error,"File_0_has_an_unsupported_extension_The_only_supported_extensions_are_1_6054","File '{0}' has an unsupported extension. The only supported extensions are {1}."),Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures:t(6055,e.DiagnosticCategory.Message,"Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures_6055","Suppress noImplicitAny errors for indexing objects lacking index signatures."),Do_not_emit_declarations_for_code_that_has_an_internal_annotation:t(6056,e.DiagnosticCategory.Message,"Do_not_emit_declarations_for_code_that_has_an_internal_annotation_6056","Do not emit declarations for code that has an '@internal' annotation."),Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir:t(6058,e.DiagnosticCategory.Message,"Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir_6058","Specify the root directory of input files. Use to control the output directory structure with --outDir."),File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files:t(6059,e.DiagnosticCategory.Error,"File_0_is_not_under_rootDir_1_rootDir_is_expected_to_contain_all_source_files_6059","File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files."),Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix:t(6060,e.DiagnosticCategory.Message,"Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix_6060","Specify the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix)."),NEWLINE:t(6061,e.DiagnosticCategory.Message,"NEWLINE_6061","NEWLINE"),Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line:t(6064,e.DiagnosticCategory.Error,"Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line_6064","Option '{0}' can only be specified in 'tsconfig.json' file or set to 'null' on command line."),Enables_experimental_support_for_ES7_decorators:t(6065,e.DiagnosticCategory.Message,"Enables_experimental_support_for_ES7_decorators_6065","Enables experimental support for ES7 decorators."),Enables_experimental_support_for_emitting_type_metadata_for_decorators:t(6066,e.DiagnosticCategory.Message,"Enables_experimental_support_for_emitting_type_metadata_for_decorators_6066","Enables experimental support for emitting type metadata for decorators."),Enables_experimental_support_for_ES7_async_functions:t(6068,e.DiagnosticCategory.Message,"Enables_experimental_support_for_ES7_async_functions_6068","Enables experimental support for ES7 async functions."),Specify_module_resolution_strategy_Colon_node_Node_js_or_classic_TypeScript_pre_1_6:t(6069,e.DiagnosticCategory.Message,"Specify_module_resolution_strategy_Colon_node_Node_js_or_classic_TypeScript_pre_1_6_6069","Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6)."),Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file:t(6070,e.DiagnosticCategory.Message,"Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file_6070","Initializes a TypeScript project and creates a tsconfig.json file."),Successfully_created_a_tsconfig_json_file:t(6071,e.DiagnosticCategory.Message,"Successfully_created_a_tsconfig_json_file_6071","Successfully created a tsconfig.json file."),Suppress_excess_property_checks_for_object_literals:t(6072,e.DiagnosticCategory.Message,"Suppress_excess_property_checks_for_object_literals_6072","Suppress excess property checks for object literals."),Stylize_errors_and_messages_using_color_and_context_experimental:t(6073,e.DiagnosticCategory.Message,"Stylize_errors_and_messages_using_color_and_context_experimental_6073","Stylize errors and messages using color and context (experimental)."),Do_not_report_errors_on_unused_labels:t(6074,e.DiagnosticCategory.Message,"Do_not_report_errors_on_unused_labels_6074","Do not report errors on unused labels."),Report_error_when_not_all_code_paths_in_function_return_a_value:t(6075,e.DiagnosticCategory.Message,"Report_error_when_not_all_code_paths_in_function_return_a_value_6075","Report error when not all code paths in function return a value."),Report_errors_for_fallthrough_cases_in_switch_statement:t(6076,e.DiagnosticCategory.Message,"Report_errors_for_fallthrough_cases_in_switch_statement_6076","Report errors for fallthrough cases in switch statement."),Do_not_report_errors_on_unreachable_code:t(6077,e.DiagnosticCategory.Message,"Do_not_report_errors_on_unreachable_code_6077","Do not report errors on unreachable code."),Disallow_inconsistently_cased_references_to_the_same_file:t(6078,e.DiagnosticCategory.Message,"Disallow_inconsistently_cased_references_to_the_same_file_6078","Disallow inconsistently-cased references to the same file."),Specify_library_files_to_be_included_in_the_compilation:t(6079,e.DiagnosticCategory.Message,"Specify_library_files_to_be_included_in_the_compilation_6079","Specify library files to be included in the compilation."),Specify_JSX_code_generation_Colon_preserve_react_native_react_react_jsx_or_react_jsxdev:t(6080,e.DiagnosticCategory.Message,"Specify_JSX_code_generation_Colon_preserve_react_native_react_react_jsx_or_react_jsxdev_6080","Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'."),File_0_has_an_unsupported_extension_so_skipping_it:t(6081,e.DiagnosticCategory.Message,"File_0_has_an_unsupported_extension_so_skipping_it_6081","File '{0}' has an unsupported extension, so skipping it."),Only_amd_and_system_modules_are_supported_alongside_0:t(6082,e.DiagnosticCategory.Error,"Only_amd_and_system_modules_are_supported_alongside_0_6082","Only 'amd' and 'system' modules are supported alongside --{0}."),Base_directory_to_resolve_non_absolute_module_names:t(6083,e.DiagnosticCategory.Message,"Base_directory_to_resolve_non_absolute_module_names_6083","Base directory to resolve non-absolute module names."),Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react_JSX_emit:t(6084,e.DiagnosticCategory.Message,"Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react__6084","[Deprecated] Use '--jsxFactory' instead. Specify the object invoked for createElement when targeting 'react' JSX emit"),Enable_tracing_of_the_name_resolution_process:t(6085,e.DiagnosticCategory.Message,"Enable_tracing_of_the_name_resolution_process_6085","Enable tracing of the name resolution process."),Resolving_module_0_from_1:t(6086,e.DiagnosticCategory.Message,"Resolving_module_0_from_1_6086","======== Resolving module '{0}' from '{1}'. ========"),Explicitly_specified_module_resolution_kind_Colon_0:t(6087,e.DiagnosticCategory.Message,"Explicitly_specified_module_resolution_kind_Colon_0_6087","Explicitly specified module resolution kind: '{0}'."),Module_resolution_kind_is_not_specified_using_0:t(6088,e.DiagnosticCategory.Message,"Module_resolution_kind_is_not_specified_using_0_6088","Module resolution kind is not specified, using '{0}'."),Module_name_0_was_successfully_resolved_to_1:t(6089,e.DiagnosticCategory.Message,"Module_name_0_was_successfully_resolved_to_1_6089","======== Module name '{0}' was successfully resolved to '{1}'. ========"),Module_name_0_was_not_resolved:t(6090,e.DiagnosticCategory.Message,"Module_name_0_was_not_resolved_6090","======== Module name '{0}' was not resolved. ========"),paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0:t(6091,e.DiagnosticCategory.Message,"paths_option_is_specified_looking_for_a_pattern_to_match_module_name_0_6091","'paths' option is specified, looking for a pattern to match module name '{0}'."),Module_name_0_matched_pattern_1:t(6092,e.DiagnosticCategory.Message,"Module_name_0_matched_pattern_1_6092","Module name '{0}', matched pattern '{1}'."),Trying_substitution_0_candidate_module_location_Colon_1:t(6093,e.DiagnosticCategory.Message,"Trying_substitution_0_candidate_module_location_Colon_1_6093","Trying substitution '{0}', candidate module location: '{1}'."),Resolving_module_name_0_relative_to_base_url_1_2:t(6094,e.DiagnosticCategory.Message,"Resolving_module_name_0_relative_to_base_url_1_2_6094","Resolving module name '{0}' relative to base url '{1}' - '{2}'."),Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_type_1:t(6095,e.DiagnosticCategory.Message,"Loading_module_as_file_Slash_folder_candidate_module_location_0_target_file_type_1_6095","Loading module as file / folder, candidate module location '{0}', target file type '{1}'."),File_0_does_not_exist:t(6096,e.DiagnosticCategory.Message,"File_0_does_not_exist_6096","File '{0}' does not exist."),File_0_exist_use_it_as_a_name_resolution_result:t(6097,e.DiagnosticCategory.Message,"File_0_exist_use_it_as_a_name_resolution_result_6097","File '{0}' exist - use it as a name resolution result."),Loading_module_0_from_node_modules_folder_target_file_type_1:t(6098,e.DiagnosticCategory.Message,"Loading_module_0_from_node_modules_folder_target_file_type_1_6098","Loading module '{0}' from 'node_modules' folder, target file type '{1}'."),Found_package_json_at_0:t(6099,e.DiagnosticCategory.Message,"Found_package_json_at_0_6099","Found 'package.json' at '{0}'."),package_json_does_not_have_a_0_field:t(6100,e.DiagnosticCategory.Message,"package_json_does_not_have_a_0_field_6100","'package.json' does not have a '{0}' field."),package_json_has_0_field_1_that_references_2:t(6101,e.DiagnosticCategory.Message,"package_json_has_0_field_1_that_references_2_6101","'package.json' has '{0}' field '{1}' that references '{2}'."),Allow_javascript_files_to_be_compiled:t(6102,e.DiagnosticCategory.Message,"Allow_javascript_files_to_be_compiled_6102","Allow javascript files to be compiled."),Option_0_should_have_array_of_strings_as_a_value:t(6103,e.DiagnosticCategory.Error,"Option_0_should_have_array_of_strings_as_a_value_6103","Option '{0}' should have array of strings as a value."),Checking_if_0_is_the_longest_matching_prefix_for_1_2:t(6104,e.DiagnosticCategory.Message,"Checking_if_0_is_the_longest_matching_prefix_for_1_2_6104","Checking if '{0}' is the longest matching prefix for '{1}' - '{2}'."),Expected_type_of_0_field_in_package_json_to_be_1_got_2:t(6105,e.DiagnosticCategory.Message,"Expected_type_of_0_field_in_package_json_to_be_1_got_2_6105","Expected type of '{0}' field in 'package.json' to be '{1}', got '{2}'."),baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1:t(6106,e.DiagnosticCategory.Message,"baseUrl_option_is_set_to_0_using_this_value_to_resolve_non_relative_module_name_1_6106","'baseUrl' option is set to '{0}', using this value to resolve non-relative module name '{1}'."),rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0:t(6107,e.DiagnosticCategory.Message,"rootDirs_option_is_set_using_it_to_resolve_relative_module_name_0_6107","'rootDirs' option is set, using it to resolve relative module name '{0}'."),Longest_matching_prefix_for_0_is_1:t(6108,e.DiagnosticCategory.Message,"Longest_matching_prefix_for_0_is_1_6108","Longest matching prefix for '{0}' is '{1}'."),Loading_0_from_the_root_dir_1_candidate_location_2:t(6109,e.DiagnosticCategory.Message,"Loading_0_from_the_root_dir_1_candidate_location_2_6109","Loading '{0}' from the root dir '{1}', candidate location '{2}'."),Trying_other_entries_in_rootDirs:t(6110,e.DiagnosticCategory.Message,"Trying_other_entries_in_rootDirs_6110","Trying other entries in 'rootDirs'."),Module_resolution_using_rootDirs_has_failed:t(6111,e.DiagnosticCategory.Message,"Module_resolution_using_rootDirs_has_failed_6111","Module resolution using 'rootDirs' has failed."),Do_not_emit_use_strict_directives_in_module_output:t(6112,e.DiagnosticCategory.Message,"Do_not_emit_use_strict_directives_in_module_output_6112","Do not emit 'use strict' directives in module output."),Enable_strict_null_checks:t(6113,e.DiagnosticCategory.Message,"Enable_strict_null_checks_6113","Enable strict null checks."),Unknown_option_excludes_Did_you_mean_exclude:t(6114,e.DiagnosticCategory.Error,"Unknown_option_excludes_Did_you_mean_exclude_6114","Unknown option 'excludes'. Did you mean 'exclude'?"),Raise_error_on_this_expressions_with_an_implied_any_type:t(6115,e.DiagnosticCategory.Message,"Raise_error_on_this_expressions_with_an_implied_any_type_6115","Raise error on 'this' expressions with an implied 'any' type."),Resolving_type_reference_directive_0_containing_file_1_root_directory_2:t(6116,e.DiagnosticCategory.Message,"Resolving_type_reference_directive_0_containing_file_1_root_directory_2_6116","======== Resolving type reference directive '{0}', containing file '{1}', root directory '{2}'. ========"),Resolving_using_primary_search_paths:t(6117,e.DiagnosticCategory.Message,"Resolving_using_primary_search_paths_6117","Resolving using primary search paths..."),Resolving_from_node_modules_folder:t(6118,e.DiagnosticCategory.Message,"Resolving_from_node_modules_folder_6118","Resolving from node_modules folder..."),Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2:t(6119,e.DiagnosticCategory.Message,"Type_reference_directive_0_was_successfully_resolved_to_1_primary_Colon_2_6119","======== Type reference directive '{0}' was successfully resolved to '{1}', primary: {2}. ========"),Type_reference_directive_0_was_not_resolved:t(6120,e.DiagnosticCategory.Message,"Type_reference_directive_0_was_not_resolved_6120","======== Type reference directive '{0}' was not resolved. ========"),Resolving_with_primary_search_path_0:t(6121,e.DiagnosticCategory.Message,"Resolving_with_primary_search_path_0_6121","Resolving with primary search path '{0}'."),Root_directory_cannot_be_determined_skipping_primary_search_paths:t(6122,e.DiagnosticCategory.Message,"Root_directory_cannot_be_determined_skipping_primary_search_paths_6122","Root directory cannot be determined, skipping primary search paths."),Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set:t(6123,e.DiagnosticCategory.Message,"Resolving_type_reference_directive_0_containing_file_1_root_directory_not_set_6123","======== Resolving type reference directive '{0}', containing file '{1}', root directory not set. ========"),Type_declaration_files_to_be_included_in_compilation:t(6124,e.DiagnosticCategory.Message,"Type_declaration_files_to_be_included_in_compilation_6124","Type declaration files to be included in compilation."),Looking_up_in_node_modules_folder_initial_location_0:t(6125,e.DiagnosticCategory.Message,"Looking_up_in_node_modules_folder_initial_location_0_6125","Looking up in 'node_modules' folder, initial location '{0}'."),Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_modules_folder:t(6126,e.DiagnosticCategory.Message,"Containing_file_is_not_specified_and_root_directory_cannot_be_determined_skipping_lookup_in_node_mod_6126","Containing file is not specified and root directory cannot be determined, skipping lookup in 'node_modules' folder."),Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1:t(6127,e.DiagnosticCategory.Message,"Resolving_type_reference_directive_0_containing_file_not_set_root_directory_1_6127","======== Resolving type reference directive '{0}', containing file not set, root directory '{1}'. ========"),Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set:t(6128,e.DiagnosticCategory.Message,"Resolving_type_reference_directive_0_containing_file_not_set_root_directory_not_set_6128","======== Resolving type reference directive '{0}', containing file not set, root directory not set. ========"),Resolving_real_path_for_0_result_1:t(6130,e.DiagnosticCategory.Message,"Resolving_real_path_for_0_result_1_6130","Resolving real path for '{0}', result '{1}'."),Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system:t(6131,e.DiagnosticCategory.Error,"Cannot_compile_modules_using_option_0_unless_the_module_flag_is_amd_or_system_6131","Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'."),File_name_0_has_a_1_extension_stripping_it:t(6132,e.DiagnosticCategory.Message,"File_name_0_has_a_1_extension_stripping_it_6132","File name '{0}' has a '{1}' extension - stripping it."),_0_is_declared_but_its_value_is_never_read:t(6133,e.DiagnosticCategory.Error,"_0_is_declared_but_its_value_is_never_read_6133","'{0}' is declared but its value is never read.",!0),Report_errors_on_unused_locals:t(6134,e.DiagnosticCategory.Message,"Report_errors_on_unused_locals_6134","Report errors on unused locals."),Report_errors_on_unused_parameters:t(6135,e.DiagnosticCategory.Message,"Report_errors_on_unused_parameters_6135","Report errors on unused parameters."),The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files:t(6136,e.DiagnosticCategory.Message,"The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files_6136","The maximum dependency depth to search under node_modules and load JavaScript files."),Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1:t(6137,e.DiagnosticCategory.Error,"Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1_6137","Cannot import type declaration files. Consider importing '{0}' instead of '{1}'."),Property_0_is_declared_but_its_value_is_never_read:t(6138,e.DiagnosticCategory.Error,"Property_0_is_declared_but_its_value_is_never_read_6138","Property '{0}' is declared but its value is never read.",!0),Import_emit_helpers_from_tslib:t(6139,e.DiagnosticCategory.Message,"Import_emit_helpers_from_tslib_6139","Import emit helpers from 'tslib'."),Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using_cache_location_2:t(6140,e.DiagnosticCategory.Error,"Auto_discovery_for_typings_is_enabled_in_project_0_Running_extra_resolution_pass_for_module_1_using__6140","Auto discovery for typings is enabled in project '{0}'. Running extra resolution pass for module '{1}' using cache location '{2}'."),Parse_in_strict_mode_and_emit_use_strict_for_each_source_file:t(6141,e.DiagnosticCategory.Message,"Parse_in_strict_mode_and_emit_use_strict_for_each_source_file_6141",'Parse in strict mode and emit "use strict" for each source file.'),Module_0_was_resolved_to_1_but_jsx_is_not_set:t(6142,e.DiagnosticCategory.Error,"Module_0_was_resolved_to_1_but_jsx_is_not_set_6142","Module '{0}' was resolved to '{1}', but '--jsx' is not set."),Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1:t(6144,e.DiagnosticCategory.Message,"Module_0_was_resolved_as_locally_declared_ambient_module_in_file_1_6144","Module '{0}' was resolved as locally declared ambient module in file '{1}'."),Module_0_was_resolved_as_ambient_module_declared_in_1_since_this_file_was_not_modified:t(6145,e.DiagnosticCategory.Message,"Module_0_was_resolved_as_ambient_module_declared_in_1_since_this_file_was_not_modified_6145","Module '{0}' was resolved as ambient module declared in '{1}' since this file was not modified."),Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h:t(6146,e.DiagnosticCategory.Message,"Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h_6146","Specify the JSX factory function to use when targeting 'react' JSX emit, e.g. 'React.createElement' or 'h'."),Resolution_for_module_0_was_found_in_cache_from_location_1:t(6147,e.DiagnosticCategory.Message,"Resolution_for_module_0_was_found_in_cache_from_location_1_6147","Resolution for module '{0}' was found in cache from location '{1}'."),Directory_0_does_not_exist_skipping_all_lookups_in_it:t(6148,e.DiagnosticCategory.Message,"Directory_0_does_not_exist_skipping_all_lookups_in_it_6148","Directory '{0}' does not exist, skipping all lookups in it."),Show_diagnostic_information:t(6149,e.DiagnosticCategory.Message,"Show_diagnostic_information_6149","Show diagnostic information."),Show_verbose_diagnostic_information:t(6150,e.DiagnosticCategory.Message,"Show_verbose_diagnostic_information_6150","Show verbose diagnostic information."),Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file:t(6151,e.DiagnosticCategory.Message,"Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file_6151","Emit a single file with source maps instead of having a separate file."),Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set:t(6152,e.DiagnosticCategory.Message,"Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap__6152","Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set."),Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule:t(6153,e.DiagnosticCategory.Message,"Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule_6153","Transpile each file as a separate module (similar to 'ts.transpileModule')."),Print_names_of_generated_files_part_of_the_compilation:t(6154,e.DiagnosticCategory.Message,"Print_names_of_generated_files_part_of_the_compilation_6154","Print names of generated files part of the compilation."),Print_names_of_files_part_of_the_compilation:t(6155,e.DiagnosticCategory.Message,"Print_names_of_files_part_of_the_compilation_6155","Print names of files part of the compilation."),The_locale_used_when_displaying_messages_to_the_user_e_g_en_us:t(6156,e.DiagnosticCategory.Message,"The_locale_used_when_displaying_messages_to_the_user_e_g_en_us_6156","The locale used when displaying messages to the user (e.g. 'en-us')"),Do_not_generate_custom_helper_functions_like_extends_in_compiled_output:t(6157,e.DiagnosticCategory.Message,"Do_not_generate_custom_helper_functions_like_extends_in_compiled_output_6157","Do not generate custom helper functions like '__extends' in compiled output."),Do_not_include_the_default_library_file_lib_d_ts:t(6158,e.DiagnosticCategory.Message,"Do_not_include_the_default_library_file_lib_d_ts_6158","Do not include the default library file (lib.d.ts)."),Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files:t(6159,e.DiagnosticCategory.Message,"Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files_6159","Do not add triple-slash references or imported modules to the list of compiled files."),Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files:t(6160,e.DiagnosticCategory.Message,"Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files_6160","[Deprecated] Use '--skipLibCheck' instead. Skip type checking of default library declaration files."),List_of_folders_to_include_type_definitions_from:t(6161,e.DiagnosticCategory.Message,"List_of_folders_to_include_type_definitions_from_6161","List of folders to include type definitions from."),Disable_size_limitations_on_JavaScript_projects:t(6162,e.DiagnosticCategory.Message,"Disable_size_limitations_on_JavaScript_projects_6162","Disable size limitations on JavaScript projects."),The_character_set_of_the_input_files:t(6163,e.DiagnosticCategory.Message,"The_character_set_of_the_input_files_6163","The character set of the input files."),Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files:t(6164,e.DiagnosticCategory.Message,"Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files_6164","Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files."),Do_not_truncate_error_messages:t(6165,e.DiagnosticCategory.Message,"Do_not_truncate_error_messages_6165","Do not truncate error messages."),Output_directory_for_generated_declaration_files:t(6166,e.DiagnosticCategory.Message,"Output_directory_for_generated_declaration_files_6166","Output directory for generated declaration files."),A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl:t(6167,e.DiagnosticCategory.Message,"A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl_6167","A series of entries which re-map imports to lookup locations relative to the 'baseUrl'."),List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime:t(6168,e.DiagnosticCategory.Message,"List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime_6168","List of root folders whose combined content represents the structure of the project at runtime."),Show_all_compiler_options:t(6169,e.DiagnosticCategory.Message,"Show_all_compiler_options_6169","Show all compiler options."),Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file:t(6170,e.DiagnosticCategory.Message,"Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file_6170","[Deprecated] Use '--outFile' instead. Concatenate and emit output to single file"),Command_line_Options:t(6171,e.DiagnosticCategory.Message,"Command_line_Options_6171","Command-line Options"),Basic_Options:t(6172,e.DiagnosticCategory.Message,"Basic_Options_6172","Basic Options"),Strict_Type_Checking_Options:t(6173,e.DiagnosticCategory.Message,"Strict_Type_Checking_Options_6173","Strict Type-Checking Options"),Module_Resolution_Options:t(6174,e.DiagnosticCategory.Message,"Module_Resolution_Options_6174","Module Resolution Options"),Source_Map_Options:t(6175,e.DiagnosticCategory.Message,"Source_Map_Options_6175","Source Map Options"),Additional_Checks:t(6176,e.DiagnosticCategory.Message,"Additional_Checks_6176","Additional Checks"),Experimental_Options:t(6177,e.DiagnosticCategory.Message,"Experimental_Options_6177","Experimental Options"),Advanced_Options:t(6178,e.DiagnosticCategory.Message,"Advanced_Options_6178","Advanced Options"),Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5_or_ES3:t(6179,e.DiagnosticCategory.Message,"Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5_or_ES3_6179","Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'."),Enable_all_strict_type_checking_options:t(6180,e.DiagnosticCategory.Message,"Enable_all_strict_type_checking_options_6180","Enable all strict type-checking options."),List_of_language_service_plugins:t(6181,e.DiagnosticCategory.Message,"List_of_language_service_plugins_6181","List of language service plugins."),Scoped_package_detected_looking_in_0:t(6182,e.DiagnosticCategory.Message,"Scoped_package_detected_looking_in_0_6182","Scoped package detected, looking in '{0}'"),Reusing_resolution_of_module_0_to_file_1_from_old_program:t(6183,e.DiagnosticCategory.Message,"Reusing_resolution_of_module_0_to_file_1_from_old_program_6183","Reusing resolution of module '{0}' to file '{1}' from old program."),Reusing_module_resolutions_originating_in_0_since_resolutions_are_unchanged_from_old_program:t(6184,e.DiagnosticCategory.Message,"Reusing_module_resolutions_originating_in_0_since_resolutions_are_unchanged_from_old_program_6184","Reusing module resolutions originating in '{0}' since resolutions are unchanged from old program."),Disable_strict_checking_of_generic_signatures_in_function_types:t(6185,e.DiagnosticCategory.Message,"Disable_strict_checking_of_generic_signatures_in_function_types_6185","Disable strict checking of generic signatures in function types."),Enable_strict_checking_of_function_types:t(6186,e.DiagnosticCategory.Message,"Enable_strict_checking_of_function_types_6186","Enable strict checking of function types."),Enable_strict_checking_of_property_initialization_in_classes:t(6187,e.DiagnosticCategory.Message,"Enable_strict_checking_of_property_initialization_in_classes_6187","Enable strict checking of property initialization in classes."),Numeric_separators_are_not_allowed_here:t(6188,e.DiagnosticCategory.Error,"Numeric_separators_are_not_allowed_here_6188","Numeric separators are not allowed here."),Multiple_consecutive_numeric_separators_are_not_permitted:t(6189,e.DiagnosticCategory.Error,"Multiple_consecutive_numeric_separators_are_not_permitted_6189","Multiple consecutive numeric separators are not permitted."),Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen:t(6191,e.DiagnosticCategory.Message,"Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen_6191","Whether to keep outdated console output in watch mode instead of clearing the screen."),All_imports_in_import_declaration_are_unused:t(6192,e.DiagnosticCategory.Error,"All_imports_in_import_declaration_are_unused_6192","All imports in import declaration are unused.",!0),Found_1_error_Watching_for_file_changes:t(6193,e.DiagnosticCategory.Message,"Found_1_error_Watching_for_file_changes_6193","Found 1 error. Watching for file changes."),Found_0_errors_Watching_for_file_changes:t(6194,e.DiagnosticCategory.Message,"Found_0_errors_Watching_for_file_changes_6194","Found {0} errors. Watching for file changes."),Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols:t(6195,e.DiagnosticCategory.Message,"Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols_6195","Resolve 'keyof' to string valued property names only (no numbers or symbols)."),_0_is_declared_but_never_used:t(6196,e.DiagnosticCategory.Error,"_0_is_declared_but_never_used_6196","'{0}' is declared but never used.",!0),Include_modules_imported_with_json_extension:t(6197,e.DiagnosticCategory.Message,"Include_modules_imported_with_json_extension_6197","Include modules imported with '.json' extension"),All_destructured_elements_are_unused:t(6198,e.DiagnosticCategory.Error,"All_destructured_elements_are_unused_6198","All destructured elements are unused.",!0),All_variables_are_unused:t(6199,e.DiagnosticCategory.Error,"All_variables_are_unused_6199","All variables are unused.",!0),Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0:t(6200,e.DiagnosticCategory.Error,"Definitions_of_the_following_identifiers_conflict_with_those_in_another_file_Colon_0_6200","Definitions of the following identifiers conflict with those in another file: {0}"),Conflicts_are_in_this_file:t(6201,e.DiagnosticCategory.Message,"Conflicts_are_in_this_file_6201","Conflicts are in this file."),Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0:t(6202,e.DiagnosticCategory.Error,"Project_references_may_not_form_a_circular_graph_Cycle_detected_Colon_0_6202","Project references may not form a circular graph. Cycle detected: {0}"),_0_was_also_declared_here:t(6203,e.DiagnosticCategory.Message,"_0_was_also_declared_here_6203","'{0}' was also declared here."),and_here:t(6204,e.DiagnosticCategory.Message,"and_here_6204","and here."),All_type_parameters_are_unused:t(6205,e.DiagnosticCategory.Error,"All_type_parameters_are_unused_6205","All type parameters are unused."),package_json_has_a_typesVersions_field_with_version_specific_path_mappings:t(6206,e.DiagnosticCategory.Message,"package_json_has_a_typesVersions_field_with_version_specific_path_mappings_6206","'package.json' has a 'typesVersions' field with version-specific path mappings."),package_json_does_not_have_a_typesVersions_entry_that_matches_version_0:t(6207,e.DiagnosticCategory.Message,"package_json_does_not_have_a_typesVersions_entry_that_matches_version_0_6207","'package.json' does not have a 'typesVersions' entry that matches version '{0}'."),package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_match_module_name_2:t(6208,e.DiagnosticCategory.Message,"package_json_has_a_typesVersions_entry_0_that_matches_compiler_version_1_looking_for_a_pattern_to_ma_6208","'package.json' has a 'typesVersions' entry '{0}' that matches compiler version '{1}', looking for a pattern to match module name '{2}'."),package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range:t(6209,e.DiagnosticCategory.Message,"package_json_has_a_typesVersions_entry_0_that_is_not_a_valid_semver_range_6209","'package.json' has a 'typesVersions' entry '{0}' that is not a valid semver range."),An_argument_for_0_was_not_provided:t(6210,e.DiagnosticCategory.Message,"An_argument_for_0_was_not_provided_6210","An argument for '{0}' was not provided."),An_argument_matching_this_binding_pattern_was_not_provided:t(6211,e.DiagnosticCategory.Message,"An_argument_matching_this_binding_pattern_was_not_provided_6211","An argument matching this binding pattern was not provided."),Did_you_mean_to_call_this_expression:t(6212,e.DiagnosticCategory.Message,"Did_you_mean_to_call_this_expression_6212","Did you mean to call this expression?"),Did_you_mean_to_use_new_with_this_expression:t(6213,e.DiagnosticCategory.Message,"Did_you_mean_to_use_new_with_this_expression_6213","Did you mean to use 'new' with this expression?"),Enable_strict_bind_call_and_apply_methods_on_functions:t(6214,e.DiagnosticCategory.Message,"Enable_strict_bind_call_and_apply_methods_on_functions_6214","Enable strict 'bind', 'call', and 'apply' methods on functions."),Using_compiler_options_of_project_reference_redirect_0:t(6215,e.DiagnosticCategory.Message,"Using_compiler_options_of_project_reference_redirect_0_6215","Using compiler options of project reference redirect '{0}'."),Found_1_error:t(6216,e.DiagnosticCategory.Message,"Found_1_error_6216","Found 1 error."),Found_0_errors:t(6217,e.DiagnosticCategory.Message,"Found_0_errors_6217","Found {0} errors."),Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2:t(6218,e.DiagnosticCategory.Message,"Module_name_0_was_successfully_resolved_to_1_with_Package_ID_2_6218","======== Module name '{0}' was successfully resolved to '{1}' with Package ID '{2}'. ========"),Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3:t(6219,e.DiagnosticCategory.Message,"Type_reference_directive_0_was_successfully_resolved_to_1_with_Package_ID_2_primary_Colon_3_6219","======== Type reference directive '{0}' was successfully resolved to '{1}' with Package ID '{2}', primary: {3}. ========"),package_json_had_a_falsy_0_field:t(6220,e.DiagnosticCategory.Message,"package_json_had_a_falsy_0_field_6220","'package.json' had a falsy '{0}' field."),Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects:t(6221,e.DiagnosticCategory.Message,"Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects_6221","Disable use of source files instead of declaration files from referenced projects."),Emit_class_fields_with_Define_instead_of_Set:t(6222,e.DiagnosticCategory.Message,"Emit_class_fields_with_Define_instead_of_Set_6222","Emit class fields with Define instead of Set."),Generates_a_CPU_profile:t(6223,e.DiagnosticCategory.Message,"Generates_a_CPU_profile_6223","Generates a CPU profile."),Disable_solution_searching_for_this_project:t(6224,e.DiagnosticCategory.Message,"Disable_solution_searching_for_this_project_6224","Disable solution searching for this project."),Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_DynamicPriorityPolling_UseFsEvents_UseFsEventsOnParentDirectory:t(6225,e.DiagnosticCategory.Message,"Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_Dynami_6225","Specify strategy for watching file: 'FixedPollingInterval' (default), 'PriorityPollingInterval', 'DynamicPriorityPolling', 'UseFsEvents', 'UseFsEventsOnParentDirectory'."),Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively_Colon_UseFsEvents_default_FixedPollingInterval_DynamicPriorityPolling:t(6226,e.DiagnosticCategory.Message,"Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively__6226","Specify strategy for watching directory on platforms that don't support recursive watching natively: 'UseFsEvents' (default), 'FixedPollingInterval', 'DynamicPriorityPolling'."),Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_FixedInterval_default_PriorityInterval_DynamicPriority:t(6227,e.DiagnosticCategory.Message,"Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_6227","Specify strategy for creating a polling watch when it fails to create using file system events: 'FixedInterval' (default), 'PriorityInterval', 'DynamicPriority'."),Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively:t(6228,e.DiagnosticCategory.Message,"Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_supp_6228","Synchronously call callbacks and update the state of directory watchers on platforms that don't support recursive watching natively."),Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3:t(6229,e.DiagnosticCategory.Error,"Tag_0_expects_at_least_1_arguments_but_the_JSX_factory_2_provides_at_most_3_6229","Tag '{0}' expects at least '{1}' arguments, but the JSX factory '{2}' provides at most '{3}'."),Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line:t(6230,e.DiagnosticCategory.Error,"Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line_6230","Option '{0}' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line."),Could_not_resolve_the_path_0_with_the_extensions_Colon_1:t(6231,e.DiagnosticCategory.Error,"Could_not_resolve_the_path_0_with_the_extensions_Colon_1_6231","Could not resolve the path '{0}' with the extensions: {1}."),Declaration_augments_declaration_in_another_file_This_cannot_be_serialized:t(6232,e.DiagnosticCategory.Error,"Declaration_augments_declaration_in_another_file_This_cannot_be_serialized_6232","Declaration augments declaration in another file. This cannot be serialized."),This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_file:t(6233,e.DiagnosticCategory.Error,"This_is_the_declaration_being_augmented_Consider_moving_the_augmenting_declaration_into_the_same_fil_6233","This is the declaration being augmented. Consider moving the augmenting declaration into the same file."),This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without:t(6234,e.DiagnosticCategory.Error,"This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without_6234","This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?"),Disable_loading_referenced_projects:t(6235,e.DiagnosticCategory.Message,"Disable_loading_referenced_projects_6235","Disable loading referenced projects."),Arguments_for_the_rest_parameter_0_were_not_provided:t(6236,e.DiagnosticCategory.Error,"Arguments_for_the_rest_parameter_0_were_not_provided_6236","Arguments for the rest parameter '{0}' were not provided."),Generates_an_event_trace_and_a_list_of_types:t(6237,e.DiagnosticCategory.Message,"Generates_an_event_trace_and_a_list_of_types_6237","Generates an event trace and a list of types."),Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react:t(6238,e.DiagnosticCategory.Error,"Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react_6238","Specify the module specifier to be used to import the `jsx` and `jsxs` factory functions from. eg, react"),Projects_to_reference:t(6300,e.DiagnosticCategory.Message,"Projects_to_reference_6300","Projects to reference"),Enable_project_compilation:t(6302,e.DiagnosticCategory.Message,"Enable_project_compilation_6302","Enable project compilation"),Composite_projects_may_not_disable_declaration_emit:t(6304,e.DiagnosticCategory.Error,"Composite_projects_may_not_disable_declaration_emit_6304","Composite projects may not disable declaration emit."),Output_file_0_has_not_been_built_from_source_file_1:t(6305,e.DiagnosticCategory.Error,"Output_file_0_has_not_been_built_from_source_file_1_6305","Output file '{0}' has not been built from source file '{1}'."),Referenced_project_0_must_have_setting_composite_Colon_true:t(6306,e.DiagnosticCategory.Error,"Referenced_project_0_must_have_setting_composite_Colon_true_6306","Referenced project '{0}' must have setting \"composite\": true."),File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_include_pattern:t(6307,e.DiagnosticCategory.Error,"File_0_is_not_listed_within_the_file_list_of_project_1_Projects_must_list_all_files_or_use_an_includ_6307","File '{0}' is not listed within the file list of project '{1}'. Projects must list all files or use an 'include' pattern."),Cannot_prepend_project_0_because_it_does_not_have_outFile_set:t(6308,e.DiagnosticCategory.Error,"Cannot_prepend_project_0_because_it_does_not_have_outFile_set_6308","Cannot prepend project '{0}' because it does not have 'outFile' set"),Output_file_0_from_project_1_does_not_exist:t(6309,e.DiagnosticCategory.Error,"Output_file_0_from_project_1_does_not_exist_6309","Output file '{0}' from project '{1}' does not exist"),Referenced_project_0_may_not_disable_emit:t(6310,e.DiagnosticCategory.Error,"Referenced_project_0_may_not_disable_emit_6310","Referenced project '{0}' may not disable emit."),Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2:t(6350,e.DiagnosticCategory.Message,"Project_0_is_out_of_date_because_oldest_output_1_is_older_than_newest_input_2_6350","Project '{0}' is out of date because oldest output '{1}' is older than newest input '{2}'"),Project_0_is_up_to_date_because_newest_input_1_is_older_than_oldest_output_2:t(6351,e.DiagnosticCategory.Message,"Project_0_is_up_to_date_because_newest_input_1_is_older_than_oldest_output_2_6351","Project '{0}' is up to date because newest input '{1}' is older than oldest output '{2}'"),Project_0_is_out_of_date_because_output_file_1_does_not_exist:t(6352,e.DiagnosticCategory.Message,"Project_0_is_out_of_date_because_output_file_1_does_not_exist_6352","Project '{0}' is out of date because output file '{1}' does not exist"),Project_0_is_out_of_date_because_its_dependency_1_is_out_of_date:t(6353,e.DiagnosticCategory.Message,"Project_0_is_out_of_date_because_its_dependency_1_is_out_of_date_6353","Project '{0}' is out of date because its dependency '{1}' is out of date"),Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies:t(6354,e.DiagnosticCategory.Message,"Project_0_is_up_to_date_with_d_ts_files_from_its_dependencies_6354","Project '{0}' is up to date with .d.ts files from its dependencies"),Projects_in_this_build_Colon_0:t(6355,e.DiagnosticCategory.Message,"Projects_in_this_build_Colon_0_6355","Projects in this build: {0}"),A_non_dry_build_would_delete_the_following_files_Colon_0:t(6356,e.DiagnosticCategory.Message,"A_non_dry_build_would_delete_the_following_files_Colon_0_6356","A non-dry build would delete the following files: {0}"),A_non_dry_build_would_build_project_0:t(6357,e.DiagnosticCategory.Message,"A_non_dry_build_would_build_project_0_6357","A non-dry build would build project '{0}'"),Building_project_0:t(6358,e.DiagnosticCategory.Message,"Building_project_0_6358","Building project '{0}'..."),Updating_output_timestamps_of_project_0:t(6359,e.DiagnosticCategory.Message,"Updating_output_timestamps_of_project_0_6359","Updating output timestamps of project '{0}'..."),delete_this_Project_0_is_up_to_date_because_it_was_previously_built:t(6360,e.DiagnosticCategory.Message,"delete_this_Project_0_is_up_to_date_because_it_was_previously_built_6360","delete this - Project '{0}' is up to date because it was previously built"),Project_0_is_up_to_date:t(6361,e.DiagnosticCategory.Message,"Project_0_is_up_to_date_6361","Project '{0}' is up to date"),Skipping_build_of_project_0_because_its_dependency_1_has_errors:t(6362,e.DiagnosticCategory.Message,"Skipping_build_of_project_0_because_its_dependency_1_has_errors_6362","Skipping build of project '{0}' because its dependency '{1}' has errors"),Project_0_can_t_be_built_because_its_dependency_1_has_errors:t(6363,e.DiagnosticCategory.Message,"Project_0_can_t_be_built_because_its_dependency_1_has_errors_6363","Project '{0}' can't be built because its dependency '{1}' has errors"),Build_one_or_more_projects_and_their_dependencies_if_out_of_date:t(6364,e.DiagnosticCategory.Message,"Build_one_or_more_projects_and_their_dependencies_if_out_of_date_6364","Build one or more projects and their dependencies, if out of date"),Delete_the_outputs_of_all_projects:t(6365,e.DiagnosticCategory.Message,"Delete_the_outputs_of_all_projects_6365","Delete the outputs of all projects"),Enable_verbose_logging:t(6366,e.DiagnosticCategory.Message,"Enable_verbose_logging_6366","Enable verbose logging"),Show_what_would_be_built_or_deleted_if_specified_with_clean:t(6367,e.DiagnosticCategory.Message,"Show_what_would_be_built_or_deleted_if_specified_with_clean_6367","Show what would be built (or deleted, if specified with '--clean')"),Build_all_projects_including_those_that_appear_to_be_up_to_date:t(6368,e.DiagnosticCategory.Message,"Build_all_projects_including_those_that_appear_to_be_up_to_date_6368","Build all projects, including those that appear to be up to date"),Option_build_must_be_the_first_command_line_argument:t(6369,e.DiagnosticCategory.Error,"Option_build_must_be_the_first_command_line_argument_6369","Option '--build' must be the first command line argument."),Options_0_and_1_cannot_be_combined:t(6370,e.DiagnosticCategory.Error,"Options_0_and_1_cannot_be_combined_6370","Options '{0}' and '{1}' cannot be combined."),Updating_unchanged_output_timestamps_of_project_0:t(6371,e.DiagnosticCategory.Message,"Updating_unchanged_output_timestamps_of_project_0_6371","Updating unchanged output timestamps of project '{0}'..."),Project_0_is_out_of_date_because_output_of_its_dependency_1_has_changed:t(6372,e.DiagnosticCategory.Message,"Project_0_is_out_of_date_because_output_of_its_dependency_1_has_changed_6372","Project '{0}' is out of date because output of its dependency '{1}' has changed"),Updating_output_of_project_0:t(6373,e.DiagnosticCategory.Message,"Updating_output_of_project_0_6373","Updating output of project '{0}'..."),A_non_dry_build_would_update_timestamps_for_output_of_project_0:t(6374,e.DiagnosticCategory.Message,"A_non_dry_build_would_update_timestamps_for_output_of_project_0_6374","A non-dry build would update timestamps for output of project '{0}'"),A_non_dry_build_would_update_output_of_project_0:t(6375,e.DiagnosticCategory.Message,"A_non_dry_build_would_update_output_of_project_0_6375","A non-dry build would update output of project '{0}'"),Cannot_update_output_of_project_0_because_there_was_error_reading_file_1:t(6376,e.DiagnosticCategory.Message,"Cannot_update_output_of_project_0_because_there_was_error_reading_file_1_6376","Cannot update output of project '{0}' because there was error reading file '{1}'"),Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1:t(6377,e.DiagnosticCategory.Error,"Cannot_write_file_0_because_it_will_overwrite_tsbuildinfo_file_generated_by_referenced_project_1_6377","Cannot write file '{0}' because it will overwrite '.tsbuildinfo' file generated by referenced project '{1}'"),Enable_incremental_compilation:t(6378,e.DiagnosticCategory.Message,"Enable_incremental_compilation_6378","Enable incremental compilation"),Composite_projects_may_not_disable_incremental_compilation:t(6379,e.DiagnosticCategory.Error,"Composite_projects_may_not_disable_incremental_compilation_6379","Composite projects may not disable incremental compilation."),Specify_file_to_store_incremental_compilation_information:t(6380,e.DiagnosticCategory.Message,"Specify_file_to_store_incremental_compilation_information_6380","Specify file to store incremental compilation information"),Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_current_version_2:t(6381,e.DiagnosticCategory.Message,"Project_0_is_out_of_date_because_output_for_it_was_generated_with_version_1_that_differs_with_curren_6381","Project '{0}' is out of date because output for it was generated with version '{1}' that differs with current version '{2}'"),Skipping_build_of_project_0_because_its_dependency_1_was_not_built:t(6382,e.DiagnosticCategory.Message,"Skipping_build_of_project_0_because_its_dependency_1_was_not_built_6382","Skipping build of project '{0}' because its dependency '{1}' was not built"),Project_0_can_t_be_built_because_its_dependency_1_was_not_built:t(6383,e.DiagnosticCategory.Message,"Project_0_can_t_be_built_because_its_dependency_1_was_not_built_6383","Project '{0}' can't be built because its dependency '{1}' was not built"),Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it:t(6384,e.DiagnosticCategory.Message,"Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_di_6384","Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it."),_0_is_deprecated:t(6385,e.DiagnosticCategory.Suggestion,"_0_is_deprecated_6385","'{0}' is deprecated.",void 0,void 0,!0),Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_native_implementation_of_the_Web_Performance_API_could_not_be_found:t(6386,e.DiagnosticCategory.Message,"Performance_timings_for_diagnostics_or_extendedDiagnostics_are_not_available_in_this_session_A_nativ_6386","Performance timings for '--diagnostics' or '--extendedDiagnostics' are not available in this session. A native implementation of the Web Performance API could not be found."),The_signature_0_of_1_is_deprecated:t(6387,e.DiagnosticCategory.Suggestion,"The_signature_0_of_1_is_deprecated_6387","The signature '{0}' of '{1}' is deprecated.",void 0,void 0,!0),The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1:t(6500,e.DiagnosticCategory.Message,"The_expected_type_comes_from_property_0_which_is_declared_here_on_type_1_6500","The expected type comes from property '{0}' which is declared here on type '{1}'"),The_expected_type_comes_from_this_index_signature:t(6501,e.DiagnosticCategory.Message,"The_expected_type_comes_from_this_index_signature_6501","The expected type comes from this index signature."),The_expected_type_comes_from_the_return_type_of_this_signature:t(6502,e.DiagnosticCategory.Message,"The_expected_type_comes_from_the_return_type_of_this_signature_6502","The expected type comes from the return type of this signature."),Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing:t(6503,e.DiagnosticCategory.Message,"Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing_6503","Print names of files that are part of the compilation and then stop processing."),File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option:t(6504,e.DiagnosticCategory.Error,"File_0_is_a_JavaScript_file_Did_you_mean_to_enable_the_allowJs_option_6504","File '{0}' is a JavaScript file. Did you mean to enable the 'allowJs' option?"),Print_names_of_files_and_the_reason_they_are_part_of_the_compilation:t(6505,e.DiagnosticCategory.Message,"Print_names_of_files_and_the_reason_they_are_part_of_the_compilation_6505","Print names of files and the reason they are part of the compilation."),Require_undeclared_properties_from_index_signatures_to_use_element_accesses:t(6803,e.DiagnosticCategory.Error,"Require_undeclared_properties_from_index_signatures_to_use_element_accesses_6803","Require undeclared properties from index signatures to use element accesses."),Include_undefined_in_index_signature_results:t(6800,e.DiagnosticCategory.Message,"Include_undefined_in_index_signature_results_6800","Include 'undefined' in index signature results"),Variable_0_implicitly_has_an_1_type:t(7005,e.DiagnosticCategory.Error,"Variable_0_implicitly_has_an_1_type_7005","Variable '{0}' implicitly has an '{1}' type."),Parameter_0_implicitly_has_an_1_type:t(7006,e.DiagnosticCategory.Error,"Parameter_0_implicitly_has_an_1_type_7006","Parameter '{0}' implicitly has an '{1}' type."),Member_0_implicitly_has_an_1_type:t(7008,e.DiagnosticCategory.Error,"Member_0_implicitly_has_an_1_type_7008","Member '{0}' implicitly has an '{1}' type."),new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type:t(7009,e.DiagnosticCategory.Error,"new_expression_whose_target_lacks_a_construct_signature_implicitly_has_an_any_type_7009","'new' expression, whose target lacks a construct signature, implicitly has an 'any' type."),_0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type:t(7010,e.DiagnosticCategory.Error,"_0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type_7010","'{0}', which lacks return-type annotation, implicitly has an '{1}' return type."),Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type:t(7011,e.DiagnosticCategory.Error,"Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type_7011","Function expression, which lacks return-type annotation, implicitly has an '{0}' return type."),Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type:t(7013,e.DiagnosticCategory.Error,"Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7013","Construct signature, which lacks return-type annotation, implicitly has an 'any' return type."),Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type:t(7014,e.DiagnosticCategory.Error,"Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type_7014","Function type, which lacks return-type annotation, implicitly has an '{0}' return type."),Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number:t(7015,e.DiagnosticCategory.Error,"Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number_7015","Element implicitly has an 'any' type because index expression is not of type 'number'."),Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type:t(7016,e.DiagnosticCategory.Error,"Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type_7016","Could not find a declaration file for module '{0}'. '{1}' implicitly has an 'any' type."),Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature:t(7017,e.DiagnosticCategory.Error,"Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_7017","Element implicitly has an 'any' type because type '{0}' has no index signature."),Object_literal_s_property_0_implicitly_has_an_1_type:t(7018,e.DiagnosticCategory.Error,"Object_literal_s_property_0_implicitly_has_an_1_type_7018","Object literal's property '{0}' implicitly has an '{1}' type."),Rest_parameter_0_implicitly_has_an_any_type:t(7019,e.DiagnosticCategory.Error,"Rest_parameter_0_implicitly_has_an_any_type_7019","Rest parameter '{0}' implicitly has an 'any[]' type."),Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type:t(7020,e.DiagnosticCategory.Error,"Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type_7020","Call signature, which lacks return-type annotation, implicitly has an 'any' return type."),_0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer:t(7022,e.DiagnosticCategory.Error,"_0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or__7022","'{0}' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer."),_0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions:t(7023,e.DiagnosticCategory.Error,"_0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_reference_7023","'{0}' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions."),Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions:t(7024,e.DiagnosticCategory.Error,"Function_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_ref_7024","Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions."),Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_return_type_annotation:t(7025,e.DiagnosticCategory.Error,"Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_retu_7025","Generator implicitly has yield type '{0}' because it does not yield any values. Consider supplying a return type annotation."),JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists:t(7026,e.DiagnosticCategory.Error,"JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists_7026","JSX element implicitly has type 'any' because no interface 'JSX.{0}' exists."),Unreachable_code_detected:t(7027,e.DiagnosticCategory.Error,"Unreachable_code_detected_7027","Unreachable code detected.",!0),Unused_label:t(7028,e.DiagnosticCategory.Error,"Unused_label_7028","Unused label.",!0),Fallthrough_case_in_switch:t(7029,e.DiagnosticCategory.Error,"Fallthrough_case_in_switch_7029","Fallthrough case in switch."),Not_all_code_paths_return_a_value:t(7030,e.DiagnosticCategory.Error,"Not_all_code_paths_return_a_value_7030","Not all code paths return a value."),Binding_element_0_implicitly_has_an_1_type:t(7031,e.DiagnosticCategory.Error,"Binding_element_0_implicitly_has_an_1_type_7031","Binding element '{0}' implicitly has an '{1}' type."),Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation:t(7032,e.DiagnosticCategory.Error,"Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation_7032","Property '{0}' implicitly has type 'any', because its set accessor lacks a parameter type annotation."),Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation:t(7033,e.DiagnosticCategory.Error,"Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation_7033","Property '{0}' implicitly has type 'any', because its get accessor lacks a return type annotation."),Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined:t(7034,e.DiagnosticCategory.Error,"Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined_7034","Variable '{0}' implicitly has type '{1}' in some locations where its type cannot be determined."),Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0:t(7035,e.DiagnosticCategory.Error,"Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare__7035","Try `npm i --save-dev @types/{1}` if it exists or add a new declaration (.d.ts) file containing `declare module '{0}';`"),Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0:t(7036,e.DiagnosticCategory.Error,"Dynamic_import_s_specifier_must_be_of_type_string_but_here_has_type_0_7036","Dynamic import's specifier must be of type 'string', but here has type '{0}'."),Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for_all_imports_Implies_allowSyntheticDefaultImports:t(7037,e.DiagnosticCategory.Message,"Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for__7037","Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'."),Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cause_a_failure_at_runtime_Consider_using_a_default_import_or_import_require_here_instead:t(7038,e.DiagnosticCategory.Message,"Type_originates_at_this_import_A_namespace_style_import_cannot_be_called_or_constructed_and_will_cau_7038","Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead."),Mapped_object_type_implicitly_has_an_any_template_type:t(7039,e.DiagnosticCategory.Error,"Mapped_object_type_implicitly_has_an_any_template_type_7039","Mapped object type implicitly has an 'any' template type."),If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1:t(7040,e.DiagnosticCategory.Error,"If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_S_7040","If the '{0}' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/{1}`"),The_containing_arrow_function_captures_the_global_value_of_this:t(7041,e.DiagnosticCategory.Error,"The_containing_arrow_function_captures_the_global_value_of_this_7041","The containing arrow function captures the global value of 'this'."),Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used:t(7042,e.DiagnosticCategory.Error,"Module_0_was_resolved_to_1_but_resolveJsonModule_is_not_used_7042","Module '{0}' was resolved to '{1}', but '--resolveJsonModule' is not used."),Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage:t(7043,e.DiagnosticCategory.Suggestion,"Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7043","Variable '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."),Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage:t(7044,e.DiagnosticCategory.Suggestion,"Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7044","Parameter '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."),Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage:t(7045,e.DiagnosticCategory.Suggestion,"Member_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage_7045","Member '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage."),Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage:t(7046,e.DiagnosticCategory.Suggestion,"Variable_0_implicitly_has_type_1_in_some_locations_but_a_better_type_may_be_inferred_from_usage_7046","Variable '{0}' implicitly has type '{1}' in some locations, but a better type may be inferred from usage."),Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage:t(7047,e.DiagnosticCategory.Suggestion,"Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage_7047","Rest parameter '{0}' implicitly has an 'any[]' type, but a better type may be inferred from usage."),Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage:t(7048,e.DiagnosticCategory.Suggestion,"Property_0_implicitly_has_type_any_but_a_better_type_for_its_get_accessor_may_be_inferred_from_usage_7048","Property '{0}' implicitly has type 'any', but a better type for its get accessor may be inferred from usage."),Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage:t(7049,e.DiagnosticCategory.Suggestion,"Property_0_implicitly_has_type_any_but_a_better_type_for_its_set_accessor_may_be_inferred_from_usage_7049","Property '{0}' implicitly has type 'any', but a better type for its set accessor may be inferred from usage."),_0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage:t(7050,e.DiagnosticCategory.Suggestion,"_0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage_7050","'{0}' implicitly has an '{1}' return type, but a better type may be inferred from usage."),Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1:t(7051,e.DiagnosticCategory.Error,"Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1_7051","Parameter has a name but no type. Did you mean '{0}: {1}'?"),Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1:t(7052,e.DiagnosticCategory.Error,"Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1_7052","Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}'?"),Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1:t(7053,e.DiagnosticCategory.Error,"Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1_7053","Element implicitly has an 'any' type because expression of type '{0}' can't be used to index type '{1}'."),No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1:t(7054,e.DiagnosticCategory.Error,"No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1_7054","No index signature with a parameter of type '{0}' was found on type '{1}'."),_0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type:t(7055,e.DiagnosticCategory.Error,"_0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type_7055","'{0}', which lacks return-type annotation, implicitly has an '{1}' yield type."),The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed:t(7056,e.DiagnosticCategory.Error,"The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_ty_7056","The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed."),yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_type_annotation:t(7057,e.DiagnosticCategory.Error,"yield_expression_implicitly_results_in_an_any_type_because_its_containing_generator_lacks_a_return_t_7057","'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation."),You_cannot_rename_this_element:t(8e3,e.DiagnosticCategory.Error,"You_cannot_rename_this_element_8000","You cannot rename this element."),You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library:t(8001,e.DiagnosticCategory.Error,"You_cannot_rename_elements_that_are_defined_in_the_standard_TypeScript_library_8001","You cannot rename elements that are defined in the standard TypeScript library."),import_can_only_be_used_in_TypeScript_files:t(8002,e.DiagnosticCategory.Error,"import_can_only_be_used_in_TypeScript_files_8002","'import ... =' can only be used in TypeScript files."),export_can_only_be_used_in_TypeScript_files:t(8003,e.DiagnosticCategory.Error,"export_can_only_be_used_in_TypeScript_files_8003","'export =' can only be used in TypeScript files."),Type_parameter_declarations_can_only_be_used_in_TypeScript_files:t(8004,e.DiagnosticCategory.Error,"Type_parameter_declarations_can_only_be_used_in_TypeScript_files_8004","Type parameter declarations can only be used in TypeScript files."),implements_clauses_can_only_be_used_in_TypeScript_files:t(8005,e.DiagnosticCategory.Error,"implements_clauses_can_only_be_used_in_TypeScript_files_8005","'implements' clauses can only be used in TypeScript files."),_0_declarations_can_only_be_used_in_TypeScript_files:t(8006,e.DiagnosticCategory.Error,"_0_declarations_can_only_be_used_in_TypeScript_files_8006","'{0}' declarations can only be used in TypeScript files."),Type_aliases_can_only_be_used_in_TypeScript_files:t(8008,e.DiagnosticCategory.Error,"Type_aliases_can_only_be_used_in_TypeScript_files_8008","Type aliases can only be used in TypeScript files."),The_0_modifier_can_only_be_used_in_TypeScript_files:t(8009,e.DiagnosticCategory.Error,"The_0_modifier_can_only_be_used_in_TypeScript_files_8009","The '{0}' modifier can only be used in TypeScript files."),Type_annotations_can_only_be_used_in_TypeScript_files:t(8010,e.DiagnosticCategory.Error,"Type_annotations_can_only_be_used_in_TypeScript_files_8010","Type annotations can only be used in TypeScript files."),Type_arguments_can_only_be_used_in_TypeScript_files:t(8011,e.DiagnosticCategory.Error,"Type_arguments_can_only_be_used_in_TypeScript_files_8011","Type arguments can only be used in TypeScript files."),Parameter_modifiers_can_only_be_used_in_TypeScript_files:t(8012,e.DiagnosticCategory.Error,"Parameter_modifiers_can_only_be_used_in_TypeScript_files_8012","Parameter modifiers can only be used in TypeScript files."),Non_null_assertions_can_only_be_used_in_TypeScript_files:t(8013,e.DiagnosticCategory.Error,"Non_null_assertions_can_only_be_used_in_TypeScript_files_8013","Non-null assertions can only be used in TypeScript files."),Type_assertion_expressions_can_only_be_used_in_TypeScript_files:t(8016,e.DiagnosticCategory.Error,"Type_assertion_expressions_can_only_be_used_in_TypeScript_files_8016","Type assertion expressions can only be used in TypeScript files."),Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0:t(8017,e.DiagnosticCategory.Error,"Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0_8017","Octal literal types must use ES2015 syntax. Use the syntax '{0}'."),Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0:t(8018,e.DiagnosticCategory.Error,"Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0_8018","Octal literals are not allowed in enums members initializer. Use the syntax '{0}'."),Report_errors_in_js_files:t(8019,e.DiagnosticCategory.Message,"Report_errors_in_js_files_8019","Report errors in .js files."),JSDoc_types_can_only_be_used_inside_documentation_comments:t(8020,e.DiagnosticCategory.Error,"JSDoc_types_can_only_be_used_inside_documentation_comments_8020","JSDoc types can only be used inside documentation comments."),JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags:t(8021,e.DiagnosticCategory.Error,"JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags_8021","JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags."),JSDoc_0_is_not_attached_to_a_class:t(8022,e.DiagnosticCategory.Error,"JSDoc_0_is_not_attached_to_a_class_8022","JSDoc '@{0}' is not attached to a class."),JSDoc_0_1_does_not_match_the_extends_2_clause:t(8023,e.DiagnosticCategory.Error,"JSDoc_0_1_does_not_match_the_extends_2_clause_8023","JSDoc '@{0} {1}' does not match the 'extends {2}' clause."),JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name:t(8024,e.DiagnosticCategory.Error,"JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_8024","JSDoc '@param' tag has name '{0}', but there is no parameter with that name."),Class_declarations_cannot_have_more_than_one_augments_or_extends_tag:t(8025,e.DiagnosticCategory.Error,"Class_declarations_cannot_have_more_than_one_augments_or_extends_tag_8025","Class declarations cannot have more than one `@augments` or `@extends` tag."),Expected_0_type_arguments_provide_these_with_an_extends_tag:t(8026,e.DiagnosticCategory.Error,"Expected_0_type_arguments_provide_these_with_an_extends_tag_8026","Expected {0} type arguments; provide these with an '@extends' tag."),Expected_0_1_type_arguments_provide_these_with_an_extends_tag:t(8027,e.DiagnosticCategory.Error,"Expected_0_1_type_arguments_provide_these_with_an_extends_tag_8027","Expected {0}-{1} type arguments; provide these with an '@extends' tag."),JSDoc_may_only_appear_in_the_last_parameter_of_a_signature:t(8028,e.DiagnosticCategory.Error,"JSDoc_may_only_appear_in_the_last_parameter_of_a_signature_8028","JSDoc '...' may only appear in the last parameter of a signature."),JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_had_an_array_type:t(8029,e.DiagnosticCategory.Error,"JSDoc_param_tag_has_name_0_but_there_is_no_parameter_with_that_name_It_would_match_arguments_if_it_h_8029","JSDoc '@param' tag has name '{0}', but there is no parameter with that name. It would match 'arguments' if it had an array type."),The_type_of_a_function_declaration_must_match_the_function_s_signature:t(8030,e.DiagnosticCategory.Error,"The_type_of_a_function_declaration_must_match_the_function_s_signature_8030","The type of a function declaration must match the function's signature."),You_cannot_rename_a_module_via_a_global_import:t(8031,e.DiagnosticCategory.Error,"You_cannot_rename_a_module_via_a_global_import_8031","You cannot rename a module via a global import."),Qualified_name_0_is_not_allowed_without_a_leading_param_object_1:t(8032,e.DiagnosticCategory.Error,"Qualified_name_0_is_not_allowed_without_a_leading_param_object_1_8032","Qualified name '{0}' is not allowed without a leading '@param {object} {1}'."),A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags:t(8033,e.DiagnosticCategory.Error,"A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags_8033","A JSDoc '@typedef' comment may not contain multiple '@type' tags."),The_tag_was_first_specified_here:t(8034,e.DiagnosticCategory.Error,"The_tag_was_first_specified_here_8034","The tag was first specified here."),Only_identifiers_Slashqualified_names_with_optional_type_arguments_are_currently_supported_in_a_class_extends_clause:t(9002,e.DiagnosticCategory.Error,"Only_identifiers_Slashqualified_names_with_optional_type_arguments_are_currently_supported_in_a_clas_9002","Only identifiers/qualified-names with optional type arguments are currently supported in a class 'extends' clause."),class_expressions_are_not_currently_supported:t(9003,e.DiagnosticCategory.Error,"class_expressions_are_not_currently_supported_9003","'class' expressions are not currently supported."),Language_service_is_disabled:t(9004,e.DiagnosticCategory.Error,"Language_service_is_disabled_9004","Language service is disabled."),Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_declaration_emit:t(9005,e.DiagnosticCategory.Error,"Declaration_emit_for_this_file_requires_using_private_name_0_An_explicit_type_annotation_may_unblock_9005","Declaration emit for this file requires using private name '{0}'. An explicit type annotation may unblock declaration emit."),Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotation_may_unblock_declaration_emit:t(9006,e.DiagnosticCategory.Error,"Declaration_emit_for_this_file_requires_using_private_name_0_from_module_1_An_explicit_type_annotati_9006","Declaration emit for this file requires using private name '{0}' from module '{1}'. An explicit type annotation may unblock declaration emit."),JSX_attributes_must_only_be_assigned_a_non_empty_expression:t(17e3,e.DiagnosticCategory.Error,"JSX_attributes_must_only_be_assigned_a_non_empty_expression_17000","JSX attributes must only be assigned a non-empty 'expression'."),JSX_elements_cannot_have_multiple_attributes_with_the_same_name:t(17001,e.DiagnosticCategory.Error,"JSX_elements_cannot_have_multiple_attributes_with_the_same_name_17001","JSX elements cannot have multiple attributes with the same name."),Expected_corresponding_JSX_closing_tag_for_0:t(17002,e.DiagnosticCategory.Error,"Expected_corresponding_JSX_closing_tag_for_0_17002","Expected corresponding JSX closing tag for '{0}'."),JSX_attribute_expected:t(17003,e.DiagnosticCategory.Error,"JSX_attribute_expected_17003","JSX attribute expected."),Cannot_use_JSX_unless_the_jsx_flag_is_provided:t(17004,e.DiagnosticCategory.Error,"Cannot_use_JSX_unless_the_jsx_flag_is_provided_17004","Cannot use JSX unless the '--jsx' flag is provided."),A_constructor_cannot_contain_a_super_call_when_its_class_extends_null:t(17005,e.DiagnosticCategory.Error,"A_constructor_cannot_contain_a_super_call_when_its_class_extends_null_17005","A constructor cannot contain a 'super' call when its class extends 'null'."),An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses:t(17006,e.DiagnosticCategory.Error,"An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_ex_17006","An unary expression with the '{0}' operator is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses."),A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses:t(17007,e.DiagnosticCategory.Error,"A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Con_17007","A type assertion expression is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses."),JSX_element_0_has_no_corresponding_closing_tag:t(17008,e.DiagnosticCategory.Error,"JSX_element_0_has_no_corresponding_closing_tag_17008","JSX element '{0}' has no corresponding closing tag."),super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class:t(17009,e.DiagnosticCategory.Error,"super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class_17009","'super' must be called before accessing 'this' in the constructor of a derived class."),Unknown_type_acquisition_option_0:t(17010,e.DiagnosticCategory.Error,"Unknown_type_acquisition_option_0_17010","Unknown type acquisition option '{0}'."),super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class:t(17011,e.DiagnosticCategory.Error,"super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class_17011","'super' must be called before accessing a property of 'super' in the constructor of a derived class."),_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2:t(17012,e.DiagnosticCategory.Error,"_0_is_not_a_valid_meta_property_for_keyword_1_Did_you_mean_2_17012","'{0}' is not a valid meta-property for keyword '{1}'. Did you mean '{2}'?"),Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constructor:t(17013,e.DiagnosticCategory.Error,"Meta_property_0_is_only_allowed_in_the_body_of_a_function_declaration_function_expression_or_constru_17013","Meta-property '{0}' is only allowed in the body of a function declaration, function expression, or constructor."),JSX_fragment_has_no_corresponding_closing_tag:t(17014,e.DiagnosticCategory.Error,"JSX_fragment_has_no_corresponding_closing_tag_17014","JSX fragment has no corresponding closing tag."),Expected_corresponding_closing_tag_for_JSX_fragment:t(17015,e.DiagnosticCategory.Error,"Expected_corresponding_closing_tag_for_JSX_fragment_17015","Expected corresponding closing tag for JSX fragment."),The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_compiler_option:t(17016,e.DiagnosticCategory.Error,"The_jsxFragmentFactory_compiler_option_must_be_provided_to_use_JSX_fragments_with_the_jsxFactory_com_17016","The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option."),An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments:t(17017,e.DiagnosticCategory.Error,"An_jsxFrag_pragma_is_required_when_using_an_jsx_pragma_with_JSX_fragments_17017","An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments."),Unknown_type_acquisition_option_0_Did_you_mean_1:t(17018,e.DiagnosticCategory.Error,"Unknown_type_acquisition_option_0_Did_you_mean_1_17018","Unknown type acquisition option '{0}'. Did you mean '{1}'?"),Circularity_detected_while_resolving_configuration_Colon_0:t(18e3,e.DiagnosticCategory.Error,"Circularity_detected_while_resolving_configuration_Colon_0_18000","Circularity detected while resolving configuration: {0}"),A_path_in_an_extends_option_must_be_relative_or_rooted_but_0_is_not:t(18001,e.DiagnosticCategory.Error,"A_path_in_an_extends_option_must_be_relative_or_rooted_but_0_is_not_18001","A path in an 'extends' option must be relative or rooted, but '{0}' is not."),The_files_list_in_config_file_0_is_empty:t(18002,e.DiagnosticCategory.Error,"The_files_list_in_config_file_0_is_empty_18002","The 'files' list in config file '{0}' is empty."),No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2:t(18003,e.DiagnosticCategory.Error,"No_inputs_were_found_in_config_file_0_Specified_include_paths_were_1_and_exclude_paths_were_2_18003","No inputs were found in config file '{0}'. Specified 'include' paths were '{1}' and 'exclude' paths were '{2}'."),File_is_a_CommonJS_module_it_may_be_converted_to_an_ES6_module:t(80001,e.DiagnosticCategory.Suggestion,"File_is_a_CommonJS_module_it_may_be_converted_to_an_ES6_module_80001","File is a CommonJS module; it may be converted to an ES6 module."),This_constructor_function_may_be_converted_to_a_class_declaration:t(80002,e.DiagnosticCategory.Suggestion,"This_constructor_function_may_be_converted_to_a_class_declaration_80002","This constructor function may be converted to a class declaration."),Import_may_be_converted_to_a_default_import:t(80003,e.DiagnosticCategory.Suggestion,"Import_may_be_converted_to_a_default_import_80003","Import may be converted to a default import."),JSDoc_types_may_be_moved_to_TypeScript_types:t(80004,e.DiagnosticCategory.Suggestion,"JSDoc_types_may_be_moved_to_TypeScript_types_80004","JSDoc types may be moved to TypeScript types."),require_call_may_be_converted_to_an_import:t(80005,e.DiagnosticCategory.Suggestion,"require_call_may_be_converted_to_an_import_80005","'require' call may be converted to an import."),This_may_be_converted_to_an_async_function:t(80006,e.DiagnosticCategory.Suggestion,"This_may_be_converted_to_an_async_function_80006","This may be converted to an async function."),await_has_no_effect_on_the_type_of_this_expression:t(80007,e.DiagnosticCategory.Suggestion,"await_has_no_effect_on_the_type_of_this_expression_80007","'await' has no effect on the type of this expression."),Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers:t(80008,e.DiagnosticCategory.Suggestion,"Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accur_80008","Numeric literals with absolute values equal to 2^53 or greater are too large to be represented accurately as integers."),Add_missing_super_call:t(90001,e.DiagnosticCategory.Message,"Add_missing_super_call_90001","Add missing 'super()' call"),Make_super_call_the_first_statement_in_the_constructor:t(90002,e.DiagnosticCategory.Message,"Make_super_call_the_first_statement_in_the_constructor_90002","Make 'super()' call the first statement in the constructor"),Change_extends_to_implements:t(90003,e.DiagnosticCategory.Message,"Change_extends_to_implements_90003","Change 'extends' to 'implements'"),Remove_unused_declaration_for_Colon_0:t(90004,e.DiagnosticCategory.Message,"Remove_unused_declaration_for_Colon_0_90004","Remove unused declaration for: '{0}'"),Remove_import_from_0:t(90005,e.DiagnosticCategory.Message,"Remove_import_from_0_90005","Remove import from '{0}'"),Implement_interface_0:t(90006,e.DiagnosticCategory.Message,"Implement_interface_0_90006","Implement interface '{0}'"),Implement_inherited_abstract_class:t(90007,e.DiagnosticCategory.Message,"Implement_inherited_abstract_class_90007","Implement inherited abstract class"),Add_0_to_unresolved_variable:t(90008,e.DiagnosticCategory.Message,"Add_0_to_unresolved_variable_90008","Add '{0}.' to unresolved variable"),Remove_variable_statement:t(90010,e.DiagnosticCategory.Message,"Remove_variable_statement_90010","Remove variable statement"),Remove_template_tag:t(90011,e.DiagnosticCategory.Message,"Remove_template_tag_90011","Remove template tag"),Remove_type_parameters:t(90012,e.DiagnosticCategory.Message,"Remove_type_parameters_90012","Remove type parameters"),Import_0_from_module_1:t(90013,e.DiagnosticCategory.Message,"Import_0_from_module_1_90013","Import '{0}' from module \"{1}\""),Change_0_to_1:t(90014,e.DiagnosticCategory.Message,"Change_0_to_1_90014","Change '{0}' to '{1}'"),Add_0_to_existing_import_declaration_from_1:t(90015,e.DiagnosticCategory.Message,"Add_0_to_existing_import_declaration_from_1_90015","Add '{0}' to existing import declaration from \"{1}\""),Declare_property_0:t(90016,e.DiagnosticCategory.Message,"Declare_property_0_90016","Declare property '{0}'"),Add_index_signature_for_property_0:t(90017,e.DiagnosticCategory.Message,"Add_index_signature_for_property_0_90017","Add index signature for property '{0}'"),Disable_checking_for_this_file:t(90018,e.DiagnosticCategory.Message,"Disable_checking_for_this_file_90018","Disable checking for this file"),Ignore_this_error_message:t(90019,e.DiagnosticCategory.Message,"Ignore_this_error_message_90019","Ignore this error message"),Initialize_property_0_in_the_constructor:t(90020,e.DiagnosticCategory.Message,"Initialize_property_0_in_the_constructor_90020","Initialize property '{0}' in the constructor"),Initialize_static_property_0:t(90021,e.DiagnosticCategory.Message,"Initialize_static_property_0_90021","Initialize static property '{0}'"),Change_spelling_to_0:t(90022,e.DiagnosticCategory.Message,"Change_spelling_to_0_90022","Change spelling to '{0}'"),Declare_method_0:t(90023,e.DiagnosticCategory.Message,"Declare_method_0_90023","Declare method '{0}'"),Declare_static_method_0:t(90024,e.DiagnosticCategory.Message,"Declare_static_method_0_90024","Declare static method '{0}'"),Prefix_0_with_an_underscore:t(90025,e.DiagnosticCategory.Message,"Prefix_0_with_an_underscore_90025","Prefix '{0}' with an underscore"),Rewrite_as_the_indexed_access_type_0:t(90026,e.DiagnosticCategory.Message,"Rewrite_as_the_indexed_access_type_0_90026","Rewrite as the indexed access type '{0}'"),Declare_static_property_0:t(90027,e.DiagnosticCategory.Message,"Declare_static_property_0_90027","Declare static property '{0}'"),Call_decorator_expression:t(90028,e.DiagnosticCategory.Message,"Call_decorator_expression_90028","Call decorator expression"),Add_async_modifier_to_containing_function:t(90029,e.DiagnosticCategory.Message,"Add_async_modifier_to_containing_function_90029","Add async modifier to containing function"),Replace_infer_0_with_unknown:t(90030,e.DiagnosticCategory.Message,"Replace_infer_0_with_unknown_90030","Replace 'infer {0}' with 'unknown'"),Replace_all_unused_infer_with_unknown:t(90031,e.DiagnosticCategory.Message,"Replace_all_unused_infer_with_unknown_90031","Replace all unused 'infer' with 'unknown'"),Import_default_0_from_module_1:t(90032,e.DiagnosticCategory.Message,"Import_default_0_from_module_1_90032","Import default '{0}' from module \"{1}\""),Add_default_import_0_to_existing_import_declaration_from_1:t(90033,e.DiagnosticCategory.Message,"Add_default_import_0_to_existing_import_declaration_from_1_90033","Add default import '{0}' to existing import declaration from \"{1}\""),Add_parameter_name:t(90034,e.DiagnosticCategory.Message,"Add_parameter_name_90034","Add parameter name"),Declare_private_property_0:t(90035,e.DiagnosticCategory.Message,"Declare_private_property_0_90035","Declare private property '{0}'"),Replace_0_with_Promise_1:t(90036,e.DiagnosticCategory.Message,"Replace_0_with_Promise_1_90036","Replace '{0}' with 'Promise<{1}>'"),Fix_all_incorrect_return_type_of_an_async_functions:t(90037,e.DiagnosticCategory.Message,"Fix_all_incorrect_return_type_of_an_async_functions_90037","Fix all incorrect return type of an async functions"),Declare_private_method_0:t(90038,e.DiagnosticCategory.Message,"Declare_private_method_0_90038","Declare private method '{0}'"),Remove_unused_destructuring_declaration:t(90039,e.DiagnosticCategory.Message,"Remove_unused_destructuring_declaration_90039","Remove unused destructuring declaration"),Remove_unused_declarations_for_Colon_0:t(90041,e.DiagnosticCategory.Message,"Remove_unused_declarations_for_Colon_0_90041","Remove unused declarations for: '{0}'"),Declare_a_private_field_named_0:t(90053,e.DiagnosticCategory.Message,"Declare_a_private_field_named_0_90053","Declare a private field named '{0}'."),Convert_function_to_an_ES2015_class:t(95001,e.DiagnosticCategory.Message,"Convert_function_to_an_ES2015_class_95001","Convert function to an ES2015 class"),Convert_function_0_to_class:t(95002,e.DiagnosticCategory.Message,"Convert_function_0_to_class_95002","Convert function '{0}' to class"),Convert_0_to_1_in_0:t(95003,e.DiagnosticCategory.Message,"Convert_0_to_1_in_0_95003","Convert '{0}' to '{1} in {0}'"),Extract_to_0_in_1:t(95004,e.DiagnosticCategory.Message,"Extract_to_0_in_1_95004","Extract to {0} in {1}"),Extract_function:t(95005,e.DiagnosticCategory.Message,"Extract_function_95005","Extract function"),Extract_constant:t(95006,e.DiagnosticCategory.Message,"Extract_constant_95006","Extract constant"),Extract_to_0_in_enclosing_scope:t(95007,e.DiagnosticCategory.Message,"Extract_to_0_in_enclosing_scope_95007","Extract to {0} in enclosing scope"),Extract_to_0_in_1_scope:t(95008,e.DiagnosticCategory.Message,"Extract_to_0_in_1_scope_95008","Extract to {0} in {1} scope"),Annotate_with_type_from_JSDoc:t(95009,e.DiagnosticCategory.Message,"Annotate_with_type_from_JSDoc_95009","Annotate with type from JSDoc"),Annotate_with_types_from_JSDoc:t(95010,e.DiagnosticCategory.Message,"Annotate_with_types_from_JSDoc_95010","Annotate with types from JSDoc"),Infer_type_of_0_from_usage:t(95011,e.DiagnosticCategory.Message,"Infer_type_of_0_from_usage_95011","Infer type of '{0}' from usage"),Infer_parameter_types_from_usage:t(95012,e.DiagnosticCategory.Message,"Infer_parameter_types_from_usage_95012","Infer parameter types from usage"),Convert_to_default_import:t(95013,e.DiagnosticCategory.Message,"Convert_to_default_import_95013","Convert to default import"),Install_0:t(95014,e.DiagnosticCategory.Message,"Install_0_95014","Install '{0}'"),Replace_import_with_0:t(95015,e.DiagnosticCategory.Message,"Replace_import_with_0_95015","Replace import with '{0}'."),Use_synthetic_default_member:t(95016,e.DiagnosticCategory.Message,"Use_synthetic_default_member_95016","Use synthetic 'default' member."),Convert_to_ES6_module:t(95017,e.DiagnosticCategory.Message,"Convert_to_ES6_module_95017","Convert to ES6 module"),Add_undefined_type_to_property_0:t(95018,e.DiagnosticCategory.Message,"Add_undefined_type_to_property_0_95018","Add 'undefined' type to property '{0}'"),Add_initializer_to_property_0:t(95019,e.DiagnosticCategory.Message,"Add_initializer_to_property_0_95019","Add initializer to property '{0}'"),Add_definite_assignment_assertion_to_property_0:t(95020,e.DiagnosticCategory.Message,"Add_definite_assignment_assertion_to_property_0_95020","Add definite assignment assertion to property '{0}'"),Convert_all_type_literals_to_mapped_type:t(95021,e.DiagnosticCategory.Message,"Convert_all_type_literals_to_mapped_type_95021","Convert all type literals to mapped type"),Add_all_missing_members:t(95022,e.DiagnosticCategory.Message,"Add_all_missing_members_95022","Add all missing members"),Infer_all_types_from_usage:t(95023,e.DiagnosticCategory.Message,"Infer_all_types_from_usage_95023","Infer all types from usage"),Delete_all_unused_declarations:t(95024,e.DiagnosticCategory.Message,"Delete_all_unused_declarations_95024","Delete all unused declarations"),Prefix_all_unused_declarations_with_where_possible:t(95025,e.DiagnosticCategory.Message,"Prefix_all_unused_declarations_with_where_possible_95025","Prefix all unused declarations with '_' where possible"),Fix_all_detected_spelling_errors:t(95026,e.DiagnosticCategory.Message,"Fix_all_detected_spelling_errors_95026","Fix all detected spelling errors"),Add_initializers_to_all_uninitialized_properties:t(95027,e.DiagnosticCategory.Message,"Add_initializers_to_all_uninitialized_properties_95027","Add initializers to all uninitialized properties"),Add_definite_assignment_assertions_to_all_uninitialized_properties:t(95028,e.DiagnosticCategory.Message,"Add_definite_assignment_assertions_to_all_uninitialized_properties_95028","Add definite assignment assertions to all uninitialized properties"),Add_undefined_type_to_all_uninitialized_properties:t(95029,e.DiagnosticCategory.Message,"Add_undefined_type_to_all_uninitialized_properties_95029","Add undefined type to all uninitialized properties"),Change_all_jsdoc_style_types_to_TypeScript:t(95030,e.DiagnosticCategory.Message,"Change_all_jsdoc_style_types_to_TypeScript_95030","Change all jsdoc-style types to TypeScript"),Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types:t(95031,e.DiagnosticCategory.Message,"Change_all_jsdoc_style_types_to_TypeScript_and_add_undefined_to_nullable_types_95031","Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)"),Implement_all_unimplemented_interfaces:t(95032,e.DiagnosticCategory.Message,"Implement_all_unimplemented_interfaces_95032","Implement all unimplemented interfaces"),Install_all_missing_types_packages:t(95033,e.DiagnosticCategory.Message,"Install_all_missing_types_packages_95033","Install all missing types packages"),Rewrite_all_as_indexed_access_types:t(95034,e.DiagnosticCategory.Message,"Rewrite_all_as_indexed_access_types_95034","Rewrite all as indexed access types"),Convert_all_to_default_imports:t(95035,e.DiagnosticCategory.Message,"Convert_all_to_default_imports_95035","Convert all to default imports"),Make_all_super_calls_the_first_statement_in_their_constructor:t(95036,e.DiagnosticCategory.Message,"Make_all_super_calls_the_first_statement_in_their_constructor_95036","Make all 'super()' calls the first statement in their constructor"),Add_qualifier_to_all_unresolved_variables_matching_a_member_name:t(95037,e.DiagnosticCategory.Message,"Add_qualifier_to_all_unresolved_variables_matching_a_member_name_95037","Add qualifier to all unresolved variables matching a member name"),Change_all_extended_interfaces_to_implements:t(95038,e.DiagnosticCategory.Message,"Change_all_extended_interfaces_to_implements_95038","Change all extended interfaces to 'implements'"),Add_all_missing_super_calls:t(95039,e.DiagnosticCategory.Message,"Add_all_missing_super_calls_95039","Add all missing super calls"),Implement_all_inherited_abstract_classes:t(95040,e.DiagnosticCategory.Message,"Implement_all_inherited_abstract_classes_95040","Implement all inherited abstract classes"),Add_all_missing_async_modifiers:t(95041,e.DiagnosticCategory.Message,"Add_all_missing_async_modifiers_95041","Add all missing 'async' modifiers"),Add_ts_ignore_to_all_error_messages:t(95042,e.DiagnosticCategory.Message,"Add_ts_ignore_to_all_error_messages_95042","Add '@ts-ignore' to all error messages"),Annotate_everything_with_types_from_JSDoc:t(95043,e.DiagnosticCategory.Message,"Annotate_everything_with_types_from_JSDoc_95043","Annotate everything with types from JSDoc"),Add_to_all_uncalled_decorators:t(95044,e.DiagnosticCategory.Message,"Add_to_all_uncalled_decorators_95044","Add '()' to all uncalled decorators"),Convert_all_constructor_functions_to_classes:t(95045,e.DiagnosticCategory.Message,"Convert_all_constructor_functions_to_classes_95045","Convert all constructor functions to classes"),Generate_get_and_set_accessors:t(95046,e.DiagnosticCategory.Message,"Generate_get_and_set_accessors_95046","Generate 'get' and 'set' accessors"),Convert_require_to_import:t(95047,e.DiagnosticCategory.Message,"Convert_require_to_import_95047","Convert 'require' to 'import'"),Convert_all_require_to_import:t(95048,e.DiagnosticCategory.Message,"Convert_all_require_to_import_95048","Convert all 'require' to 'import'"),Move_to_a_new_file:t(95049,e.DiagnosticCategory.Message,"Move_to_a_new_file_95049","Move to a new file"),Remove_unreachable_code:t(95050,e.DiagnosticCategory.Message,"Remove_unreachable_code_95050","Remove unreachable code"),Remove_all_unreachable_code:t(95051,e.DiagnosticCategory.Message,"Remove_all_unreachable_code_95051","Remove all unreachable code"),Add_missing_typeof:t(95052,e.DiagnosticCategory.Message,"Add_missing_typeof_95052","Add missing 'typeof'"),Remove_unused_label:t(95053,e.DiagnosticCategory.Message,"Remove_unused_label_95053","Remove unused label"),Remove_all_unused_labels:t(95054,e.DiagnosticCategory.Message,"Remove_all_unused_labels_95054","Remove all unused labels"),Convert_0_to_mapped_object_type:t(95055,e.DiagnosticCategory.Message,"Convert_0_to_mapped_object_type_95055","Convert '{0}' to mapped object type"),Convert_namespace_import_to_named_imports:t(95056,e.DiagnosticCategory.Message,"Convert_namespace_import_to_named_imports_95056","Convert namespace import to named imports"),Convert_named_imports_to_namespace_import:t(95057,e.DiagnosticCategory.Message,"Convert_named_imports_to_namespace_import_95057","Convert named imports to namespace import"),Add_or_remove_braces_in_an_arrow_function:t(95058,e.DiagnosticCategory.Message,"Add_or_remove_braces_in_an_arrow_function_95058","Add or remove braces in an arrow function"),Add_braces_to_arrow_function:t(95059,e.DiagnosticCategory.Message,"Add_braces_to_arrow_function_95059","Add braces to arrow function"),Remove_braces_from_arrow_function:t(95060,e.DiagnosticCategory.Message,"Remove_braces_from_arrow_function_95060","Remove braces from arrow function"),Convert_default_export_to_named_export:t(95061,e.DiagnosticCategory.Message,"Convert_default_export_to_named_export_95061","Convert default export to named export"),Convert_named_export_to_default_export:t(95062,e.DiagnosticCategory.Message,"Convert_named_export_to_default_export_95062","Convert named export to default export"),Add_missing_enum_member_0:t(95063,e.DiagnosticCategory.Message,"Add_missing_enum_member_0_95063","Add missing enum member '{0}'"),Add_all_missing_imports:t(95064,e.DiagnosticCategory.Message,"Add_all_missing_imports_95064","Add all missing imports"),Convert_to_async_function:t(95065,e.DiagnosticCategory.Message,"Convert_to_async_function_95065","Convert to async function"),Convert_all_to_async_functions:t(95066,e.DiagnosticCategory.Message,"Convert_all_to_async_functions_95066","Convert all to async functions"),Add_missing_call_parentheses:t(95067,e.DiagnosticCategory.Message,"Add_missing_call_parentheses_95067","Add missing call parentheses"),Add_all_missing_call_parentheses:t(95068,e.DiagnosticCategory.Message,"Add_all_missing_call_parentheses_95068","Add all missing call parentheses"),Add_unknown_conversion_for_non_overlapping_types:t(95069,e.DiagnosticCategory.Message,"Add_unknown_conversion_for_non_overlapping_types_95069","Add 'unknown' conversion for non-overlapping types"),Add_unknown_to_all_conversions_of_non_overlapping_types:t(95070,e.DiagnosticCategory.Message,"Add_unknown_to_all_conversions_of_non_overlapping_types_95070","Add 'unknown' to all conversions of non-overlapping types"),Add_missing_new_operator_to_call:t(95071,e.DiagnosticCategory.Message,"Add_missing_new_operator_to_call_95071","Add missing 'new' operator to call"),Add_missing_new_operator_to_all_calls:t(95072,e.DiagnosticCategory.Message,"Add_missing_new_operator_to_all_calls_95072","Add missing 'new' operator to all calls"),Add_names_to_all_parameters_without_names:t(95073,e.DiagnosticCategory.Message,"Add_names_to_all_parameters_without_names_95073","Add names to all parameters without names"),Enable_the_experimentalDecorators_option_in_your_configuration_file:t(95074,e.DiagnosticCategory.Message,"Enable_the_experimentalDecorators_option_in_your_configuration_file_95074","Enable the 'experimentalDecorators' option in your configuration file"),Convert_parameters_to_destructured_object:t(95075,e.DiagnosticCategory.Message,"Convert_parameters_to_destructured_object_95075","Convert parameters to destructured object"),Allow_accessing_UMD_globals_from_modules:t(95076,e.DiagnosticCategory.Message,"Allow_accessing_UMD_globals_from_modules_95076","Allow accessing UMD globals from modules."),Extract_type:t(95077,e.DiagnosticCategory.Message,"Extract_type_95077","Extract type"),Extract_to_type_alias:t(95078,e.DiagnosticCategory.Message,"Extract_to_type_alias_95078","Extract to type alias"),Extract_to_typedef:t(95079,e.DiagnosticCategory.Message,"Extract_to_typedef_95079","Extract to typedef"),Infer_this_type_of_0_from_usage:t(95080,e.DiagnosticCategory.Message,"Infer_this_type_of_0_from_usage_95080","Infer 'this' type of '{0}' from usage"),Add_const_to_unresolved_variable:t(95081,e.DiagnosticCategory.Message,"Add_const_to_unresolved_variable_95081","Add 'const' to unresolved variable"),Add_const_to_all_unresolved_variables:t(95082,e.DiagnosticCategory.Message,"Add_const_to_all_unresolved_variables_95082","Add 'const' to all unresolved variables"),Add_await:t(95083,e.DiagnosticCategory.Message,"Add_await_95083","Add 'await'"),Add_await_to_initializer_for_0:t(95084,e.DiagnosticCategory.Message,"Add_await_to_initializer_for_0_95084","Add 'await' to initializer for '{0}'"),Fix_all_expressions_possibly_missing_await:t(95085,e.DiagnosticCategory.Message,"Fix_all_expressions_possibly_missing_await_95085","Fix all expressions possibly missing 'await'"),Remove_unnecessary_await:t(95086,e.DiagnosticCategory.Message,"Remove_unnecessary_await_95086","Remove unnecessary 'await'"),Remove_all_unnecessary_uses_of_await:t(95087,e.DiagnosticCategory.Message,"Remove_all_unnecessary_uses_of_await_95087","Remove all unnecessary uses of 'await'"),Enable_the_jsx_flag_in_your_configuration_file:t(95088,e.DiagnosticCategory.Message,"Enable_the_jsx_flag_in_your_configuration_file_95088","Enable the '--jsx' flag in your configuration file"),Add_await_to_initializers:t(95089,e.DiagnosticCategory.Message,"Add_await_to_initializers_95089","Add 'await' to initializers"),Extract_to_interface:t(95090,e.DiagnosticCategory.Message,"Extract_to_interface_95090","Extract to interface"),Convert_to_a_bigint_numeric_literal:t(95091,e.DiagnosticCategory.Message,"Convert_to_a_bigint_numeric_literal_95091","Convert to a bigint numeric literal"),Convert_all_to_bigint_numeric_literals:t(95092,e.DiagnosticCategory.Message,"Convert_all_to_bigint_numeric_literals_95092","Convert all to bigint numeric literals"),Convert_const_to_let:t(95093,e.DiagnosticCategory.Message,"Convert_const_to_let_95093","Convert 'const' to 'let'"),Prefix_with_declare:t(95094,e.DiagnosticCategory.Message,"Prefix_with_declare_95094","Prefix with 'declare'"),Prefix_all_incorrect_property_declarations_with_declare:t(95095,e.DiagnosticCategory.Message,"Prefix_all_incorrect_property_declarations_with_declare_95095","Prefix all incorrect property declarations with 'declare'"),Convert_to_template_string:t(95096,e.DiagnosticCategory.Message,"Convert_to_template_string_95096","Convert to template string"),Add_export_to_make_this_file_into_a_module:t(95097,e.DiagnosticCategory.Message,"Add_export_to_make_this_file_into_a_module_95097","Add 'export {}' to make this file into a module"),Set_the_target_option_in_your_configuration_file_to_0:t(95098,e.DiagnosticCategory.Message,"Set_the_target_option_in_your_configuration_file_to_0_95098","Set the 'target' option in your configuration file to '{0}'"),Set_the_module_option_in_your_configuration_file_to_0:t(95099,e.DiagnosticCategory.Message,"Set_the_module_option_in_your_configuration_file_to_0_95099","Set the 'module' option in your configuration file to '{0}'"),Convert_invalid_character_to_its_html_entity_code:t(95100,e.DiagnosticCategory.Message,"Convert_invalid_character_to_its_html_entity_code_95100","Convert invalid character to its html entity code"),Convert_all_invalid_characters_to_HTML_entity_code:t(95101,e.DiagnosticCategory.Message,"Convert_all_invalid_characters_to_HTML_entity_code_95101","Convert all invalid characters to HTML entity code"),Add_class_tag:t(95102,e.DiagnosticCategory.Message,"Add_class_tag_95102","Add '@class' tag"),Add_this_tag:t(95103,e.DiagnosticCategory.Message,"Add_this_tag_95103","Add '@this' tag"),Add_this_parameter:t(95104,e.DiagnosticCategory.Message,"Add_this_parameter_95104","Add 'this' parameter."),Convert_function_expression_0_to_arrow_function:t(95105,e.DiagnosticCategory.Message,"Convert_function_expression_0_to_arrow_function_95105","Convert function expression '{0}' to arrow function"),Convert_function_declaration_0_to_arrow_function:t(95106,e.DiagnosticCategory.Message,"Convert_function_declaration_0_to_arrow_function_95106","Convert function declaration '{0}' to arrow function"),Fix_all_implicit_this_errors:t(95107,e.DiagnosticCategory.Message,"Fix_all_implicit_this_errors_95107","Fix all implicit-'this' errors"),Wrap_invalid_character_in_an_expression_container:t(95108,e.DiagnosticCategory.Message,"Wrap_invalid_character_in_an_expression_container_95108","Wrap invalid character in an expression container"),Wrap_all_invalid_characters_in_an_expression_container:t(95109,e.DiagnosticCategory.Message,"Wrap_all_invalid_characters_in_an_expression_container_95109","Wrap all invalid characters in an expression container"),Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_json_to_read_more_about_this_file:t(95110,e.DiagnosticCategory.Message,"Visit_https_Colon_Slash_Slashaka_ms_Slashtsconfig_json_to_read_more_about_this_file_95110","Visit https://aka.ms/tsconfig.json to read more about this file"),Add_a_return_statement:t(95111,e.DiagnosticCategory.Message,"Add_a_return_statement_95111","Add a return statement"),Remove_braces_from_arrow_function_body:t(95112,e.DiagnosticCategory.Message,"Remove_braces_from_arrow_function_body_95112","Remove braces from arrow function body"),Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal:t(95113,e.DiagnosticCategory.Message,"Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal_95113","Wrap the following body with parentheses which should be an object literal"),Add_all_missing_return_statement:t(95114,e.DiagnosticCategory.Message,"Add_all_missing_return_statement_95114","Add all missing return statement"),Remove_braces_from_all_arrow_function_bodies_with_relevant_issues:t(95115,e.DiagnosticCategory.Message,"Remove_braces_from_all_arrow_function_bodies_with_relevant_issues_95115","Remove braces from all arrow function bodies with relevant issues"),Wrap_all_object_literal_with_parentheses:t(95116,e.DiagnosticCategory.Message,"Wrap_all_object_literal_with_parentheses_95116","Wrap all object literal with parentheses"),Move_labeled_tuple_element_modifiers_to_labels:t(95117,e.DiagnosticCategory.Message,"Move_labeled_tuple_element_modifiers_to_labels_95117","Move labeled tuple element modifiers to labels"),Convert_overload_list_to_single_signature:t(95118,e.DiagnosticCategory.Message,"Convert_overload_list_to_single_signature_95118","Convert overload list to single signature"),Generate_get_and_set_accessors_for_all_overriding_properties:t(95119,e.DiagnosticCategory.Message,"Generate_get_and_set_accessors_for_all_overriding_properties_95119","Generate 'get' and 'set' accessors for all overriding properties"),Wrap_in_JSX_fragment:t(95120,e.DiagnosticCategory.Message,"Wrap_in_JSX_fragment_95120","Wrap in JSX fragment"),Wrap_all_unparented_JSX_in_JSX_fragment:t(95121,e.DiagnosticCategory.Message,"Wrap_all_unparented_JSX_in_JSX_fragment_95121","Wrap all unparented JSX in JSX fragment"),Convert_arrow_function_or_function_expression:t(95122,e.DiagnosticCategory.Message,"Convert_arrow_function_or_function_expression_95122","Convert arrow function or function expression"),Convert_to_anonymous_function:t(95123,e.DiagnosticCategory.Message,"Convert_to_anonymous_function_95123","Convert to anonymous function"),Convert_to_named_function:t(95124,e.DiagnosticCategory.Message,"Convert_to_named_function_95124","Convert to named function"),Convert_to_arrow_function:t(95125,e.DiagnosticCategory.Message,"Convert_to_arrow_function_95125","Convert to arrow function"),Remove_parentheses:t(95126,e.DiagnosticCategory.Message,"Remove_parentheses_95126","Remove parentheses"),Could_not_find_a_containing_arrow_function:t(95127,e.DiagnosticCategory.Message,"Could_not_find_a_containing_arrow_function_95127","Could not find a containing arrow function"),Containing_function_is_not_an_arrow_function:t(95128,e.DiagnosticCategory.Message,"Containing_function_is_not_an_arrow_function_95128","Containing function is not an arrow function"),Could_not_find_export_statement:t(95129,e.DiagnosticCategory.Message,"Could_not_find_export_statement_95129","Could not find export statement"),This_file_already_has_a_default_export:t(95130,e.DiagnosticCategory.Message,"This_file_already_has_a_default_export_95130","This file already has a default export"),Could_not_find_import_clause:t(95131,e.DiagnosticCategory.Message,"Could_not_find_import_clause_95131","Could not find import clause"),Could_not_find_namespace_import_or_named_imports:t(95132,e.DiagnosticCategory.Message,"Could_not_find_namespace_import_or_named_imports_95132","Could not find namespace import or named imports"),Selection_is_not_a_valid_type_node:t(95133,e.DiagnosticCategory.Message,"Selection_is_not_a_valid_type_node_95133","Selection is not a valid type node"),No_type_could_be_extracted_from_this_type_node:t(95134,e.DiagnosticCategory.Message,"No_type_could_be_extracted_from_this_type_node_95134","No type could be extracted from this type node"),Could_not_find_property_for_which_to_generate_accessor:t(95135,e.DiagnosticCategory.Message,"Could_not_find_property_for_which_to_generate_accessor_95135","Could not find property for which to generate accessor"),Name_is_not_valid:t(95136,e.DiagnosticCategory.Message,"Name_is_not_valid_95136","Name is not valid"),Can_only_convert_property_with_modifier:t(95137,e.DiagnosticCategory.Message,"Can_only_convert_property_with_modifier_95137","Can only convert property with modifier"),Switch_each_misused_0_to_1:t(95138,e.DiagnosticCategory.Message,"Switch_each_misused_0_to_1_95138","Switch each misused '{0}' to '{1}'"),Convert_to_optional_chain_expression:t(95139,e.DiagnosticCategory.Message,"Convert_to_optional_chain_expression_95139","Convert to optional chain expression"),Could_not_find_convertible_access_expression:t(95140,e.DiagnosticCategory.Message,"Could_not_find_convertible_access_expression_95140","Could not find convertible access expression"),Could_not_find_matching_access_expressions:t(95141,e.DiagnosticCategory.Message,"Could_not_find_matching_access_expressions_95141","Could not find matching access expressions"),Can_only_convert_logical_AND_access_chains:t(95142,e.DiagnosticCategory.Message,"Can_only_convert_logical_AND_access_chains_95142","Can only convert logical AND access chains"),Add_void_to_Promise_resolved_without_a_value:t(95143,e.DiagnosticCategory.Message,"Add_void_to_Promise_resolved_without_a_value_95143","Add 'void' to Promise resolved without a value"),Add_void_to_all_Promises_resolved_without_a_value:t(95144,e.DiagnosticCategory.Message,"Add_void_to_all_Promises_resolved_without_a_value_95144","Add 'void' to all Promises resolved without a value"),Use_element_access_for_0:t(95145,e.DiagnosticCategory.Message,"Use_element_access_for_0_95145","Use element access for '{0}'"),Use_element_access_for_all_undeclared_properties:t(95146,e.DiagnosticCategory.Message,"Use_element_access_for_all_undeclared_properties_95146","Use element access for all undeclared properties."),Delete_all_unused_imports:t(95147,e.DiagnosticCategory.Message,"Delete_all_unused_imports_95147","Delete all unused imports"),Infer_function_return_type:t(95148,e.DiagnosticCategory.Message,"Infer_function_return_type_95148","Infer function return type"),Return_type_must_be_inferred_from_a_function:t(95149,e.DiagnosticCategory.Message,"Return_type_must_be_inferred_from_a_function_95149","Return type must be inferred from a function"),Could_not_determine_function_return_type:t(95150,e.DiagnosticCategory.Message,"Could_not_determine_function_return_type_95150","Could not determine function return type"),Could_not_convert_to_arrow_function:t(95151,e.DiagnosticCategory.Message,"Could_not_convert_to_arrow_function_95151","Could not convert to arrow function"),Could_not_convert_to_named_function:t(95152,e.DiagnosticCategory.Message,"Could_not_convert_to_named_function_95152","Could not convert to named function"),Could_not_convert_to_anonymous_function:t(95153,e.DiagnosticCategory.Message,"Could_not_convert_to_anonymous_function_95153","Could not convert to anonymous function"),Can_only_convert_string_concatenation:t(95154,e.DiagnosticCategory.Message,"Can_only_convert_string_concatenation_95154","Can only convert string concatenation"),Selection_is_not_a_valid_statement_or_statements:t(95155,e.DiagnosticCategory.Message,"Selection_is_not_a_valid_statement_or_statements_95155","Selection is not a valid statement or statements"),Add_missing_function_declaration_0:t(95156,e.DiagnosticCategory.Message,"Add_missing_function_declaration_0_95156","Add missing function declaration '{0}'"),Add_all_missing_function_declarations:t(95157,e.DiagnosticCategory.Message,"Add_all_missing_function_declarations_95157","Add all missing function declarations"),Method_not_implemented:t(95158,e.DiagnosticCategory.Message,"Method_not_implemented_95158","Method not implemented."),Function_not_implemented:t(95159,e.DiagnosticCategory.Message,"Function_not_implemented_95159","Function not implemented."),No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer:t(18004,e.DiagnosticCategory.Error,"No_value_exists_in_scope_for_the_shorthand_property_0_Either_declare_one_or_provide_an_initializer_18004","No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer."),Classes_may_not_have_a_field_named_constructor:t(18006,e.DiagnosticCategory.Error,"Classes_may_not_have_a_field_named_constructor_18006","Classes may not have a field named 'constructor'."),JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array:t(18007,e.DiagnosticCategory.Error,"JSX_expressions_may_not_use_the_comma_operator_Did_you_mean_to_write_an_array_18007","JSX expressions may not use the comma operator. Did you mean to write an array?"),Private_identifiers_cannot_be_used_as_parameters:t(18009,e.DiagnosticCategory.Error,"Private_identifiers_cannot_be_used_as_parameters_18009","Private identifiers cannot be used as parameters."),An_accessibility_modifier_cannot_be_used_with_a_private_identifier:t(18010,e.DiagnosticCategory.Error,"An_accessibility_modifier_cannot_be_used_with_a_private_identifier_18010","An accessibility modifier cannot be used with a private identifier."),The_operand_of_a_delete_operator_cannot_be_a_private_identifier:t(18011,e.DiagnosticCategory.Error,"The_operand_of_a_delete_operator_cannot_be_a_private_identifier_18011","The operand of a 'delete' operator cannot be a private identifier."),constructor_is_a_reserved_word:t(18012,e.DiagnosticCategory.Error,"constructor_is_a_reserved_word_18012","'#constructor' is a reserved word."),Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier:t(18013,e.DiagnosticCategory.Error,"Property_0_is_not_accessible_outside_class_1_because_it_has_a_private_identifier_18013","Property '{0}' is not accessible outside class '{1}' because it has a private identifier."),The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_private_identifier_with_the_same_spelling:t(18014,e.DiagnosticCategory.Error,"The_property_0_cannot_be_accessed_on_type_1_within_this_class_because_it_is_shadowed_by_another_priv_18014","The property '{0}' cannot be accessed on type '{1}' within this class because it is shadowed by another private identifier with the same spelling."),Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2:t(18015,e.DiagnosticCategory.Error,"Property_0_in_type_1_refers_to_a_different_member_that_cannot_be_accessed_from_within_type_2_18015","Property '{0}' in type '{1}' refers to a different member that cannot be accessed from within type '{2}'."),Private_identifiers_are_not_allowed_outside_class_bodies:t(18016,e.DiagnosticCategory.Error,"Private_identifiers_are_not_allowed_outside_class_bodies_18016","Private identifiers are not allowed outside class bodies."),The_shadowing_declaration_of_0_is_defined_here:t(18017,e.DiagnosticCategory.Error,"The_shadowing_declaration_of_0_is_defined_here_18017","The shadowing declaration of '{0}' is defined here"),The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here:t(18018,e.DiagnosticCategory.Error,"The_declaration_of_0_that_you_probably_intended_to_use_is_defined_here_18018","The declaration of '{0}' that you probably intended to use is defined here"),_0_modifier_cannot_be_used_with_a_private_identifier:t(18019,e.DiagnosticCategory.Error,"_0_modifier_cannot_be_used_with_a_private_identifier_18019","'{0}' modifier cannot be used with a private identifier."),A_method_cannot_be_named_with_a_private_identifier:t(18022,e.DiagnosticCategory.Error,"A_method_cannot_be_named_with_a_private_identifier_18022","A method cannot be named with a private identifier."),An_accessor_cannot_be_named_with_a_private_identifier:t(18023,e.DiagnosticCategory.Error,"An_accessor_cannot_be_named_with_a_private_identifier_18023","An accessor cannot be named with a private identifier."),An_enum_member_cannot_be_named_with_a_private_identifier:t(18024,e.DiagnosticCategory.Error,"An_enum_member_cannot_be_named_with_a_private_identifier_18024","An enum member cannot be named with a private identifier."),can_only_be_used_at_the_start_of_a_file:t(18026,e.DiagnosticCategory.Error,"can_only_be_used_at_the_start_of_a_file_18026","'#!' can only be used at the start of a file."),Compiler_reserves_name_0_when_emitting_private_identifier_downlevel:t(18027,e.DiagnosticCategory.Error,"Compiler_reserves_name_0_when_emitting_private_identifier_downlevel_18027","Compiler reserves name '{0}' when emitting private identifier downlevel."),Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher:t(18028,e.DiagnosticCategory.Error,"Private_identifiers_are_only_available_when_targeting_ECMAScript_2015_and_higher_18028","Private identifiers are only available when targeting ECMAScript 2015 and higher."),Private_identifiers_are_not_allowed_in_variable_declarations:t(18029,e.DiagnosticCategory.Error,"Private_identifiers_are_not_allowed_in_variable_declarations_18029","Private identifiers are not allowed in variable declarations."),An_optional_chain_cannot_contain_private_identifiers:t(18030,e.DiagnosticCategory.Error,"An_optional_chain_cannot_contain_private_identifiers_18030","An optional chain cannot contain private identifiers."),The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents:t(18031,e.DiagnosticCategory.Error,"The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituent_18031","The intersection '{0}' was reduced to 'never' because property '{1}' has conflicting types in some constituents."),The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some:t(18032,e.DiagnosticCategory.Error,"The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_pr_18032","The intersection '{0}' was reduced to 'never' because property '{1}' exists in multiple constituents and is private in some."),Only_numeric_enums_can_have_computed_members_but_this_expression_has_type_0_If_you_do_not_need_exhaustiveness_checks_consider_using_an_object_literal_instead:t(18033,e.DiagnosticCategory.Error,"Only_numeric_enums_can_have_computed_members_but_this_expression_has_type_0_If_you_do_not_need_exhau_18033","Only numeric enums can have computed members, but this expression has type '{0}'. If you do not need exhaustiveness checks, consider using an object literal instead."),Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compiler_option_is_specified_e_g_Fragment:t(18034,e.DiagnosticCategory.Message,"Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compi_18034","Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'."),Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name:t(18035,e.DiagnosticCategory.Error,"Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name_18035","Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name.")}}(ts||(ts={})),function(e){var t;function r(e){return e>=78}e.tokenIsIdentifierOrKeyword=r,e.tokenIsIdentifierOrKeywordOrGreaterThan=function(e){return 31===e||r(e)};var n=((t={abstract:125,any:128,as:126,asserts:127,bigint:155,boolean:131,break:80,case:81,catch:82,class:83,continue:85,const:84}).constructor=132,t.debugger=86,t.declare=133,t.default=87,t.delete=88,t.do=89,t.else=90,t.enum=91,t.export=92,t.extends=93,t.false=94,t.finally=95,t.for=96,t.from=153,t.function=97,t.get=134,t.if=98,t.implements=116,t.import=99,t.in=100,t.infer=135,t.instanceof=101,t.interface=117,t.intrinsic=136,t.is=137,t.keyof=138,t.let=118,t.module=139,t.namespace=140,t.never=141,t.new=102,t.null=103,t.number=144,t.object=145,t.package=119,t.private=120,t.protected=121,t.public=122,t.readonly=142,t.require=143,t.global=154,t.return=104,t.set=146,t.static=123,t.string=147,t.super=105,t.switch=106,t.symbol=148,t.this=107,t.throw=108,t.true=109,t.try=110,t.type=149,t.typeof=111,t.undefined=150,t.unique=151,t.unknown=152,t.var=112,t.void=113,t.while=114,t.with=115,t.yield=124,t.async=129,t.await=130,t.of=156,t),i=new e.Map(e.getEntries(n)),a=new e.Map(e.getEntries(__assign(__assign({},n),{"{":18,"}":19,"(":20,")":21,"[":22,"]":23,".":24,"...":25,";":26,",":27,"<":29,">":31,"<=":32,">=":33,"==":34,"!=":35,"===":36,"!==":37,"=>":38,"+":39,"-":40,"**":42,"*":41,"/":43,"%":44,"++":45,"--":46,"<<":47,">":48,">>>":49,"&":50,"|":51,"^":52,"!":53,"~":54,"&&":55,"||":56,"?":57,"??":60,"?.":28,":":58,"=":62,"+=":63,"-=":64,"*=":65,"**=":66,"/=":67,"%=":68,"<<=":69,">>=":70,">>>=":71,"&=":72,"|=":73,"^=":77,"||=":74,"&&=":75,"??=":76,"@":59,"`":61}))),o=[170,170,181,181,186,186,192,214,216,246,248,543,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,983,986,1011,1024,1153,1164,1220,1223,1224,1227,1228,1232,1269,1272,1273,1329,1366,1369,1369,1377,1415,1488,1514,1520,1522,1569,1594,1600,1610,1649,1747,1749,1749,1765,1766,1786,1788,1808,1808,1810,1836,1920,1957,2309,2361,2365,2365,2384,2384,2392,2401,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2524,2525,2527,2529,2544,2545,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2649,2652,2654,2654,2674,2676,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2749,2768,2768,2784,2784,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2877,2908,2909,2911,2913,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3168,3169,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3294,3294,3296,3297,3333,3340,3342,3344,3346,3368,3370,3385,3424,3425,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3585,3632,3634,3635,3648,3654,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3804,3805,3840,3840,3904,3911,3913,3946,3976,3979,4096,4129,4131,4135,4137,4138,4176,4181,4256,4293,4304,4342,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,5024,5108,5121,5740,5743,5750,5761,5786,5792,5866,6016,6067,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8544,8579,12293,12295,12321,12329,12337,12341,12344,12346,12353,12436,12445,12446,12449,12538,12540,12542,12549,12588,12593,12686,12704,12727,13312,19893,19968,40869,40960,42124,44032,55203,63744,64045,64256,64262,64275,64279,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65136,65138,65140,65140,65142,65276,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500],s=[170,170,181,181,186,186,192,214,216,246,248,543,546,563,592,685,688,696,699,705,720,721,736,740,750,750,768,846,864,866,890,890,902,902,904,906,908,908,910,929,931,974,976,983,986,1011,1024,1153,1155,1158,1164,1220,1223,1224,1227,1228,1232,1269,1272,1273,1329,1366,1369,1369,1377,1415,1425,1441,1443,1465,1467,1469,1471,1471,1473,1474,1476,1476,1488,1514,1520,1522,1569,1594,1600,1621,1632,1641,1648,1747,1749,1756,1759,1768,1770,1773,1776,1788,1808,1836,1840,1866,1920,1968,2305,2307,2309,2361,2364,2381,2384,2388,2392,2403,2406,2415,2433,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2492,2492,2494,2500,2503,2504,2507,2509,2519,2519,2524,2525,2527,2531,2534,2545,2562,2562,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2620,2620,2622,2626,2631,2632,2635,2637,2649,2652,2654,2654,2662,2676,2689,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2748,2757,2759,2761,2763,2765,2768,2768,2784,2784,2790,2799,2817,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2876,2883,2887,2888,2891,2893,2902,2903,2908,2909,2911,2913,2918,2927,2946,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3010,3014,3016,3018,3021,3031,3031,3047,3055,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3134,3140,3142,3144,3146,3149,3157,3158,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3268,3270,3272,3274,3277,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3395,3398,3400,3402,3405,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3530,3530,3535,3540,3542,3542,3544,3551,3570,3571,3585,3642,3648,3662,3664,3673,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3769,3771,3773,3776,3780,3782,3782,3784,3789,3792,3801,3804,3805,3840,3840,3864,3865,3872,3881,3893,3893,3895,3895,3897,3897,3902,3911,3913,3946,3953,3972,3974,3979,3984,3991,3993,4028,4038,4038,4096,4129,4131,4135,4137,4138,4140,4146,4150,4153,4160,4169,4176,4185,4256,4293,4304,4342,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4969,4977,5024,5108,5121,5740,5743,5750,5761,5786,5792,5866,6016,6099,6112,6121,6160,6169,6176,6263,6272,6313,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8255,8256,8319,8319,8400,8412,8417,8417,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8544,8579,12293,12295,12321,12335,12337,12341,12344,12346,12353,12436,12441,12442,12445,12446,12449,12542,12549,12588,12593,12686,12704,12727,13312,19893,19968,40869,40960,42124,44032,55203,63744,64045,64256,64262,64275,64279,64285,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65056,65059,65075,65076,65101,65103,65136,65138,65140,65140,65142,65276,65296,65305,65313,65338,65343,65343,65345,65370,65381,65470,65474,65479,65482,65487,65490,65495,65498,65500],c=[170,170,181,181,186,186,192,214,216,246,248,705,710,721,736,740,748,748,750,750,880,884,886,887,890,893,902,902,904,906,908,908,910,929,931,1013,1015,1153,1162,1319,1329,1366,1369,1369,1377,1415,1488,1514,1520,1522,1568,1610,1646,1647,1649,1747,1749,1749,1765,1766,1774,1775,1786,1788,1791,1791,1808,1808,1810,1839,1869,1957,1969,1969,1994,2026,2036,2037,2042,2042,2048,2069,2074,2074,2084,2084,2088,2088,2112,2136,2208,2208,2210,2220,2308,2361,2365,2365,2384,2384,2392,2401,2417,2423,2425,2431,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2493,2493,2510,2510,2524,2525,2527,2529,2544,2545,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2649,2652,2654,2654,2674,2676,2693,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2749,2768,2768,2784,2785,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2869,2873,2877,2877,2908,2909,2911,2913,2929,2929,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,3001,3024,3024,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3133,3133,3160,3161,3168,3169,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3261,3261,3294,3294,3296,3297,3313,3314,3333,3340,3342,3344,3346,3386,3389,3389,3406,3406,3424,3425,3450,3455,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3585,3632,3634,3635,3648,3654,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3804,3807,3840,3840,3904,3911,3913,3948,3976,3980,4096,4138,4159,4159,4176,4181,4186,4189,4193,4193,4197,4198,4206,4208,4213,4225,4238,4238,4256,4293,4295,4295,4301,4301,4304,4346,4348,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4744,4746,4749,4752,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4822,4824,4880,4882,4885,4888,4954,4992,5007,5024,5108,5121,5740,5743,5759,5761,5786,5792,5866,5870,5872,5888,5900,5902,5905,5920,5937,5952,5969,5984,5996,5998,6e3,6016,6067,6103,6103,6108,6108,6176,6263,6272,6312,6314,6314,6320,6389,6400,6428,6480,6509,6512,6516,6528,6571,6593,6599,6656,6678,6688,6740,6823,6823,6917,6963,6981,6987,7043,7072,7086,7087,7098,7141,7168,7203,7245,7247,7258,7293,7401,7404,7406,7409,7413,7414,7424,7615,7680,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8305,8305,8319,8319,8336,8348,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8505,8508,8511,8517,8521,8526,8526,8544,8584,11264,11310,11312,11358,11360,11492,11499,11502,11506,11507,11520,11557,11559,11559,11565,11565,11568,11623,11631,11631,11648,11670,11680,11686,11688,11694,11696,11702,11704,11710,11712,11718,11720,11726,11728,11734,11736,11742,11823,11823,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12589,12593,12686,12704,12730,12784,12799,13312,19893,19968,40908,40960,42124,42192,42237,42240,42508,42512,42527,42538,42539,42560,42606,42623,42647,42656,42735,42775,42783,42786,42888,42891,42894,42896,42899,42912,42922,43e3,43009,43011,43013,43015,43018,43020,43042,43072,43123,43138,43187,43250,43255,43259,43259,43274,43301,43312,43334,43360,43388,43396,43442,43471,43471,43520,43560,43584,43586,43588,43595,43616,43638,43642,43642,43648,43695,43697,43697,43701,43702,43705,43709,43712,43712,43714,43714,43739,43741,43744,43754,43762,43764,43777,43782,43785,43790,43793,43798,43808,43814,43816,43822,43968,44002,44032,55203,55216,55238,55243,55291,63744,64109,64112,64217,64256,64262,64275,64279,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65136,65140,65142,65276,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500],u=[170,170,181,181,186,186,192,214,216,246,248,705,710,721,736,740,748,748,750,750,768,884,886,887,890,893,902,902,904,906,908,908,910,929,931,1013,1015,1153,1155,1159,1162,1319,1329,1366,1369,1369,1377,1415,1425,1469,1471,1471,1473,1474,1476,1477,1479,1479,1488,1514,1520,1522,1552,1562,1568,1641,1646,1747,1749,1756,1759,1768,1770,1788,1791,1791,1808,1866,1869,1969,1984,2037,2042,2042,2048,2093,2112,2139,2208,2208,2210,2220,2276,2302,2304,2403,2406,2415,2417,2423,2425,2431,2433,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2492,2500,2503,2504,2507,2510,2519,2519,2524,2525,2527,2531,2534,2545,2561,2563,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2620,2620,2622,2626,2631,2632,2635,2637,2641,2641,2649,2652,2654,2654,2662,2677,2689,2691,2693,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2748,2757,2759,2761,2763,2765,2768,2768,2784,2787,2790,2799,2817,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2869,2873,2876,2884,2887,2888,2891,2893,2902,2903,2908,2909,2911,2915,2918,2927,2929,2929,2946,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,3001,3006,3010,3014,3016,3018,3021,3024,3024,3031,3031,3046,3055,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3133,3140,3142,3144,3146,3149,3157,3158,3160,3161,3168,3171,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3260,3268,3270,3272,3274,3277,3285,3286,3294,3294,3296,3299,3302,3311,3313,3314,3330,3331,3333,3340,3342,3344,3346,3386,3389,3396,3398,3400,3402,3406,3415,3415,3424,3427,3430,3439,3450,3455,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3530,3530,3535,3540,3542,3542,3544,3551,3570,3571,3585,3642,3648,3662,3664,3673,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3769,3771,3773,3776,3780,3782,3782,3784,3789,3792,3801,3804,3807,3840,3840,3864,3865,3872,3881,3893,3893,3895,3895,3897,3897,3902,3911,3913,3948,3953,3972,3974,3991,3993,4028,4038,4038,4096,4169,4176,4253,4256,4293,4295,4295,4301,4301,4304,4346,4348,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4744,4746,4749,4752,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4822,4824,4880,4882,4885,4888,4954,4957,4959,4992,5007,5024,5108,5121,5740,5743,5759,5761,5786,5792,5866,5870,5872,5888,5900,5902,5908,5920,5940,5952,5971,5984,5996,5998,6e3,6002,6003,6016,6099,6103,6103,6108,6109,6112,6121,6155,6157,6160,6169,6176,6263,6272,6314,6320,6389,6400,6428,6432,6443,6448,6459,6470,6509,6512,6516,6528,6571,6576,6601,6608,6617,6656,6683,6688,6750,6752,6780,6783,6793,6800,6809,6823,6823,6912,6987,6992,7001,7019,7027,7040,7155,7168,7223,7232,7241,7245,7293,7376,7378,7380,7414,7424,7654,7676,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8204,8205,8255,8256,8276,8276,8305,8305,8319,8319,8336,8348,8400,8412,8417,8417,8421,8432,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8505,8508,8511,8517,8521,8526,8526,8544,8584,11264,11310,11312,11358,11360,11492,11499,11507,11520,11557,11559,11559,11565,11565,11568,11623,11631,11631,11647,11670,11680,11686,11688,11694,11696,11702,11704,11710,11712,11718,11720,11726,11728,11734,11736,11742,11744,11775,11823,11823,12293,12295,12321,12335,12337,12341,12344,12348,12353,12438,12441,12442,12445,12447,12449,12538,12540,12543,12549,12589,12593,12686,12704,12730,12784,12799,13312,19893,19968,40908,40960,42124,42192,42237,42240,42508,42512,42539,42560,42607,42612,42621,42623,42647,42655,42737,42775,42783,42786,42888,42891,42894,42896,42899,42912,42922,43e3,43047,43072,43123,43136,43204,43216,43225,43232,43255,43259,43259,43264,43309,43312,43347,43360,43388,43392,43456,43471,43481,43520,43574,43584,43597,43600,43609,43616,43638,43642,43643,43648,43714,43739,43741,43744,43759,43762,43766,43777,43782,43785,43790,43793,43798,43808,43814,43816,43822,43968,44010,44012,44013,44016,44025,44032,55203,55216,55238,55243,55291,63744,64109,64112,64217,64256,64262,64275,64279,64285,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65024,65039,65056,65062,65075,65076,65101,65103,65136,65140,65142,65276,65296,65305,65313,65338,65343,65343,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500],l=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,705,710,721,736,740,748,748,750,750,880,884,886,887,890,893,895,895,902,902,904,906,908,908,910,929,931,1013,1015,1153,1162,1327,1329,1366,1369,1369,1376,1416,1488,1514,1519,1522,1568,1610,1646,1647,1649,1747,1749,1749,1765,1766,1774,1775,1786,1788,1791,1791,1808,1808,1810,1839,1869,1957,1969,1969,1994,2026,2036,2037,2042,2042,2048,2069,2074,2074,2084,2084,2088,2088,2112,2136,2144,2154,2208,2228,2230,2237,2308,2361,2365,2365,2384,2384,2392,2401,2417,2432,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2493,2493,2510,2510,2524,2525,2527,2529,2544,2545,2556,2556,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2649,2652,2654,2654,2674,2676,2693,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2749,2768,2768,2784,2785,2809,2809,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2869,2873,2877,2877,2908,2909,2911,2913,2929,2929,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,3001,3024,3024,3077,3084,3086,3088,3090,3112,3114,3129,3133,3133,3160,3162,3168,3169,3200,3200,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3261,3261,3294,3294,3296,3297,3313,3314,3333,3340,3342,3344,3346,3386,3389,3389,3406,3406,3412,3414,3423,3425,3450,3455,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3585,3632,3634,3635,3648,3654,3713,3714,3716,3716,3718,3722,3724,3747,3749,3749,3751,3760,3762,3763,3773,3773,3776,3780,3782,3782,3804,3807,3840,3840,3904,3911,3913,3948,3976,3980,4096,4138,4159,4159,4176,4181,4186,4189,4193,4193,4197,4198,4206,4208,4213,4225,4238,4238,4256,4293,4295,4295,4301,4301,4304,4346,4348,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4744,4746,4749,4752,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4822,4824,4880,4882,4885,4888,4954,4992,5007,5024,5109,5112,5117,5121,5740,5743,5759,5761,5786,5792,5866,5870,5880,5888,5900,5902,5905,5920,5937,5952,5969,5984,5996,5998,6e3,6016,6067,6103,6103,6108,6108,6176,6264,6272,6312,6314,6314,6320,6389,6400,6430,6480,6509,6512,6516,6528,6571,6576,6601,6656,6678,6688,6740,6823,6823,6917,6963,6981,6987,7043,7072,7086,7087,7098,7141,7168,7203,7245,7247,7258,7293,7296,7304,7312,7354,7357,7359,7401,7404,7406,7411,7413,7414,7418,7418,7424,7615,7680,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8305,8305,8319,8319,8336,8348,8450,8450,8455,8455,8458,8467,8469,8469,8472,8477,8484,8484,8486,8486,8488,8488,8490,8505,8508,8511,8517,8521,8526,8526,8544,8584,11264,11310,11312,11358,11360,11492,11499,11502,11506,11507,11520,11557,11559,11559,11565,11565,11568,11623,11631,11631,11648,11670,11680,11686,11688,11694,11696,11702,11704,11710,11712,11718,11720,11726,11728,11734,11736,11742,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12443,12447,12449,12538,12540,12543,12549,12591,12593,12686,12704,12730,12784,12799,13312,19893,19968,40943,40960,42124,42192,42237,42240,42508,42512,42527,42538,42539,42560,42606,42623,42653,42656,42735,42775,42783,42786,42888,42891,42943,42946,42950,42999,43009,43011,43013,43015,43018,43020,43042,43072,43123,43138,43187,43250,43255,43259,43259,43261,43262,43274,43301,43312,43334,43360,43388,43396,43442,43471,43471,43488,43492,43494,43503,43514,43518,43520,43560,43584,43586,43588,43595,43616,43638,43642,43642,43646,43695,43697,43697,43701,43702,43705,43709,43712,43712,43714,43714,43739,43741,43744,43754,43762,43764,43777,43782,43785,43790,43793,43798,43808,43814,43816,43822,43824,43866,43868,43879,43888,44002,44032,55203,55216,55238,55243,55291,63744,64109,64112,64217,64256,64262,64275,64279,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65136,65140,65142,65276,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,65536,65547,65549,65574,65576,65594,65596,65597,65599,65613,65616,65629,65664,65786,65856,65908,66176,66204,66208,66256,66304,66335,66349,66378,66384,66421,66432,66461,66464,66499,66504,66511,66513,66517,66560,66717,66736,66771,66776,66811,66816,66855,66864,66915,67072,67382,67392,67413,67424,67431,67584,67589,67592,67592,67594,67637,67639,67640,67644,67644,67647,67669,67680,67702,67712,67742,67808,67826,67828,67829,67840,67861,67872,67897,67968,68023,68030,68031,68096,68096,68112,68115,68117,68119,68121,68149,68192,68220,68224,68252,68288,68295,68297,68324,68352,68405,68416,68437,68448,68466,68480,68497,68608,68680,68736,68786,68800,68850,68864,68899,69376,69404,69415,69415,69424,69445,69600,69622,69635,69687,69763,69807,69840,69864,69891,69926,69956,69956,69968,70002,70006,70006,70019,70066,70081,70084,70106,70106,70108,70108,70144,70161,70163,70187,70272,70278,70280,70280,70282,70285,70287,70301,70303,70312,70320,70366,70405,70412,70415,70416,70419,70440,70442,70448,70450,70451,70453,70457,70461,70461,70480,70480,70493,70497,70656,70708,70727,70730,70751,70751,70784,70831,70852,70853,70855,70855,71040,71086,71128,71131,71168,71215,71236,71236,71296,71338,71352,71352,71424,71450,71680,71723,71840,71903,71935,71935,72096,72103,72106,72144,72161,72161,72163,72163,72192,72192,72203,72242,72250,72250,72272,72272,72284,72329,72349,72349,72384,72440,72704,72712,72714,72750,72768,72768,72818,72847,72960,72966,72968,72969,72971,73008,73030,73030,73056,73061,73063,73064,73066,73097,73112,73112,73440,73458,73728,74649,74752,74862,74880,75075,77824,78894,82944,83526,92160,92728,92736,92766,92880,92909,92928,92975,92992,92995,93027,93047,93053,93071,93760,93823,93952,94026,94032,94032,94099,94111,94176,94177,94179,94179,94208,100343,100352,101106,110592,110878,110928,110930,110948,110951,110960,111355,113664,113770,113776,113788,113792,113800,113808,113817,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120485,120488,120512,120514,120538,120540,120570,120572,120596,120598,120628,120630,120654,120656,120686,120688,120712,120714,120744,120746,120770,120772,120779,123136,123180,123191,123197,123214,123214,123584,123627,124928,125124,125184,125251,125259,125259,126464,126467,126469,126495,126497,126498,126500,126500,126503,126503,126505,126514,126516,126519,126521,126521,126523,126523,126530,126530,126535,126535,126537,126537,126539,126539,126541,126543,126545,126546,126548,126548,126551,126551,126553,126553,126555,126555,126557,126557,126559,126559,126561,126562,126564,126564,126567,126570,126572,126578,126580,126583,126585,126588,126590,126590,126592,126601,126603,126619,126625,126627,126629,126633,126635,126651,131072,173782,173824,177972,177984,178205,178208,183969,183984,191456,194560,195101],_=[48,57,65,90,95,95,97,122,170,170,181,181,183,183,186,186,192,214,216,246,248,705,710,721,736,740,748,748,750,750,768,884,886,887,890,893,895,895,902,906,908,908,910,929,931,1013,1015,1153,1155,1159,1162,1327,1329,1366,1369,1369,1376,1416,1425,1469,1471,1471,1473,1474,1476,1477,1479,1479,1488,1514,1519,1522,1552,1562,1568,1641,1646,1747,1749,1756,1759,1768,1770,1788,1791,1791,1808,1866,1869,1969,1984,2037,2042,2042,2045,2045,2048,2093,2112,2139,2144,2154,2208,2228,2230,2237,2259,2273,2275,2403,2406,2415,2417,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2492,2500,2503,2504,2507,2510,2519,2519,2524,2525,2527,2531,2534,2545,2556,2556,2558,2558,2561,2563,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2620,2620,2622,2626,2631,2632,2635,2637,2641,2641,2649,2652,2654,2654,2662,2677,2689,2691,2693,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2748,2757,2759,2761,2763,2765,2768,2768,2784,2787,2790,2799,2809,2815,2817,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2869,2873,2876,2884,2887,2888,2891,2893,2902,2903,2908,2909,2911,2915,2918,2927,2929,2929,2946,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,3001,3006,3010,3014,3016,3018,3021,3024,3024,3031,3031,3046,3055,3072,3084,3086,3088,3090,3112,3114,3129,3133,3140,3142,3144,3146,3149,3157,3158,3160,3162,3168,3171,3174,3183,3200,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3260,3268,3270,3272,3274,3277,3285,3286,3294,3294,3296,3299,3302,3311,3313,3314,3328,3331,3333,3340,3342,3344,3346,3396,3398,3400,3402,3406,3412,3415,3423,3427,3430,3439,3450,3455,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3530,3530,3535,3540,3542,3542,3544,3551,3558,3567,3570,3571,3585,3642,3648,3662,3664,3673,3713,3714,3716,3716,3718,3722,3724,3747,3749,3749,3751,3773,3776,3780,3782,3782,3784,3789,3792,3801,3804,3807,3840,3840,3864,3865,3872,3881,3893,3893,3895,3895,3897,3897,3902,3911,3913,3948,3953,3972,3974,3991,3993,4028,4038,4038,4096,4169,4176,4253,4256,4293,4295,4295,4301,4301,4304,4346,4348,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4744,4746,4749,4752,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4822,4824,4880,4882,4885,4888,4954,4957,4959,4969,4977,4992,5007,5024,5109,5112,5117,5121,5740,5743,5759,5761,5786,5792,5866,5870,5880,5888,5900,5902,5908,5920,5940,5952,5971,5984,5996,5998,6e3,6002,6003,6016,6099,6103,6103,6108,6109,6112,6121,6155,6157,6160,6169,6176,6264,6272,6314,6320,6389,6400,6430,6432,6443,6448,6459,6470,6509,6512,6516,6528,6571,6576,6601,6608,6618,6656,6683,6688,6750,6752,6780,6783,6793,6800,6809,6823,6823,6832,6845,6912,6987,6992,7001,7019,7027,7040,7155,7168,7223,7232,7241,7245,7293,7296,7304,7312,7354,7357,7359,7376,7378,7380,7418,7424,7673,7675,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8255,8256,8276,8276,8305,8305,8319,8319,8336,8348,8400,8412,8417,8417,8421,8432,8450,8450,8455,8455,8458,8467,8469,8469,8472,8477,8484,8484,8486,8486,8488,8488,8490,8505,8508,8511,8517,8521,8526,8526,8544,8584,11264,11310,11312,11358,11360,11492,11499,11507,11520,11557,11559,11559,11565,11565,11568,11623,11631,11631,11647,11670,11680,11686,11688,11694,11696,11702,11704,11710,11712,11718,11720,11726,11728,11734,11736,11742,11744,11775,12293,12295,12321,12335,12337,12341,12344,12348,12353,12438,12441,12447,12449,12538,12540,12543,12549,12591,12593,12686,12704,12730,12784,12799,13312,19893,19968,40943,40960,42124,42192,42237,42240,42508,42512,42539,42560,42607,42612,42621,42623,42737,42775,42783,42786,42888,42891,42943,42946,42950,42999,43047,43072,43123,43136,43205,43216,43225,43232,43255,43259,43259,43261,43309,43312,43347,43360,43388,43392,43456,43471,43481,43488,43518,43520,43574,43584,43597,43600,43609,43616,43638,43642,43714,43739,43741,43744,43759,43762,43766,43777,43782,43785,43790,43793,43798,43808,43814,43816,43822,43824,43866,43868,43879,43888,44010,44012,44013,44016,44025,44032,55203,55216,55238,55243,55291,63744,64109,64112,64217,64256,64262,64275,64279,64285,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65019,65024,65039,65056,65071,65075,65076,65101,65103,65136,65140,65142,65276,65296,65305,65313,65338,65343,65343,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,65536,65547,65549,65574,65576,65594,65596,65597,65599,65613,65616,65629,65664,65786,65856,65908,66045,66045,66176,66204,66208,66256,66272,66272,66304,66335,66349,66378,66384,66426,66432,66461,66464,66499,66504,66511,66513,66517,66560,66717,66720,66729,66736,66771,66776,66811,66816,66855,66864,66915,67072,67382,67392,67413,67424,67431,67584,67589,67592,67592,67594,67637,67639,67640,67644,67644,67647,67669,67680,67702,67712,67742,67808,67826,67828,67829,67840,67861,67872,67897,67968,68023,68030,68031,68096,68099,68101,68102,68108,68115,68117,68119,68121,68149,68152,68154,68159,68159,68192,68220,68224,68252,68288,68295,68297,68326,68352,68405,68416,68437,68448,68466,68480,68497,68608,68680,68736,68786,68800,68850,68864,68903,68912,68921,69376,69404,69415,69415,69424,69456,69600,69622,69632,69702,69734,69743,69759,69818,69840,69864,69872,69881,69888,69940,69942,69951,69956,69958,69968,70003,70006,70006,70016,70084,70089,70092,70096,70106,70108,70108,70144,70161,70163,70199,70206,70206,70272,70278,70280,70280,70282,70285,70287,70301,70303,70312,70320,70378,70384,70393,70400,70403,70405,70412,70415,70416,70419,70440,70442,70448,70450,70451,70453,70457,70459,70468,70471,70472,70475,70477,70480,70480,70487,70487,70493,70499,70502,70508,70512,70516,70656,70730,70736,70745,70750,70751,70784,70853,70855,70855,70864,70873,71040,71093,71096,71104,71128,71133,71168,71232,71236,71236,71248,71257,71296,71352,71360,71369,71424,71450,71453,71467,71472,71481,71680,71738,71840,71913,71935,71935,72096,72103,72106,72151,72154,72161,72163,72164,72192,72254,72263,72263,72272,72345,72349,72349,72384,72440,72704,72712,72714,72758,72760,72768,72784,72793,72818,72847,72850,72871,72873,72886,72960,72966,72968,72969,72971,73014,73018,73018,73020,73021,73023,73031,73040,73049,73056,73061,73063,73064,73066,73102,73104,73105,73107,73112,73120,73129,73440,73462,73728,74649,74752,74862,74880,75075,77824,78894,82944,83526,92160,92728,92736,92766,92768,92777,92880,92909,92912,92916,92928,92982,92992,92995,93008,93017,93027,93047,93053,93071,93760,93823,93952,94026,94031,94087,94095,94111,94176,94177,94179,94179,94208,100343,100352,101106,110592,110878,110928,110930,110948,110951,110960,111355,113664,113770,113776,113788,113792,113800,113808,113817,113821,113822,119141,119145,119149,119154,119163,119170,119173,119179,119210,119213,119362,119364,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120485,120488,120512,120514,120538,120540,120570,120572,120596,120598,120628,120630,120654,120656,120686,120688,120712,120714,120744,120746,120770,120772,120779,120782,120831,121344,121398,121403,121452,121461,121461,121476,121476,121499,121503,121505,121519,122880,122886,122888,122904,122907,122913,122915,122916,122918,122922,123136,123180,123184,123197,123200,123209,123214,123214,123584,123641,124928,125124,125136,125142,125184,125259,125264,125273,126464,126467,126469,126495,126497,126498,126500,126500,126503,126503,126505,126514,126516,126519,126521,126521,126523,126523,126530,126530,126535,126535,126537,126537,126539,126539,126541,126543,126545,126546,126548,126548,126551,126551,126553,126553,126555,126555,126557,126557,126559,126559,126561,126562,126564,126564,126567,126570,126572,126578,126580,126583,126585,126588,126590,126590,126592,126601,126603,126619,126625,126627,126629,126633,126635,126651,131072,173782,173824,177972,177984,178205,178208,183969,183984,191456,194560,195101,917760,917999],d=/^\s*\/\/\/?\s*@(ts-expect-error|ts-ignore)/,p=/^\s*(?:\/|\*)*\s*@(ts-expect-error|ts-ignore)/;function f(e,t){if(e=2?l:1===t?c:o)}e.isUnicodeIdentifierStart=g;var m,y=(m=[],a.forEach((function(e,t){m[e]=t})),m);function v(e){for(var t=new Array,r=0,n=0;r127&&C(i)&&(t.push(n),n=r)}}return t.push(n),t}function h(t,r,n,i,a){(r<0||r>=t.length)&&(a?r=r<0?0:r>=t.length?t.length-1:r:e.Debug.fail("Bad line number. Line: "+r+", lineStarts.length: "+t.length+" , line map is correct? "+(void 0!==i?e.arraysEqual(t,v(i)):"unknown")));var o=t[r]+n;return a?o>t[r+1]?t[r+1]:"string"==typeof i&&o>i.length?i.length:o:(r=8192&&e<=8203||8239===e||8287===e||12288===e||65279===e}function C(e){return 10===e||13===e||8232===e||8233===e}function E(e){return e>=48&&e<=57}function k(e){return E(e)||e>=65&&e<=70||e>=97&&e<=102}function N(e){return e>=48&&e<=55}e.tokenToString=function(e){return y[e]},e.stringToToken=function(e){return a.get(e)},e.computeLineStarts=v,e.getPositionOfLineAndCharacter=function(e,t,r,n){return e.getPositionOfLineAndCharacter?e.getPositionOfLineAndCharacter(t,r,n):h(b(e),t,r,e.text,n)},e.computePositionOfLineAndCharacter=h,e.getLineStarts=b,e.computeLineAndCharacterOfPosition=x,e.computeLineOfPosition=D,e.getLinesBetweenPositions=function(e,t,r){if(t===r)return 0;var n=b(e),i=Math.min(t,r),a=i===r,o=a?t:r,s=D(n,i),c=D(n,o,s);return a?s-c:c-s},e.getLineAndCharacterOfPosition=function(e,t){return x(b(e),t)},e.isWhiteSpaceLike=S,e.isWhiteSpaceSingleLine=T,e.isLineBreak=C,e.isOctalDigit=N,e.couldStartTrivia=function(e,t){var r=e.charCodeAt(t);switch(r){case 13:case 10:case 9:case 11:case 12:case 32:case 47:case 60:case 124:case 61:case 62:return!0;case 35:return 0===t;default:return r>127}},e.skipTrivia=function(t,r,n,i){if(void 0===i&&(i=!1),e.positionIsSynthesized(r))return r;for(;;){var a=t.charCodeAt(r);switch(a){case 13:10===t.charCodeAt(r+1)&&r++;case 10:if(r++,n)return r;continue;case 9:case 11:case 12:case 32:r++;continue;case 47:if(i)break;if(47===t.charCodeAt(r+1)){for(r+=2;r127&&S(a)){r++;continue}}return r}};var A="<<<<<<<".length;function F(t,r){if(e.Debug.assert(r>=0),0===r||C(t.charCodeAt(r-1))){var n=t.charCodeAt(r);if(r+A=0&&r127&&S(g)){_&&C(g)&&(l=!0),r++;continue}break e}}return _&&(p=i(s,c,u,l,a,p)),p}function L(e,t,r,n,i){return M(!0,e,t,!1,r,n,i)}function R(e,t,r,n,i){return M(!0,e,t,!0,r,n,i)}function B(e,t,r,n,i,a){return a||(a=[]),a.push({kind:r,pos:e,end:t,hasTrailingNewLine:n}),a}function j(e){var t=w.exec(e);if(t)return t[0]}function J(e,t){return e>=65&&e<=90||e>=97&&e<=122||36===e||95===e||e>127&&g(e,t)}function z(e,t,r){return e>=65&&e<=90||e>=97&&e<=122||e>=48&&e<=57||36===e||95===e||1===r&&(45===e||58===e)||e>127&&function(e,t){return f(e,t>=2?_:1===t?u:s)}(e,t)}e.isShebangTrivia=I,e.scanShebangTrivia=O,e.forEachLeadingCommentRange=function(e,t,r,n){return M(!1,e,t,!1,r,n)},e.forEachTrailingCommentRange=function(e,t,r,n){return M(!1,e,t,!0,r,n)},e.reduceEachLeadingCommentRange=L,e.reduceEachTrailingCommentRange=R,e.getLeadingCommentRanges=function(e,t){return L(e,t,B,void 0,void 0)},e.getTrailingCommentRanges=function(e,t){return R(e,t,B,void 0,void 0)},e.getShebang=j,e.isIdentifierStart=J,e.isIdentifierPart=z,e.isIdentifierText=function(e,t,r){var n=U(e,0);if(!J(n,t))return!1;for(var i=V(n);i115},isReservedWord:function(){return m>=80&&m<=115},isUnterminated:function(){return 0!=(4&v)},getCommentDirectives:function(){return h},getNumericLiteralFlags:function(){return 1008&v},getTokenFlags:function(){return v},reScanGreaterToken:function(){if(31===m){if(62===b.charCodeAt(l))return 62===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=71):(l+=2,m=49):61===b.charCodeAt(l+1)?(l+=2,m=70):(l++,m=48);if(61===b.charCodeAt(l))return l++,m=33}return m},reScanAsteriskEqualsToken:function(){return e.Debug.assert(65===m,"'reScanAsteriskEqualsToken' should only be called on a '*='"),l=g+1,m=62},reScanSlashToken:function(){if(43===m||67===m){for(var r=g+1,n=!1,i=!1;;){if(r>=_){v|=4,A(e.Diagnostics.Unterminated_regular_expression_literal);break}var a=b.charCodeAt(r);if(C(a)){v|=4,A(e.Diagnostics.Unterminated_regular_expression_literal);break}if(n)n=!1;else{if(47===a&&!i){r++;break}91===a?i=!0:92===a?n=!0:93===a&&(i=!1)}r++}for(;r<_&&z(b.charCodeAt(r),t);)r++;l=r,y=b.substring(g,l),m=13}return m},reScanTemplateToken:function(t){return e.Debug.assert(19===m,"'reScanTemplateToken' should only be called on a '}'"),l=g,m=H(t)},reScanTemplateHeadOrNoSubstitutionTemplate:function(){return l=g,m=H(!0)},scanJsxIdentifier:function(){if(r(m)){for(var e=!1;l<_;){var t=b.charCodeAt(l);if(45!==t)if(58!==t||e){var n=l;if(y+=$(),l===n)break}else y+=":",l++,e=!0;else y+="-",l++}":"===y.slice(-1)&&(y=y.slice(0,-1),l--)}return m},scanJsxAttributeValue:se,reScanJsxAttributeValue:function(){return l=g=f,se()},reScanJsxToken:function(){return l=g=f,m=oe()},reScanLessThanToken:function(){if(47===m)return l=g+1,m=29;return m},reScanQuestionToken:function(){return e.Debug.assert(60===m,"'reScanQuestionToken' should only be called on a '??'"),l=g+1,m=57},reScanInvalidIdentifier:function(){e.Debug.assert(0===m,"'reScanInvalidIdentifier' should only be called when the current token is 'SyntaxKind.Unknown'."),l=g=f,v=0;var t=U(b,l),r=ie(t,99);if(r)return m=r;return l+=V(t),m},scanJsxToken:oe,scanJsDocToken:function(){if(f=g=l,v=0,l>=_)return m=1;var e=U(b,l);switch(l+=V(e),e){case 9:case 11:case 12:case 32:for(;l<_&&T(b.charCodeAt(l));)l++;return m=5;case 64:return m=59;case 13:10===b.charCodeAt(l)&&l++;case 10:return v|=1,m=4;case 42:return m=41;case 123:return m=18;case 125:return m=19;case 91:return m=22;case 93:return m=23;case 60:return m=29;case 62:return m=31;case 61:return m=62;case 44:return m=27;case 46:return m=24;case 96:return m=61;case 92:l--;var r=Z();if(r>=0&&J(r,t))return l+=3,v|=8,y=Q()+$(),m=ee();var n=Y();return n>=0&&J(n,t)?(l+=6,v|=1024,y=String.fromCharCode(n)+$(),m=ee()):(l++,m=0)}if(J(e,t)){for(var i=e;l<_&&z(i=U(b,l),t)||45===b.charCodeAt(l);)l+=V(i);return y=b.substring(g,l),92===i&&(y+=$()),m=ee()}return m=0},scan:ne,getText:function(){return b},clearCommentDirectives:function(){h=void 0},setText:ue,setScriptTarget:function(e){t=e},setLanguageVariant:function(e){a=e},setOnError:function(e){s=e},setTextPos:le,setInJSDocType:function(e){x+=e?1:-1},tryScan:function(e){return ce(e,!1)},lookAhead:function(e){return ce(e,!0)},scanRange:function(e,t,r){var n=_,i=l,a=f,o=g,s=m,c=y,u=v,d=h;ue(b,e,t);var p=r();return _=n,l=i,f=a,g=o,m=s,y=c,v=u,h=d,p}};return e.Debug.isDebugging&&Object.defineProperty(D,"__debugShowCurrentPositionInText",{get:function(){var e=D.getText();return e.slice(0,D.getStartPos())+"║"+e.slice(D.getStartPos())}}),D;function A(e,t,r){if(void 0===t&&(t=l),s){var n=l;l=t,s(e,r||0),l=n}}function w(){for(var t=l,r=!1,n=!1,i="";;){var a=b.charCodeAt(l);if(95!==a){if(!E(a))break;r=!0,n=!1,l++}else v|=512,r?(r=!1,n=!0,i+=b.substring(t,l)):A(n?e.Diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted:e.Diagnostics.Numeric_separators_are_not_allowed_here,l,1),t=++l}return 95===b.charCodeAt(l-1)&&A(e.Diagnostics.Numeric_separators_are_not_allowed_here,l-1,1),i+b.substring(t,l)}function M(){var t,r,n=l,i=w();46===b.charCodeAt(l)&&(l++,t=w());var a,o=l;if(69===b.charCodeAt(l)||101===b.charCodeAt(l)){l++,v|=16,43!==b.charCodeAt(l)&&45!==b.charCodeAt(l)||l++;var s=l,c=w();c?(r=b.substring(o,s)+c,o=l):A(e.Diagnostics.Digit_expected)}if(512&v?(a=i,t&&(a+="."+t),r&&(a+=r)):a=b.substring(n,o),void 0!==t||16&v)return L(n,void 0===t&&!!(16&v)),{type:8,value:""+ +a};y=a;var u=re();return L(n),{type:u,value:y}}function L(r,n){if(J(U(b,l),t)){var i=l,a=$().length;1===a&&"n"===b[i]?A(n?e.Diagnostics.A_bigint_literal_cannot_use_exponential_notation:e.Diagnostics.A_bigint_literal_must_be_an_integer,r,i-r+1):(A(e.Diagnostics.An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal,i,a),l=i)}}function R(){for(var e=l;N(b.charCodeAt(l));)l++;return+b.substring(e,l)}function B(e,t){var r=K(e,!1,t);return r?parseInt(r,16):-1}function j(e,t){return K(e,!0,t)}function K(t,r,n){for(var i=[],a=!1,o=!1;i.length=65&&s<=70)s+=32;else if(!(s>=48&&s<=57||s>=97&&s<=102))break;i.push(s),l++,o=!1}}return i.length=_){n+=b.substring(i,l),v|=4,A(e.Diagnostics.Unterminated_string_literal);break}var a=b.charCodeAt(l);if(a===r){n+=b.substring(i,l),l++;break}if(92!==a||t){if(C(a)&&!t){n+=b.substring(i,l),v|=4,A(e.Diagnostics.Unterminated_string_literal);break}l++}else n+=b.substring(i,l),n+=G(),i=l}return n}function H(t){for(var r,n=96===b.charCodeAt(l),i=++l,a="";;){if(l>=_){a+=b.substring(i,l),v|=4,A(e.Diagnostics.Unterminated_template_literal),r=n?14:17;break}var o=b.charCodeAt(l);if(96===o){a+=b.substring(i,l),l++,r=n?14:17;break}if(36===o&&l+1<_&&123===b.charCodeAt(l+1)){a+=b.substring(i,l),l+=2,r=n?15:16;break}92!==o?13!==o?l++:(a+=b.substring(i,l),++l<_&&10===b.charCodeAt(l)&&l++,a+="\n",i=l):(a+=b.substring(i,l),a+=G(t),i=l)}return e.Debug.assert(void 0!==r),y=a,r}function G(t){var r=l;if(++l>=_)return A(e.Diagnostics.Unexpected_end_of_text),"";var n=b.charCodeAt(l);switch(l++,n){case 48:return t&&l<_&&E(b.charCodeAt(l))?(l++,v|=2048,b.substring(r,l)):"\0";case 98:return"\b";case 116:return"\t";case 110:return"\n";case 118:return"\v";case 102:return"\f";case 114:return"\r";case 39:return"'";case 34:return'"';case 117:if(t)for(var i=l;i=0?String.fromCharCode(r):(A(e.Diagnostics.Hexadecimal_digit_expected),"")}function Q(){var t=j(1,!1),r=t?parseInt(t,16):-1,n=!1;return r<0?(A(e.Diagnostics.Hexadecimal_digit_expected),n=!0):r>1114111&&(A(e.Diagnostics.An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive),n=!0),l>=_?(A(e.Diagnostics.Unexpected_end_of_text),n=!0):125===b.charCodeAt(l)?l++:(A(e.Diagnostics.Unterminated_Unicode_escape_sequence),n=!0),n?"":q(r)}function Y(){if(l+5<_&&117===b.charCodeAt(l+1)){var e=l;l+=2;var t=B(4,!1);return l=e,t}return-1}function Z(){if(t>=2&&117===U(b,l+1)&&123===U(b,l+2)){var e=l;l+=3;var r=j(1,!1),n=r?parseInt(r,16):-1;return l=e,n}return-1}function $(){for(var e="",r=l;l<_;){var n=U(b,l);if(z(n,t))l+=V(n);else{if(92!==n)break;if((n=Z())>=0&&z(n,t)){l+=3,v|=8,e+=Q(),r=l;continue}if(!((n=Y())>=0&&z(n,t)))break;v|=1024,e+=b.substring(r,l),e+=q(n),r=l+=6}}return e+=b.substring(r,l)}function ee(){var e=y.length;if(e>=2&&e<=12){var t=y.charCodeAt(0);if(t>=97&&t<=122){var r=i.get(y);if(void 0!==r)return m=r}}return m=78}function te(t){for(var r="",n=!1,i=!1;;){var a=b.charCodeAt(l);if(95!==a){if(n=!0,!E(a)||a-48>=t)break;r+=b[l],l++,i=!1}else v|=512,n?(n=!1,i=!0):A(i?e.Diagnostics.Multiple_consecutive_numeric_separators_are_not_permitted:e.Diagnostics.Numeric_separators_are_not_allowed_here,l,1),l++}return 95===b.charCodeAt(l-1)&&A(e.Diagnostics.Numeric_separators_are_not_allowed_here,l-1,1),r}function re(){if(110===b.charCodeAt(l))return y+="n",384&v&&(y=e.parsePseudoBigInt(y)+"n"),l++,9;var t=128&v?parseInt(y.slice(2),2):256&v?parseInt(y.slice(2),8):+y;return y=""+t,8}function ne(){var r;f=l,v=0;for(var i=!1;;){if(g=l,l>=_)return m=1;var o=U(b,l);if(35===o&&0===l&&I(b,l)){if(l=O(b,l),n)continue;return m=6}switch(o){case 10:case 13:if(v|=1,n){l++;continue}return 13===o&&l+1<_&&10===b.charCodeAt(l+1)?l+=2:l++,m=4;case 9:case 11:case 12:case 32:case 160:case 5760:case 8192:case 8193:case 8194:case 8195:case 8196:case 8197:case 8198:case 8199:case 8200:case 8201:case 8202:case 8203:case 8239:case 8287:case 12288:case 65279:if(n){l++;continue}for(;l<_&&T(b.charCodeAt(l));)l++;return m=5;case 33:return 61===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=37):(l+=2,m=35):(l++,m=53);case 34:case 39:return y=W(),m=10;case 96:return m=H(!1);case 37:return 61===b.charCodeAt(l+1)?(l+=2,m=68):(l++,m=44);case 38:return 38===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=75):(l+=2,m=55):61===b.charCodeAt(l+1)?(l+=2,m=72):(l++,m=50);case 40:return l++,m=20;case 41:return l++,m=21;case 42:if(61===b.charCodeAt(l+1))return l+=2,m=65;if(42===b.charCodeAt(l+1))return 61===b.charCodeAt(l+2)?(l+=3,m=66):(l+=2,m=42);if(l++,x&&!i&&1&v){i=!0;continue}return m=41;case 43:return 43===b.charCodeAt(l+1)?(l+=2,m=45):61===b.charCodeAt(l+1)?(l+=2,m=63):(l++,m=39);case 44:return l++,m=27;case 45:return 45===b.charCodeAt(l+1)?(l+=2,m=46):61===b.charCodeAt(l+1)?(l+=2,m=64):(l++,m=40);case 46:return E(b.charCodeAt(l+1))?(y=M().value,m=8):46===b.charCodeAt(l+1)&&46===b.charCodeAt(l+2)?(l+=3,m=25):(l++,m=24);case 47:if(47===b.charCodeAt(l+1)){for(l+=2;l<_&&!C(b.charCodeAt(l));)l++;if(h=ae(h,b.slice(g,l),d,g),n)continue;return m=2}if(42===b.charCodeAt(l+1)){l+=2,42===b.charCodeAt(l)&&47!==b.charCodeAt(l+1)&&(v|=2);for(var s=!1,c=g;l<_;){var u=b.charCodeAt(l);if(42===u&&47===b.charCodeAt(l+1)){l+=2,s=!0;break}l++,C(u)&&(c=l,v|=1)}if(h=ae(h,b.slice(c,l),p,c),s||A(e.Diagnostics.Asterisk_Slash_expected),n)continue;return s||(v|=4),m=3}return 61===b.charCodeAt(l+1)?(l+=2,m=67):(l++,m=43);case 48:if(l+2<_&&(88===b.charCodeAt(l+1)||120===b.charCodeAt(l+1)))return l+=2,(y=j(1,!0))||(A(e.Diagnostics.Hexadecimal_digit_expected),y="0"),y="0x"+y,v|=64,m=re();if(l+2<_&&(66===b.charCodeAt(l+1)||98===b.charCodeAt(l+1)))return l+=2,(y=te(2))||(A(e.Diagnostics.Binary_digit_expected),y="0"),y="0b"+y,v|=128,m=re();if(l+2<_&&(79===b.charCodeAt(l+1)||111===b.charCodeAt(l+1)))return l+=2,(y=te(8))||(A(e.Diagnostics.Octal_digit_expected),y="0"),y="0o"+y,v|=256,m=re();if(l+1<_&&N(b.charCodeAt(l+1)))return y=""+R(),v|=32,m=8;case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return r=M(),m=r.type,y=r.value,m;case 58:return l++,m=58;case 59:return l++,m=26;case 60:if(F(b,l)){if(l=P(b,l,A),n)continue;return m=7}return 60===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=69):(l+=2,m=47):61===b.charCodeAt(l+1)?(l+=2,m=32):1===a&&47===b.charCodeAt(l+1)&&42!==b.charCodeAt(l+2)?(l+=2,m=30):(l++,m=29);case 61:if(F(b,l)){if(l=P(b,l,A),n)continue;return m=7}return 61===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=36):(l+=2,m=34):62===b.charCodeAt(l+1)?(l+=2,m=38):(l++,m=62);case 62:if(F(b,l)){if(l=P(b,l,A),n)continue;return m=7}return l++,m=31;case 63:return 46!==b.charCodeAt(l+1)||E(b.charCodeAt(l+2))?63===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=76):(l+=2,m=60):(l++,m=57):(l+=2,m=28);case 91:return l++,m=22;case 93:return l++,m=23;case 94:return 61===b.charCodeAt(l+1)?(l+=2,m=77):(l++,m=52);case 123:return l++,m=18;case 124:if(F(b,l)){if(l=P(b,l,A),n)continue;return m=7}return 124===b.charCodeAt(l+1)?61===b.charCodeAt(l+2)?(l+=3,m=74):(l+=2,m=56):61===b.charCodeAt(l+1)?(l+=2,m=73):(l++,m=51);case 125:return l++,m=19;case 126:return l++,m=54;case 64:return l++,m=59;case 92:var D=Z();if(D>=0&&J(D,t))return l+=3,v|=8,y=Q()+$(),m=ee();var S=Y();return S>=0&&J(S,t)?(l+=6,v|=1024,y=String.fromCharCode(S)+$(),m=ee()):(A(e.Diagnostics.Invalid_character),l++,m=0);case 35:if(0!==l&&"!"===b[l+1])return A(e.Diagnostics.can_only_be_used_at_the_start_of_a_file),l++,m=0;if(l++,J(o=b.charCodeAt(l),t)){for(l++;l<_&&z(o=b.charCodeAt(l),t);)l++;y=b.substring(g,l),92===o&&(y+=$())}else y="#",A(e.Diagnostics.Invalid_character);return m=79;default:var k=ie(o,t);if(k)return m=k;if(T(o)){l+=V(o);continue}if(C(o)){v|=1,l+=V(o);continue}return A(e.Diagnostics.Invalid_character),l+=V(o),m=0}}}function ie(e,t){var r=e;if(J(r,t)){for(l+=V(r);l<_&&z(r=U(b,l),t);)l+=V(r);return y=b.substring(g,l),92===r&&(y+=$()),ee()}}function ae(t,r,n,i){var a=function(e,t){var r=t.exec(e);if(!r)return;switch(r[1]){case"ts-expect-error":return 0;case"ts-ignore":return 1}return}(r,n);return void 0===a?t:e.append(t,{range:{pos:i,end:l},type:a})}function oe(){if(f=g=l,l>=_)return m=1;var t=b.charCodeAt(l);if(60===t)return 47===b.charCodeAt(l+1)?(l+=2,m=30):(l++,m=29);if(123===t)return l++,m=18;for(var r=0,n=-1;l<_&&(T(t)||(n=l),123!==(t=b.charCodeAt(l)));){if(60===t){if(F(b,l))return l=P(b,l,A),m=7;break}62===t&&A(e.Diagnostics.Unexpected_token_Did_you_mean_or_gt,l,1),125===t&&A(e.Diagnostics.Unexpected_token_Did_you_mean_or_rbrace,l,1),n>0&&n++,C(t)&&0===r?r=-1:S(t)||(r=l),l++}var i=-1===n?l:n;return y=b.substring(f,i),-1===r?12:11}function se(){switch(f=l,b.charCodeAt(l)){case 34:case 39:return y=W(!0),m=10;default:return ne()}}function ce(e,t){var r=l,n=f,i=g,a=m,o=y,s=v,c=e();return c&&!t||(l=r,f=n,g=i,m=a,y=o,v=s),c}function ue(e,t,r){b=e||"",_=void 0===r?b.length:t+r,le(t||0)}function le(t){e.Debug.assert(t>=0),l=t,f=t,g=t,m=0,y=void 0,v=0}};var U=String.prototype.codePointAt?function(e,t){return e.codePointAt(t)}:function(e,t){var r=e.length;if(!(t<0||t>=r)){var n=e.charCodeAt(t);if(n>=55296&&n<=56319&&r>t+1){var i=e.charCodeAt(t+1);if(i>=56320&&i<=57343)return 1024*(n-55296)+i-56320+65536}return n}};function V(e){return e>=65536?2:1}var K=String.fromCodePoint?function(e){return String.fromCodePoint(e)}:function(t){if(e.Debug.assert(0<=t&&t<=1114111),t<=65535)return String.fromCharCode(t);var r=Math.floor((t-65536)/1024)+55296,n=(t-65536)%1024+56320;return String.fromCharCode(r,n)};function q(e){return K(e)}e.utf16EncodeAsString=q}(ts||(ts={})),function(e){function t(e){return e.start+e.length}function r(e){return 0===e.length}function n(e,t){var r=a(e,t);return r&&0===r.length?void 0:r}function i(e,t,r,n){return r<=e+t&&r+n>=e}function a(e,r){var n=Math.max(e.start,r.start),i=Math.min(t(e),t(r));return n<=i?s(n,i):void 0}function o(e,t){if(e<0)throw new Error("start < 0");if(t<0)throw new Error("length < 0");return{start:e,length:t}}function s(e,t){return o(e,t-e)}function c(e,t){if(t<0)throw new Error("newLength < 0");return{span:e,newLength:t}}function u(t){return!!Q(t)&&e.every(t.elements,l)}function l(t){return!!e.isOmittedExpression(t)||u(t.name)}function _(t){for(var r=t.parent;e.isBindingElement(r.parent);)r=r.parent.parent;return r.parent}function d(t,r){e.isBindingElement(t)&&(t=_(t));var n=r(t);return 249===t.kind&&(t=t.parent),t&&250===t.kind&&(n|=r(t),t=t.parent),t&&232===t.kind&&(n|=r(t)),n}function p(e){return 0==(8&e.flags)}function f(e){var t=e;return t.length>=3&&95===t.charCodeAt(0)&&95===t.charCodeAt(1)&&95===t.charCodeAt(2)?t.substr(1):t}function g(e){return f(e.escapedText)}function m(t){var r=t.parent.parent;if(r){if(ae(r))return y(r);switch(r.kind){case 232:if(r.declarationList&&r.declarationList.declarations[0])return y(r.declarationList.declarations[0]);break;case 233:var n=r.expression;switch(216===n.kind&&62===n.operatorToken.kind&&(n=n.left),n.kind){case 201:return n.name;case 202:var i=n.argumentExpression;if(e.isIdentifier(i))return i}break;case 207:return y(r.expression);case 245:if(ae(r.statement)||te(r.statement))return y(r.statement)}}}function y(t){var r=x(t);return r&&e.isIdentifier(r)?r:void 0}function v(e){return e.name||m(e)}function h(e){return!!e.name}function b(t){switch(t.kind){case 78:return t;case 333:case 326:var r=t.name;if(157===r.kind)return r.right;break;case 203:case 216:var n=t;switch(e.getAssignmentDeclarationKind(n)){case 1:case 4:case 5:case 3:return e.getElementOrPropertyAccessArgumentExpressionOrName(n.left);case 7:case 8:case 9:return n.arguments[1];default:return}case 331:return v(t);case 325:return m(t);case 266:var i=t.expression;return e.isIdentifier(i)?i:void 0;case 202:var a=t;if(e.isBindableStaticElementAccessExpression(a))return a.argumentExpression}return t.name}function x(t){if(void 0!==t)return b(t)||(e.isFunctionExpression(t)||e.isClassExpression(t)?D(t):void 0)}function D(t){if(t.parent){if(e.isPropertyAssignment(t.parent)||e.isBindingElement(t.parent))return t.parent.name;if(e.isBinaryExpression(t.parent)&&t===t.parent.right){if(e.isIdentifier(t.parent.left))return t.parent.left;if(e.isAccessExpression(t.parent.left))return e.getElementOrPropertyAccessArgumentExpressionOrName(t.parent.left)}else if(e.isVariableDeclaration(t.parent)&&e.isIdentifier(t.parent.name))return t.parent.name}}function S(t,r){if(t.name){if(e.isIdentifier(t.name)){var n=t.name.escapedText;return A(t.parent,r).filter((function(t){return e.isJSDocParameterTag(t)&&e.isIdentifier(t.name)&&t.name.escapedText===n}))}var i=t.parent.parameters.indexOf(t);e.Debug.assert(i>-1,"Parameters should always be in their parents' parameter list");var a=A(t.parent,r).filter(e.isJSDocParameterTag);if(i=157}function B(e){return 8<=e&&e<=14}function j(e){return 14<=e&&e<=17}function J(t){return e.isPropertyDeclaration(t)&&e.isPrivateIdentifier(t.name)}function z(e){switch(e){case 125:case 129:case 84:case 133:case 87:case 92:case 122:case 120:case 121:case 142:case 123:return!0}return!1}function U(t){return!!(92&e.modifierToFlag(t))}function V(e){return e&&q(e.kind)}function K(e){switch(e){case 251:case 165:case 166:case 167:case 168:case 208:case 209:return!0;default:return!1}}function q(e){switch(e){case 164:case 169:case 313:case 170:case 171:case 174:case 308:case 175:return!0;default:return K(e)}}function W(e){var t=e.kind;return 166===t||163===t||165===t||167===t||168===t||171===t||229===t}function H(e){return e&&(252===e.kind||221===e.kind)}function G(e){var t=e.kind;return 170===t||169===t||162===t||164===t||171===t}function X(e){var t=e.kind;return 288===t||289===t||290===t||165===t||167===t||168===t}function Q(e){if(e){var t=e.kind;return 197===t||196===t}return!1}function Y(e){switch(e.kind){case 196:case 200:return!0}return!1}function Z(e){switch(e.kind){case 197:case 199:return!0}return!1}function $(e){switch(e){case 201:case 202:case 204:case 203:case 273:case 274:case 277:case 205:case 199:case 207:case 200:case 221:case 208:case 78:case 13:case 8:case 9:case 10:case 14:case 218:case 94:case 103:case 107:case 109:case 105:case 225:case 226:case 99:return!0;default:return!1}}function ee(e){switch(e){case 214:case 215:case 210:case 211:case 212:case 213:case 206:return!0;default:return $(e)}}function te(e){return function(e){switch(e){case 217:case 219:case 209:case 216:case 220:case 224:case 222:case 337:case 336:return!0;default:return ee(e)}}(M(e).kind)}function re(t){return e.isExportAssignment(t)||e.isExportDeclaration(t)}function ne(e){return 251===e||271===e||252===e||253===e||254===e||255===e||256===e||261===e||260===e||267===e||266===e||259===e}function ie(e){return 241===e||240===e||248===e||235===e||233===e||231===e||238===e||239===e||237===e||234===e||245===e||242===e||244===e||246===e||247===e||232===e||236===e||243===e||335===e||339===e||338===e}function ae(t){return 159===t.kind?t.parent&&330!==t.parent.kind||e.isInJSFile(t):209===(r=t.kind)||198===r||252===r||221===r||166===r||255===r||291===r||270===r||251===r||208===r||167===r||262===r||260===r||265===r||253===r||280===r||165===r||164===r||256===r||259===r||263===r||269===r||160===r||288===r||163===r||162===r||168===r||289===r||254===r||159===r||249===r||331===r||324===r||333===r;var r}function oe(e){return e.kind>=314&&e.kind<=333}e.isExternalModuleNameRelative=function(t){return e.pathIsRelative(t)||e.isRootedDiskPath(t)},e.sortAndDeduplicateDiagnostics=function(t){return e.sortAndDeduplicate(t,e.compareDiagnostics)},e.getDefaultLibFileName=function(e){switch(e.target){case 99:return"lib.esnext.full.d.ts";case 7:return"lib.es2020.full.d.ts";case 6:return"lib.es2019.full.d.ts";case 5:return"lib.es2018.full.d.ts";case 4:return"lib.es2017.full.d.ts";case 3:return"lib.es2016.full.d.ts";case 2:return"lib.es6.d.ts";default:return"lib.d.ts"}},e.textSpanEnd=t,e.textSpanIsEmpty=r,e.textSpanContainsPosition=function(e,r){return r>=e.start&&r=e.pos&&t<=e.end},e.textSpanContainsTextSpan=function(e,r){return r.start>=e.start&&t(r)<=t(e)},e.textSpanOverlapsWith=function(e,t){return void 0!==n(e,t)},e.textSpanOverlap=n,e.textSpanIntersectsWithTextSpan=function(e,t){return i(e.start,e.length,t.start,t.length)},e.textSpanIntersectsWith=function(e,t,r){return i(e.start,e.length,t,r)},e.decodedTextSpanIntersectsWith=i,e.textSpanIntersectsWithPosition=function(e,r){return r<=t(e)&&r>=e.start},e.textSpanIntersection=a,e.createTextSpan=o,e.createTextSpanFromBounds=s,e.textChangeRangeNewSpan=function(e){return o(e.span.start,e.newLength)},e.textChangeRangeIsUnchanged=function(e){return r(e.span)&&0===e.newLength},e.createTextChangeRange=c,e.unchangedTextChangeRange=c(o(0,0),0),e.collapseTextChangeRangesAcrossMultipleVersions=function(r){if(0===r.length)return e.unchangedTextChangeRange;if(1===r.length)return r[0];for(var n=r[0],i=n.span.start,a=t(n.span),o=i+n.newLength,u=1;u=2&&95===e.charCodeAt(0)&&95===e.charCodeAt(1)?"_"+e:e},e.unescapeLeadingUnderscores=f,e.idText=g,e.symbolName=function(e){return e.valueDeclaration&&J(e.valueDeclaration)?g(e.valueDeclaration.name):f(e.escapedName)},e.nodeHasName=function t(r,n){return!(!h(r)||!e.isIdentifier(r.name)||g(r.name)!==g(n))||!(!e.isVariableStatement(r)||!e.some(r.declarationList.declarations,(function(e){return t(e,n)})))},e.getNameOfJSDocTypedef=v,e.isNamedDeclaration=h,e.getNonAssignedNameOfDeclaration=b,e.getNameOfDeclaration=x,e.getAssignedName=D,e.getJSDocParameterTags=T,e.getJSDocParameterTagsNoCache=function(e){return S(e,!0)},e.getJSDocTypeParameterTags=function(e){return C(e,!1)},e.getJSDocTypeParameterTagsNoCache=function(e){return C(e,!0)},e.hasJSDocParameterTags=function(t){return!!P(t,e.isJSDocParameterTag)},e.getJSDocAugmentsTag=function(t){return P(t,e.isJSDocAugmentsTag)},e.getJSDocImplementsTags=function(t){return w(t,e.isJSDocImplementsTag)},e.getJSDocClassTag=function(t){return P(t,e.isJSDocClassTag)},e.getJSDocPublicTag=function(t){return P(t,e.isJSDocPublicTag)},e.getJSDocPublicTagNoCache=function(t){return P(t,e.isJSDocPublicTag,!0)},e.getJSDocPrivateTag=function(t){return P(t,e.isJSDocPrivateTag)},e.getJSDocPrivateTagNoCache=function(t){return P(t,e.isJSDocPrivateTag,!0)},e.getJSDocProtectedTag=function(t){return P(t,e.isJSDocProtectedTag)},e.getJSDocProtectedTagNoCache=function(t){return P(t,e.isJSDocProtectedTag,!0)},e.getJSDocReadonlyTag=function(t){return P(t,e.isJSDocReadonlyTag)},e.getJSDocReadonlyTagNoCache=function(t){return P(t,e.isJSDocReadonlyTag,!0)},e.getJSDocDeprecatedTag=function(t){return P(t,e.isJSDocDeprecatedTag)},e.getJSDocDeprecatedTagNoCache=function(t){return P(t,e.isJSDocDeprecatedTag,!0)},e.getJSDocEnumTag=function(t){return P(t,e.isJSDocEnumTag)},e.getJSDocThisTag=function(t){return P(t,e.isJSDocThisTag)},e.getJSDocReturnTag=E,e.getJSDocTemplateTag=function(t){return P(t,e.isJSDocTemplateTag)},e.getJSDocTypeTag=k,e.getJSDocType=N,e.getJSDocReturnType=function(t){var r=E(t);if(r&&r.typeExpression)return r.typeExpression.type;var n=k(t);if(n&&n.typeExpression){var i=n.typeExpression.type;if(e.isTypeLiteralNode(i)){var a=e.find(i.members,e.isCallSignatureDeclaration);return a&&a.type}if(e.isFunctionTypeNode(i)||e.isJSDocFunctionType(i))return i.type}},e.getJSDocTags=F,e.getJSDocTagsNoCache=function(e){return A(e,!0)},e.getAllJSDocTags=w,e.getAllJSDocTagsOfKind=function(e,t){return F(e).filter((function(e){return e.kind===t}))},e.getEffectiveTypeParameterDeclarations=function(t){if(e.isJSDocSignature(t))return e.emptyArray;if(e.isJSDocTypeAlias(t))return e.Debug.assert(311===t.parent.kind),e.flatMap(t.parent.tags,(function(t){return e.isJSDocTemplateTag(t)?t.typeParameters:void 0}));if(t.typeParameters)return t.typeParameters;if(e.isInJSFile(t)){var r=e.getJSDocTypeParameterDeclarations(t);if(r.length)return r;var n=N(t);if(n&&e.isFunctionTypeNode(n)&&n.typeParameters)return n.typeParameters}return e.emptyArray},e.getEffectiveConstraintOfTypeParameter=function(t){return t.constraint?t.constraint:e.isJSDocTemplateTag(t.parent)&&t===t.parent.typeParameters[0]?t.parent.constraint:void 0},e.isIdentifierOrPrivateIdentifier=function(e){return 78===e.kind||79===e.kind},e.isGetOrSetAccessorDeclaration=function(e){return 168===e.kind||167===e.kind},e.isPropertyAccessChain=function(t){return e.isPropertyAccessExpression(t)&&!!(32&t.flags)},e.isElementAccessChain=function(t){return e.isElementAccessExpression(t)&&!!(32&t.flags)},e.isCallChain=function(t){return e.isCallExpression(t)&&!!(32&t.flags)},e.isOptionalChain=I,e.isOptionalChainRoot=O,e.isExpressionOfOptionalChainRoot=function(e){return O(e.parent)&&e.parent.expression===e},e.isOutermostOptionalChain=function(e){return!I(e.parent)||O(e.parent)||e!==e.parent.expression},e.isNullishCoalesce=function(e){return 216===e.kind&&60===e.operatorToken.kind},e.isConstTypeReference=function(t){return e.isTypeReferenceNode(t)&&e.isIdentifier(t.typeName)&&"const"===t.typeName.escapedText&&!t.typeArguments},e.skipPartiallyEmittedExpressions=M,e.isNonNullChain=function(t){return e.isNonNullExpression(t)&&!!(32&t.flags)},e.isBreakOrContinueStatement=function(e){return 241===e.kind||240===e.kind},e.isNamedExportBindings=function(e){return 269===e.kind||268===e.kind},e.isUnparsedTextLike=L,e.isUnparsedNode=function(e){return L(e)||292===e.kind||296===e.kind},e.isJSDocPropertyLikeTag=function(e){return 333===e.kind||326===e.kind},e.isNode=function(e){return R(e.kind)},e.isNodeKind=R,e.isToken=function(e){return e.kind>=0&&e.kind<=156},e.isNodeArray=function(e){return e.hasOwnProperty("pos")&&e.hasOwnProperty("end")},e.isLiteralKind=B,e.isLiteralExpression=function(e){return B(e.kind)},e.isTemplateLiteralKind=j,e.isTemplateLiteralToken=function(e){return j(e.kind)},e.isTemplateMiddleOrTemplateTail=function(e){var t=e.kind;return 16===t||17===t},e.isImportOrExportSpecifier=function(t){return e.isImportSpecifier(t)||e.isExportSpecifier(t)},e.isTypeOnlyImportOrExportDeclaration=function(e){switch(e.kind){case 265:case 270:return e.parent.parent.isTypeOnly;case 263:return e.parent.isTypeOnly;case 262:case 260:return e.isTypeOnly;default:return!1}},e.isStringTextContainingNode=function(e){return 10===e.kind||j(e.kind)},e.isGeneratedIdentifier=function(t){return e.isIdentifier(t)&&(7&t.autoGenerateFlags)>0},e.isPrivateIdentifierPropertyDeclaration=J,e.isPrivateIdentifierPropertyAccessExpression=function(t){return e.isPropertyAccessExpression(t)&&e.isPrivateIdentifier(t.name)},e.isModifierKind=z,e.isParameterPropertyModifier=U,e.isClassMemberModifier=function(e){return U(e)||123===e},e.isModifier=function(e){return z(e.kind)},e.isEntityName=function(e){var t=e.kind;return 157===t||78===t},e.isPropertyName=function(e){var t=e.kind;return 78===t||79===t||10===t||8===t||158===t},e.isBindingName=function(e){var t=e.kind;return 78===t||196===t||197===t},e.isFunctionLike=V,e.isFunctionLikeDeclaration=function(e){return e&&K(e.kind)},e.isFunctionLikeKind=q,e.isFunctionOrModuleBlock=function(t){return e.isSourceFile(t)||e.isModuleBlock(t)||e.isBlock(t)&&V(t.parent)},e.isClassElement=W,e.isClassLike=H,e.isAccessor=function(e){return e&&(167===e.kind||168===e.kind)},e.isMethodOrAccessor=function(e){switch(e.kind){case 165:case 167:case 168:return!0;default:return!1}},e.isTypeElement=G,e.isClassOrTypeElement=function(e){return G(e)||W(e)},e.isObjectLiteralElementLike=X,e.isTypeNode=function(t){return e.isTypeNodeKind(t.kind)},e.isFunctionOrConstructorTypeNode=function(e){switch(e.kind){case 174:case 175:return!0}return!1},e.isBindingPattern=Q,e.isAssignmentPattern=function(e){var t=e.kind;return 199===t||200===t},e.isArrayBindingElement=function(e){var t=e.kind;return 198===t||222===t},e.isDeclarationBindingElement=function(e){switch(e.kind){case 249:case 160:case 198:return!0}return!1},e.isBindingOrAssignmentPattern=function(e){return Y(e)||Z(e)},e.isObjectBindingOrAssignmentPattern=Y,e.isArrayBindingOrAssignmentPattern=Z,e.isPropertyAccessOrQualifiedNameOrImportTypeNode=function(e){var t=e.kind;return 201===t||157===t||195===t},e.isPropertyAccessOrQualifiedName=function(e){var t=e.kind;return 201===t||157===t},e.isCallLikeExpression=function(e){switch(e.kind){case 275:case 274:case 203:case 204:case 205:case 161:return!0;default:return!1}},e.isCallOrNewExpression=function(e){return 203===e.kind||204===e.kind},e.isTemplateLiteral=function(e){var t=e.kind;return 218===t||14===t},e.isLeftHandSideExpression=function(e){return $(M(e).kind)},e.isUnaryExpression=function(e){return ee(M(e).kind)},e.isUnaryExpressionWithWrite=function(e){switch(e.kind){case 215:return!0;case 214:return 45===e.operator||46===e.operator;default:return!1}},e.isExpression=te,e.isAssertionExpression=function(e){var t=e.kind;return 206===t||224===t},e.isNotEmittedOrPartiallyEmittedNode=function(t){return e.isNotEmittedStatement(t)||e.isPartiallyEmittedExpression(t)},e.isIterationStatement=function e(t,r){switch(t.kind){case 237:case 238:case 239:case 235:case 236:return!0;case 245:return r&&e(t.statement,r)}return!1},e.isScopeMarker=re,e.hasScopeMarker=function(t){return e.some(t,re)},e.needsScopeMarker=function(t){return!(e.isAnyImportOrReExport(t)||e.isExportAssignment(t)||e.hasSyntacticModifier(t,1)||e.isAmbientModule(t))},e.isExternalModuleIndicator=function(t){return e.isAnyImportOrReExport(t)||e.isExportAssignment(t)||e.hasSyntacticModifier(t,1)},e.isForInOrOfStatement=function(e){return 238===e.kind||239===e.kind},e.isConciseBody=function(t){return e.isBlock(t)||te(t)},e.isFunctionBody=function(t){return e.isBlock(t)},e.isForInitializer=function(t){return e.isVariableDeclarationList(t)||te(t)},e.isModuleBody=function(e){var t=e.kind;return 257===t||256===t||78===t},e.isNamespaceBody=function(e){var t=e.kind;return 257===t||256===t},e.isJSDocNamespaceBody=function(e){var t=e.kind;return 78===t||256===t},e.isNamedImportBindings=function(e){var t=e.kind;return 264===t||263===t},e.isModuleOrEnumDeclaration=function(e){return 256===e.kind||255===e.kind},e.isDeclaration=ae,e.isDeclarationStatement=function(e){return ne(e.kind)},e.isStatementButNotDeclaration=function(e){return ie(e.kind)},e.isStatement=function(t){var r=t.kind;return ie(r)||ne(r)||function(t){if(230!==t.kind)return!1;if(void 0!==t.parent&&(247===t.parent.kind||287===t.parent.kind))return!1;return!e.isFunctionBlock(t)}(t)},e.isStatementOrBlock=function(e){var t=e.kind;return ie(t)||ne(t)||230===t},e.isModuleReference=function(e){var t=e.kind;return 272===t||157===t||78===t},e.isJsxTagNameExpression=function(e){var t=e.kind;return 107===t||78===t||201===t},e.isJsxChild=function(e){var t=e.kind;return 273===t||283===t||274===t||11===t||277===t},e.isJsxAttributeLike=function(e){var t=e.kind;return 280===t||282===t},e.isStringLiteralOrJsxExpression=function(e){var t=e.kind;return 10===t||283===t},e.isJsxOpeningLikeElement=function(e){var t=e.kind;return 275===t||274===t},e.isCaseOrDefaultClause=function(e){var t=e.kind;return 284===t||285===t},e.isJSDocNode=function(e){return e.kind>=301&&e.kind<=333},e.isJSDocCommentContainingNode=function(t){return 311===t.kind||310===t.kind||oe(t)||e.isJSDocTypeLiteral(t)||e.isJSDocSignature(t)},e.isJSDocTag=oe,e.isSetAccessor=function(e){return 168===e.kind},e.isGetAccessor=function(e){return 167===e.kind},e.hasJSDocNodes=function(e){var t=e.jsDoc;return!!t&&t.length>0},e.hasType=function(e){return!!e.type},e.hasInitializer=function(e){return!!e.initializer},e.hasOnlyExpressionInitializer=function(e){switch(e.kind){case 249:case 160:case 198:case 162:case 163:case 288:case 291:return!0;default:return!1}},e.isObjectLiteralElement=function(e){return 280===e.kind||282===e.kind||X(e)},e.isTypeReferenceType=function(e){return 173===e.kind||223===e.kind};var se=1073741823;e.guessIndentation=function(t){for(var r=se,n=0,i=t;n=0);var n=e.getLineStarts(r),i=t,a=r.text;if(i+1===n.length)return a.length-1;var o=n[i],s=n[i+1]-1;for(e.Debug.assert(e.isLineBreak(a.charCodeAt(s)));o<=s&&e.isLineBreak(a.charCodeAt(s));)s--;return s}function u(e){return void 0===e||e.pos===e.end&&e.pos>=0&&1!==e.kind}function l(e){return!u(e)}function _(e,t,r){if(void 0===t||0===t.length)return e;for(var n=0;n0?g(t._children[0],r,n):e.skipTrivia((r||s(t)).text,t.pos)}function m(e,t,r){return void 0===r&&(r=!1),y(e.text,t,r)}function y(t,r,n){if(void 0===n&&(n=!1),u(r))return"";var i=t.substring(n?r.pos:e.skipTrivia(t,r.pos),r.end);return function(t){return!!e.findAncestor(t,e.isJSDocTypeExpression)}(r)&&(i=i.replace(/(^|\r?\n|\r)\s*\*\s*/g,"$1")),i}function v(e,t){return void 0===t&&(t=!1),m(s(e),e,t)}function h(e){return e.pos}function b(e){var t=e.emitNode;return t&&t.flags||0}function x(e){var t=ht(e);return 249===t.kind&&287===t.parent.kind}function D(t){return e.isModuleDeclaration(t)&&(10===t.name.kind||T(t))}function S(t){return e.isModuleDeclaration(t)||e.isIdentifier(t)}function T(e){return!!(1024&e.flags)}function C(e){return D(e)&&E(e)}function E(t){switch(t.parent.kind){case 297:return e.isExternalModule(t.parent);case 257:return D(t.parent.parent)&&e.isSourceFile(t.parent.parent.parent)&&!e.isExternalModule(t.parent.parent.parent)}return!1}function k(t,r){switch(t.kind){case 297:case 258:case 287:case 256:case 237:case 238:case 239:case 166:case 165:case 167:case 168:case 251:case 208:case 209:return!0;case 230:return!e.isFunctionLike(r)}return!1}function N(t){switch(t.kind){case 169:case 170:case 164:case 171:case 174:case 175:case 308:case 252:case 221:case 253:case 254:case 330:case 251:case 165:case 166:case 167:case 168:case 208:case 209:return!0;default:return e.assertType(t),!1}}function A(e){switch(e.kind){case 261:case 260:return!0;default:return!1}}function F(t){return A(t)||e.isExportDeclaration(t)}function P(e){return e&&0!==a(e)?v(e):"(Missing)"}function w(t){switch(t.kind){case 78:case 79:return t.escapedText;case 10:case 8:case 14:return e.escapeLeadingUnderscores(t.text);case 158:return ut(t.expression)?e.escapeLeadingUnderscores(t.expression.text):e.Debug.fail("Text of property name cannot be read from non-literal-valued ComputedPropertyNames");default:return e.Debug.assertNever(t)}}function I(t){switch(t.kind){case 107:return"this";case 79:case 78:return 0===a(t)?e.idText(t):v(t);case 157:return I(t.left)+"."+I(t.right);case 201:return e.isIdentifier(t.name)||e.isPrivateIdentifier(t.name)?I(t.expression)+"."+I(t.name):e.Debug.assertNever(t.name);default:return e.Debug.assertNever(t)}}function O(e,t,r,n,i,a,o){var s=B(e,t);return on(e,s.start,s.length,r,n,i,a,o)}function M(t,r,n){e.Debug.assertGreaterThanOrEqual(r,0),e.Debug.assertGreaterThanOrEqual(n,0),t&&(e.Debug.assertLessThanOrEqual(r,t.text.length),e.Debug.assertLessThanOrEqual(r+n,t.text.length))}function L(e,t,r,n,i){return M(e,t,r),{file:e,start:t,length:r,code:n.code,category:n.category,messageText:n.next?n:n.messageText,relatedInformation:i}}function R(t,r){var n=e.createScanner(t.languageVersion,!0,t.languageVariant,t.text,void 0,r);n.scan();var i=n.getTokenPos();return e.createTextSpanFromBounds(i,n.getTextPos())}function B(t,r){var n=r;switch(r.kind){case 297:var i=e.skipTrivia(t.text,0,!1);return i===t.text.length?e.createTextSpan(0,0):R(t,i);case 249:case 198:case 252:case 221:case 253:case 256:case 255:case 291:case 251:case 208:case 165:case 167:case 168:case 254:case 163:case 162:n=r.name;break;case 209:return function(t,r){var n=e.skipTrivia(t.text,r.pos);if(r.body&&230===r.body.kind){var i=e.getLineAndCharacterOfPosition(t,r.body.pos).line;if(i0?r.statements[0].pos:r.end;return e.createTextSpanFromBounds(a,o)}if(void 0===n)return R(t,r.pos);e.Debug.assert(!e.isJSDoc(n));var s=u(n),l=s||e.isJsxText(r)?n.pos:e.skipTrivia(t.text,n.pos);return s?(e.Debug.assert(l===n.pos,"This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"),e.Debug.assert(l===n.end,"This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809")):(e.Debug.assert(l>=n.pos,"This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809"),e.Debug.assert(l<=n.end,"This failure could trigger https://github.com/Microsoft/TypeScript/issues/20809")),e.createTextSpanFromBounds(l,n.end)}function j(e){return 6===e.scriptKind}function J(t){return!!(2&e.getCombinedNodeFlags(t))}function z(e){return 203===e.kind&&99===e.expression.kind}function U(t){return e.isImportTypeNode(t)&&e.isLiteralTypeNode(t.argument)&&e.isStringLiteral(t.argument.literal)}function V(e){return 233===e.kind&&10===e.expression.kind}function K(e){return!!(1048576&b(e))}function q(t){return e.isIdentifier(t.name)&&!t.initializer}e.changesAffectModuleResolution=function(e,t){return e.configFilePath!==t.configFilePath||i(e,t)},e.optionsHaveModuleResolutionChanges=i,e.forEachAncestor=function(t,r){for(;;){var n=r(t);if("quit"===n)return;if(void 0!==n)return n;if(e.isSourceFile(t))return;t=t.parent}},e.forEachEntry=function(e,t){for(var r=e.entries(),n=r.next();!n.done;n=r.next()){var i=n.value,a=i[0],o=t(i[1],a);if(o)return o}},e.forEachKey=function(e,t){for(var r=e.keys(),n=r.next();!n.done;n=r.next()){var i=t(n.value);if(i)return i}},e.copyEntries=function(e,t){e.forEach((function(e,r){t.set(r,e)}))},e.usingSingleLineStringWriter=function(e){var t=n.getText();try{return e(n),n.getText()}finally{n.clear(),n.writeKeyword(t)}},e.getFullWidth=a,e.getResolvedModule=function(e,t){return e&&e.resolvedModules&&e.resolvedModules.get(t)},e.setResolvedModule=function(t,r,n){t.resolvedModules||(t.resolvedModules=new e.Map),t.resolvedModules.set(r,n)},e.setResolvedTypeReferenceDirective=function(t,r,n){t.resolvedTypeReferenceDirectiveNames||(t.resolvedTypeReferenceDirectiveNames=new e.Map),t.resolvedTypeReferenceDirectiveNames.set(r,n)},e.projectReferenceIsEqualTo=function(e,t){return e.path===t.path&&!e.prepend==!t.prepend&&!e.circular==!t.circular},e.moduleResolutionIsEqualTo=function(e,t){return e.isExternalLibraryImport===t.isExternalLibraryImport&&e.extension===t.extension&&e.resolvedFileName===t.resolvedFileName&&e.originalPath===t.originalPath&&(r=e.packageId,n=t.packageId,r===n||!!r&&!!n&&r.name===n.name&&r.subModuleName===n.subModuleName&&r.version===n.version);var r,n},e.packageIdToString=function(e){var t=e.name,r=e.subModuleName;return(r?t+"/"+r:t)+"@"+e.version},e.typeDirectiveIsEqualTo=function(e,t){return e.resolvedFileName===t.resolvedFileName&&e.primary===t.primary},e.hasChangesInResolutions=function(t,r,n,i){e.Debug.assert(t.length===r.length);for(var a=0;a=0),e.getLineStarts(r)[t]},e.nodePosToString=function(t){var r=s(t),n=e.getLineAndCharacterOfPosition(r,t.pos);return r.fileName+"("+(n.line+1)+","+(n.character+1)+")"},e.getEndLinePosition=c,e.isFileLevelUniqueName=function(e,t,r){return!(r&&r(t)||e.identifiers.has(t))},e.nodeIsMissing=u,e.nodeIsPresent=l,e.insertStatementsAfterStandardPrologue=function(e,t){return _(e,t,V)},e.insertStatementsAfterCustomPrologue=function(e,t){return _(e,t,p)},e.insertStatementAfterStandardPrologue=function(e,t){return d(e,t,V)},e.insertStatementAfterCustomPrologue=function(e,t){return d(e,t,p)},e.isRecognizedTripleSlashComment=function(t,r,n){if(47===t.charCodeAt(r+1)&&r+2=e.ModuleKind.ES2015||!r.noImplicitUseStrict)))},e.isBlockScope=k,e.isDeclarationWithTypeParameters=function(t){switch(t.kind){case 324:case 331:case 313:return!0;default:return e.assertType(t),N(t)}},e.isDeclarationWithTypeParameterChildren=N,e.isAnyImportSyntax=A,e.isLateVisibilityPaintedStatement=function(e){switch(e.kind){case 261:case 260:case 232:case 252:case 251:case 256:case 254:case 253:case 255:return!0;default:return!1}},e.hasPossibleExternalModuleReference=function(t){return F(t)||e.isModuleDeclaration(t)||e.isImportTypeNode(t)||z(t)},e.isAnyImportOrReExport=F,e.getEnclosingBlockScopeContainer=function(t){return e.findAncestor(t.parent,(function(e){return k(e,e.parent)}))},e.declarationNameToString=P,e.getNameFromIndexInfo=function(e){return e.declaration?P(e.declaration.parameters[0].name):void 0},e.isComputedNonLiteralName=function(e){return 158===e.kind&&!ut(e.expression)},e.getTextOfPropertyName=w,e.entityNameToString=I,e.createDiagnosticForNode=function(e,t,r,n,i,a){return O(s(e),e,t,r,n,i,a)},e.createDiagnosticForNodeArray=function(t,r,n,i,a,o,s){var c=e.skipTrivia(t.text,r.pos);return on(t,c,r.end-c,n,i,a,o,s)},e.createDiagnosticForNodeInSourceFile=O,e.createDiagnosticForNodeFromMessageChain=function(e,t,r){var n=s(e),i=B(n,e);return L(n,i.start,i.length,t,r)},e.createFileDiagnosticFromMessageChain=L,e.createDiagnosticForFileFromMessageChain=function(e,t,r){return{file:e,start:0,length:0,code:t.code,category:t.category,messageText:t.next?t:t.messageText,relatedInformation:r}},e.createDiagnosticForRange=function(e,t,r){return{file:e,start:t.pos,length:t.end-t.pos,code:r.code,category:r.category,messageText:r.message}},e.getSpanOfTokenAtPosition=R,e.getErrorSpanForNode=B,e.isExternalOrCommonJsModule=function(e){return void 0!==(e.externalModuleIndicator||e.commonJsModuleIndicator)},e.isJsonSourceFile=j,e.isEnumConst=function(t){return!!(2048&e.getCombinedModifierFlags(t))},e.isDeclarationReadonly=function(t){return!(!(64&e.getCombinedModifierFlags(t))||e.isParameterPropertyDeclaration(t,t.parent))},e.isVarConst=J,e.isLet=function(t){return!!(1&e.getCombinedNodeFlags(t))},e.isSuperCall=function(e){return 203===e.kind&&105===e.expression.kind},e.isImportCall=z,e.isImportMeta=function(t){return e.isMetaProperty(t)&&99===t.keywordToken&&"meta"===t.name.escapedText},e.isLiteralImportTypeNode=U,e.isPrologueDirective=V,e.isCustomPrologue=K,e.isHoistedFunction=function(t){return K(t)&&e.isFunctionDeclaration(t)},e.isHoistedVariableStatement=function(t){return K(t)&&e.isVariableStatement(t)&&e.every(t.declarationList.declarations,q)},e.getLeadingCommentRangesOfNode=function(t,r){return 11!==t.kind?e.getLeadingCommentRanges(r.text,t.pos):void 0},e.getJSDocCommentRanges=function(t,r){var n=160===t.kind||159===t.kind||208===t.kind||209===t.kind||207===t.kind?e.concatenate(e.getTrailingCommentRanges(r,t.pos),e.getLeadingCommentRanges(r,t.pos)):e.getLeadingCommentRanges(r,t.pos);return e.filter(n,(function(e){return 42===r.charCodeAt(e.pos+1)&&42===r.charCodeAt(e.pos+2)&&47!==r.charCodeAt(e.pos+3)}))},e.fullTripleSlashReferencePathRegEx=/^(\/\/\/\s*/;var W=/^(\/\/\/\s*/;e.fullTripleSlashAMDReferencePathRegEx=/^(\/\/\/\s*/;var H=/^(\/\/\/\s*/;function G(t){if(172<=t.kind&&t.kind<=195)return!0;switch(t.kind){case 128:case 152:case 144:case 155:case 147:case 131:case 148:case 145:case 150:case 141:return!0;case 113:return 212!==t.parent.kind;case 223:return!Nr(t);case 159:return 190===t.parent.kind||185===t.parent.kind;case 78:(157===t.parent.kind&&t.parent.right===t||201===t.parent.kind&&t.parent.name===t)&&(t=t.parent),e.Debug.assert(78===t.kind||157===t.kind||201===t.kind,"'node' was expected to be a qualified name, identifier or property access in 'isPartOfTypeNode'.");case 157:case 201:case 107:var r=t.parent;if(176===r.kind)return!1;if(195===r.kind)return!r.isTypeOf;if(172<=r.kind&&r.kind<=195)return!0;switch(r.kind){case 223:return!Nr(r);case 159:case 330:return t===r.constraint;case 163:case 162:case 160:case 249:return t===r.type;case 251:case 208:case 209:case 166:case 165:case 164:case 167:case 168:return t===r.type;case 169:case 170:case 171:case 206:return t===r.type;case 203:case 204:return e.contains(r.typeArguments,t);case 205:return!1}}return!1}function X(e){if(e)switch(e.kind){case 198:case 291:case 160:case 288:case 163:case 162:case 289:case 249:return!0}return!1}function Q(e){return 250===e.parent.kind&&232===e.parent.parent.kind}function Y(e,t,r){return e.properties.filter((function(e){if(288===e.kind){var n=w(e.name);return t===n||!!r&&r===n}return!1}))}function Z(t){if(t&&t.statements.length){var r=t.statements[0].expression;return e.tryCast(r,e.isObjectLiteralExpression)}}function $(t,r){var n=Z(t);return n?Y(n,r):e.emptyArray}function ee(t,r){for(e.Debug.assert(297!==t.kind);;){if(!(t=t.parent))return e.Debug.fail();switch(t.kind){case 158:if(e.isClassLike(t.parent.parent))return t;t=t.parent;break;case 161:160===t.parent.kind&&e.isClassElement(t.parent.parent)?t=t.parent.parent:e.isClassElement(t.parent)&&(t=t.parent);break;case 209:if(!r)continue;case 251:case 208:case 256:case 163:case 162:case 165:case 164:case 166:case 167:case 168:case 169:case 170:case 171:case 255:case 297:return t}}}function te(e){var t=e.kind;return(201===t||202===t)&&105===e.expression.kind}function re(t,r,n){if(e.isNamedDeclaration(t)&&e.isPrivateIdentifier(t.name))return!1;switch(t.kind){case 252:return!0;case 163:return 252===r.kind;case 167:case 168:case 165:return void 0!==t.body&&252===r.kind;case 160:return void 0!==r.body&&(166===r.kind||165===r.kind||168===r.kind)&&252===n.kind}return!1}function ne(e,t,r){return void 0!==e.decorators&&re(e,t,r)}function ie(e,t,r){return ne(e,t,r)||ae(e,t)}function ae(t,r){switch(t.kind){case 252:return e.some(t.members,(function(e){return ie(e,t,r)}));case 165:case 168:return e.some(t.parameters,(function(e){return ne(e,t,r)}));default:return!1}}function oe(e){var t=e.parent;return(275===t.kind||274===t.kind||276===t.kind)&&t.tagName===e}function se(e){switch(e.kind){case 105:case 103:case 109:case 94:case 13:case 199:case 200:case 201:case 202:case 203:case 204:case 205:case 224:case 206:case 225:case 207:case 208:case 221:case 209:case 212:case 210:case 211:case 214:case 215:case 216:case 217:case 220:case 218:case 222:case 273:case 274:case 277:case 219:case 213:case 226:return!0;case 157:for(;157===e.parent.kind;)e=e.parent;return 176===e.parent.kind||oe(e);case 78:if(176===e.parent.kind||oe(e))return!0;case 8:case 9:case 10:case 14:case 107:return ce(e);default:return!1}}function ce(e){var t=e.parent;switch(t.kind){case 249:case 160:case 163:case 162:case 291:case 288:case 198:return t.initializer===e;case 233:case 234:case 235:case 236:case 242:case 243:case 244:case 284:case 246:return t.expression===e;case 237:var r=t;return r.initializer===e&&250!==r.initializer.kind||r.condition===e||r.incrementor===e;case 238:case 239:var n=t;return n.initializer===e&&250!==n.initializer.kind||n.expression===e;case 206:case 224:case 228:case 158:return e===t.expression;case 161:case 283:case 282:case 290:return!0;case 223:return t.expression===e&&Nr(t);case 289:return t.objectAssignmentInitializer===e;default:return se(t)}}function ue(e){for(;157===e.kind||78===e.kind;)e=e.parent;return 176===e.kind}function le(e){return 260===e.kind&&272===e.moduleReference.kind}function _e(e){return de(e)}function de(e){return!!e&&!!(131072&e.flags)}function pe(t,r){if(203!==t.kind)return!1;var n=t,i=n.expression,a=n.arguments;if(78!==i.kind||"require"!==i.escapedText)return!1;if(1!==a.length)return!1;var o=a[0];return!r||e.isStringLiteralLike(o)}function fe(t,r){return 198===t.kind&&(t=t.parent.parent),e.isVariableDeclaration(t)&&!!t.initializer&&pe(Hr(t.initializer),r)}function ge(t){return e.isBinaryExpression(t)||Wr(t)||e.isIdentifier(t)||e.isCallExpression(t)}function me(t){return de(t)&&t.initializer&&e.isBinaryExpression(t.initializer)&&(56===t.initializer.operatorToken.kind||60===t.initializer.operatorToken.kind)&&t.name&&Ar(t.name)&&ve(t.name,t.initializer.left)?t.initializer.right:t.initializer}function ye(t,r){if(e.isCallExpression(t)){var n=Ye(t.expression);return 208===n.kind||209===n.kind?t:void 0}return 208===t.kind||221===t.kind||209===t.kind||e.isObjectLiteralExpression(t)&&(0===t.properties.length||r)?t:void 0}function ve(t,r){if(gt(t)&>(r))return mt(t)===mt(r);if(e.isIdentifier(t)&&Ce(r)&&(107===r.expression.kind||e.isIdentifier(r.expression)&&("window"===r.expression.escapedText||"self"===r.expression.escapedText||"global"===r.expression.escapedText))){var n=Fe(r);return e.isPrivateIdentifier(n)&&e.Debug.fail("Unexpected PrivateIdentifier in name expression with literal-like access."),ve(t,n)}return!(!Ce(t)||!Ce(r))&&(we(t)===we(r)&&ve(t.expression,r.expression))}function he(e){for(;kr(e,!0);)e=e.right;return e}function be(t){return e.isIdentifier(t)&&"exports"===t.escapedText}function xe(t){return e.isIdentifier(t)&&"module"===t.escapedText}function De(t){return(e.isPropertyAccessExpression(t)||Ee(t))&&xe(t.expression)&&"exports"===we(t)}function Se(t){var r=function(t){if(e.isCallExpression(t)){if(!Te(t))return 0;var r=t.arguments[0];return be(r)||De(r)?8:ke(r)&&"prototype"===we(r)?9:7}if(62!==t.operatorToken.kind||!Wr(t.left)||(n=he(t),e.isVoidExpression(n)&&e.isNumericLiteral(n.expression)&&"0"===n.expression.text))return 0;var n;if(Ae(t.left.expression,!0)&&"prototype"===we(t.left)&&e.isObjectLiteralExpression(Oe(t)))return 6;return Ie(t.left)}(t);return 5===r||de(t)?r:0}function Te(t){return 3===e.length(t.arguments)&&e.isPropertyAccessExpression(t.expression)&&e.isIdentifier(t.expression.expression)&&"Object"===e.idText(t.expression.expression)&&"defineProperty"===e.idText(t.expression.name)&&ut(t.arguments[1])&&Ae(t.arguments[0],!0)}function Ce(t){return e.isPropertyAccessExpression(t)||Ee(t)}function Ee(t){return e.isElementAccessExpression(t)&&(ut(t.argumentExpression)||pt(t.argumentExpression))}function ke(t,r){return e.isPropertyAccessExpression(t)&&(!r&&107===t.expression.kind||e.isIdentifier(t.name)&&Ae(t.expression,!0))||Ne(t,r)}function Ne(e,t){return Ee(e)&&(!t&&107===e.expression.kind||Ar(e.expression)||ke(e.expression,!0))}function Ae(e,t){return Ar(e)||ke(e,t)}function Fe(t){return e.isPropertyAccessExpression(t)?t.name:t.argumentExpression}function Pe(t){if(e.isPropertyAccessExpression(t))return t.name;var r=Ye(t.argumentExpression);return e.isNumericLiteral(r)||e.isStringLiteralLike(r)?r:t}function we(t){var r=Pe(t);if(r){if(e.isIdentifier(r))return r.escapedText;if(e.isStringLiteralLike(r)||e.isNumericLiteral(r))return e.escapeLeadingUnderscores(r.text)}if(e.isElementAccessExpression(t)&&pt(t.argumentExpression))return yt(e.idText(t.argumentExpression.name))}function Ie(t){if(107===t.expression.kind)return 4;if(De(t))return 2;if(Ae(t.expression,!0)){if(Pr(t.expression))return 3;for(var r=t;!e.isIdentifier(r.expression);)r=r.expression;var n=r.expression;if(("exports"===n.escapedText||"module"===n.escapedText&&"exports"===we(r))&&ke(t))return 1;if(Ae(t,!0)||e.isElementAccessExpression(t)&&dt(t))return 5}return 0}function Oe(t){for(;e.isBinaryExpression(t.right);)t=t.right;return t.right}function Me(t){switch(t.parent.kind){case 261:case 267:return t.parent;case 272:return t.parent.parent;case 203:return z(t.parent)||pe(t.parent,!1)?t.parent:void 0;case 191:return e.Debug.assert(e.isStringLiteral(t)),e.tryCast(t.parent.parent,e.isImportTypeNode);default:return}}function Le(t){switch(t.kind){case 261:case 267:return t.moduleSpecifier;case 260:return 272===t.moduleReference.kind?t.moduleReference.expression:void 0;case 195:return U(t)?t.argument.literal:void 0;case 203:return t.arguments[0];case 256:return 10===t.name.kind?t.name:void 0;default:return e.Debug.assertNever(t)}}function Re(e){return 331===e.kind||324===e.kind||325===e.kind}function Be(t){return e.isExpressionStatement(t)&&e.isBinaryExpression(t.expression)&&0!==Se(t.expression)&&e.isBinaryExpression(t.expression.right)&&(56===t.expression.right.operatorToken.kind||60===t.expression.right.operatorToken.kind)?t.expression.right.right:void 0}function je(e){switch(e.kind){case 232:var t=Je(e);return t&&t.initializer;case 163:case 288:return e.initializer}}function Je(t){return e.isVariableStatement(t)?e.firstOrUndefined(t.declarationList.declarations):void 0}function ze(t){return e.isModuleDeclaration(t)&&t.body&&256===t.body.kind?t.body:void 0}function Ue(t){var r=t.parent;return 288===r.kind||266===r.kind||163===r.kind||233===r.kind&&201===t.kind||ze(r)||e.isBinaryExpression(t)&&62===t.operatorToken.kind?r:r.parent&&(Je(r.parent)===t||e.isBinaryExpression(r)&&62===r.operatorToken.kind)?r.parent:r.parent&&r.parent.parent&&(Je(r.parent.parent)||je(r.parent.parent)===t||Be(r.parent.parent))?r.parent.parent:void 0}function Ve(t){var r=Ke(t);return r&&e.isFunctionLike(r)?r:void 0}function Ke(t){var r=qe(t);if(r)return Be(r)||function(t){return e.isExpressionStatement(t)&&e.isBinaryExpression(t.expression)&&62===t.expression.operatorToken.kind?he(t.expression):void 0}(r)||je(r)||Je(r)||ze(r)||r}function qe(t){var r=We(t);if(r){var n=r.parent;return n&&n.jsDoc&&r===e.lastOrUndefined(n.jsDoc)?n:void 0}}function We(t){return e.findAncestor(t.parent,e.isJSDoc)}function He(t){var r=e.isJSDocParameterTag(t)?t.typeExpression&&t.typeExpression.type:t.type;return void 0!==t.dotDotDotToken||!!r&&309===r.kind}function Ge(e){for(var t=e.parent;;){switch(t.kind){case 216:var r=t.operatorToken.kind;return Tr(r)&&t.left===e?62===r||Sr(r)?1:2:0;case 214:case 215:var n=t.operator;return 45===n||46===n?2:0;case 238:case 239:return t.initializer===e?1:0;case 207:case 199:case 220:case 225:e=t;break;case 289:if(t.name!==e)return 0;e=t.parent;break;case 288:if(t.name===e)return 0;e=t.parent;break;default:return 0}t=e.parent}}function Xe(e,t){for(;e&&e.kind===t;)e=e.parent;return e}function Qe(e){return Xe(e,207)}function Ye(t){return e.skipOuterExpressions(t,1)}function Ze(t){return Ar(t)||e.isClassExpression(t)}function $e(e){return Ze(et(e))}function et(t){return e.isExportAssignment(t)?t.expression:t.right}function tt(t){var r=rt(t);if(r&&de(t)){var n=e.getJSDocAugmentsTag(t);if(n)return n.class}return r}function rt(e){var t=at(e.heritageClauses,93);return t&&t.types.length>0?t.types[0]:void 0}function nt(t){if(de(t))return e.getJSDocImplementsTags(t).map((function(e){return e.class}));var r=at(t.heritageClauses,116);return null==r?void 0:r.types}function it(e){var t=at(e.heritageClauses,93);return t?t.types:void 0}function at(e,t){if(e)for(var r=0,n=e;r0&&e.every(t.declarationList.declarations,(function(e){return fe(e,r)}))},e.isSingleOrDoubleQuote=function(e){return 39===e||34===e},e.isStringDoubleQuoted=function(e,t){return 34===m(t,e).charCodeAt(0)},e.isAssignmentDeclaration=ge,e.getEffectiveInitializer=me,e.getDeclaredExpandoInitializer=function(e){var t=me(e);return t&&ye(t,Pr(e.name))},e.getAssignedExpandoInitializer=function(t){if(t&&t.parent&&e.isBinaryExpression(t.parent)&&62===t.parent.operatorToken.kind){var r=Pr(t.parent.left);return ye(t.parent.right,r)||function(t,r,n){var i=e.isBinaryExpression(r)&&(56===r.operatorToken.kind||60===r.operatorToken.kind)&&ye(r.right,n);if(i&&ve(t,r.left))return i}(t.parent.left,t.parent.right,r)}if(t&&e.isCallExpression(t)&&Te(t)){var n=function(t,r){return e.forEach(t.properties,(function(t){return e.isPropertyAssignment(t)&&e.isIdentifier(t.name)&&"value"===t.name.escapedText&&t.initializer&&ye(t.initializer,r)}))}(t.arguments[2],"prototype"===t.arguments[1].text);if(n)return n}},e.getExpandoInitializer=ye,e.isDefaultedExpandoInitializer=function(t){var r=e.isVariableDeclaration(t.parent)?t.parent.name:e.isBinaryExpression(t.parent)&&62===t.parent.operatorToken.kind?t.parent.left:void 0;return r&&ye(t.right,Pr(r))&&Ar(r)&&ve(r,t.left)},e.getNameOfExpando=function(t){if(e.isBinaryExpression(t.parent)){var r=56!==t.parent.operatorToken.kind&&60!==t.parent.operatorToken.kind||!e.isBinaryExpression(t.parent.parent)?t.parent:t.parent.parent;if(62===r.operatorToken.kind&&e.isIdentifier(r.left))return r.left}else if(e.isVariableDeclaration(t.parent))return t.parent.name},e.isSameEntityName=ve,e.getRightMostAssignedExpression=he,e.isExportsIdentifier=be,e.isModuleIdentifier=xe,e.isModuleExportsAccessExpression=De,e.getAssignmentDeclarationKind=Se,e.isBindableObjectDefinePropertyCall=Te,e.isLiteralLikeAccess=Ce,e.isLiteralLikeElementAccess=Ee,e.isBindableStaticAccessExpression=ke,e.isBindableStaticElementAccessExpression=Ne,e.isBindableStaticNameExpression=Ae,e.getNameOrArgument=Fe,e.getElementOrPropertyAccessArgumentExpressionOrName=Pe,e.getElementOrPropertyAccessName=we,e.getAssignmentDeclarationPropertyAccessKind=Ie,e.getInitializerOfBinaryExpression=Oe,e.isPrototypePropertyAssignment=function(t){return e.isBinaryExpression(t)&&3===Se(t)},e.isSpecialPropertyDeclaration=function(t){return de(t)&&t.parent&&233===t.parent.kind&&(!e.isElementAccessExpression(t)||Ee(t))&&!!e.getJSDocTypeTag(t.parent)},e.setValueDeclaration=function(e,t){var r=e.valueDeclaration;(!r||(!(8388608&t.flags)||8388608&r.flags)&&ge(r)&&!ge(t)||r.kind!==t.kind&&S(r))&&(e.valueDeclaration=t)},e.isFunctionSymbol=function(t){if(!t||!t.valueDeclaration)return!1;var r=t.valueDeclaration;return 251===r.kind||e.isVariableDeclaration(r)&&r.initializer&&e.isFunctionLike(r.initializer)},e.importFromModuleSpecifier=function(t){return Me(t)||e.Debug.failBadSyntaxKind(t.parent)},e.tryGetImportFromModuleSpecifier=Me,e.getExternalModuleName=Le,e.getNamespaceDeclarationNode=function(t){switch(t.kind){case 261:return t.importClause&&e.tryCast(t.importClause.namedBindings,e.isNamespaceImport);case 260:return t;case 267:return t.exportClause&&e.tryCast(t.exportClause,e.isNamespaceExport);default:return e.Debug.assertNever(t)}},e.isDefaultImport=function(e){return 261===e.kind&&!!e.importClause&&!!e.importClause.name},e.forEachImportClauseDeclaration=function(t,r){var n;if(t.name&&(n=r(t)))return n;if(t.namedBindings&&(n=e.isNamespaceImport(t.namedBindings)?r(t.namedBindings):e.forEach(t.namedBindings.elements,r)))return n},e.hasQuestionToken=function(e){if(e)switch(e.kind){case 160:case 165:case 164:case 289:case 288:case 163:case 162:return void 0!==e.questionToken}return!1},e.isJSDocConstructSignature=function(t){var r=e.isJSDocFunctionType(t)?e.firstOrUndefined(t.parameters):void 0,n=e.tryCast(r&&r.name,e.isIdentifier);return!!n&&"new"===n.escapedText},e.isJSDocTypeAlias=Re,e.isTypeAlias=function(t){return Re(t)||e.isTypeAliasDeclaration(t)},e.getSingleInitializerOfVariableStatementOrPropertyDeclaration=je,e.getSingleVariableOfVariableStatement=Je,e.getJSDocCommentsAndTags=function(t,r){var n;X(t)&&e.hasInitializer(t)&&e.hasJSDocNodes(t.initializer)&&(n=e.append(n,e.last(t.initializer.jsDoc)));for(var i=t;i&&i.parent;){if(e.hasJSDocNodes(i)&&(n=e.append(n,e.last(i.jsDoc))),160===i.kind){n=e.addRange(n,(r?e.getJSDocParameterTagsNoCache:e.getJSDocParameterTags)(i));break}if(159===i.kind){n=e.addRange(n,(r?e.getJSDocTypeParameterTagsNoCache:e.getJSDocTypeParameterTags)(i));break}i=Ue(i)}return n||e.emptyArray},e.getNextJSDocCommentLocation=Ue,e.getParameterSymbolFromJSDoc=function(t){if(t.symbol)return t.symbol;if(e.isIdentifier(t.name)){var r=t.name.escapedText,n=Ve(t);if(n){var i=e.find(n.parameters,(function(e){return 78===e.name.kind&&e.name.escapedText===r}));return i&&i.symbol}}},e.getHostSignatureFromJSDoc=Ve,e.getEffectiveJSDocHost=Ke,e.getJSDocHost=qe,e.getJSDocRoot=We,e.getTypeParameterFromJsDoc=function(t){var r=t.name.escapedText,n=t.parent.parent.parent.typeParameters;return n&&e.find(n,(function(e){return e.name.escapedText===r}))},e.hasRestParameter=function(t){var r=e.lastOrUndefined(t.parameters);return!!r&&He(r)},e.isRestParameter=He,e.hasTypeArguments=function(e){return!!e.typeArguments},function(e){e[e.None=0]="None",e[e.Definite=1]="Definite",e[e.Compound=2]="Compound"}(e.AssignmentKind||(e.AssignmentKind={})),e.getAssignmentTargetKind=Ge,e.isAssignmentTarget=function(e){return 0!==Ge(e)},e.isNodeWithPossibleHoistedDeclaration=function(e){switch(e.kind){case 230:case 232:case 243:case 234:case 244:case 258:case 284:case 285:case 245:case 237:case 238:case 239:case 235:case 236:case 247:case 287:return!0}return!1},e.isValueSignatureDeclaration=function(t){return e.isFunctionExpression(t)||e.isArrowFunction(t)||e.isMethodOrAccessor(t)||e.isFunctionDeclaration(t)||e.isConstructorDeclaration(t)},e.walkUpParenthesizedTypes=function(e){return Xe(e,186)},e.walkUpParenthesizedExpressions=Qe,e.walkUpParenthesizedTypesAndGetParentAndChild=function(e){for(var t;e&&186===e.kind;)t=e,e=e.parent;return[t,e]},e.skipParentheses=Ye,e.isDeleteTarget=function(e){return(201===e.kind||202===e.kind)&&((e=Qe(e.parent))&&210===e.kind)},e.isNodeDescendantOf=function(e,t){for(;e;){if(e===t)return!0;e=e.parent}return!1},e.isDeclarationName=function(t){return!e.isSourceFile(t)&&!e.isBindingPattern(t)&&e.isDeclaration(t.parent)&&t.parent.name===t},e.getDeclarationFromName=function(t){var r=t.parent;switch(t.kind){case 10:case 14:case 8:if(e.isComputedPropertyName(r))return r.parent;case 78:if(e.isDeclaration(r))return r.name===t?r:void 0;if(e.isQualifiedName(r)){var n=r.parent;return e.isJSDocParameterTag(n)&&n.name===r?n:void 0}var i=r.parent;return e.isBinaryExpression(i)&&0!==Se(i)&&(i.left.symbol||i.symbol)&&e.getNameOfDeclaration(i)===t?i:void 0;case 79:return e.isDeclaration(r)&&r.name===t?r:void 0;default:return}},e.isLiteralComputedPropertyDeclarationName=function(t){return ut(t)&&158===t.parent.kind&&e.isDeclaration(t.parent.parent)},e.isIdentifierName=function(e){var t=e.parent;switch(t.kind){case 163:case 162:case 165:case 164:case 167:case 168:case 291:case 288:case 201:return t.name===e;case 157:return t.right===e;case 198:case 265:return t.propertyName===e;case 270:case 280:return!0}return!1},e.isAliasSymbolDeclaration=function(t){return 260===t.kind||259===t.kind||262===t.kind&&!!t.name||263===t.kind||269===t.kind||265===t.kind||270===t.kind||266===t.kind&&$e(t)||e.isBinaryExpression(t)&&2===Se(t)&&$e(t)||e.isPropertyAccessExpression(t)&&e.isBinaryExpression(t.parent)&&t.parent.left===t&&62===t.parent.operatorToken.kind&&Ze(t.parent.right)||289===t.kind||288===t.kind&&Ze(t.initializer)},e.getAliasDeclarationFromName=function e(t){switch(t.parent.kind){case 262:case 265:case 263:case 270:case 266:case 260:return t.parent;case 157:do{t=t.parent}while(157===t.parent.kind);return e(t)}},e.isAliasableExpression=Ze,e.exportAssignmentIsAlias=$e,e.getExportAssignmentExpression=et,e.getPropertyAssignmentAliasLikeExpression=function(e){return 289===e.kind?e.name:288===e.kind?e.initializer:e.parent.right},e.getEffectiveBaseTypeNode=tt,e.getClassExtendsHeritageElement=rt,e.getEffectiveImplementsTypeNodes=nt,e.getAllSuperTypeNodes=function(t){return e.isInterfaceDeclaration(t)?it(t)||e.emptyArray:e.isClassLike(t)&&e.concatenate(e.singleElementArray(tt(t)),nt(t))||e.emptyArray},e.getInterfaceBaseTypeNodes=it,e.getHeritageClause=at,e.getAncestor=function(e,t){for(;e;){if(e.kind===t)return e;e=e.parent}},e.isKeyword=ot,e.isContextualKeyword=st,e.isNonContextualKeyword=ct,e.isFutureReservedKeyword=function(e){return 116<=e&&e<=124},e.isStringANonContextualKeyword=function(t){var r=e.stringToToken(t);return void 0!==r&&ct(r)},e.isStringAKeyword=function(t){var r=e.stringToToken(t);return void 0!==r&&ot(r)},e.isIdentifierANonContextualKeyword=function(e){var t=e.originalKeywordKind;return!!t&&!st(t)},e.isTrivia=function(e){return 2<=e&&e<=7},function(e){e[e.Normal=0]="Normal",e[e.Generator=1]="Generator",e[e.Async=2]="Async",e[e.Invalid=4]="Invalid",e[e.AsyncGenerator=3]="AsyncGenerator"}(e.FunctionFlags||(e.FunctionFlags={})),e.getFunctionFlags=function(e){if(!e)return 4;var t=0;switch(e.kind){case 251:case 208:case 165:e.asteriskToken&&(t|=1);case 209:_r(e,256)&&(t|=2)}return e.body||(t|=4),t},e.isAsyncFunction=function(e){switch(e.kind){case 251:case 208:case 209:case 165:return void 0!==e.body&&void 0===e.asteriskToken&&_r(e,256)}return!1},e.isStringOrNumericLiteralLike=ut,e.isSignedNumericLiteral=lt,e.hasDynamicName=_t,e.isDynamicName=dt,e.isWellKnownSymbolSyntactically=pt,e.getPropertyNameForPropertyNameNode=ft,e.isPropertyNameLiteral=gt,e.getTextOfIdentifierOrLiteral=mt,e.getEscapedTextOfIdentifierOrLiteral=function(t){return e.isIdentifierOrPrivateIdentifier(t)?t.escapedText:e.escapeLeadingUnderscores(t.text)},e.getPropertyNameForUniqueESSymbol=function(t){return"__@"+e.getSymbolId(t)+"@"+t.escapedName},e.getPropertyNameForKnownSymbolName=yt,e.getSymbolNameForPrivateIdentifier=function(t,r){return"__#"+e.getSymbolId(t)+"@"+r},e.isKnownSymbol=function(t){return e.startsWith(t.escapedName,"__@")},e.isESSymbolIdentifier=vt,e.isPushOrUnshiftIdentifier=function(e){return"push"===e.escapedText||"unshift"===e.escapedText},e.isParameterDeclaration=function(e){return 160===ht(e).kind},e.getRootDeclaration=ht,e.nodeStartsNewLexicalEnvironment=function(e){var t=e.kind;return 166===t||208===t||251===t||209===t||165===t||167===t||168===t||256===t||297===t},e.nodeIsSynthesized=bt,e.getOriginalSourceFile=function(t){return e.getParseTreeNode(t,e.isSourceFile)||t},function(e){e[e.Left=0]="Left",e[e.Right=1]="Right"}(e.Associativity||(e.Associativity={})),e.getExpressionAssociativity=function(e){var t=Dt(e),r=204===e.kind&&void 0!==e.arguments;return xt(e.kind,t,r)},e.getOperatorAssociativity=xt,e.getExpressionPrecedence=function(e){var t=Dt(e),r=204===e.kind&&void 0!==e.arguments;return St(e.kind,t,r)},e.getOperator=Dt,function(e){e[e.Comma=0]="Comma",e[e.Spread=1]="Spread",e[e.Yield=2]="Yield",e[e.Assignment=3]="Assignment",e[e.Conditional=4]="Conditional",e[e.Coalesce=4]="Coalesce",e[e.LogicalOR=5]="LogicalOR",e[e.LogicalAND=6]="LogicalAND",e[e.BitwiseOR=7]="BitwiseOR",e[e.BitwiseXOR=8]="BitwiseXOR",e[e.BitwiseAND=9]="BitwiseAND",e[e.Equality=10]="Equality",e[e.Relational=11]="Relational",e[e.Shift=12]="Shift",e[e.Additive=13]="Additive",e[e.Multiplicative=14]="Multiplicative",e[e.Exponentiation=15]="Exponentiation",e[e.Unary=16]="Unary",e[e.Update=17]="Update",e[e.LeftHandSide=18]="LeftHandSide",e[e.Member=19]="Member",e[e.Primary=20]="Primary",e[e.Highest=20]="Highest",e[e.Lowest=0]="Lowest",e[e.Invalid=-1]="Invalid"}(e.OperatorPrecedence||(e.OperatorPrecedence={})),e.getOperatorPrecedence=St,e.getBinaryOperatorPrecedence=Tt,e.getSemanticJsxChildren=function(t){return e.filter(t,(function(e){switch(e.kind){case 283:return!!e.expression;case 11:return!e.containsOnlyTriviaWhiteSpaces;default:return!0}}))},e.createDiagnosticCollection=function(){var t=[],r=[],n=new e.Map,i=!1;return{add:function(a){var o;a.file?(o=n.get(a.file.fileName))||(o=[],n.set(a.file.fileName,o),e.insertSorted(r,a.file.fileName,e.compareStringsCaseSensitive)):(i&&(i=!1,t=t.slice()),o=t);e.insertSorted(o,a,un)},lookup:function(r){var i;i=r.file?n.get(r.file.fileName):t;if(!i)return;var a=e.binarySearch(i,r,e.identity,ln);if(a>=0)return i[a];return},getGlobalDiagnostics:function(){return i=!0,t},getDiagnostics:function(i){if(i)return n.get(i)||[];var a=e.flatMapToMutable(r,(function(e){return n.get(e)}));if(!t.length)return a;return a.unshift.apply(a,t),a}}};var Ct=/\$\{/g;e.hasInvalidEscape=function(t){return t&&!!(e.isNoSubstitutionTemplateLiteral(t)?t.templateFlags:t.head.templateFlags||e.some(t.templateSpans,(function(e){return!!e.literal.templateFlags})))};var Et=/[\\\"\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g,kt=/[\\\'\u0000-\u001f\t\v\f\b\r\n\u2028\u2029\u0085]/g,Nt=/[\\`]/g,At=new e.Map(e.getEntries({"\t":"\\t","\v":"\\v","\f":"\\f","\b":"\\b","\r":"\\r","\n":"\\n","\\":"\\\\",'"':'\\"',"'":"\\'","`":"\\`","\u2028":"\\u2028","\u2029":"\\u2029","…":"\\u0085"}));function Ft(e){return"\\u"+("0000"+e.toString(16).toUpperCase()).slice(-4)}function Pt(e,t,r){if(0===e.charCodeAt(0)){var n=r.charCodeAt(t+e.length);return n>=48&&n<=57?"\\x00":"\\0"}return At.get(e)||Ft(e.charCodeAt(0))}function wt(e,t){var r=96===t?Nt:39===t?kt:Et;return e.replace(r,Pt)}e.escapeString=wt;var It=/[^\u0000-\u007F]/g;function Ot(e,t){return e=wt(e,t),It.test(e)?e.replace(It,(function(e){return Ft(e.charCodeAt(0))})):e}e.escapeNonAsciiString=Ot;var Mt=/[\"\u0000-\u001f\u2028\u2029\u0085]/g,Lt=/[\'\u0000-\u001f\u2028\u2029\u0085]/g,Rt=new e.Map(e.getEntries({'"':""","'":"'"}));function Bt(e){return 0===e.charCodeAt(0)?"�":Rt.get(e)||"&#x"+e.charCodeAt(0).toString(16).toUpperCase()+";"}function jt(e,t){var r=39===t?Lt:Mt;return e.replace(r,Bt)}e.escapeJsxAttributeString=jt,e.stripQuotes=function(e){var t,r=e.length;return r>=2&&e.charCodeAt(0)===e.charCodeAt(r-1)&&(39===(t=e.charCodeAt(0))||34===t||96===t)?e.substring(1,r-1):e},e.isIntrinsicJsxName=function(t){var r=t.charCodeAt(0);return r>=97&&r<=122||e.stringContains(t,"-")||e.stringContains(t,":")};var Jt=[""," "];function zt(e){for(var t=Jt[1],r=Jt.length;r<=e;r++)Jt.push(Jt[r-1]+t);return Jt[e]}function Ut(){return Jt[1].length}function Vt(e){return!!e.useCaseSensitiveFileNames&&e.useCaseSensitiveFileNames()}function Kt(e,t,r){return t.moduleName||Wt(e,t.fileName,r&&r.fileName)}function qt(t,r){return t.getCanonicalFileName(e.getNormalizedAbsolutePath(r,t.getCurrentDirectory()))}function Wt(t,r,n){var i=function(e){return t.getCanonicalFileName(e)},a=e.toPath(n?e.getDirectoryPath(n):t.getCommonSourceDirectory(),t.getCurrentDirectory(),i),o=e.getNormalizedAbsolutePath(r,t.getCurrentDirectory()),s=Hn(e.getRelativePathToDirectoryOrUrl(a,o,a,i,!1));return n?e.ensurePathIsNonModuleName(s):s}function Ht(e,t,r,n,i){var a=t.declarationDir||t.outDir;return Hn(a?Yt(e,a,r,n,i):e)+".d.ts"}function Gt(e){return e.outFile||e.out}function Xt(e,t,r){return!(t.getCompilerOptions().noEmitForJsFiles&&_e(e))&&!e.isDeclarationFile&&!t.isSourceFileFromExternalLibrary(e)&&!(j(e)&&t.getResolvedProjectReferenceToRedirect(e.fileName))&&(r||!t.isSourceOfProjectReferenceRedirect(e.fileName))}function Qt(e,t,r){return Yt(e,r,t.getCurrentDirectory(),t.getCommonSourceDirectory(),(function(e){return t.getCanonicalFileName(e)}))}function Yt(t,r,n,i,a){var o=e.getNormalizedAbsolutePath(t,n);return o=0===a(o).indexOf(a(i))?o.substring(i.length):o,e.combinePaths(r,o)}function Zt(t,r,n){t.length>e.getRootLength(t)&&!n(t)&&(Zt(e.getDirectoryPath(t),r,n),r(t))}function $t(t,r){return e.computeLineOfPosition(t,r)}function er(e){if(e&&e.parameters.length>0){var t=2===e.parameters.length&&tr(e.parameters[0]);return e.parameters[t?1:0]}}function tr(e){return rr(e.name)}function rr(e){return!!e&&78===e.kind&&nr(e)}function nr(e){return 107===e.originalKeywordKind}function ir(t){if(de(t)||!e.isFunctionDeclaration(t)){var r=t.type;return r||!de(t)?r:e.isJSDocPropertyLikeTag(t)?t.typeExpression&&t.typeExpression.type:e.getJSDocType(t)}}function ar(e,t,r,n){or(e,t,r.pos,n)}function or(e,t,r,n){n&&n.length&&r!==n[0].pos&&$t(e,r)!==$t(e,n[0].pos)&&t.writeLine()}function sr(e,t,r,n,i,a,o,s){if(n&&n.length>0){i&&r.writeSpace(" ");for(var c=!1,u=0,l=n;u=0&&e.kind<=156?0:(536870912&e.modifierFlagsCache||(e.modifierFlagsCache=536870912|br(e)),!t||4096&e.modifierFlagsCache||!r&&!de(e)||!e.parent||(e.modifierFlagsCache|=4096|hr(e)),-536875009&e.modifierFlagsCache)}function yr(e){return mr(e,!0)}function vr(e){return mr(e,!1)}function hr(t){var r=0;return t.parent&&!e.isParameter(t)&&(de(t)&&(e.getJSDocPublicTagNoCache(t)&&(r|=4),e.getJSDocPrivateTagNoCache(t)&&(r|=8),e.getJSDocProtectedTagNoCache(t)&&(r|=16),e.getJSDocReadonlyTagNoCache(t)&&(r|=64)),e.getJSDocDeprecatedTagNoCache(t)&&(r|=8192)),r}function br(e){var t=xr(e.modifiers);return(4&e.flags||78===e.kind&&e.isInJSDocNamespace)&&(t|=1),t}function xr(e){var t=0;if(e)for(var r=0,n=e;r=62&&e<=77}function Cr(e){var t=Er(e);return t&&!t.isImplements?t.class:void 0}function Er(t){return e.isExpressionWithTypeArguments(t)&&e.isHeritageClause(t.parent)&&e.isClassLike(t.parent.parent)?{class:t.parent.parent,isImplements:116===t.parent.token}:void 0}function kr(t,r){return e.isBinaryExpression(t)&&(r?62===t.operatorToken.kind:Tr(t.operatorToken.kind))&&e.isLeftHandSideExpression(t.left)}function Nr(e){return void 0!==Cr(e)}function Ar(e){return 78===e.kind||Fr(e)}function Fr(t){return e.isPropertyAccessExpression(t)&&e.isIdentifier(t.name)&&Ar(t.expression)}function Pr(e){return ke(e)&&"prototype"===we(e)}e.getIndentString=zt,e.getIndentSize=Ut,e.createTextWriter=function(t){var r,n,i,a,o,s=!1;function c(t){var n=e.computeLineStarts(t);n.length>1?(a=a+n.length-1,o=r.length-t.length+e.last(n),i=o-r.length==0):i=!1}function u(e){e&&e.length&&(i&&(e=zt(n)+e,i=!1),r+=e,c(e))}function l(e){e&&(s=!1),u(e)}function _(){r="",n=0,i=!0,a=0,o=0,s=!1}return _(),{write:l,rawWrite:function(e){void 0!==e&&(r+=e,c(e),s=!1)},writeLiteral:function(e){e&&e.length&&l(e)},writeLine:function(e){i&&!e||(a++,o=(r+=t).length,i=!0,s=!1)},increaseIndent:function(){n++},decreaseIndent:function(){n--},getIndent:function(){return n},getTextPos:function(){return r.length},getLine:function(){return a},getColumn:function(){return i?n*Ut():r.length-o},getText:function(){return r},isAtStartOfLine:function(){return i},hasTrailingComment:function(){return s},hasTrailingWhitespace:function(){return!!r.length&&e.isWhiteSpaceLike(r.charCodeAt(r.length-1))},clear:_,reportInaccessibleThisError:e.noop,reportPrivateInBaseOfClassExpression:e.noop,reportInaccessibleUniqueSymbolError:e.noop,trackSymbol:e.noop,writeKeyword:l,writeOperator:l,writeParameter:l,writeProperty:l,writePunctuation:l,writeSpace:l,writeStringLiteral:l,writeSymbol:function(e,t){return l(e)},writeTrailingSemicolon:l,writeComment:function(e){e&&(s=!0),u(e)},getTextPosWithWriteLine:function(){return i?r.length:r.length+t.length}}},e.getTrailingSemicolonDeferringWriter=function(e){var t=!1;function r(){t&&(e.writeTrailingSemicolon(";"),t=!1)}return __assign(__assign({},e),{writeTrailingSemicolon:function(){t=!0},writeLiteral:function(t){r(),e.writeLiteral(t)},writeStringLiteral:function(t){r(),e.writeStringLiteral(t)},writeSymbol:function(t,n){r(),e.writeSymbol(t,n)},writePunctuation:function(t){r(),e.writePunctuation(t)},writeKeyword:function(t){r(),e.writeKeyword(t)},writeOperator:function(t){r(),e.writeOperator(t)},writeParameter:function(t){r(),e.writeParameter(t)},writeSpace:function(t){r(),e.writeSpace(t)},writeProperty:function(t){r(),e.writeProperty(t)},writeComment:function(t){r(),e.writeComment(t)},writeLine:function(){r(),e.writeLine()},increaseIndent:function(){r(),e.increaseIndent()},decreaseIndent:function(){r(),e.decreaseIndent()}})},e.hostUsesCaseSensitiveFileNames=Vt,e.hostGetCanonicalFileName=function(t){return e.createGetCanonicalFileName(Vt(t))},e.getResolvedExternalModuleName=Kt,e.getExternalModuleNameFromDeclaration=function(t,r,n){var i=r.getExternalModuleFileFromDeclaration(n);if(i&&!i.isDeclarationFile){var a=Le(n);if(!a||!e.isStringLiteralLike(a)||e.pathIsRelative(a.text)||-1!==qt(t,i.path).indexOf(qt(t,e.ensureTrailingDirectorySeparator(t.getCommonSourceDirectory()))))return Kt(t,i)}},e.getExternalModuleNameFromPath=Wt,e.getOwnEmitOutputFilePath=function(e,t,r){var n=t.getCompilerOptions();return(n.outDir?Hn(Qt(e,t,n.outDir)):Hn(e))+r},e.getDeclarationEmitOutputFilePath=function(e,t){return Ht(e,t.getCompilerOptions(),t.getCurrentDirectory(),t.getCommonSourceDirectory(),(function(e){return t.getCanonicalFileName(e)}))},e.getDeclarationEmitOutputFilePathWorker=Ht,e.outFile=Gt,e.getPathsBasePath=function(t,r){var n,i;if(t.paths)return null!==(n=t.baseUrl)&&void 0!==n?n:e.Debug.checkDefined(t.pathsBasePath||(null===(i=r.getCurrentDirectory)||void 0===i?void 0:i.call(r)),"Encountered 'paths' without a 'baseUrl', config file, or host 'getCurrentDirectory'.")},e.getSourceFilesToEmit=function(t,r,n){var i=t.getCompilerOptions();if(Gt(i)){var a=pn(i),o=i.emitDeclarationOnly||a===e.ModuleKind.AMD||a===e.ModuleKind.System;return e.filter(t.getSourceFiles(),(function(r){return(o||!e.isExternalModule(r))&&Xt(r,t,n)}))}var s=void 0===r?t.getSourceFiles():[r];return e.filter(s,(function(e){return Xt(e,t,n)}))},e.sourceFileMayBeEmitted=Xt,e.getSourceFilePathInNewDir=Qt,e.getSourceFilePathInNewDirWorker=Yt,e.writeFile=function(t,r,n,i,a,o){t.writeFile(n,i,a,(function(t){r.add(sn(e.Diagnostics.Could_not_write_file_0_Colon_1,n,t))}),o)},e.writeFileEnsuringDirectories=function(t,r,n,i,a,o){try{i(t,r,n)}catch(s){Zt(e.getDirectoryPath(e.normalizePath(t)),a,o),i(t,r,n)}},e.getLineOfLocalPosition=function(t,r){var n=e.getLineStarts(t);return e.computeLineOfPosition(n,r)},e.getLineOfLocalPositionFromLineMap=$t,e.getFirstConstructorWithBody=function(t){return e.find(t.members,(function(t){return e.isConstructorDeclaration(t)&&l(t.body)}))},e.getSetAccessorValueParameter=er,e.getSetAccessorTypeAnnotationNode=function(e){var t=er(e);return t&&t.type},e.getThisParameter=function(t){if(t.parameters.length&&!e.isJSDocSignature(t)){var r=t.parameters[0];if(tr(r))return r}},e.parameterIsThisKeyword=tr,e.isThisIdentifier=rr,e.identifierIsThisKeyword=nr,e.getAllAccessorDeclarations=function(t,r){var n,i,a,o;return _t(r)?(n=r,167===r.kind?a=r:168===r.kind?o=r:e.Debug.fail("Accessor has wrong kind")):e.forEach(t,(function(t){e.isAccessor(t)&&_r(t,32)===_r(r,32)&&(ft(t.name)===ft(r.name)&&(n?i||(i=t):n=t,167!==t.kind||a||(a=t),168!==t.kind||o||(o=t)))})),{firstAccessor:n,secondAccessor:i,getAccessor:a,setAccessor:o}},e.getEffectiveTypeAnnotationNode=ir,e.getTypeAnnotationNode=function(e){return e.type},e.getEffectiveReturnTypeNode=function(t){return e.isJSDocSignature(t)?t.type&&t.type.typeExpression&&t.type.typeExpression.type:t.type||(de(t)?e.getJSDocReturnType(t):void 0)},e.getJSDocTypeParameterDeclarations=function(t){return e.flatMap(e.getJSDocTags(t),(function(t){return function(t){return e.isJSDocTemplateTag(t)&&!(311===t.parent.kind&&t.parent.tags.some(Re))}(t)?t.typeParameters:void 0}))},e.getEffectiveSetAccessorTypeAnnotationNode=function(e){var t=er(e);return t&&ir(t)},e.emitNewLineBeforeLeadingComments=ar,e.emitNewLineBeforeLeadingCommentsOfPosition=or,e.emitNewLineBeforeLeadingCommentOfPosition=function(e,t,r,n){r!==n&&$t(e,r)!==$t(e,n)&&t.writeLine()},e.emitComments=sr,e.emitDetachedComments=function(t,r,n,i,a,o,s){var c,u;if(s?0===a.pos&&(c=e.filter(e.getLeadingCommentRanges(t,a.pos),(function(e){return f(t,e.pos)}))):c=e.getLeadingCommentRanges(t,a.pos),c){for(var l=[],_=void 0,d=0,p=c;d=m+2)break}l.push(g),_=g}if(l.length){m=$t(r,e.last(l).end);$t(r,e.skipTrivia(t,a.pos))>=m+2&&(ar(r,n,a,c),sr(t,r,n,l,!1,!0,o,i),u={nodePos:a.pos,detachedCommentEndPos:e.last(l).end})}}return u},e.writeCommentRange=function(t,r,n,i,a,o){if(42===t.charCodeAt(i+1))for(var s=e.computeLineAndCharacterOfPosition(r,i),c=r.length,u=void 0,l=i,_=s.line;l0){var f=p%Ut(),g=zt((p-f)/Ut());for(n.rawWrite(g);f;)n.rawWrite(" "),f--}else n.rawWrite("")}cr(t,a,n,o,l,d),l=d}else n.writeComment(t.substring(i,a))},e.hasEffectiveModifiers=function(e){return 0!==yr(e)},e.hasSyntacticModifiers=function(e){return 0!==vr(e)},e.hasEffectiveModifier=lr,e.hasSyntacticModifier=_r,e.hasStaticModifier=dr,e.hasEffectiveReadonlyModifier=pr,e.getSelectedEffectiveModifierFlags=fr,e.getSelectedSyntacticModifierFlags=gr,e.getEffectiveModifierFlags=yr,e.getEffectiveModifierFlagsAlwaysIncludeJSDoc=function(e){return mr(e,!0,!0)},e.getSyntacticModifierFlags=vr,e.getEffectiveModifierFlagsNoCache=function(e){return br(e)|hr(e)},e.getSyntacticModifierFlagsNoCache=br,e.modifiersToFlags=xr,e.modifierToFlag=Dr,e.isLogicalOperator=function(e){return 56===e||55===e||53===e},e.isLogicalOrCoalescingAssignmentOperator=Sr,e.isLogicalOrCoalescingAssignmentExpression=function(e){return Sr(e.operatorToken.kind)},e.isAssignmentOperator=Tr,e.tryGetClassExtendingExpressionWithTypeArguments=Cr,e.tryGetClassImplementingOrExtendingExpressionWithTypeArguments=Er,e.isAssignmentExpression=kr,e.isDestructuringAssignment=function(e){if(kr(e,!0)){var t=e.left.kind;return 200===t||199===t}return!1},e.isExpressionWithTypeArgumentsInClassExtendsClause=Nr,e.isEntityNameExpression=Ar,e.getFirstIdentifier=function(e){switch(e.kind){case 78:return e;case 157:do{e=e.left}while(78!==e.kind);return e;case 201:do{e=e.expression}while(78!==e.kind);return e}},e.isDottedName=function e(t){return 78===t.kind||107===t.kind||105===t.kind||201===t.kind&&e(t.expression)||207===t.kind&&e(t.expression)},e.isPropertyAccessEntityNameExpression=Fr,e.tryGetPropertyAccessOrIdentifierToString=function t(r){if(e.isPropertyAccessExpression(r)){if(void 0!==(n=t(r.expression)))return n+"."+I(r.name)}else if(e.isElementAccessExpression(r)){var n;if(void 0!==(n=t(r.expression))&&e.isPropertyName(r.argumentExpression))return n+"."+ft(r.argumentExpression)}else if(e.isIdentifier(r))return e.unescapeLeadingUnderscores(r.escapedText)},e.isPrototypeAccess=Pr,e.isRightSideOfQualifiedNameOrPropertyAccess=function(e){return 157===e.parent.kind&&e.parent.right===e||201===e.parent.kind&&e.parent.name===e},e.isEmptyObjectLiteral=function(e){return 200===e.kind&&0===e.properties.length},e.isEmptyArrayLiteral=function(e){return 199===e.kind&&0===e.elements.length},e.getLocalSymbolForExportDefault=function(t){if(function(t){return t&&e.length(t.declarations)>0&&_r(t.declarations[0],512)}(t))for(var r=0,n=t.declarations;r>6|192),r.push(63&a|128)):a<65536?(r.push(a>>12|224),r.push(a>>6&63|128),r.push(63&a|128)):a<131072?(r.push(a>>18|240),r.push(a>>12&63|128),r.push(a>>6&63|128),r.push(63&a|128)):e.Debug.assert(!1,"Unexpected code point")}return r}(t),c=0,u=s.length;c>2,n=(3&s[c])<<4|s[c+1]>>4,i=(15&s[c+1])<<2|s[c+2]>>6,a=63&s[c+2],c+1>=u?i=a=64:c+2>=u&&(a=64),o+=wr.charAt(r)+wr.charAt(n)+wr.charAt(i)+wr.charAt(a),c+=3;return o}e.convertToBase64=Ir,e.base64encode=function(e,t){return e&&e.base64encode?e.base64encode(t):Ir(t)},e.base64decode=function(e,t){if(e&&e.base64decode)return e.base64decode(t);for(var r=t.length,n=[],i=0;i>4&3,l=(15&o)<<4|s>>2&15,_=(3&s)<<6|63&c;0===l&&0!==s?n.push(u):0===_&&0!==c?n.push(u,l):n.push(u,l,_),i+=4}return function(e){for(var t="",r=0,n=e.length;r=t||-1===r),{pos:t,end:r}}function Lr(e,t){return Mr(t,e.end)}function Rr(e){return e.decorators&&e.decorators.length>0?Lr(e,e.decorators.end):e}function Br(e,t,r){return jr(Jr(e,r,!1),t.end,r)}function jr(t,r,n){return 0===e.getLinesBetweenPositions(n,t,r)}function Jr(t,r,n){return Yn(t.pos)?-1:e.skipTrivia(r.text,t.pos,!1,n)}function zr(e){return void 0!==e.initializer}function Ur(e){return 33554432&e.flags?e.checkFlags:0}function Vr(t){var r=t.parent;if(!r)return 0;switch(r.kind){case 207:return Vr(r);case 215:case 214:var n=r.operator;return 45===n||46===n?c():0;case 216:var i=r,a=i.left,o=i.operatorToken;return a===t&&Tr(o.kind)?62===o.kind?1:c():0;case 201:return r.name!==t?0:Vr(r);case 288:var s=Vr(r.parent);return t===r.name?function(t){switch(t){case 0:return 1;case 1:return 0;case 2:return 2;default:return e.Debug.assertNever(t)}}(s):s;case 289:return t===r.objectAssignmentInitializer?0:Vr(r.parent);case 199:return Vr(r);default:return 0}function c(){return r.parent&&233===function(e){for(;207===e.kind;)e=e.parent;return e}(r.parent).kind?1:2}}function Kr(e,t,r){var n=r.onDeleteValue,i=r.onExistingValue;e.forEach((function(r,a){var o=t.get(a);void 0===o?(e.delete(a),n(r,a)):i&&i(r,o,a)}))}function qr(t){return e.find(t.declarations,e.isClassLike)}function Wr(e){return 201===e.kind||202===e.kind}function Hr(e){for(;Wr(e);)e=e.expression;return e}function Gr(e,t){this.flags=e,this.escapedName=t,this.declarations=void 0,this.valueDeclaration=void 0,this.id=void 0,this.mergeId=void 0,this.parent=void 0}function Xr(t,r){this.flags=r,(e.Debug.isDebugging||e.tracing)&&(this.checker=t)}function Qr(t,r){this.flags=r,e.Debug.isDebugging&&(this.checker=t)}function Yr(e,t,r){this.pos=t,this.end=r,this.kind=e,this.id=0,this.flags=0,this.modifierFlagsCache=0,this.transformFlags=0,this.parent=void 0,this.original=void 0}function Zr(e,t,r){this.pos=t,this.end=r,this.kind=e,this.id=0,this.flags=0,this.transformFlags=0,this.parent=void 0}function $r(e,t,r){this.pos=t,this.end=r,this.kind=e,this.id=0,this.flags=0,this.transformFlags=0,this.parent=void 0,this.original=void 0,this.flowNode=void 0}function en(e,t,r){this.fileName=e,this.text=t,this.skipTrivia=r||function(e){return e}}function tn(t,r,n){return void 0===n&&(n=0),t.replace(/{(\d+)}/g,(function(t,i){return""+e.Debug.checkDefined(r[+i+n])}))}function rn(t){return e.localizedDiagnosticMessages&&e.localizedDiagnosticMessages[t.key]||t.message}function nn(e){return void 0===e.file&&void 0!==e.start&&void 0!==e.length&&"string"==typeof e.fileName}function an(t,r){var n=r.fileName||"",i=r.text.length;e.Debug.assertEqual(t.fileName,n),e.Debug.assertLessThanOrEqual(t.start,i),e.Debug.assertLessThanOrEqual(t.start+t.length,i);var a={file:r,start:t.start,length:t.length,messageText:t.messageText,category:t.category,code:t.code,reportsUnnecessary:t.reportsUnnecessary};if(t.relatedInformation){a.relatedInformation=[];for(var o=0,s=t.relatedInformation;o4&&(i=tn(i,arguments,4)),{file:e,start:t,length:r,messageText:i,category:n.category,code:n.code,reportsUnnecessary:n.reportsUnnecessary,reportsDeprecated:n.reportsDeprecated}}function sn(e){var t=rn(e);return arguments.length>1&&(t=tn(t,arguments,1)),{file:void 0,start:void 0,length:void 0,messageText:t,category:e.category,code:e.code,reportsUnnecessary:e.reportsUnnecessary,reportsDeprecated:e.reportsDeprecated}}function cn(e){return e.file?e.file.path:void 0}function un(t,r){return ln(t,r)||function(t,r){if(!t.relatedInformation&&!r.relatedInformation)return 0;if(t.relatedInformation&&r.relatedInformation)return e.compareValues(t.relatedInformation.length,r.relatedInformation.length)||e.forEach(t.relatedInformation,(function(e,t){return un(e,r.relatedInformation[t])}))||0;return t.relatedInformation?-1:1}(t,r)||0}function ln(t,r){return e.compareStringsCaseSensitive(cn(t),cn(r))||e.compareValues(t.start,r.start)||e.compareValues(t.length,r.length)||e.compareValues(t.code,r.code)||_n(t.messageText,r.messageText)||0}function _n(t,r){if("string"==typeof t&&"string"==typeof r)return e.compareStringsCaseSensitive(t,r);if("string"==typeof t)return-1;if("string"==typeof r)return 1;var n=e.compareStringsCaseSensitive(t.messageText,r.messageText);if(n)return n;if(!t.next&&!r.next)return 0;if(!t.next)return-1;if(!r.next)return 1;for(var i=Math.min(t.next.length,r.next.length),a=0;ar.next.length?1:0}function dn(e){return e.target||0}function pn(t){return"number"==typeof t.module?t.module:dn(t)>=2?e.ModuleKind.ES2015:e.ModuleKind.CommonJS}function fn(e){return!(!e.declaration&&!e.composite)}function gn(e,t){return void 0===e[t]?!!e.strict:!!e[t]}function mn(e){return void 0===e.allowJs?!!e.checkJs:e.allowJs}function yn(e,t){return t.strictFlag?gn(e,t.name):e[t.name]}function vn(e){for(var t=!1,r=0;r0?Lr(e,e.modifiers.end):Rr(e)},e.isCollapsedRange=function(e){return e.pos===e.end},e.createTokenRange=function(t,r){return Mr(t,t+e.tokenToString(r).length)},e.rangeIsOnSingleLine=function(e,t){return Br(e,e,t)},e.rangeStartPositionsAreOnSameLine=function(e,t,r){return jr(Jr(e,r,!1),Jr(t,r,!1),r)},e.rangeEndPositionsAreOnSameLine=function(e,t,r){return jr(e.end,t.end,r)},e.rangeStartIsOnSameLineAsRangeEnd=Br,e.rangeEndIsOnSameLineAsRangeStart=function(e,t,r){return jr(e.end,Jr(t,r,!1),r)},e.getLinesBetweenRangeEndAndRangeStart=function(t,r,n,i){var a=Jr(r,n,i);return e.getLinesBetweenPositions(n,t.end,a)},e.getLinesBetweenRangeEndPositions=function(t,r,n){return e.getLinesBetweenPositions(n,t.end,r.end)},e.isNodeArrayMultiLine=function(e,t){return!jr(e.pos,e.end,t)},e.positionsAreOnSameLine=jr,e.getStartPositionOfRange=Jr,e.getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter=function(t,r,n,i){var a=e.skipTrivia(n.text,t,!1,i),o=function(t,r,n){void 0===r&&(r=0);for(;t-- >r;)if(!e.isWhiteSpaceLike(n.text.charCodeAt(t)))return t}(a,r,n);return e.getLinesBetweenPositions(n,null!=o?o:r,a)},e.getLinesBetweenPositionAndNextNonWhitespaceCharacter=function(t,r,n,i){var a=e.skipTrivia(n.text,t,!1,i);return e.getLinesBetweenPositions(n,t,Math.min(r,a))},e.isDeclarationNameOfEnumOrNamespace=function(t){var r=e.getParseTreeNode(t);if(r)switch(r.parent.kind){case 255:case 256:return r===r.parent.name}return!1},e.getInitializedVariables=function(t){return e.filter(t.declarations,zr)},e.isWatchSet=function(e){return e.watch&&e.hasOwnProperty("watch")},e.closeFileWatcher=function(e){e.close()},e.getCheckFlags=Ur,e.getDeclarationModifierFlagsFromSymbol=function(t){if(t.valueDeclaration){var r=e.getCombinedModifierFlags(t.valueDeclaration);return t.parent&&32&t.parent.flags?r:-29&r}if(6&Ur(t)){var n=t.checkFlags;return(1024&n?8:256&n?4:16)|(2048&n?32:0)}return 4194304&t.flags?36:0},e.skipAlias=function(e,t){return 2097152&e.flags?t.getAliasedSymbol(e):e},e.getCombinedLocalAndExportSymbolFlags=function(e){return e.exportSymbol?e.exportSymbol.flags|e.flags:e.flags},e.isWriteOnlyAccess=function(e){return 1===Vr(e)},e.isWriteAccess=function(e){return 0!==Vr(e)},function(e){e[e.Read=0]="Read",e[e.Write=1]="Write",e[e.ReadWrite=2]="ReadWrite"}(Or||(Or={})),e.compareDataObjects=function e(t,r){if(!t||!r||Object.keys(t).length!==Object.keys(r).length)return!1;for(var n in t)if("object"==typeof t[n]){if(!e(t[n],r[n]))return!1}else if("function"!=typeof t[n]&&t[n]!==r[n])return!1;return!0},e.clearMap=function(e,t){e.forEach(t),e.clear()},e.mutateMapSkippingNewValues=Kr,e.mutateMap=function(e,t,r){Kr(e,t,r);var n=r.createNewValue;t.forEach((function(t,r){e.has(r)||e.set(r,n(r,t))}))},e.isAbstractConstructorSymbol=function(e){if(32&e.flags){var t=qr(e);return!!t&&_r(t,128)}return!1},e.getClassLikeDeclarationOfSymbol=qr,e.getObjectFlags=function(e){return 3899393&e.flags?e.objectFlags:0},e.typeHasCallOrConstructSignatures=function(e,t){return 0!==t.getSignaturesOfType(e,0).length||0!==t.getSignaturesOfType(e,1).length},e.forSomeAncestorDirectory=function(t,r){return!!e.forEachAncestorDirectory(t,(function(e){return!!r(e)||void 0}))},e.isUMDExportSymbol=function(t){return!!t&&!!t.declarations&&!!t.declarations[0]&&e.isNamespaceExportDeclaration(t.declarations[0])},e.showModuleSpecifier=function(t){var r=t.moduleSpecifier;return e.isStringLiteral(r)?r.text:v(r)},e.getLastChild=function(t){var r;return e.forEachChild(t,(function(e){l(e)&&(r=e)}),(function(e){for(var t=e.length-1;t>=0;t--)if(l(e[t])){r=e[t];break}})),r},e.addToSeen=function(e,t,r){return void 0===r&&(r=!0),t=String(t),!e.has(t)&&(e.set(t,r),!0)},e.isObjectTypeDeclaration=function(t){return e.isClassLike(t)||e.isInterfaceDeclaration(t)||e.isTypeLiteralNode(t)},e.isTypeNodeKind=function(e){return e>=172&&e<=195||128===e||152===e||144===e||155===e||145===e||131===e||147===e||148===e||113===e||150===e||141===e||223===e||303===e||304===e||305===e||306===e||307===e||308===e||309===e},e.isAccessExpression=Wr,e.getNameOfAccessExpression=function(t){return 201===t.kind?t.name:(e.Debug.assert(202===t.kind),t.argumentExpression)},e.isBundleFileTextLike=function(e){switch(e.kind){case"text":case"internal":return!0;default:return!1}},e.isNamedImportsOrExports=function(e){return 264===e.kind||268===e.kind},e.getLeftmostAccessExpression=Hr,e.getLeftmostExpression=function(e,t){for(;;){switch(e.kind){case 215:e=e.operand;continue;case 216:e=e.left;continue;case 217:e=e.condition;continue;case 205:e=e.tag;continue;case 203:if(t)return e;case 224:case 202:case 201:case 225:case 336:e=e.expression;continue}return e}},e.objectAllocator={getNodeConstructor:function(){return Yr},getTokenConstructor:function(){return Zr},getIdentifierConstructor:function(){return $r},getPrivateIdentifierConstructor:function(){return Yr},getSourceFileConstructor:function(){return Yr},getSymbolConstructor:function(){return Gr},getTypeConstructor:function(){return Xr},getSignatureConstructor:function(){return Qr},getSourceMapSourceConstructor:function(){return en}},e.setObjectAllocator=function(t){e.objectAllocator=t},e.formatStringFromArgs=tn,e.setLocalizedDiagnosticMessages=function(t){e.localizedDiagnosticMessages=t},e.getLocaleSpecificMessage=rn,e.createDetachedDiagnostic=function(e,t,r,n){M(void 0,t,r);var i=rn(n);return arguments.length>4&&(i=tn(i,arguments,4)),{file:void 0,start:t,length:r,messageText:i,category:n.category,code:n.code,reportsUnnecessary:n.reportsUnnecessary,fileName:e}},e.attachFileToDiagnostics=function(e,t){for(var r=[],n=0,i=e;n2&&(r=tn(r,arguments,2)),r},e.createCompilerDiagnostic=sn,e.createCompilerDiagnosticFromMessageChain=function(e,t){return{file:void 0,start:void 0,length:void 0,code:e.code,category:e.category,messageText:e.next?e:e.messageText,relatedInformation:t}},e.chainDiagnosticMessages=function(e,t){var r=rn(t);return arguments.length>2&&(r=tn(r,arguments,2)),{messageText:r,category:t.category,code:t.code,next:void 0===e||Array.isArray(e)?e:[e]}},e.concatenateDiagnosticMessageChains=function(e,t){for(var r=e;r.next;)r=r.next[0];r.next=[t]},e.compareDiagnostics=un,e.compareDiagnosticsSkipRelatedInformation=ln,e.getLanguageVariant=function(e){return 4===e||2===e||1===e||6===e?1:0},e.getEmitScriptTarget=dn,e.getEmitModuleKind=pn,e.getEmitModuleResolutionKind=function(t){var r=t.moduleResolution;return void 0===r&&(r=pn(t)===e.ModuleKind.CommonJS?e.ModuleResolutionKind.NodeJs:e.ModuleResolutionKind.Classic),r},e.hasJsonModuleEmitEnabled=function(t){switch(pn(t)){case e.ModuleKind.CommonJS:case e.ModuleKind.AMD:case e.ModuleKind.ES2015:case e.ModuleKind.ES2020:case e.ModuleKind.ESNext:return!0;default:return!1}},e.unreachableCodeIsError=function(e){return!1===e.allowUnreachableCode},e.unusedLabelIsError=function(e){return!1===e.allowUnusedLabels},e.getAreDeclarationMapsEnabled=function(e){return!(!fn(e)||!e.declarationMap)},e.getAllowSyntheticDefaultImports=function(t){var r=pn(t);return void 0!==t.allowSyntheticDefaultImports?t.allowSyntheticDefaultImports:t.esModuleInterop||r===e.ModuleKind.System},e.getEmitDeclarations=fn,e.shouldPreserveConstEnums=function(e){return!(!e.preserveConstEnums&&!e.isolatedModules)},e.isIncrementalCompilation=function(e){return!(!e.incremental&&!e.composite)},e.getStrictOptionValue=gn,e.getAllowJSCompilerOption=mn,e.compilerOptionsAffectSemanticDiagnostics=function(t,r){return r!==t&&e.semanticDiagnosticsOptionDeclarations.some((function(e){return!ei(yn(r,e),yn(t,e))}))},e.compilerOptionsAffectEmit=function(t,r){return r!==t&&e.affectsEmitOptionDeclarations.some((function(e){return!ei(yn(r,e),yn(t,e))}))},e.getCompilerOptionValue=yn,e.getJSXTransformEnabled=function(e){var t=e.jsx;return 2===t||4===t||5===t},e.getJSXImplicitImportBase=function(t,r){var n=null==r?void 0:r.pragmas.get("jsximportsource"),i=e.isArray(n)?n[0]:n;return 4===t.jsx||5===t.jsx||t.jsxImportSource||i?(null==i?void 0:i.arguments.factory)||t.jsxImportSource||"react":void 0},e.getJSXRuntimeImport=function(e,t){return e?e+"/"+(5===t.jsx?"jsx-dev-runtime":"jsx-runtime"):void 0},e.hasZeroOrOneAsteriskCharacter=vn,e.createSymlinkCache=hn,e.discoverProbableSymlinks=function(t,r,n){for(var i=hn(n,r),a=0,o=e.flatten(e.mapDefined(t,(function(t){return t.resolvedModules&&e.compact(e.arrayFrom(e.mapIterator(t.resolvedModules.values(),(function(e){return e&&e.originalPath&&e.resolvedFileName!==e.originalPath?[e.resolvedFileName,e.originalPath]:void 0}))))})));a0;)c+=")?",d--;return c}}function On(e,t){return"*"===e?t:"?"===e?"[^/]":"\\"+e}function Mn(t,r,n,i,a){t=e.normalizePath(t),a=e.normalizePath(a);var o=e.combinePaths(a,t);return{includeFilePatterns:e.map(Pn(n,o,"files"),(function(e){return"^"+e+"$"})),includeFilePattern:Fn(n,o,"files"),includeDirectoryPattern:Fn(n,o,"directories"),excludePattern:Fn(r,o,"exclude"),basePaths:Rn(t,n,i)}}function Ln(e,t){return new RegExp(e,t?"":"i")}function Rn(t,r,n){var i=[t];if(r){for(var a=[],o=0,s=r;o=0;n--)if(e.fileExtensionIs(t,r[n]))return qn(n,r);return 0},e.adjustExtensionPriority=qn,e.getNextLowestExtensionPriority=function(e,t){return e<2?2:t.length};var Wn=[".d.ts",".ts",".js",".tsx",".jsx",".json"];function Hn(e){for(var t=0,r=Wn;t=0)}function Zn(e){return".ts"===e||".tsx"===e||".d.ts"===e}function $n(t){return e.find(Wn,(function(r){return e.fileExtensionIs(t,r)}))}function ei(t,r){return t===r||"object"==typeof t&&null!==t&&"object"==typeof r&&null!==r&&e.equalOwnProperties(t,r,ei)}function ti(e,t){return e.pos=t,e}function ri(e,t){return e.end=t,e}function ni(e,t,r){return ri(ti(e,t),r)}function ii(e,t){return e&&t&&(e.parent=t),e}function ai(t){return!e.isOmittedExpression(t)}function oi(t){return e.some(e.ignoredPaths,(function(r){return e.stringContains(t,r)}))}e.removeFileExtension=Hn,e.tryRemoveExtension=Gn,e.removeExtension=Xn,e.changeExtension=function(t,r){return e.changeAnyExtension(t,r,Wn,!1)},e.tryParsePattern=Qn,e.positionIsSynthesized=Yn,e.extensionIsTS=Zn,e.resolutionExtensionIsTSOrJson=function(e){return Zn(e)||".json"===e},e.extensionFromPath=function(t){var r=$n(t);return void 0!==r?r:e.Debug.fail("File "+t+" has unknown extension.")},e.isAnySupportedFileExtension=function(e){return void 0!==$n(e)},e.tryGetExtensionFromPath=$n,e.isCheckJsEnabledForFile=function(e,t){return e.checkJsDirective?e.checkJsDirective.enabled:t.checkJs},e.emptyFileSystemEntries={files:e.emptyArray,directories:e.emptyArray},e.matchPatternOrExact=function(t,r){for(var n=[],i=0,a=t;ii&&(i=o)}return{min:n,max:i}},e.rangeOfNode=function(e){return{pos:g(e),end:e.end}},e.rangeOfTypeParameters=function(t,r){return{pos:r.pos-1,end:e.skipTrivia(t.text,r.end)+1}},e.skipTypeChecking=function(e,t,r){return t.skipLibCheck&&e.isDeclarationFile||t.skipDefaultLibCheck&&e.hasNoDefaultLib||r.isSourceOfProjectReferenceRedirect(e.fileName)},e.isJsonEqual=ei,e.parsePseudoBigInt=function(e){var t;switch(e.charCodeAt(1)){case 98:case 66:t=1;break;case 111:case 79:t=3;break;case 120:case 88:t=4;break;default:for(var r=e.length-1,n=0;48===e.charCodeAt(n);)n++;return e.slice(n,r)||"0"}for(var i=e.length-1,a=(i-2)*t,o=new Uint16Array((a>>>4)+(15&a?1:0)),s=i-1,c=0;s>=2;s--,c+=t){var u=c>>>4,l=e.charCodeAt(s),_=(l<=57?l-48:10+l-(l<=70?65:97))<<(15&c);o[u]|=_;var d=_>>>16;d&&(o[u+1]|=d)}for(var p="",f=o.length-1,g=!0;g;){var m=0;g=!1;for(u=f;u>=0;u--){var y=m<<16|o[u],v=y/10|0;o[u]=v,m=y-10*v,v&&!g&&(f=u,g=!0)}p=m+p}return p},e.pseudoBigIntToString=function(e){var t=e.negative,r=e.base10Value;return(t&&"0"!==r?"-":"")+r},e.isValidTypeOnlyAliasUseSite=function(t){return!!(8388608&t.flags)||ue(t)||function(t){if(78!==t.kind)return!1;var r=e.findAncestor(t.parent,(function(e){switch(e.kind){case 286:return!0;case 201:case 223:return!1;default:return"quit"}}));return 116===(null==r?void 0:r.token)||253===(null==r?void 0:r.parent.kind)}(t)||function(e){for(;78===e.kind||201===e.kind;)e=e.parent;if(158!==e.kind)return!1;if(_r(e.parent,128))return!0;var t=e.parent.parent.kind;return 253===t||177===t}(t)||!se(t)},e.typeOnlyDeclarationIsExport=function(e){return 270===e.kind},e.isIdentifierTypeReference=function(t){return e.isTypeReferenceNode(t)&&e.isIdentifier(t.typeName)},e.arrayIsHomogeneous=function(t,r){if(void 0===r&&(r=e.equateValues),t.length<2)return!0;for(var n=t[0],i=1,a=t.length;i3)return!0;var u=e.getExpressionPrecedence(c);switch(e.compareValues(u,o)){case-1:return!(!i&&1===s&&219===n.kind);case 1:return!1;case 0:if(i)return 1===s;if(e.isBinaryExpression(c)&&c.operatorToken.kind===t){if(function(e){return 41===e||51===e||50===e||52===e}(t))return!1;if(39===t){var l=a?r(a):0;if(e.isLiteralKind(l)&&l===r(c))return!1}}return 0===e.getExpressionAssociativity(c)}}(n,i,a,o)?t.createParenthesizedExpression(i):i}function i(r){var n=e.skipPartiallyEmittedExpressions(r);return e.isLeftHandSideExpression(n)&&(204!==n.kind||n.arguments)?r:e.setTextRange(t.createParenthesizedExpression(r),r)}function a(r){var n=e.skipPartiallyEmittedExpressions(r);return e.getExpressionPrecedence(n)>e.getOperatorPrecedence(216,27)?r:e.setTextRange(t.createParenthesizedExpression(r),r)}function o(e){return 184===e.kind?t.createParenthesizedType(e):e}function s(e){switch(e.kind){case 182:case 183:case 174:case 175:return t.createParenthesizedType(e)}return o(e)}function c(r,n){return 0===n&&e.isFunctionOrConstructorTypeNode(r)&&r.typeParameters?t.createParenthesizedType(r):r}},e.nullParenthesizerRules={parenthesizeLeftSideOfBinary:function(e,t){return t},parenthesizeRightSideOfBinary:function(e,t,r){return r},parenthesizeExpressionOfComputedPropertyName:e.identity,parenthesizeConditionOfConditionalExpression:e.identity,parenthesizeBranchOfConditionalExpression:e.identity,parenthesizeExpressionOfExportDefault:e.identity,parenthesizeExpressionOfNew:function(t){return e.cast(t,e.isLeftHandSideExpression)},parenthesizeLeftSideOfAccess:function(t){return e.cast(t,e.isLeftHandSideExpression)},parenthesizeOperandOfPostfixUnary:function(t){return e.cast(t,e.isLeftHandSideExpression)},parenthesizeOperandOfPrefixUnary:function(t){return e.cast(t,e.isUnaryExpression)},parenthesizeExpressionsOfCommaDelimitedList:function(t){return e.cast(t,e.isNodeArray)},parenthesizeExpressionForDisallowedComma:e.identity,parenthesizeExpressionOfExpressionStatement:e.identity,parenthesizeConciseBodyOfArrowFunction:e.identity,parenthesizeMemberOfConditionalType:e.identity,parenthesizeMemberOfElementType:e.identity,parenthesizeElementTypeOfArrayType:e.identity,parenthesizeConstituentTypesOfUnionOrIntersectionType:function(t){return e.cast(t,e.isNodeArray)},parenthesizeTypeArguments:function(t){return t&&e.cast(t,e.isNodeArray)}}}(ts||(ts={})),function(e){e.createNodeConverters=function(t){return{convertToFunctionBlock:function(r,n){if(e.isBlock(r))return r;var i=t.createReturnStatement(r);e.setTextRange(i,r);var a=t.createBlock([i],n);return e.setTextRange(a,r),a},convertToFunctionExpression:function(r){if(!r.body)return e.Debug.fail("Cannot convert a FunctionDeclaration without a body");var n=t.createFunctionExpression(r.modifiers,r.asteriskToken,r.name,r.typeParameters,r.parameters,r.type,r.body);e.setOriginalNode(n,r),e.setTextRange(n,r),e.getStartsOnNewLine(r)&&e.setStartsOnNewLine(n,!0);return n},convertToArrayAssignmentElement:r,convertToObjectAssignmentElement:n,convertToAssignmentPattern:i,convertToObjectAssignmentPattern:a,convertToArrayAssignmentPattern:o,convertToAssignmentElementTarget:s};function r(r){if(e.isBindingElement(r)){if(r.dotDotDotToken)return e.Debug.assertNode(r.name,e.isIdentifier),e.setOriginalNode(e.setTextRange(t.createSpreadElement(r.name),r),r);var n=s(r.name);return r.initializer?e.setOriginalNode(e.setTextRange(t.createAssignment(n,r.initializer),r),r):n}return e.cast(r,e.isExpression)}function n(r){if(e.isBindingElement(r)){if(r.dotDotDotToken)return e.Debug.assertNode(r.name,e.isIdentifier),e.setOriginalNode(e.setTextRange(t.createSpreadAssignment(r.name),r),r);if(r.propertyName){var n=s(r.name);return e.setOriginalNode(e.setTextRange(t.createPropertyAssignment(r.propertyName,r.initializer?t.createAssignment(n,r.initializer):n),r),r)}return e.Debug.assertNode(r.name,e.isIdentifier),e.setOriginalNode(e.setTextRange(t.createShorthandPropertyAssignment(r.name,r.initializer),r),r)}return e.cast(r,e.isObjectLiteralElementLike)}function i(e){switch(e.kind){case 197:case 199:return o(e);case 196:case 200:return a(e)}}function a(r){return e.isObjectBindingPattern(r)?e.setOriginalNode(e.setTextRange(t.createObjectLiteralExpression(e.map(r.elements,n)),r),r):e.cast(r,e.isObjectLiteralExpression)}function o(n){return e.isArrayBindingPattern(n)?e.setOriginalNode(e.setTextRange(t.createArrayLiteralExpression(e.map(n.elements,r)),n),n):e.cast(n,e.isArrayLiteralExpression)}function s(t){return e.isBindingPattern(t)?i(t):e.cast(t,e.isExpression)}},e.nullNodeConverters={convertToFunctionBlock:e.notImplemented,convertToFunctionExpression:e.notImplemented,convertToArrayAssignmentElement:e.notImplemented,convertToObjectAssignmentElement:e.notImplemented,convertToAssignmentPattern:e.notImplemented,convertToObjectAssignmentPattern:e.notImplemented,convertToArrayAssignmentPattern:e.notImplemented,convertToAssignmentElementTarget:e.notImplemented}}(ts||(ts={})),function(e){var t,r=0;function n(n,d){var p=8&n?i:a,f=e.memoize((function(){return 1&n?e.nullParenthesizerRules:e.createParenthesizerRules(k)})),g=e.memoize((function(){return 2&n?e.nullNodeConverters:e.createNodeConverters(k)})),m=e.memoizeOne((function(e){return function(t,r){return It(t,e,r)}})),v=e.memoizeOne((function(e){return function(t){return Pt(e,t)}})),h=e.memoizeOne((function(e){return function(t){return wt(t,e)}})),b=e.memoizeOne((function(e){return function(){return function(e){return A(e)}(e)}})),x=e.memoizeOne((function(e){return function(t){return Yr(e,t)}})),D=e.memoizeOne((function(e){return function(t,r){return function(e,t,r){return t.type!==r?p(Yr(e,r),t):t}(e,t,r)}})),S=e.memoizeOne((function(e){return function(t,r){return fn(e,t,r)}})),T=e.memoizeOne((function(e){return function(t,r,n){return function(e,t,r,n){void 0===r&&(r=rn(t));return t.tagName!==r||t.comment!==n?p(fn(e,r,n),t):t}(e,t,r,n)}})),C=e.memoizeOne((function(e){return function(t,r,n){return gn(e,t,r,n)}})),E=e.memoizeOne((function(e){return function(t,r,n,i){return function(e,t,r,n,i){void 0===r&&(r=rn(t));return t.tagName!==r||t.typeExpression!==n||t.comment!==i?p(gn(e,r,n,i),t):t}(e,t,r,n,i)}})),k={get parenthesizer(){return f()},get converters(){return g()},createNodeArray:N,createNumericLiteral:U,createBigIntLiteral:V,createStringLiteral:q,createStringLiteralFromNode:function(t){var r=K(e.getTextOfIdentifierOrLiteral(t),void 0);return r.textSourceNode=t,r},createRegularExpressionLiteral:W,createLiteralLikeNode:function(e,t){switch(e){case 8:return U(t,0);case 9:return V(t);case 10:return q(t,void 0);case 11:return Sn(t,!1);case 12:return Sn(t,!0);case 13:return W(t);case 14:return Bt(e,t,void 0,0)}},createIdentifier:X,updateIdentifier:function(t,r){return t.typeArguments!==r?p(X(e.idText(t),r),t):t},createTempVariable:Q,createLoopVariable:function(){return G("",2)},createUniqueName:function(t,r){void 0===r&&(r=0);return e.Debug.assert(!(7&r),"Argument out of range: flags"),e.Debug.assert(32!=(48&r),"GeneratedIdentifierFlags.FileLevel cannot be set without also setting GeneratedIdentifierFlags.Optimistic"),G(t,3|r)},getGeneratedNameForNode:Y,createPrivateIdentifier:function(t){e.startsWith(t,"#")||e.Debug.fail("First character of private identifier must be #: "+t);var r=d.createBasePrivateIdentifierNode(79);return r.escapedText=e.escapeLeadingUnderscores(t),r.transformFlags|=4194304,r},createToken:$,createSuper:function(){return $(105)},createThis:ee,createNull:function(){return $(103)},createTrue:te,createFalse:re,createModifier:ne,createModifiersFromModifierFlags:ie,createQualifiedName:ae,updateQualifiedName:function(e,t,r){return e.left!==t||e.right!==r?p(ae(t,r),e):e},createComputedPropertyName:oe,updateComputedPropertyName:function(e,t){return e.expression!==t?p(oe(t),e):e},createTypeParameterDeclaration:se,updateTypeParameterDeclaration:function(e,t,r,n){return e.name!==t||e.constraint!==r||e.default!==n?p(se(t,r,n),e):e},createParameterDeclaration:ce,updateParameterDeclaration:ue,createDecorator:le,updateDecorator:function(e,t){return e.expression!==t?p(le(t),e):e},createPropertySignature:_e,updatePropertySignature:de,createPropertyDeclaration:pe,updatePropertyDeclaration:fe,createMethodSignature:ge,updateMethodSignature:me,createMethodDeclaration:ye,updateMethodDeclaration:ve,createConstructorDeclaration:he,updateConstructorDeclaration:be,createGetAccessorDeclaration:xe,updateGetAccessorDeclaration:De,createSetAccessorDeclaration:Se,updateSetAccessorDeclaration:Te,createCallSignature:Ce,updateCallSignature:function(e,t,r,n){return e.typeParameters!==t||e.parameters!==r||e.type!==n?O(Ce(t,r,n),e):e},createConstructSignature:Ee,updateConstructSignature:function(e,t,r,n){return e.typeParameters!==t||e.parameters!==r||e.type!==n?O(Ee(t,r,n),e):e},createIndexSignature:ke,updateIndexSignature:Ne,createTemplateLiteralTypeSpan:Ae,updateTemplateLiteralTypeSpan:function(e,t,r){return e.type!==t||e.literal!==r?p(Ae(t,r),e):e},createKeywordTypeNode:function(e){return $(e)},createTypePredicateNode:Fe,updateTypePredicateNode:function(e,t,r,n){return e.assertsModifier!==t||e.parameterName!==r||e.type!==n?p(Fe(t,r,n),e):e},createTypeReferenceNode:Pe,updateTypeReferenceNode:function(e,t,r){return e.typeName!==t||e.typeArguments!==r?p(Pe(t,r),e):e},createFunctionTypeNode:we,updateFunctionTypeNode:function(e,t,r,n){return e.typeParameters!==t||e.parameters!==r||e.type!==n?O(we(t,r,n),e):e},createConstructorTypeNode:Ie,updateConstructorTypeNode:function(){for(var t=[],r=0;r10?zn(t):e.reduceLeft(t,k.createComma)},getInternalName:function(e,t,r){return Xn(e,t,r,49152)},getLocalName:function(e,t,r){return Xn(e,t,r,16384)},getExportName:Qn,getDeclarationName:function(e,t,r){return Xn(e,t,r)},getNamespaceMemberName:Yn,getExternalModuleOrNamespaceExportName:function(t,r,n,i){if(t&&e.hasSyntacticModifier(r,1))return Yn(t,Xn(r),n,i);return Qn(r,n,i)},restoreOuterExpressions:function t(r,n,i){void 0===i&&(i=15);if(r&&e.isOuterExpression(r,i)&&(a=r,!(e.isParenthesizedExpression(a)&&e.nodeIsSynthesized(a)&&e.nodeIsSynthesized(e.getSourceMapRange(a))&&e.nodeIsSynthesized(e.getCommentRange(a)))||e.some(e.getSyntheticLeadingComments(a))||e.some(e.getSyntheticTrailingComments(a))))return function(e,t){switch(e.kind){case 207:return Dt(e,t);case 206:return bt(e,e.type,t);case 224:return qt(e,t,e.type);case 225:return Ht(e,t);case 336:return jn(e,t)}}(r,t(r.expression,n));var a;return n},restoreEnclosingLabel:function t(r,n,i){if(!n)return r;var a=gr(n,n.label,e.isLabeledStatement(n.statement)?t(r,n.statement):r);i&&i(n);return a},createUseStrictPrologue:Zn,copyPrologue:function(e,t,r,n){var i=$n(e,t,r);return ei(e,t,i,n)},copyStandardPrologue:$n,copyCustomPrologue:ei,ensureUseStrict:function(t){if(!e.findUseStrictPrologue(t))return e.setTextRange(N(__spreadArray([Zn()],t)),t);return t},liftToBlock:function(t){return e.Debug.assert(e.every(t,e.isStatementOrBlock),"Cannot lift nodes to a Block."),e.singleOrUndefined(t)||Zt(t)},mergeLexicalEnvironment:function(t,r){if(!e.some(r))return t;var n=ti(t,e.isPrologueDirective,0),i=ti(t,e.isHoistedFunction,n),a=ti(t,e.isHoistedVariableStatement,i),o=ti(r,e.isPrologueDirective,0),s=ti(r,e.isHoistedFunction,o),c=ti(r,e.isHoistedVariableStatement,s),u=ti(r,e.isCustomPrologue,c);e.Debug.assert(u===r.length,"Expected declarations to be valid standard or custom prologues");var l=e.isNodeArray(t)?t.slice():t;u>c&&l.splice.apply(l,__spreadArray([a,0],r.slice(c,u)));c>s&&l.splice.apply(l,__spreadArray([i,0],r.slice(s,c)));s>o&&l.splice.apply(l,__spreadArray([n,0],r.slice(o,s)));if(o>0)if(0===n)l.splice.apply(l,__spreadArray([0,0],r.slice(0,o)));else{for(var _=new e.Map,d=0;d=0;d--){var f=r[d];_.has(f.expression.text)||l.unshift(f)}}if(e.isNodeArray(t))return e.setTextRange(N(l,t.hasTrailingComma),t);return t},updateModifiers:function(t,r){var n;"number"==typeof r&&(r=ie(r));return e.isParameter(t)?ue(t,t.decorators,r,t.dotDotDotToken,t.name,t.questionToken,t.type,t.initializer):e.isPropertySignature(t)?de(t,r,t.name,t.questionToken,t.type):e.isPropertyDeclaration(t)?fe(t,t.decorators,r,t.name,null!==(n=t.questionToken)&&void 0!==n?n:t.exclamationToken,t.type,t.initializer):e.isMethodSignature(t)?me(t,r,t.name,t.questionToken,t.typeParameters,t.parameters,t.type):e.isMethodDeclaration(t)?ve(t,t.decorators,r,t.asteriskToken,t.name,t.questionToken,t.typeParameters,t.parameters,t.type,t.body):e.isConstructorDeclaration(t)?be(t,t.decorators,r,t.parameters,t.body):e.isGetAccessorDeclaration(t)?De(t,t.decorators,r,t.name,t.parameters,t.type,t.body):e.isSetAccessorDeclaration(t)?Te(t,t.decorators,r,t.name,t.parameters,t.body):e.isIndexSignatureDeclaration(t)?Ne(t,t.decorators,r,t.parameters,t.type):e.isFunctionExpression(t)?Tt(t,r,t.asteriskToken,t.name,t.typeParameters,t.parameters,t.type,t.body):e.isArrowFunction(t)?Et(t,r,t.typeParameters,t.parameters,t.type,t.equalsGreaterThanToken,t.body):e.isClassExpression(t)?Ut(t,t.decorators,r,t.name,t.typeParameters,t.heritageClauses,t.members):e.isVariableStatement(t)?er(t,r,t.declarationList):e.isFunctionDeclaration(t)?xr(t,t.decorators,r,t.asteriskToken,t.name,t.typeParameters,t.parameters,t.type,t.body):e.isClassDeclaration(t)?Sr(t,t.decorators,r,t.name,t.typeParameters,t.heritageClauses,t.members):e.isInterfaceDeclaration(t)?Cr(t,t.decorators,r,t.name,t.typeParameters,t.heritageClauses,t.members):e.isTypeAliasDeclaration(t)?kr(t,t.decorators,r,t.name,t.typeParameters,t.type):e.isEnumDeclaration(t)?Ar(t,t.decorators,r,t.name,t.members):e.isModuleDeclaration(t)?Pr(t,t.decorators,r,t.name,t.body):e.isImportEqualsDeclaration(t)?Lr(t,t.decorators,r,t.isTypeOnly,t.name,t.moduleReference):e.isImportDeclaration(t)?Br(t,t.decorators,r,t.importClause,t.moduleSpecifier):e.isExportAssignment(t)?qr(t,t.decorators,r,t.expression):e.isExportDeclaration(t)?Hr(t,t.decorators,r,t.isTypeOnly,t.exportClause,t.moduleSpecifier):e.Debug.assertNever(t)}};return k;function N(t,r){if(void 0===t||t===e.emptyArray)t=[];else if(e.isNodeArray(t))return void 0===t.transformFlags&&_(t),e.Debug.attachNodeArrayDebugInfo(t),t;var n=t.length,i=n>=1&&n<=4?t.slice():t;return e.setTextRangePosEnd(i,-1,-1),i.hasTrailingComma=!!r,_(i),e.Debug.attachNodeArrayDebugInfo(i),i}function A(e){return d.createBaseNode(e)}function F(e,t,r){var n=A(e);return n.decorators=ri(t),n.modifiers=ri(r),n.transformFlags|=l(n.decorators)|l(n.modifiers),n.symbol=void 0,n.localSymbol=void 0,n.locals=void 0,n.nextContainer=void 0,n}function P(t,r,n,i){var a=F(t,r,n);if(i=ni(i),a.name=i,i)switch(a.kind){case 165:case 167:case 168:case 163:case 288:if(e.isIdentifier(i)){a.transformFlags|=c(i);break}default:a.transformFlags|=u(i)}return a}function w(e,t,r,n,i){var a=P(e,t,r,n);return a.typeParameters=ri(i),a.transformFlags|=l(a.typeParameters),i&&(a.transformFlags|=1),a}function I(e,t,r,n,i,a,o){var s=w(e,t,r,n,i);return s.parameters=N(a),s.type=o,s.transformFlags|=l(s.parameters)|u(s.type),o&&(s.transformFlags|=1),s}function O(e,t){return t.typeArguments&&(e.typeArguments=t.typeArguments),p(e,t)}function M(e,t,r,n,i,a,o,s){var c=I(e,t,r,n,i,a,o);return c.body=s,c.transformFlags|=-8388609&u(c.body),s||(c.transformFlags|=1),c}function L(e,t){return t.exclamationToken&&(e.exclamationToken=t.exclamationToken),t.typeArguments&&(e.typeArguments=t.typeArguments),O(e,t)}function R(e,t,r,n,i,a){var o=w(e,t,r,n,i);return o.heritageClauses=ri(a),o.transformFlags|=l(o.heritageClauses),o}function B(e,t,r,n,i,a,o){var s=R(e,t,r,n,i,a);return s.members=N(o),s.transformFlags|=l(s.members),s}function j(e,t,r,n,i){var a=P(e,t,r,n);return a.initializer=i,a.transformFlags|=u(a.initializer),a}function J(e,t,r,n,i,a){var o=j(e,t,r,n,a);return o.type=i,o.transformFlags|=u(i),i&&(o.transformFlags|=1),o}function z(e,t){var r=Z(e);return r.text=t,r}function U(e,t){void 0===t&&(t=0);var r=z(8,"number"==typeof e?e+"":e);return r.numericLiteralFlags=t,384&t&&(r.transformFlags|=256),r}function V(t){var r=z(9,"string"==typeof t?t:e.pseudoBigIntToString(t)+"n");return r.transformFlags|=4,r}function K(e,t){var r=z(10,e);return r.singleQuote=t,r}function q(e,t,r){var n=K(e,t);return n.hasExtendedUnicodeEscape=r,r&&(n.transformFlags|=256),n}function W(e){return z(13,e)}function H(t,r){void 0===r&&t&&(r=e.stringToToken(t)),78===r&&(r=void 0);var n=d.createBaseIdentifierNode(78);return n.originalKeywordKind=r,n.escapedText=e.escapeLeadingUnderscores(t),n}function G(e,t){var n=H(e,void 0);return n.autoGenerateFlags=t,n.autoGenerateId=r,r++,n}function X(e,t,r){var n=H(e,r);return t&&(n.typeArguments=N(t)),130===n.originalKeywordKind&&(n.transformFlags|=8388608),n}function Q(e,t){var r=1;t&&(r|=8);var n=G("",r);return e&&e(n),n}function Y(t,r){void 0===r&&(r=0),e.Debug.assert(!(7&r),"Argument out of range: flags");var n=G(t&&e.isIdentifier(t)?e.idText(t):"",4|r);return n.original=t,n}function Z(e){return d.createBaseTokenNode(e)}function $(t){e.Debug.assert(t>=0&&t<=156,"Invalid token"),e.Debug.assert(t<=14||t>=17,"Invalid token. Use 'createTemplateLiteralLikeNode' to create template literals."),e.Debug.assert(t<=8||t>=14,"Invalid token. Use 'createLiteralLikeNode' to create literals."),e.Debug.assert(78!==t,"Invalid token. Use 'createIdentifier' to create identifiers");var r=Z(t),n=0;switch(t){case 129:n=96;break;case 122:case 120:case 121:case 142:case 125:case 133:case 84:case 128:case 144:case 155:case 141:case 145:case 147:case 131:case 148:case 113:case 152:case 150:n=1;break;case 123:case 105:n=256;break;case 107:n=4096}return n&&(r.transformFlags|=n),r}function ee(){return $(107)}function te(){return $(109)}function re(){return $(94)}function ne(e){return $(e)}function ie(e){var t=[];return 1&e&&t.push(ne(92)),2&e&&t.push(ne(133)),512&e&&t.push(ne(87)),2048&e&&t.push(ne(84)),4&e&&t.push(ne(122)),8&e&&t.push(ne(120)),16&e&&t.push(ne(121)),128&e&&t.push(ne(125)),32&e&&t.push(ne(123)),64&e&&t.push(ne(142)),256&e&&t.push(ne(129)),t}function ae(e,t){var r=A(157);return r.left=e,r.right=ni(t),r.transformFlags|=u(r.left)|c(r.right),r}function oe(e){var t=A(158);return t.expression=f().parenthesizeExpressionOfComputedPropertyName(e),t.transformFlags|=33024|u(t.expression),t}function se(e,t,r){var n=P(159,void 0,void 0,e);return n.constraint=t,n.default=r,n.transformFlags=1,n}function ce(t,r,n,i,a,o,s){var c=J(160,t,r,i,o,s&&f().parenthesizeExpressionForDisallowedComma(s));return c.dotDotDotToken=n,c.questionToken=a,e.isThisIdentifier(c.name)?c.transformFlags=1:(c.transformFlags|=u(c.dotDotDotToken)|u(c.questionToken),a&&(c.transformFlags|=1),92&e.modifiersToFlags(c.modifiers)&&(c.transformFlags|=2048),(s||n)&&(c.transformFlags|=256)),c}function ue(e,t,r,n,i,a,o,s){return e.decorators!==t||e.modifiers!==r||e.dotDotDotToken!==n||e.name!==i||e.questionToken!==a||e.type!==o||e.initializer!==s?p(ce(t,r,n,i,a,o,s),e):e}function le(e){var t=A(161);return t.expression=f().parenthesizeLeftSideOfAccess(e),t.transformFlags|=2049|u(t.expression),t}function _e(e,t,r,n){var i=P(162,void 0,e,t);return i.type=n,i.questionToken=r,i.transformFlags=1,i}function de(e,t,r,n,i){return e.modifiers!==t||e.name!==r||e.questionToken!==n||e.type!==i?p(_e(t,r,n,i),e):e}function pe(t,r,n,i,a,o){var s=J(163,t,r,n,a,o);return s.questionToken=i&&e.isQuestionToken(i)?i:void 0,s.exclamationToken=i&&e.isExclamationToken(i)?i:void 0,s.transformFlags|=u(s.questionToken)|u(s.exclamationToken)|4194304,(e.isComputedPropertyName(s.name)||e.hasStaticModifier(s)&&s.initializer)&&(s.transformFlags|=2048),(i||2&e.modifiersToFlags(s.modifiers))&&(s.transformFlags|=1),s}function fe(t,r,n,i,a,o,s){return t.decorators!==r||t.modifiers!==n||t.name!==i||t.questionToken!==(void 0!==a&&e.isQuestionToken(a)?a:void 0)||t.exclamationToken!==(void 0!==a&&e.isExclamationToken(a)?a:void 0)||t.type!==o||t.initializer!==s?p(pe(r,n,i,a,o,s),t):t}function ge(e,t,r,n,i,a){var o=I(164,void 0,e,t,n,i,a);return o.questionToken=r,o.transformFlags=1,o}function me(e,t,r,n,i,a,o){return e.modifiers!==t||e.name!==r||e.questionToken!==n||e.typeParameters!==i||e.parameters!==a||e.type!==o?O(ge(t,r,n,i,a,o),e):e}function ye(t,r,n,i,a,o,s,c,l){var _=M(165,t,r,i,o,s,c,l);return _.asteriskToken=n,_.questionToken=a,_.transformFlags|=u(_.asteriskToken)|u(_.questionToken)|256,a&&(_.transformFlags|=1),256&e.modifiersToFlags(_.modifiers)?_.transformFlags|=n?32:64:n&&(_.transformFlags|=512),_}function ve(e,t,r,n,i,a,o,s,c,u){return e.decorators!==t||e.modifiers!==r||e.asteriskToken!==n||e.name!==i||e.questionToken!==a||e.typeParameters!==o||e.parameters!==s||e.type!==c||e.body!==u?L(ye(t,r,n,i,a,o,s,c,u),e):e}function he(e,t,r,n){var i=M(166,e,t,void 0,void 0,r,void 0,n);return i.transformFlags|=256,i}function be(e,t,r,n,i){return e.decorators!==t||e.modifiers!==r||e.parameters!==n||e.body!==i?L(he(t,r,n,i),e):e}function xe(e,t,r,n,i,a){return M(167,e,t,r,void 0,n,i,a)}function De(e,t,r,n,i,a,o){return e.decorators!==t||e.modifiers!==r||e.name!==n||e.parameters!==i||e.type!==a||e.body!==o?L(xe(t,r,n,i,a,o),e):e}function Se(e,t,r,n,i){return M(168,e,t,r,void 0,n,void 0,i)}function Te(e,t,r,n,i,a){return e.decorators!==t||e.modifiers!==r||e.name!==n||e.parameters!==i||e.body!==a?L(Se(t,r,n,i,a),e):e}function Ce(e,t,r){var n=I(169,void 0,void 0,void 0,e,t,r);return n.transformFlags=1,n}function Ee(e,t,r){var n=I(170,void 0,void 0,void 0,e,t,r);return n.transformFlags=1,n}function ke(e,t,r,n){var i=I(171,e,t,void 0,void 0,r,n);return i.transformFlags=1,i}function Ne(e,t,r,n,i){return e.parameters!==n||e.type!==i||e.decorators!==t||e.modifiers!==r?O(ke(t,r,n,i),e):e}function Ae(e,t){var r=A(194);return r.type=e,r.literal=t,r.transformFlags=1,r}function Fe(e,t,r){var n=A(172);return n.assertsModifier=e,n.parameterName=ni(t),n.type=r,n.transformFlags=1,n}function Pe(e,t){var r=A(173);return r.typeName=ni(e),r.typeArguments=t&&f().parenthesizeTypeArguments(N(t)),r.transformFlags=1,r}function we(e,t,r){var n=I(174,void 0,void 0,void 0,e,t,r);return n.transformFlags=1,n}function Ie(){for(var t=[],r=0;r0;default:return!0}}function Xn(t,r,n,i){void 0===i&&(i=0);var a=e.getNameOfDeclaration(t);if(a&&e.isIdentifier(a)&&!e.isGeneratedIdentifier(a)){var o=e.setParent(e.setTextRange(Vn(a),a),a.parent);return i|=e.getEmitFlags(a),n||(i|=48),r||(i|=1536),i&&e.setEmitFlags(o,i),o}return Y(t)}function Qn(e,t,r){return Xn(e,t,r,8192)}function Yn(t,r,n,i){var a=ct(t,e.nodeIsSynthesized(r)?r:Vn(r));e.setTextRange(a,r);var o=0;return i||(o|=48),n||(o|=1536),o&&e.setEmitFlags(a,o),a}function Zn(){return e.startOnNewLine(rr(q("use strict")))}function $n(t,r,n){e.Debug.assert(0===r.length,"Prologue directives should be at the first statement in the target statements array");for(var i,a=!1,o=0,s=t.length;o=172&&e<=195)return-2;switch(e){case 203:case 204:case 199:return 536879104;case 256:return 546379776;case 160:return 536870912;case 209:return 547309568;case 208:case 251:return 547313664;case 250:return 537018368;case 252:case 221:return 536905728;case 166:return 547311616;case 163:return 536875008;case 165:case 167:case 168:return 538923008;case 128:case 144:case 155:case 141:case 147:case 145:case 131:case 148:case 113:case 159:case 162:case 164:case 169:case 170:case 171:case 253:case 254:return-2;case 200:return 536922112;case 287:return 536887296;case 196:case 197:return 536879104;case 206:case 224:case 336:case 207:case 105:return 536870912;case 201:case 202:default:return 536870912}}e.getTransformFlagsSubtreeExclusions=d;var p=e.createBaseNodeFactory();function f(e){return e.flags|=8,e}var g,m={createBaseSourceFileNode:function(e){return f(p.createBaseSourceFileNode(e))},createBaseIdentifierNode:function(e){return f(p.createBaseIdentifierNode(e))},createBasePrivateIdentifierNode:function(e){return f(p.createBasePrivateIdentifierNode(e))},createBaseTokenNode:function(e){return f(p.createBaseTokenNode(e))},createBaseNode:function(e){return f(p.createBaseNode(e))}};function y(t,r){if(t.original=r,r){var n=r.emitNode;n&&(t.emitNode=function(t,r){var n=t.flags,i=t.leadingComments,a=t.trailingComments,o=t.commentRange,s=t.sourceMapRange,c=t.tokenSourceMapRanges,u=t.constantValue,l=t.helpers,_=t.startsOnNewLine;r||(r={});i&&(r.leadingComments=e.addRange(i.slice(),r.leadingComments));a&&(r.trailingComments=e.addRange(a.slice(),r.trailingComments));n&&(r.flags=n);o&&(r.commentRange=o);s&&(r.sourceMapRange=s);c&&(r.tokenSourceMapRanges=function(e,t){t||(t=[]);for(var r in e)t[r]=e[r];return t}(c,r.tokenSourceMapRanges));void 0!==u&&(r.constantValue=u);if(l)for(var d=0,p=l;d0&&(o[u-c]=l)}c>0&&(o.length-=c)}},e.ignoreSourceNewlines=function(e){return t(e).flags|=134217728,e}}(ts||(ts={})),function(e){function t(e){for(var t=[],r=1;r=2)return r.createCallExpression(r.createPropertyAccessExpression(r.createIdentifier("Object"),"assign"),void 0,i);return t.requestEmitHelper(e.assignHelper),r.createCallExpression(n("__assign"),void 0,i)},createAwaitHelper:function(i){return t.requestEmitHelper(e.awaitHelper),r.createCallExpression(n("__await"),void 0,[i])},createAsyncGeneratorHelper:function(i,a){return t.requestEmitHelper(e.awaitHelper),t.requestEmitHelper(e.asyncGeneratorHelper),(i.emitNode||(i.emitNode={})).flags|=786432,r.createCallExpression(n("__asyncGenerator"),void 0,[a?r.createThis():r.createVoidZero(),r.createIdentifier("arguments"),i])},createAsyncDelegatorHelper:function(i){return t.requestEmitHelper(e.awaitHelper),t.requestEmitHelper(e.asyncDelegator),r.createCallExpression(n("__asyncDelegator"),void 0,[i])},createAsyncValuesHelper:function(i){return t.requestEmitHelper(e.asyncValues),r.createCallExpression(n("__asyncValues"),void 0,[i])},createRestHelper:function(i,a,o,s){t.requestEmitHelper(e.restHelper);for(var c=[],u=0,l=0;l= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n };'},e.metadataHelper={name:"typescript:metadata",importName:"__metadata",scoped:!1,priority:3,text:'\n var __metadata = (this && this.__metadata) || function (k, v) {\n if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);\n };'},e.paramHelper={name:"typescript:param",importName:"__param",scoped:!1,priority:4,text:"\n var __param = (this && this.__param) || function (paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n };"},e.assignHelper={name:"typescript:assign",importName:"__assign",scoped:!1,priority:1,text:"\n var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n };"},e.awaitHelper={name:"typescript:await",importName:"__await",scoped:!1,text:"\n var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }"},e.asyncGeneratorHelper={name:"typescript:asyncGenerator",importName:"__asyncGenerator",scoped:!1,dependencies:[e.awaitHelper],text:'\n var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume("next", value); }\n function reject(value) { resume("throw", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n };'},e.asyncDelegator={name:"typescript:asyncDelegator",importName:"__asyncDelegator",scoped:!1,dependencies:[e.awaitHelper],text:'\n var __asyncDelegator = (this && this.__asyncDelegator) || function (o) {\n var i, p;\n return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }\n };'},e.asyncValues={name:"typescript:asyncValues",importName:"__asyncValues",scoped:!1,text:'\n var __asyncValues = (this && this.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n };'},e.restHelper={name:"typescript:rest",importName:"__rest",scoped:!1,text:'\n var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === "function")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n };'},e.awaiterHelper={name:"typescript:awaiter",importName:"__awaiter",scoped:!1,priority:5,text:'\n var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n };'},e.extendsHelper={name:"typescript:extends",importName:"__extends",scoped:!1,priority:0,text:'\n var __extends = (this && this.__extends) || (function () {\n var extendStatics = function (d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n };\n\n return function (d, b) {\n if (typeof b !== "function" && b !== null)\n throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n })();'},e.templateObjectHelper={name:"typescript:makeTemplateObject",importName:"__makeTemplateObject",scoped:!1,priority:0,text:'\n var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n };'},e.readHelper={name:"typescript:read",importName:"__read",scoped:!1,text:'\n var __read = (this && this.__read) || function (o, n) {\n var m = typeof Symbol === "function" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i["return"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n };'},e.spreadArrayHelper={name:"typescript:spreadArray",importName:"__spreadArray",scoped:!1,text:"\n var __spreadArray = (this && this.__spreadArray) || function (to, from) {\n for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)\n to[j] = from[i];\n return to;\n };"},e.valuesHelper={name:"typescript:values",importName:"__values",scoped:!1,text:'\n var __values = (this && this.__values) || function(o) {\n var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === "number") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");\n };'},e.generatorHelper={name:"typescript:generator",importName:"__generator",scoped:!1,priority:6,text:'\n var __generator = (this && this.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError("Generator is already executing.");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n };'},e.createBindingHelper={name:"typescript:commonjscreatebinding",importName:"__createBinding",scoped:!1,priority:1,text:"\n var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\n }) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n }));"},e.setModuleDefaultHelper={name:"typescript:commonjscreatevalue",importName:"__setModuleDefault",scoped:!1,priority:1,text:'\n var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {\n Object.defineProperty(o, "default", { enumerable: true, value: v });\n }) : function(o, v) {\n o["default"] = v;\n });'},e.importStarHelper={name:"typescript:commonjsimportstar",importName:"__importStar",scoped:!1,dependencies:[e.createBindingHelper,e.setModuleDefaultHelper],priority:2,text:'\n var __importStar = (this && this.__importStar) || function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n };'},e.importDefaultHelper={name:"typescript:commonjsimportdefault",importName:"__importDefault",scoped:!1,text:'\n var __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { "default": mod };\n };'},e.exportStarHelper={name:"typescript:export-star",importName:"__exportStar",scoped:!1,dependencies:[e.createBindingHelper],priority:2,text:'\n var __exportStar = (this && this.__exportStar) || function(m, exports) {\n for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);\n };'},e.classPrivateFieldGetHelper={name:"typescript:classPrivateFieldGet",importName:"__classPrivateFieldGet",scoped:!1,text:'\n var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {\n if (!privateMap.has(receiver)) {\n throw new TypeError("attempted to get private field on non-instance");\n }\n return privateMap.get(receiver);\n };'},e.classPrivateFieldSetHelper={name:"typescript:classPrivateFieldSet",importName:"__classPrivateFieldSet",scoped:!1,text:'\n var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {\n if (!privateMap.has(receiver)) {\n throw new TypeError("attempted to set private field on non-instance");\n }\n privateMap.set(receiver, value);\n return value;\n };'},e.getAllUnscopedEmitHelpers=function(){return r||(r=e.arrayToMap([e.decorateHelper,e.metadataHelper,e.paramHelper,e.assignHelper,e.awaitHelper,e.asyncGeneratorHelper,e.asyncDelegator,e.asyncValues,e.restHelper,e.awaiterHelper,e.extendsHelper,e.templateObjectHelper,e.spreadArrayHelper,e.valuesHelper,e.readHelper,e.generatorHelper,e.importStarHelper,e.importDefaultHelper,e.exportStarHelper,e.classPrivateFieldGetHelper,e.classPrivateFieldSetHelper,e.createBindingHelper,e.setModuleDefaultHelper],(function(e){return e.name})))},e.asyncSuperHelper={name:"typescript:async-super",scoped:!0,text:t(__makeTemplateObject(["\n const "," = name => super[name];"],["\n const "," = name => super[name];"]),"_superIndex")},e.advancedAsyncSuperHelper={name:"typescript:advanced-async-super",scoped:!0,text:t(__makeTemplateObject(["\n const "," = (function (geti, seti) {\n const cache = Object.create(null);\n return name => cache[name] || (cache[name] = { get value() { return geti(name); }, set value(v) { seti(name, v); } });\n })(name => super[name], (name, value) => super[name] = value);"],["\n const "," = (function (geti, seti) {\n const cache = Object.create(null);\n return name => cache[name] || (cache[name] = { get value() { return geti(name); }, set value(v) { seti(name, v); } });\n })(name => super[name], (name, value) => super[name] = value);"]),"_superIndex")},e.isCallToHelper=function(t,r){return e.isCallExpression(t)&&e.isIdentifier(t.expression)&&4096&e.getEmitFlags(t.expression)&&t.expression.escapedText===r}}(ts||(ts={})),function(e){e.isNumericLiteral=function(e){return 8===e.kind},e.isBigIntLiteral=function(e){return 9===e.kind},e.isStringLiteral=function(e){return 10===e.kind},e.isJsxText=function(e){return 11===e.kind},e.isRegularExpressionLiteral=function(e){return 13===e.kind},e.isNoSubstitutionTemplateLiteral=function(e){return 14===e.kind},e.isTemplateHead=function(e){return 15===e.kind},e.isTemplateMiddle=function(e){return 16===e.kind},e.isTemplateTail=function(e){return 17===e.kind},e.isIdentifier=function(e){return 78===e.kind},e.isQualifiedName=function(e){return 157===e.kind},e.isComputedPropertyName=function(e){return 158===e.kind},e.isPrivateIdentifier=function(e){return 79===e.kind},e.isSuperKeyword=function(e){return 105===e.kind},e.isImportKeyword=function(e){return 99===e.kind},e.isCommaToken=function(e){return 27===e.kind},e.isQuestionToken=function(e){return 57===e.kind},e.isExclamationToken=function(e){return 53===e.kind},e.isTypeParameterDeclaration=function(e){return 159===e.kind},e.isParameter=function(e){return 160===e.kind},e.isDecorator=function(e){return 161===e.kind},e.isPropertySignature=function(e){return 162===e.kind},e.isPropertyDeclaration=function(e){return 163===e.kind},e.isMethodSignature=function(e){return 164===e.kind},e.isMethodDeclaration=function(e){return 165===e.kind},e.isConstructorDeclaration=function(e){return 166===e.kind},e.isGetAccessorDeclaration=function(e){return 167===e.kind},e.isSetAccessorDeclaration=function(e){return 168===e.kind},e.isCallSignatureDeclaration=function(e){return 169===e.kind},e.isConstructSignatureDeclaration=function(e){return 170===e.kind},e.isIndexSignatureDeclaration=function(e){return 171===e.kind},e.isTypePredicateNode=function(e){return 172===e.kind},e.isTypeReferenceNode=function(e){return 173===e.kind},e.isFunctionTypeNode=function(e){return 174===e.kind},e.isConstructorTypeNode=function(e){return 175===e.kind},e.isTypeQueryNode=function(e){return 176===e.kind},e.isTypeLiteralNode=function(e){return 177===e.kind},e.isArrayTypeNode=function(e){return 178===e.kind},e.isTupleTypeNode=function(e){return 179===e.kind},e.isNamedTupleMember=function(e){return 192===e.kind},e.isOptionalTypeNode=function(e){return 180===e.kind},e.isRestTypeNode=function(e){return 181===e.kind},e.isUnionTypeNode=function(e){return 182===e.kind},e.isIntersectionTypeNode=function(e){return 183===e.kind},e.isConditionalTypeNode=function(e){return 184===e.kind},e.isInferTypeNode=function(e){return 185===e.kind},e.isParenthesizedTypeNode=function(e){return 186===e.kind},e.isThisTypeNode=function(e){return 187===e.kind},e.isTypeOperatorNode=function(e){return 188===e.kind},e.isIndexedAccessTypeNode=function(e){return 189===e.kind},e.isMappedTypeNode=function(e){return 190===e.kind},e.isLiteralTypeNode=function(e){return 191===e.kind},e.isImportTypeNode=function(e){return 195===e.kind},e.isTemplateLiteralTypeSpan=function(e){return 194===e.kind},e.isTemplateLiteralTypeNode=function(e){return 193===e.kind},e.isObjectBindingPattern=function(e){return 196===e.kind},e.isArrayBindingPattern=function(e){return 197===e.kind},e.isBindingElement=function(e){return 198===e.kind},e.isArrayLiteralExpression=function(e){return 199===e.kind},e.isObjectLiteralExpression=function(e){return 200===e.kind},e.isPropertyAccessExpression=function(e){return 201===e.kind},e.isElementAccessExpression=function(e){return 202===e.kind},e.isCallExpression=function(e){return 203===e.kind},e.isNewExpression=function(e){return 204===e.kind},e.isTaggedTemplateExpression=function(e){return 205===e.kind},e.isTypeAssertionExpression=function(e){return 206===e.kind},e.isParenthesizedExpression=function(e){return 207===e.kind},e.isFunctionExpression=function(e){return 208===e.kind},e.isArrowFunction=function(e){return 209===e.kind},e.isDeleteExpression=function(e){return 210===e.kind},e.isTypeOfExpression=function(e){return 211===e.kind},e.isVoidExpression=function(e){return 212===e.kind},e.isAwaitExpression=function(e){return 213===e.kind},e.isPrefixUnaryExpression=function(e){return 214===e.kind},e.isPostfixUnaryExpression=function(e){return 215===e.kind},e.isBinaryExpression=function(e){return 216===e.kind},e.isConditionalExpression=function(e){return 217===e.kind},e.isTemplateExpression=function(e){return 218===e.kind},e.isYieldExpression=function(e){return 219===e.kind},e.isSpreadElement=function(e){return 220===e.kind},e.isClassExpression=function(e){return 221===e.kind},e.isOmittedExpression=function(e){return 222===e.kind},e.isExpressionWithTypeArguments=function(e){return 223===e.kind},e.isAsExpression=function(e){return 224===e.kind},e.isNonNullExpression=function(e){return 225===e.kind},e.isMetaProperty=function(e){return 226===e.kind},e.isSyntheticExpression=function(e){return 227===e.kind},e.isPartiallyEmittedExpression=function(e){return 336===e.kind},e.isCommaListExpression=function(e){return 337===e.kind},e.isTemplateSpan=function(e){return 228===e.kind},e.isSemicolonClassElement=function(e){return 229===e.kind},e.isBlock=function(e){return 230===e.kind},e.isVariableStatement=function(e){return 232===e.kind},e.isEmptyStatement=function(e){return 231===e.kind},e.isExpressionStatement=function(e){return 233===e.kind},e.isIfStatement=function(e){return 234===e.kind},e.isDoStatement=function(e){return 235===e.kind},e.isWhileStatement=function(e){return 236===e.kind},e.isForStatement=function(e){return 237===e.kind},e.isForInStatement=function(e){return 238===e.kind},e.isForOfStatement=function(e){return 239===e.kind},e.isContinueStatement=function(e){return 240===e.kind},e.isBreakStatement=function(e){return 241===e.kind},e.isReturnStatement=function(e){return 242===e.kind},e.isWithStatement=function(e){return 243===e.kind},e.isSwitchStatement=function(e){return 244===e.kind},e.isLabeledStatement=function(e){return 245===e.kind},e.isThrowStatement=function(e){return 246===e.kind},e.isTryStatement=function(e){return 247===e.kind},e.isDebuggerStatement=function(e){return 248===e.kind},e.isVariableDeclaration=function(e){return 249===e.kind},e.isVariableDeclarationList=function(e){return 250===e.kind},e.isFunctionDeclaration=function(e){return 251===e.kind},e.isClassDeclaration=function(e){return 252===e.kind},e.isInterfaceDeclaration=function(e){return 253===e.kind},e.isTypeAliasDeclaration=function(e){return 254===e.kind},e.isEnumDeclaration=function(e){return 255===e.kind},e.isModuleDeclaration=function(e){return 256===e.kind},e.isModuleBlock=function(e){return 257===e.kind},e.isCaseBlock=function(e){return 258===e.kind},e.isNamespaceExportDeclaration=function(e){return 259===e.kind},e.isImportEqualsDeclaration=function(e){return 260===e.kind},e.isImportDeclaration=function(e){return 261===e.kind},e.isImportClause=function(e){return 262===e.kind},e.isNamespaceImport=function(e){return 263===e.kind},e.isNamespaceExport=function(e){return 269===e.kind},e.isNamedImports=function(e){return 264===e.kind},e.isImportSpecifier=function(e){return 265===e.kind},e.isExportAssignment=function(e){return 266===e.kind},e.isExportDeclaration=function(e){return 267===e.kind},e.isNamedExports=function(e){return 268===e.kind},e.isExportSpecifier=function(e){return 270===e.kind},e.isMissingDeclaration=function(e){return 271===e.kind},e.isNotEmittedStatement=function(e){return 335===e.kind},e.isSyntheticReference=function(e){return 340===e.kind},e.isMergeDeclarationMarker=function(e){return 338===e.kind},e.isEndOfDeclarationMarker=function(e){return 339===e.kind},e.isExternalModuleReference=function(e){return 272===e.kind},e.isJsxElement=function(e){return 273===e.kind},e.isJsxSelfClosingElement=function(e){return 274===e.kind},e.isJsxOpeningElement=function(e){return 275===e.kind},e.isJsxClosingElement=function(e){return 276===e.kind},e.isJsxFragment=function(e){return 277===e.kind},e.isJsxOpeningFragment=function(e){return 278===e.kind},e.isJsxClosingFragment=function(e){return 279===e.kind},e.isJsxAttribute=function(e){return 280===e.kind},e.isJsxAttributes=function(e){return 281===e.kind},e.isJsxSpreadAttribute=function(e){return 282===e.kind},e.isJsxExpression=function(e){return 283===e.kind},e.isCaseClause=function(e){return 284===e.kind},e.isDefaultClause=function(e){return 285===e.kind},e.isHeritageClause=function(e){return 286===e.kind},e.isCatchClause=function(e){return 287===e.kind},e.isPropertyAssignment=function(e){return 288===e.kind},e.isShorthandPropertyAssignment=function(e){return 289===e.kind},e.isSpreadAssignment=function(e){return 290===e.kind},e.isEnumMember=function(e){return 291===e.kind},e.isUnparsedPrepend=function(e){return 293===e.kind},e.isSourceFile=function(e){return 297===e.kind},e.isBundle=function(e){return 298===e.kind},e.isUnparsedSource=function(e){return 299===e.kind},e.isJSDocTypeExpression=function(e){return 301===e.kind},e.isJSDocNameReference=function(e){return 302===e.kind},e.isJSDocAllType=function(e){return 303===e.kind},e.isJSDocUnknownType=function(e){return 304===e.kind},e.isJSDocNullableType=function(e){return 305===e.kind},e.isJSDocNonNullableType=function(e){return 306===e.kind},e.isJSDocOptionalType=function(e){return 307===e.kind},e.isJSDocFunctionType=function(e){return 308===e.kind},e.isJSDocVariadicType=function(e){return 309===e.kind},e.isJSDocNamepathType=function(e){return 310===e.kind},e.isJSDoc=function(e){return 311===e.kind},e.isJSDocTypeLiteral=function(e){return 312===e.kind},e.isJSDocSignature=function(e){return 313===e.kind},e.isJSDocAugmentsTag=function(e){return 315===e.kind},e.isJSDocAuthorTag=function(e){return 317===e.kind},e.isJSDocClassTag=function(e){return 319===e.kind},e.isJSDocCallbackTag=function(e){return 324===e.kind},e.isJSDocPublicTag=function(e){return 320===e.kind},e.isJSDocPrivateTag=function(e){return 321===e.kind},e.isJSDocProtectedTag=function(e){return 322===e.kind},e.isJSDocReadonlyTag=function(e){return 323===e.kind},e.isJSDocDeprecatedTag=function(e){return 318===e.kind},e.isJSDocSeeTag=function(e){return 332===e.kind},e.isJSDocEnumTag=function(e){return 325===e.kind},e.isJSDocParameterTag=function(e){return 326===e.kind},e.isJSDocReturnTag=function(e){return 327===e.kind},e.isJSDocThisTag=function(e){return 328===e.kind},e.isJSDocTypeTag=function(e){return 329===e.kind},e.isJSDocTemplateTag=function(e){return 330===e.kind},e.isJSDocTypedefTag=function(e){return 331===e.kind},e.isJSDocUnknownTag=function(e){return 314===e.kind},e.isJSDocPropertyTag=function(e){return 333===e.kind},e.isJSDocImplementsTag=function(e){return 316===e.kind},e.isSyntaxList=function(e){return 334===e.kind}}(ts||(ts={})),function(e){function t(t,r,n,i){if(e.isComputedPropertyName(n))return e.setTextRange(t.createElementAccessExpression(r,n.expression),i);var a=e.setTextRange(e.isIdentifierOrPrivateIdentifier(n)?t.createPropertyAccessExpression(r,n):t.createElementAccessExpression(r,n),n);return e.getOrCreateEmitNode(a).flags|=64,a}function r(t,r){var n=e.parseNodeFactory.createIdentifier(t||"React");return e.setParent(n,e.getParseTreeNode(r)),n}function n(t,i,a){if(e.isQualifiedName(i)){var o=n(t,i.left,a),s=t.createIdentifier(e.idText(i.right));return s.escapedText=i.right.escapedText,t.createPropertyAccessExpression(o,s)}return r(e.idText(i),a)}function i(e,t,i,a){return t?n(e,t,a):e.createPropertyAccessExpression(r(i,a),"createElement")}function a(t,r){return e.isIdentifier(r)?t.createStringLiteralFromNode(r):e.isComputedPropertyName(r)?e.setParent(e.setTextRange(t.cloneNode(r.expression),r.expression),r.expression.parent):e.setParent(e.setTextRange(t.cloneNode(r),r),r.parent)}function o(t){return e.isStringLiteral(t.expression)&&"use strict"===t.expression.text}function s(e,t){switch(void 0===t&&(t=15),e.kind){case 207:return 0!=(1&t);case 206:case 224:return 0!=(2&t);case 225:return 0!=(4&t);case 336:return 0!=(8&t)}return!1}function c(e,t){for(void 0===t&&(t=15);s(e,t);)e=e.expression;return e}function u(t){return e.setStartsOnNewLine(t,!0)}function l(t){var r=e.getOriginalNode(t,e.isSourceFile),n=r&&r.emitNode;return n&&n.externalHelpersModuleName}function _(t,r,n,i,a){if(n.importHelpers&&e.isEffectiveExternalModule(r,n)){var o=l(r);if(o)return o;var s=e.getEmitModuleKind(n),c=(i||n.esModuleInterop&&a)&&s!==e.ModuleKind.System&&s0)if(i||s.push(t.createNull()),a.length>1)for(var c=0,l=a;c0)if(c.length>1)for(var p=0,f=c;p=e.ModuleKind.ES2015&&u<=e.ModuleKind.ESNext){var l=e.getEmitHelpers(n);if(l){for(var d=[],p=0,f=l;pt.checkJsDirective.pos)&&(t.checkJsDirective={enabled:"ts-check"===i,end:e.range.end,pos:e.range.pos})}));break;case"jsx":case"jsxfrag":case"jsximportsource":case"jsxruntime":return;default:e.Debug.fail("Unhandled pragma kind")}}))}!function(e){e[e.None=0]="None",e[e.Yield=1]="Yield",e[e.Await=2]="Await",e[e.Type=4]="Type",e[e.IgnoreMissingOpenBrace=16]="IgnoreMissingOpenBrace",e[e.JSDoc=32]="JSDoc"}(t||(t={})),function(e){e[e.TryParse=0]="TryParse",e[e.Lookahead=1]="Lookahead",e[e.Reparse=2]="Reparse"}(r||(r={})),e.parseBaseNodeFactory={createBaseSourceFileNode:function(t){return new(s||(s=e.objectAllocator.getSourceFileConstructor()))(t,-1,-1)},createBaseIdentifierNode:function(t){return new(a||(a=e.objectAllocator.getIdentifierConstructor()))(t,-1,-1)},createBasePrivateIdentifierNode:function(t){return new(o||(o=e.objectAllocator.getPrivateIdentifierConstructor()))(t,-1,-1)},createBaseTokenNode:function(t){return new(i||(i=e.objectAllocator.getTokenConstructor()))(t,-1,-1)},createBaseNode:function(t){return new(n||(n=e.objectAllocator.getNodeConstructor()))(t,-1,-1)}},e.parseNodeFactory=e.createNodeFactory(1,e.parseBaseNodeFactory),e.isJSDocLikeText=d,e.forEachChild=p,e.forEachChildRecursively=function(t,r,n){for(var i=f(t),a=[];a.length=0;--c)i.push(o[c]),a.push(s)}else{var u;if(u=r(o,s)){if("skip"===u)continue;return u}if(o.kind>=157)for(var l=0,_=f(o);l<_.length;l++){var d=_[l];i.push(d),a.push(o)}}}},e.createSourceFile=function(t,r,n,i,a){var o;return void 0===i&&(i=!1),null===e.tracing||void 0===e.tracing||e.tracing.push("parse","createSourceFile",{path:t},!0),e.performance.mark("beforeParse"),e.perfLogger.logStartParseSourceFile(t),o=100===n?c.parseSourceFile(t,r,n,void 0,i,6):c.parseSourceFile(t,r,n,void 0,i,a),e.perfLogger.logStopParseSourceFile(),e.performance.mark("afterParse"),e.performance.measure("Parse","beforeParse","afterParse"),null===e.tracing||void 0===e.tracing||e.tracing.pop(),o},e.parseIsolatedEntityName=function(e,t){return c.parseIsolatedEntityName(e,t)},e.parseJsonText=function(e,t){return c.parseJsonText(e,t)},e.isExternalModule=g,e.updateSourceFile=function(e,t,r,n){void 0===n&&(n=!1);var i=u.updateSourceFile(e,t,r,n);return i.flags|=3145728&e.flags,i},e.parseIsolatedJSDocComment=function(e,t,r){var n=c.JSDocParser.parseIsolatedJSDocComment(e,t,r);return n&&n.jsDoc&&c.fixupParentReferences(n.jsDoc),n},e.parseJSDocTypeExpressionForTests=function(e,t,r){return c.JSDocParser.parseJSDocTypeExpressionForTests(e,t,r)},function(t){var r,n,i,a,o,s=e.createScanner(99,!0),c=20480;function l(e){return N++,e}var _,f,h,b,x,D,S,T,E,k,N,A,F,P,w,I,O,M={createBaseSourceFileNode:function(e){return l(new o(e,0,0))},createBaseIdentifierNode:function(e){return l(new i(e,0,0))},createBasePrivateIdentifierNode:function(e){return l(new a(e,0,0))},createBaseTokenNode:function(e){return l(new n(e,0,0))},createBaseNode:function(e){return l(new r(e,0,0))}},L=e.createNodeFactory(11,M),R=!0,B=!1;function j(t,r,n,i,a){void 0===n&&(n=2),void 0===a&&(a=!1),J(t,r,n,i,6),f=O,xe();var o,s,c=me();if(1===ve())o=Ue([],c,c),s=je();else{var u=void 0;switch(ve()){case 22:u=Tn();break;case 109:case 94:case 103:u=je();break;case 40:u=Ae((function(){return 8===xe()&&58!==xe()}))?Zr():En();break;case 8:case 10:if(Ae((function(){return 58!==xe()}))){u=It();break}default:u=En()}var l=L.createExpressionStatement(u);Ve(l,c),o=Ue([l],c),s=Be(1,e.Diagnostics.Unexpected_token)}var _=Q(t,2,6,!1,o,s,f);a&&X(_),_.nodeCount=N,_.identifierCount=P,_.identifiers=A,_.parseDiagnostics=e.attachFileToDiagnostics(S,_),T&&(_.jsDocDiagnostics=e.attachFileToDiagnostics(T,_));var d=_;return z(),d}function J(t,c,u,l,d){switch(r=e.objectAllocator.getNodeConstructor(),n=e.objectAllocator.getTokenConstructor(),i=e.objectAllocator.getIdentifierConstructor(),a=e.objectAllocator.getPrivateIdentifierConstructor(),o=e.objectAllocator.getSourceFileConstructor(),_=e.normalizePath(t),h=c,b=u,E=l,x=d,D=e.getLanguageVariant(d),S=[],w=0,A=new e.Map,F=new e.Map,P=0,N=0,f=0,R=!0,x){case 1:case 2:O=131072;break;case 6:O=33685504;break;default:O=0}B=!1,s.setText(h),s.setOnError(ge),s.setScriptTarget(b),s.setLanguageVariant(D)}function z(){s.clearCommentDirectives(),s.setText(""),s.setOnError(void 0),h=void 0,b=void 0,E=void 0,x=void 0,D=void 0,f=0,S=void 0,T=void 0,w=0,A=void 0,I=void 0,R=!0}function U(t,r,n){var i=m(_);i&&(O|=8388608),f=O,xe();var a=mt(0,Kn);e.Debug.assert(1===ve());var o=G(je()),c=Q(_,t,n,i,a,o,f);return y(c,h),v(c,(function(t,r,n){S.push(e.createDetachedDiagnostic(_,t,r,n))})),c.commentDirectives=s.getCommentDirectives(),c.nodeCount=N,c.identifierCount=P,c.identifiers=A,c.parseDiagnostics=e.attachFileToDiagnostics(S,c),T&&(c.jsDocDiagnostics=e.attachFileToDiagnostics(T,c)),r&&X(c),c}function V(e,t){return t?G(e):e}t.parseSourceFile=function(t,r,n,i,a,o){if(void 0===a&&(a=!1),6===(o=e.ensureScriptKind(t,o))){var s=j(t,r,n,i,a);return e.convertToObjectWorker(s,s.parseDiagnostics,!1,void 0,void 0),s.referencedFiles=e.emptyArray,s.typeReferenceDirectives=e.emptyArray,s.libReferenceDirectives=e.emptyArray,s.amdDependencies=e.emptyArray,s.hasNoDefaultLib=!1,s.pragmas=e.emptyMap,s}J(t,r,n,i,o);var c=U(n,a,o);return z(),c},t.parseIsolatedEntityName=function(e,t){J("",e,t,void 0,1),xe();var r=Ct(!0),n=1===ve()&&!S.length;return z(),n?r:void 0},t.parseJsonText=j;var K,q,W,H=!1;function G(t){e.Debug.assert(!t.jsDoc);var r=e.mapDefined(e.getJSDocCommentRanges(t,h),(function(e){return W.parseJSDocComment(t,e.pos,e.end-e.pos)}));return r.length&&(t.jsDoc=r),H&&(H=!1,t.flags|=134217728),t}function X(t){e.setParentRecursive(t,!0)}function Q(t,r,n,i,a,o,c){var l=L.createSourceFile(a,o,c);return e.setTextRangePosWidth(l,0,h.length),function(t){t.externalModuleIndicator=e.forEach(t.statements,Ri)||function(e){return 2097152&e.flags?Bi(e):void 0}(t)}(l),!i&&g(l)&&8388608&l.transformFlags&&(l=function(t){var r=E,n=u.createSyntaxCursor(t);E={currentNode:function(e){var t=n.currentNode(e);return R&&t&&p(t)&&(t.intersectsChange=!0),t}};var i=[],a=S;S=[];for(var o=0,c=f(t.statements,0),l=function(){var r=t.statements[o],n=t.statements[c];e.addRange(i,t.statements,o,c),o=g(t.statements,c);var u=e.findIndex(a,(function(e){return e.start>=r.pos})),l=u>=0?e.findIndex(a,(function(e){return e.start>=n.pos}),u):-1;u>=0&&e.addRange(S,a,u,l>=0?l:void 0),Ne((function(){var e=O;for(O|=32768,s.setTextPos(n.pos),xe();1!==ve();){var r=s.getStartPos(),a=yt(0,Kn);if(i.push(a),r===s.getStartPos()&&xe(),o>=0){var c=t.statements[o];if(a.end===c.pos)break;a.end>c.pos&&(o=g(t.statements,o+1))}}O=e}),2),c=o>=0?f(t.statements,o):-1};-1!==c;)l();if(o>=0){var _=t.statements[o];e.addRange(i,t.statements,o);var d=e.findIndex(a,(function(e){return e.start>=_.pos}));d>=0&&e.addRange(S,a,d)}return E=r,L.updateSourceFile(t,e.setTextRange(L.createNodeArray(i),t.statements));function p(e){return!(32768&e.flags||!(8388608&e.transformFlags))}function f(e,t){for(var r=t;r115}function we(){return 78===ve()||(124!==ve()||!se())&&((130!==ve()||!le())&&ve()>115)}function Ie(t,r,n){return void 0===n&&(n=!0),ve()===t?(n&&xe(),!0):(r?_e(r):_e(e.Diagnostics._0_expected,e.tokenToString(t)),!1)}function Oe(t){return ve()===t?(De(),!0):(_e(e.Diagnostics._0_expected,e.tokenToString(t)),!1)}function Me(e){return ve()===e&&(xe(),!0)}function Le(e){if(ve()===e)return je()}function Re(e){if(ve()===e)return t=me(),r=ve(),De(),Ve(L.createToken(r),t);var t,r}function Be(t,r,n){return Le(t)||Ke(t,!1,r||e.Diagnostics._0_expected,n||e.tokenToString(t))}function je(){var e=me(),t=ve();return xe(),Ve(L.createToken(t),e)}function Je(){return 26===ve()||(19===ve()||1===ve()||s.hasPrecedingLineBreak())}function ze(){return Je()?(26===ve()&&xe(),!0):Ie(26)}function Ue(t,r,n,i){var a=L.createNodeArray(t,i);return e.setTextRangePosEnd(a,r,null!=n?n:s.getStartPos()),a}function Ve(t,r,n){return e.setTextRangePosEnd(t,r,null!=n?n:s.getStartPos()),O&&(t.flags|=O),B&&(B=!1,t.flags|=65536),t}function Ke(t,r,n,i){r?de(s.getStartPos(),0,n,i):n&&_e(n,i);var a=me();return Ve(78===t?L.createIdentifier("",void 0,void 0):e.isTemplateLiteralKind(t)?L.createTemplateLiteralLikeNode(t,"","",void 0):8===t?L.createNumericLiteral("",void 0):10===t?L.createStringLiteral("",void 0):271===t?L.createMissingDeclaration():L.createToken(t),a)}function qe(e){var t=A.get(e);return void 0===t&&A.set(e,t=e),t}function We(t,r,n){if(t){P++;var i=me(),a=ve(),o=qe(s.getTokenValue());return he(),Ve(L.createIdentifier(o,void 0,a),i)}if(79===ve())return _e(n||e.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies),We(!0);if(0===ve()&&s.tryScan((function(){return 78===s.reScanInvalidIdentifier()})))return We(!0);P++;var c=1===ve(),u=s.isReservedWord(),l=s.getTokenText(),_=u?e.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here:e.Diagnostics.Identifier_expected;return Ke(78,c,r||_,l)}function He(e){return We(Pe(),void 0,e)}function Ge(e,t){return We(we(),e,t)}function Xe(t){return We(e.tokenIsIdentifierOrKeyword(ve()),t)}function Qe(){return e.tokenIsIdentifierOrKeyword(ve())||10===ve()||8===ve()}function Ye(e){if(10===ve()||8===ve()){var t=It();return t.text=qe(t.text),t}return e&&22===ve()?function(){var e=me();Ie(22);var t=ie(jr);return Ie(23),Ve(L.createComputedPropertyName(t),e)}():79===ve()?$e():Xe()}function Ze(){return Ye(!0)}function $e(){var e,t,r=me(),n=L.createPrivateIdentifier((e=s.getTokenText(),void 0===(t=F.get(e))&&F.set(e,t=e),t));return xe(),Ve(n,r)}function et(e){return ve()===e&&Fe(rt)}function tt(){return xe(),!s.hasPrecedingLineBreak()&&at()}function rt(){switch(ve()){case 84:return 91===xe();case 92:return xe(),87===ve()?Ae(ot):149===ve()?Ae(it):nt();case 87:return ot();case 123:return tt();case 134:case 146:return xe(),at();default:return tt()}}function nt(){return 41!==ve()&&126!==ve()&&18!==ve()&&at()}function it(){return xe(),nt()}function at(){return 22===ve()||18===ve()||41===ve()||25===ve()||Qe()}function ot(){return xe(),83===ve()||97===ve()||117===ve()||125===ve()&&Ae(Rn)||129===ve()&&Ae(Bn)}function st(t,r){if(vt(t))return!0;switch(t){case 0:case 1:case 3:return!(26===ve()&&r)&&Un();case 2:return 81===ve()||87===ve();case 4:return Ae(nr);case 5:return Ae(_i)||26===ve()&&!r;case 6:return 22===ve()||Qe();case 12:switch(ve()){case 22:case 41:case 25:case 24:return!0;default:return Qe()}case 18:return Qe();case 9:return 22===ve()||25===ve()||Qe();case 7:return 18===ve()?Ae(ct):r?we()&&!dt():Rr()&&!dt();case 8:return Zn();case 10:return 27===ve()||25===ve()||Zn();case 19:return we();case 15:switch(ve()){case 27:case 24:return!0}case 11:return 25===ve()||Br();case 16:return qt(!1);case 17:return qt(!0);case 20:case 21:return 27===ve()||Dr();case 22:return Ci();case 23:return e.tokenIsIdentifierOrKeyword(ve());case 13:return e.tokenIsIdentifierOrKeyword(ve())||18===ve();case 14:return!0}return e.Debug.fail("Non-exhaustive case in 'isListElement'.")}function ct(){if(e.Debug.assert(18===ve()),19===xe()){var t=xe();return 27===t||18===t||93===t||116===t}return!0}function ut(){return xe(),we()}function lt(){return xe(),e.tokenIsIdentifierOrKeyword(ve())}function _t(){return xe(),e.tokenIsIdentifierOrKeywordOrGreaterThan(ve())}function dt(){return(116===ve()||93===ve())&&Ae(pt)}function pt(){return xe(),Br()}function ft(){return xe(),Dr()}function gt(e){if(1===ve())return!0;switch(e){case 1:case 2:case 4:case 5:case 6:case 12:case 9:case 23:return 19===ve();case 3:return 19===ve()||81===ve()||87===ve();case 7:return 18===ve()||93===ve()||116===ve();case 8:return function(){if(Je())return!0;if(Xr(ve()))return!0;if(38===ve())return!0;return!1}();case 19:return 31===ve()||20===ve()||18===ve()||93===ve()||116===ve();case 11:return 21===ve()||26===ve();case 15:case 21:case 10:return 23===ve();case 17:case 16:case 18:return 21===ve()||23===ve();case 20:return 27!==ve();case 22:return 18===ve()||19===ve();case 13:return 31===ve()||43===ve();case 14:return 29===ve()&&Ae(Pi);default:return!1}}function mt(e,t){var r=w;w|=1<=0)}function Dt(t){return 6===t?e.Diagnostics.An_enum_member_name_must_be_followed_by_a_or:void 0}function St(){var e=Ue([],me());return e.isMissingList=!0,e}function Tt(e,t,r,n){if(Ie(r)){var i=xt(e,t);return Ie(n),i}return St()}function Ct(e,t){for(var r=me(),n=e?Xe(t):Ge(t),i=me();Me(24);){if(29===ve()){n.jsdocDotPos=i;break}i=me(),n=Ve(L.createQualifiedName(n,kt(e,!1)),r)}return n}function Et(e,t){return Ve(L.createQualifiedName(e,t),e.pos)}function kt(t,r){if(s.hasPrecedingLineBreak()&&e.tokenIsIdentifierOrKeyword(ve())&&Ae(Ln))return Ke(78,!0,e.Diagnostics.Identifier_expected);if(79===ve()){var n=$e();return r?n:Ke(78,!0,e.Diagnostics.Identifier_expected)}return t?Xe():Ge()}function Nt(e){var t=me();return Ve(L.createTemplateExpression(Ot(e),function(e){var t,r=me(),n=[];do{t=wt(e),n.push(t)}while(16===t.literal.kind);return Ue(n,r)}(e)),t)}function At(){var e=me();return Ve(L.createTemplateLiteralType(Ot(!1),function(){var e,t=me(),r=[];do{e=Ft(),r.push(e)}while(16===e.literal.kind);return Ue(r,t)}()),e)}function Ft(){var e=me();return Ve(L.createTemplateLiteralTypeSpan(Or(),Pt(!1)),e)}function Pt(t){return 19===ve()?(function(e){k=s.reScanTemplateToken(e)}(t),r=Mt(ve()),e.Debug.assert(16===r.kind||17===r.kind,"Template fragment has wrong token kind"),r):Be(17,e.Diagnostics._0_expected,e.tokenToString(19));var r}function wt(e){var t=me();return Ve(L.createTemplateSpan(ie(jr),Pt(e)),t)}function It(){return Mt(ve())}function Ot(t){t&&Te();var r=Mt(ve());return e.Debug.assert(15===r.kind,"Template head has wrong token kind"),r}function Mt(t){var r=me(),n=e.isTemplateLiteralKind(t)?L.createTemplateLiteralLikeNode(t,s.getTokenValue(),function(e){var t=14===e||17===e,r=s.getTokenText();return r.substring(1,r.length-(s.isUnterminated()?0:t?1:2))}(t),2048&s.getTokenFlags()):8===t?L.createNumericLiteral(s.getTokenValue(),s.getNumericLiteralFlags()):10===t?L.createStringLiteral(s.getTokenValue(),void 0,s.hasExtendedUnicodeEscape()):e.isLiteralKind(t)?L.createLiteralLikeNode(t,s.getTokenValue()):e.Debug.fail();return s.hasExtendedUnicodeEscape()&&(n.hasExtendedUnicodeEscape=!0),s.isUnterminated()&&(n.isUnterminated=!0),xe(),Ve(n,r)}function Lt(){return Ct(!0,e.Diagnostics.Type_expected)}function Rt(){if(!s.hasPrecedingLineBreak()&&29===Ce())return Tt(20,Or,29,31)}function Bt(){var e=me();return Ve(L.createTypeReferenceNode(Lt(),Rt()),e)}function jt(t){switch(t.kind){case 173:return e.nodeIsMissing(t.typeName);case 174:case 175:var r=t,n=r.parameters,i=r.type;return!!n.isMissingList||jt(i);case 186:return jt(t.type);default:return!1}}function Jt(){var e=me();return xe(),Ve(L.createThisTypeNode(),e)}function zt(){var e,t=me();return 107!==ve()&&102!==ve()||(e=Xe(),Ie(58)),Ve(L.createParameterDeclaration(void 0,void 0,void 0,e,void 0,Ut(),void 0),t)}function Ut(){s.setInJSDocType(!0);var e=me();if(Me(139)){var t=L.createJSDocNamepathType(void 0);e:for(;;)switch(ve()){case 19:case 1:case 27:case 5:break e;default:De()}return s.setInJSDocType(!1),Ve(t,e)}var r=Me(25),n=wr();return s.setInJSDocType(!1),r&&(n=Ve(L.createJSDocVariadicType(n),e)),62===ve()?(xe(),Ve(L.createJSDocOptionalType(n),e)):n}function Vt(){var e,t,r=me(),n=Ge();Me(93)&&(Dr()||!Br()?e=Or():t=$r());var i=Me(62)?Or():void 0,a=L.createTypeParameterDeclaration(n,e,i);return a.expression=t,Ve(a,r)}function Kt(){if(29===ve())return Tt(19,Vt,29,31)}function qt(t){return 25===ve()||Zn()||e.isModifierKind(ve())||59===ve()||Dr(!t)}function Wt(){return Gt(!0)}function Ht(){return Gt(!1)}function Gt(t){var r=me(),n=ye();if(107===ve())return V(Ve(L.createParameterDeclaration(void 0,void 0,void 0,We(!0),void 0,Lr(),void 0),r),n);var i=t?ae(fi):fi(),a=R;R=!1;var o=mi(),s=V(Ve(L.createParameterDeclaration(i,o,Le(25),function(t){var r=$n(e.Diagnostics.Private_identifiers_cannot_be_used_as_parameters);return 0===e.getFullWidth(r)&&!e.some(t)&&e.isModifierKind(ve())&&xe(),r}(o),Le(57),Lr(),Jr()),r),n);return R=a,s}function Xt(t,r){if(function(t,r){if(38===t)return Ie(t),!0;if(Me(58))return!0;if(r&&38===ve())return _e(e.Diagnostics._0_expected,e.tokenToString(58)),xe(),!0;return!1}(t,r))return wr()}function Qt(e){var t=se(),r=le();$(!!(1&e)),te(!!(2&e));var n=32&e?xt(17,zt):xt(16,r?Wt:Ht);return $(t),te(r),n}function Yt(e){if(!Ie(20))return St();var t=Qt(e);return Ie(21),t}function Zt(){Me(27)||ze()}function $t(e){var t=me(),r=ye();170===e&&Ie(102);var n=Kt(),i=Yt(4),a=Xt(58,!0);return Zt(),V(Ve(169===e?L.createCallSignature(n,i,a):L.createConstructSignature(n,i,a),t),r)}function er(){return 22===ve()&&Ae(tr)}function tr(){if(xe(),25===ve()||23===ve())return!0;if(e.isModifierKind(ve())){if(xe(),we())return!0}else{if(!we())return!1;xe()}return 58===ve()||27===ve()||57===ve()&&(xe(),58===ve()||27===ve()||23===ve())}function rr(e,t,r,n){var i=Tt(16,Ht,22,23),a=Lr();return Zt(),V(Ve(L.createIndexSignature(r,n,i,a),e),t)}function nr(){if(20===ve()||29===ve())return!0;for(var t=!1;e.isModifierKind(ve());)t=!0,xe();return 22===ve()||(Qe()&&(t=!0,xe()),!!t&&(20===ve()||29===ve()||57===ve()||58===ve()||27===ve()||Je()))}function ir(){if(20===ve()||29===ve())return $t(169);if(102===ve()&&Ae(ar))return $t(170);var e=me(),t=ye(),r=mi();return er()?rr(e,t,void 0,r):function(e,t,r){var n,i=Ze(),a=Le(57);if(20===ve()||29===ve()){var o=Kt(),s=Yt(4),c=Xt(58,!0);n=L.createMethodSignature(r,i,a,o,s,c)}else c=Lr(),n=L.createPropertySignature(r,i,a,c),62===ve()&&(n.initializer=Jr());return Zt(),V(Ve(n,e),t)}(e,t,r)}function ar(){return xe(),20===ve()||29===ve()}function or(){return 24===xe()}function sr(){switch(xe()){case 20:case 29:case 24:return!0}return!1}function cr(){var e;return Ie(18)?(e=mt(4,ir),Ie(19)):e=St(),e}function ur(){return xe(),39===ve()||40===ve()?142===xe():(142===ve()&&xe(),22===ve()&&ut()&&100===xe())}function lr(){var e,t=me();Ie(18),142!==ve()&&39!==ve()&&40!==ve()||142!==(e=je()).kind&&Ie(142),Ie(22);var r,n=function(){var e=me(),t=Xe();Ie(100);var r=Or();return Ve(L.createTypeParameterDeclaration(t,r,void 0),e)}(),i=Me(126)?Or():void 0;Ie(23),57!==ve()&&39!==ve()&&40!==ve()||57!==(r=je()).kind&&Ie(57);var a=Lr();return ze(),Ie(19),Ve(L.createMappedTypeNode(e,n,i,r,a),t)}function _r(){var t=me();if(Me(25))return Ve(L.createRestTypeNode(Or()),t);var r=Or();if(e.isJSDocNullableType(r)&&r.pos===r.type.pos){var n=L.createOptionalTypeNode(r.type);return e.setTextRange(n,r),n.flags=r.flags,n}return r}function dr(){return 58===xe()||57===ve()&&58===xe()}function pr(){return 25===ve()?e.tokenIsIdentifierOrKeyword(xe())&&dr():e.tokenIsIdentifierOrKeyword(ve())&&dr()}function fr(){if(Ae(pr)){var e=me(),t=ye(),r=Le(25),n=Xe(),i=Le(57);Ie(58);var a=_r();return V(Ve(L.createNamedTupleMember(r,n,i,a),e),t)}return _r()}function gr(){var e=me(),t=ye(),r=function(){var e;if(125===ve()){var t=me();xe(),e=Ue([Ve(L.createToken(125),t)],t)}return e}(),n=Me(102),i=Kt(),a=Yt(4),o=Xt(38,!1),s=n?L.createConstructorTypeNode(r,i,a,o):L.createFunctionTypeNode(i,a,o);return n||(s.modifiers=r),V(Ve(s,e),t)}function mr(){var e=je();return 24===ve()?void 0:e}function yr(e){var t=me();e&&xe();var r=109===ve()||94===ve()||103===ve()?je():Mt(ve());return e&&(r=Ve(L.createPrefixUnaryExpression(40,r),t)),Ve(L.createLiteralTypeNode(r),t)}function vr(){return xe(),99===ve()}function hr(){f|=1048576;var e=me(),t=Me(111);Ie(99),Ie(20);var r=Or();Ie(21);var n=Me(24)?Lt():void 0,i=Rt();return Ve(L.createImportTypeNode(r,n,i,t),e)}function br(){return xe(),8===ve()||9===ve()}function xr(){switch(ve()){case 128:case 152:case 147:case 144:case 155:case 148:case 131:case 150:case 141:case 145:return Fe(mr)||Bt();case 65:s.reScanAsteriskEqualsToken();case 41:return r=me(),xe(),Ve(L.createJSDocAllType(),r);case 60:s.reScanQuestionToken();case 57:return function(){var e=me();return xe(),27===ve()||19===ve()||21===ve()||31===ve()||62===ve()||51===ve()?Ve(L.createJSDocUnknownType(),e):Ve(L.createJSDocNullableType(Or()),e)}();case 97:return function(){var e=me(),t=ye();if(Ae(Fi)){xe();var r=Yt(36),n=Xt(58,!1);return V(Ve(L.createJSDocFunctionType(r,n),e),t)}return Ve(L.createTypeReferenceNode(Xe(),void 0),e)}();case 53:return function(){var e=me();return xe(),Ve(L.createJSDocNonNullableType(xr()),e)}();case 14:case 10:case 8:case 9:case 109:case 94:case 103:return yr();case 40:return Ae(br)?yr(!0):Bt();case 113:return je();case 107:var e=Jt();return 137!==ve()||s.hasPrecedingLineBreak()?e:(t=e,xe(),Ve(L.createTypePredicateNode(void 0,t,Or()),t.pos));case 111:return Ae(vr)?hr():function(){var e=me();return Ie(111),Ve(L.createTypeQueryNode(Ct(!0)),e)}();case 18:return Ae(ur)?lr():function(){var e=me();return Ve(L.createTypeLiteralNode(cr()),e)}();case 22:return function(){var e=me();return Ve(L.createTupleTypeNode(Tt(21,fr,22,23)),e)}();case 20:return function(){var e=me();Ie(20);var t=Or();return Ie(21),Ve(L.createParenthesizedType(t),e)}();case 99:return hr();case 127:return Ae(Ln)?function(){var e=me(),t=Be(127),r=107===ve()?Jt():Ge(),n=Me(137)?Or():void 0;return Ve(L.createTypePredicateNode(t,r,n),e)}():Bt();case 15:return At();default:return Bt()}var t,r}function Dr(e){switch(ve()){case 128:case 152:case 147:case 144:case 155:case 131:case 142:case 148:case 151:case 113:case 150:case 103:case 107:case 111:case 141:case 18:case 22:case 29:case 51:case 50:case 102:case 10:case 8:case 9:case 109:case 94:case 145:case 41:case 57:case 53:case 25:case 135:case 99:case 127:case 14:case 15:return!0;case 97:return!e;case 40:return!e&&Ae(br);case 20:return!e&&Ae(Sr);default:return we()}}function Sr(){return xe(),21===ve()||qt(!1)||Dr()}function Tr(){var e=me();return Ie(135),Ve(L.createInferTypeNode(function(){var e=me();return Ve(L.createTypeParameterDeclaration(Ge(),void 0,void 0),e)}()),e)}function Cr(){var e=ve();switch(e){case 138:case 151:case 142:return function(e){var t=me();return Ie(e),Ve(L.createTypeOperatorNode(e,Cr()),t)}(e);case 135:return Tr()}return function(){for(var e=me(),t=xr();!s.hasPrecedingLineBreak();)switch(ve()){case 53:xe(),t=Ve(L.createJSDocNonNullableType(t),e);break;case 57:if(Ae(ft))return t;xe(),t=Ve(L.createJSDocNullableType(t),e);break;case 22:if(Ie(22),Dr()){var r=Or();Ie(23),t=Ve(L.createIndexedAccessTypeNode(t,r),e)}else Ie(23),t=Ve(L.createArrayTypeNode(t),e);break;default:return t}return t}()}function Er(t){if(Fr()){var r=gr();return fe(r,e.isFunctionTypeNode(r)?t?e.Diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_a_union_type:e.Diagnostics.Function_type_notation_must_be_parenthesized_when_used_in_an_intersection_type:t?e.Diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_a_union_type:e.Diagnostics.Constructor_type_notation_must_be_parenthesized_when_used_in_an_intersection_type),r}}function kr(e,t,r){var n=me(),i=51===e,a=Me(e),o=a&&Er(i)||t();if(ve()===e||a){for(var s=[o];Me(e);)s.push(Er(i)||t());o=Ve(r(Ue(s,n)),n)}return o}function Nr(){return kr(50,Cr,L.createIntersectionTypeNode)}function Ar(){return xe(),102===ve()}function Fr(){return 29===ve()||(!(20!==ve()||!Ae(Pr))||(102===ve()||125===ve()&&Ae(Ar)))}function Pr(){if(xe(),21===ve()||25===ve())return!0;if(function(){if(e.isModifierKind(ve())&&mi(),we()||107===ve())return xe(),!0;if(22===ve()||18===ve()){var t=S.length;return $n(),t===S.length}return!1}()){if(58===ve()||27===ve()||57===ve()||62===ve())return!0;if(21===ve()&&(xe(),38===ve()))return!0}return!1}function wr(){var e=me(),t=we()&&Fe(Ir),r=Or();return t?Ve(L.createTypePredicateNode(void 0,t,r),e):r}function Ir(){var e=Ge();if(137===ve()&&!s.hasPrecedingLineBreak())return xe(),e}function Or(){return re(40960,Mr)}function Mr(e){if(Fr())return gr();var t=me(),r=kr(51,Nr,L.createUnionTypeNode);if(!e&&!s.hasPrecedingLineBreak()&&Me(93)){var n=Mr(!0);Ie(57);var i=Mr();Ie(58);var a=Mr();return Ve(L.createConditionalTypeNode(r,n,i,a),t)}return r}function Lr(){return Me(58)?Or():void 0}function Rr(){switch(ve()){case 107:case 105:case 103:case 109:case 94:case 8:case 9:case 10:case 14:case 15:case 20:case 22:case 18:case 97:case 83:case 102:case 43:case 67:case 78:return!0;case 99:return Ae(sr);default:return we()}}function Br(){if(Rr())return!0;switch(ve()){case 39:case 40:case 54:case 53:case 88:case 111:case 113:case 45:case 46:case 29:case 130:case 124:case 79:return!0;default:return!!function(){if(ce()&&100===ve())return!1;return e.getBinaryOperatorPrecedence(ve())>0}()||we()}}function jr(){var e=ue();e&&ee(!1);for(var t,r=me(),n=zr();t=Le(27);)n=Yr(n,t,zr(),r);return e&&ee(!0),n}function Jr(){return Me(62)?zr():void 0}function zr(){if(function(){if(124===ve())return!!se()||Ae(jn);return!1}())return function(){var e=me();return xe(),s.hasPrecedingLineBreak()||41!==ve()&&!Br()?Ve(L.createYieldExpression(void 0,void 0),e):Ve(L.createYieldExpression(Le(41),zr()),e)}();var t=function(){var e=function(){if(20===ve()||29===ve()||129===ve())return Ae(Vr);if(38===ve())return 1;return 0}();if(0===e)return;return 1===e?Wr(!0):Fe(Kr)}()||function(){if(129===ve()&&1===Ae(qr)){var e=me(),t=yi();return Ur(e,Gr(0),t)}return}();if(t)return t;var r=me(),n=Gr(0);return 78===n.kind&&38===ve()?Ur(r,n,void 0):e.isLeftHandSideExpression(n)&&e.isAssignmentOperator(Se())?Yr(n,je(),zr(),r):function(t,r){var n,i=Le(57);if(!i)return t;return Ve(L.createConditionalExpression(t,i,re(c,zr),n=Be(58),e.nodeIsPresent(n)?zr():Ke(78,!1,e.Diagnostics._0_expected,e.tokenToString(58))),r)}(n,r)}function Ur(t,r,n){e.Debug.assert(38===ve(),"parseSimpleArrowFunctionExpression should only have been called if we had a =>");var i=L.createParameterDeclaration(void 0,void 0,void 0,r,void 0,void 0,void 0);Ve(i,r.pos);var a=Ue([i],i.pos,i.end),o=Be(38),s=Hr(!!n);return G(Ve(L.createArrowFunction(n,void 0,a,void 0,o,s),t))}function Vr(){if(129===ve()){if(xe(),s.hasPrecedingLineBreak())return 0;if(20!==ve()&&29!==ve())return 0}var t=ve(),r=xe();if(20===t){if(21===r)switch(xe()){case 38:case 58:case 18:return 1;default:return 0}if(22===r||18===r)return 2;if(25===r)return 1;if(e.isModifierKind(r)&&129!==r&&Ae(ut))return 1;if(!we()&&107!==r)return 0;switch(xe()){case 58:return 1;case 57:return xe(),58===ve()||27===ve()||62===ve()||21===ve()?1:0;case 27:case 62:case 21:return 2}return 0}return e.Debug.assert(29===t),we()?1===D?Ae((function(){var e=xe();if(93===e)switch(xe()){case 62:case 31:return!1;default:return!0}else if(27===e)return!0;return!1}))?1:0:2:0}function Kr(){var t=s.getTokenPos();if(!(null==I?void 0:I.has(t))){var r=Wr(!1);return r||(I||(I=new e.Set)).add(t),r}}function qr(){if(129===ve()){if(xe(),s.hasPrecedingLineBreak()||38===ve())return 0;var e=Gr(0);if(!s.hasPrecedingLineBreak()&&78===e.kind&&38===ve())return 1}return 0}function Wr(t){var r,n=me(),i=ye(),a=yi(),o=e.some(a,e.isAsyncModifier)?2:0,s=Kt();if(Ie(20)){if(r=Qt(o),!Ie(21)&&!t)return}else{if(!t)return;r=St()}var c=Xt(58,!1);if(!c||t||!jt(c)){var u=c&&e.isJSDocFunctionType(c);if(t||38===ve()||!u&&18===ve()){var l=ve(),_=Be(38),d=38===l||18===l?Hr(e.some(a,e.isAsyncModifier)):Ge();return V(Ve(L.createArrowFunction(a,s,r,c,_,d),n),i)}}}function Hr(e){if(18===ve())return Fn(e?2:0);if(26!==ve()&&97!==ve()&&83!==ve()&&Un()&&(18===ve()||97===ve()||83===ve()||59===ve()||!Br()))return Fn(16|(e?2:0));var t=R;R=!1;var r=e?ae(zr):re(32768,zr);return R=t,r}function Gr(e){var t=me();return Qr(e,$r(),t)}function Xr(e){return 100===e||156===e}function Qr(t,r,n){for(;;){Se();var i=e.getBinaryOperatorPrecedence(ve());if(!(42===ve()?i>=t:i>t))break;if(100===ve()&&ce())break;if(126===ve()){if(s.hasPrecedingLineBreak())break;xe(),a=r,o=Or(),r=Ve(L.createAsExpression(a,o),a.pos)}else r=Yr(r,je(),Gr(i),n)}var a,o;return r}function Yr(e,t,r,n){return Ve(L.createBinaryExpression(e,t,r),n)}function Zr(){var e=me();return Ve(L.createPrefixUnaryExpression(ve(),be(en)),e)}function $r(){if(function(){switch(ve()){case 39:case 40:case 54:case 53:case 88:case 111:case 113:case 130:return!1;case 29:if(1!==D)return!1;default:return!0}}()){var t=me(),r=tn();return 42===ve()?Qr(e.getBinaryOperatorPrecedence(ve()),r,t):r}var n=ve(),i=en();if(42===ve()){t=e.skipTrivia(h,i.pos);var a=i.end;206===i.kind?pe(t,a,e.Diagnostics.A_type_assertion_expression_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses):pe(t,a,e.Diagnostics.An_unary_expression_with_the_0_operator_is_not_allowed_in_the_left_hand_side_of_an_exponentiation_expression_Consider_enclosing_the_expression_in_parentheses,e.tokenToString(n))}return i}function en(){switch(ve()){case 39:case 40:case 54:case 53:return Zr();case 88:return e=me(),Ve(L.createDeleteExpression(be(en)),e);case 111:return function(){var e=me();return Ve(L.createTypeOfExpression(be(en)),e)}();case 113:return function(){var e=me();return Ve(L.createVoidExpression(be(en)),e)}();case 29:return function(){var e=me();Ie(29);var t=Or();Ie(31);var r=en();return Ve(L.createTypeAssertion(t,r),e)}();case 130:if(130===ve()&&(le()||Ae(jn)))return function(){var e=me();return Ve(L.createAwaitExpression(be(en)),e)}();default:return tn()}var e}function tn(){if(45===ve()||46===ve()){var t=me();return Ve(L.createPrefixUnaryExpression(ve(),be(rn)),t)}if(1===D&&29===ve()&&Ae(_t))return an(!0);var r=rn();if(e.Debug.assert(e.isLeftHandSideExpression(r)),(45===ve()||46===ve())&&!s.hasPrecedingLineBreak()){var n=ve();return xe(),Ve(L.createPostfixUnaryExpression(r,n),r.pos)}return r}function rn(){var t,r=me();return 99===ve()?Ae(ar)?(f|=1048576,t=je()):Ae(or)?(xe(),xe(),t=Ve(L.createMetaProperty(99,Xe()),r),f|=2097152):t=nn():t=105===ve()?function(){var t=me(),r=je();if(29===ve()){var n=me();void 0!==Fe(bn)&&pe(n,me(),e.Diagnostics.super_may_not_use_type_arguments)}if(20===ve()||24===ve()||22===ve())return r;return Be(24,e.Diagnostics.super_must_be_followed_by_an_argument_list_or_member_access),Ve(L.createPropertyAccessExpression(r,kt(!0,!0)),t)}():nn(),vn(r,t)}function nn(){return gn(me(),xn(),!0)}function an(t,r){var n,i=me(),a=function(e){var t=me();if(Ie(29),31===ve())return ke(),Ve(L.createJsxOpeningFragment(),t);var r,n=cn(),i=0==(131072&O)?Ti():void 0,a=function(){var e=me();return Ve(L.createJsxAttributes(mt(13,ln)),e)}();31===ve()?(ke(),r=L.createJsxOpeningElement(n,i,a)):(Ie(43),e?Ie(31):(Ie(31,void 0,!1),ke()),r=L.createJsxSelfClosingElement(n,i,a));return Ve(r,t)}(t);if(275===a.kind){var o=sn(a),s=function(e){var t=me();Ie(30);var r=cn();e?Ie(31):(Ie(31,void 0,!1),ke());return Ve(L.createJsxClosingElement(r),t)}(t);C(a.tagName,s.tagName)||fe(s,e.Diagnostics.Expected_corresponding_JSX_closing_tag_for_0,e.getTextOfNodeFromSourceText(h,a.tagName)),n=Ve(L.createJsxElement(a,o,s),i)}else 278===a.kind?n=Ve(L.createJsxFragment(a,sn(a),function(t){var r=me();Ie(30),e.tokenIsIdentifierOrKeyword(ve())&&fe(cn(),e.Diagnostics.Expected_corresponding_closing_tag_for_JSX_fragment);t?Ie(31):(Ie(31,void 0,!1),ke());return Ve(L.createJsxJsxClosingFragment(),r)}(t)),i):(e.Debug.assert(274===a.kind),n=a);if(t&&29===ve()){var c=void 0===r?n.pos:r,u=Fe((function(){return an(!0,c)}));if(u){var l=Ke(27,!1);return e.setTextRangePosWidth(l,u.pos,0),pe(e.skipTrivia(h,c),u.end,e.Diagnostics.JSX_expressions_must_have_one_parent_element),Ve(L.createBinaryExpression(n,l,u),i)}}return n}function on(t,r){switch(r){case 1:if(e.isJsxOpeningFragment(t))fe(t,e.Diagnostics.JSX_fragment_has_no_corresponding_closing_tag);else{var n=t.tagName;pe(e.skipTrivia(h,n.pos),n.end,e.Diagnostics.JSX_element_0_has_no_corresponding_closing_tag,e.getTextOfNodeFromSourceText(h,t.tagName))}return;case 30:case 7:return;case 11:case 12:return i=me(),a=L.createJsxText(s.getTokenValue(),12===k),k=s.scanJsxToken(),Ve(a,i);case 18:return un(!1);case 29:return an(!1);default:return e.Debug.assertNever(r)}var i,a}function sn(e){var t=[],r=me(),n=w;for(w|=16384;;){var i=on(e,k=s.reScanJsxToken());if(!i)break;t.push(i)}return w=n,Ue(t,r)}function cn(){var e=me();Ee();for(var t=107===ve()?je():Xe();Me(24);)t=Ve(L.createPropertyAccessExpression(t,kt(!0,!1)),e);return t}function un(e){var t,r,n=me();if(Ie(18))return 19!==ve()&&(t=Le(25),r=jr()),e?Ie(19):Ie(19,void 0,!1)&&ke(),Ve(L.createJsxExpression(t,r),n)}function ln(){if(18===ve())return function(){var e=me();Ie(18),Ie(25);var t=jr();return Ie(19),Ve(L.createJsxSpreadAttribute(t),e)}();Ee();var e=me();return Ve(L.createJsxAttribute(Xe(),62!==ve()?void 0:10===(k=s.scanJsxAttributeValue())?It():un(!0)),e)}function _n(){return xe(),e.tokenIsIdentifierOrKeyword(ve())||22===ve()||mn()}function dn(t){if(32&t.flags)return!0;if(e.isNonNullExpression(t)){for(var r=t.expression;e.isNonNullExpression(r)&&!(32&r.flags);)r=r.expression;if(32&r.flags){for(;e.isNonNullExpression(t);)t.flags|=32,t=t.expression;return!0}}return!1}function pn(t,r,n){var i=kt(!0,!0),a=n||dn(r),o=a?L.createPropertyAccessChain(r,n,i):L.createPropertyAccessExpression(r,i);return a&&e.isPrivateIdentifier(o.name)&&fe(o.name,e.Diagnostics.An_optional_chain_cannot_contain_private_identifiers),Ve(o,t)}function fn(t,r,n){var i;if(23===ve())i=Ke(78,!0,e.Diagnostics.An_element_access_expression_should_take_an_argument);else{var a=ie(jr);e.isStringOrNumericLiteralLike(a)&&(a.text=qe(a.text)),i=a}return Ie(23),Ve(n||dn(r)?L.createElementAccessChain(r,n,i):L.createElementAccessExpression(r,i),t)}function gn(t,r,n){for(;;){var i=void 0,a=!1;if(n&&28===ve()&&Ae(_n)?(i=Be(28),a=e.tokenIsIdentifierOrKeyword(ve())):a=Me(24),a)r=pn(t,r,i);else if(i||53!==ve()||s.hasPrecedingLineBreak())if(!i&&ue()||!Me(22)){if(!mn())return r;r=yn(t,r,i,void 0)}else r=fn(t,r,i);else xe(),r=Ve(L.createNonNullExpression(r),t)}}function mn(){return 14===ve()||15===ve()}function yn(e,t,r,n){var i=L.createTaggedTemplateExpression(t,n,14===ve()?(Te(),It()):Nt(!0));return(r||32&t.flags)&&(i.flags|=32),i.questionDotToken=r,Ve(i,e)}function vn(t,r){for(;;){r=gn(t,r,!0);var n=Le(28);if(0!=(131072&O)||29!==ve()&&47!==ve()){if(20===ve()){a=hn();r=Ve(n||dn(r)?L.createCallChain(r,n,void 0,a):L.createCallExpression(r,void 0,a),t);continue}}else{var i=Fe(bn);if(i){if(mn()){r=yn(t,r,n,i);continue}var a=hn();r=Ve(n||dn(r)?L.createCallChain(r,n,i,a):L.createCallExpression(r,i,a),t);continue}}if(n){var o=Ke(78,!1,e.Diagnostics.Identifier_expected);r=Ve(L.createPropertyAccessChain(r,n,o),t)}break}return r}function hn(){Ie(20);var e=xt(11,Sn);return Ie(21),e}function bn(){if(0==(131072&O)&&29===Ce()){xe();var e=xt(20,Or);if(Ie(31))return e&&function(){switch(ve()){case 20:case 14:case 15:case 24:case 21:case 23:case 58:case 26:case 57:case 34:case 36:case 35:case 37:case 55:case 56:case 60:case 52:case 50:case 51:case 19:case 1:return!0;case 27:case 18:default:return!1}}()?e:void 0}}function xn(){switch(ve()){case 8:case 9:case 10:case 14:return It();case 107:case 105:case 103:case 109:case 94:return je();case 20:return function(){var e=me(),t=ye();Ie(20);var r=ie(jr);return Ie(21),V(Ve(L.createParenthesizedExpression(r),e),t)}();case 22:return Tn();case 18:return En();case 129:if(!Ae(Bn))break;return kn();case 83:return bi(me(),ye(),void 0,void 0,221);case 97:return kn();case 102:return function(){var t=me();if(Ie(102),Me(24)){var r=Xe();return Ve(L.createMetaProperty(102,r),t)}var n,i,a=me(),o=xn();for(;;){o=gn(a,o,!1),n=Fe(bn),mn()&&(e.Debug.assert(!!n,"Expected a type argument list; all plain tagged template starts should be consumed in 'parseMemberExpressionRest'"),o=yn(a,o,void 0,n),n=void 0);break}20===ve()?i=hn():n&&pe(t,s.getStartPos(),e.Diagnostics.A_new_expression_with_type_arguments_must_always_be_followed_by_a_parenthesized_argument_list);return Ve(L.createNewExpression(o,n,i),t)}();case 43:case 67:if(13===(k=s.reScanSlashToken()))return It();break;case 15:return Nt(!1)}return Ge(e.Diagnostics.Expression_expected)}function Dn(){return 25===ve()?function(){var e=me();Ie(25);var t=zr();return Ve(L.createSpreadElement(t),e)}():27===ve()?Ve(L.createOmittedExpression(),me()):zr()}function Sn(){return re(c,Dn)}function Tn(){var e=me();Ie(22);var t=s.hasPrecedingLineBreak(),r=xt(15,Dn);return Ie(23),Ve(L.createArrayLiteralExpression(r,t),e)}function Cn(){var e=me(),t=ye();if(Le(25)){var r=zr();return V(Ve(L.createSpreadAssignment(r),e),t)}var n=fi(),i=mi();if(et(134))return li(e,t,n,i,167);if(et(146))return li(e,t,n,i,168);var a,o=Le(41),s=we(),c=Ze(),u=Le(57),l=Le(53);if(o||20===ve()||29===ve())return si(e,t,n,i,o,c,u,l);if(s&&58!==ve()){var _=Le(62),d=_?ie(zr):void 0;(a=L.createShorthandPropertyAssignment(c,d)).equalsToken=_}else{Ie(58);var p=ie(zr);a=L.createPropertyAssignment(c,p)}return a.decorators=n,a.modifiers=i,a.questionToken=u,a.exclamationToken=l,V(Ve(a,e),t)}function En(){var t=me(),r=s.getTokenPos();Ie(18);var n=s.hasPrecedingLineBreak(),i=xt(12,Cn,!0);if(!Ie(19)){var a=e.lastOrUndefined(S);a&&a.code===e.Diagnostics._0_expected.code&&e.addRelatedInfo(a,e.createDetachedDiagnostic(_,r,1,e.Diagnostics.The_parser_expected_to_find_a_to_match_the_token_here))}return Ve(L.createObjectLiteralExpression(i,n),t)}function kn(){var t=ue();t&&ee(!1);var r=me(),n=ye(),i=mi();Ie(97);var a=Le(41),o=a?1:0,s=e.some(i,e.isAsyncModifier)?2:0,c=o&&s?ne(40960,Nn):o?function(e){return ne(8192,e)}(Nn):s?ae(Nn):Nn(),u=Kt(),l=Yt(o|s),_=Xt(58,!1),d=Fn(o|s);return t&&ee(!0),V(Ve(L.createFunctionExpression(i,a,c,u,l,_,d),r),n)}function Nn(){return Pe()?He():void 0}function An(t,r){var n=me(),i=s.getTokenPos();if(Ie(18,r)||t){var a=s.hasPrecedingLineBreak(),o=mt(1,Kn);if(!Ie(19)){var c=e.lastOrUndefined(S);c&&c.code===e.Diagnostics._0_expected.code&&e.addRelatedInfo(c,e.createDetachedDiagnostic(_,i,1,e.Diagnostics.The_parser_expected_to_find_a_to_match_the_token_here))}return Ve(L.createBlock(o,a),n)}o=St();return Ve(L.createBlock(o,void 0),n)}function Fn(e,t){var r=se();$(!!(1&e));var n=le();te(!!(2&e));var i=R;R=!1;var a=ue();a&&ee(!1);var o=An(!!(16&e),t);return a&&ee(!0),R=i,$(r),te(n),o}function Pn(){var e=me();Ie(96);var t,r,n=Le(130);if(Ie(20),26!==ve()&&(t=112===ve()||118===ve()||84===ve()?ri(!0):ne(4096,jr)),n?Ie(156):Me(156)){var i=ie(zr);Ie(21),r=L.createForOfStatement(n,t,i,Kn())}else if(Me(100)){i=ie(jr);Ie(21),r=L.createForInStatement(t,i,Kn())}else{Ie(26);var a=26!==ve()&&21!==ve()?ie(jr):void 0;Ie(26);var o=21!==ve()?ie(jr):void 0;Ie(21),r=L.createForStatement(t,a,o,Kn())}return Ve(r,e)}function wn(e){var t=me();Ie(241===e?80:85);var r=Je()?void 0:Ge();return ze(),Ve(241===e?L.createBreakStatement(r):L.createContinueStatement(r),t)}function In(){return 81===ve()?function(){var e=me();Ie(81);var t=ie(jr);Ie(58);var r=mt(3,Kn);return Ve(L.createCaseClause(t,r),e)}():function(){var e=me();Ie(87),Ie(58);var t=mt(3,Kn);return Ve(L.createDefaultClause(t),e)}()}function On(){var e=me();Ie(106),Ie(20);var t=ie(jr);Ie(21);var r=function(){var e=me();Ie(18);var t=mt(2,In);return Ie(19),Ve(L.createCaseBlock(t),e)}();return Ve(L.createSwitchStatement(t,r),e)}function Mn(){var e=me();Ie(110);var t,r=An(!1),n=82===ve()?function(){var e,t=me();Ie(82),Me(20)?(e=ti(),Ie(21)):e=void 0;var r=An(!1);return Ve(L.createCatchClause(e,r),t)}():void 0;return n&&95!==ve()||(Ie(95),t=An(!1)),Ve(L.createTryStatement(r,n,t),e)}function Ln(){return xe(),e.tokenIsIdentifierOrKeyword(ve())&&!s.hasPrecedingLineBreak()}function Rn(){return xe(),83===ve()&&!s.hasPrecedingLineBreak()}function Bn(){return xe(),97===ve()&&!s.hasPrecedingLineBreak()}function jn(){return xe(),(e.tokenIsIdentifierOrKeyword(ve())||8===ve()||9===ve()||10===ve())&&!s.hasPrecedingLineBreak()}function Jn(){for(;;)switch(ve()){case 112:case 118:case 84:case 97:case 83:case 91:return!0;case 117:case 149:return xe(),!s.hasPrecedingLineBreak()&&we();case 139:case 140:return Gn();case 125:case 129:case 133:case 120:case 121:case 122:case 142:if(xe(),s.hasPrecedingLineBreak())return!1;continue;case 154:return xe(),18===ve()||78===ve()||92===ve();case 99:return xe(),10===ve()||41===ve()||18===ve()||e.tokenIsIdentifierOrKeyword(ve());case 92:var t=xe();if(149===t&&(t=Ae(xe)),62===t||41===t||18===t||87===t||126===t)return!0;continue;case 123:xe();continue;default:return!1}}function zn(){return Ae(Jn)}function Un(){switch(ve()){case 59:case 26:case 18:case 112:case 118:case 97:case 83:case 91:case 98:case 89:case 114:case 96:case 85:case 80:case 104:case 115:case 106:case 108:case 110:case 86:case 82:case 95:return!0;case 99:return zn()||Ae(sr);case 84:case 92:return zn();case 129:case 133:case 117:case 139:case 140:case 149:case 154:return!0;case 122:case 120:case 121:case 123:case 142:return zn()||!Ae(Ln);default:return Br()}}function Vn(){return xe(),we()||18===ve()||22===ve()}function Kn(){switch(ve()){case 26:return t=me(),Ie(26),Ve(L.createEmptyStatement(),t);case 18:return An(!1);case 112:return ii(me(),ye(),void 0,void 0);case 118:if(Ae(Vn))return ii(me(),ye(),void 0,void 0);break;case 97:return ai(me(),ye(),void 0,void 0);case 83:return hi(me(),ye(),void 0,void 0);case 98:return function(){var e=me();Ie(98),Ie(20);var t=ie(jr);Ie(21);var r=Kn(),n=Me(90)?Kn():void 0;return Ve(L.createIfStatement(t,r,n),e)}();case 89:return function(){var e=me();Ie(89);var t=Kn();Ie(114),Ie(20);var r=ie(jr);return Ie(21),Me(26),Ve(L.createDoStatement(t,r),e)}();case 114:return function(){var e=me();Ie(114),Ie(20);var t=ie(jr);Ie(21);var r=Kn();return Ve(L.createWhileStatement(t,r),e)}();case 96:return Pn();case 85:return wn(240);case 80:return wn(241);case 104:return function(){var e=me();Ie(104);var t=Je()?void 0:ie(jr);return ze(),Ve(L.createReturnStatement(t),e)}();case 115:return function(){var e=me();Ie(115),Ie(20);var t=ie(jr);Ie(21);var r=ne(16777216,Kn);return Ve(L.createWithStatement(t,r),e)}();case 106:return On();case 108:return function(){var e=me();Ie(108);var t=s.hasPrecedingLineBreak()?void 0:ie(jr);return void 0===t&&(P++,t=Ve(L.createIdentifier(""),me())),ze(),Ve(L.createThrowStatement(t),e)}();case 110:case 82:case 95:return Mn();case 86:return function(){var e=me();return Ie(86),ze(),Ve(L.createDebuggerStatement(),e)}();case 59:return Wn();case 129:case 117:case 149:case 139:case 140:case 133:case 84:case 91:case 92:case 99:case 120:case 121:case 122:case 125:case 123:case 142:case 154:if(zn())return Wn()}var t;return function(){var t,r=me(),n=ye(),i=20===ve(),a=ie(jr);return e.isIdentifier(a)&&Me(58)?t=L.createLabeledStatement(a,Kn()):(ze(),t=L.createExpressionStatement(a),i&&(n=!1)),V(Ve(t,r),n)}()}function qn(e){return 133===e.kind}function Wn(){var t=e.some(Ae((function(){return fi(),mi()})),qn);if(t){var r=ne(8388608,(function(){var e=vt(w);if(e)return ht(e)}));if(r)return r}var n=me(),i=ye(),a=fi(),o=mi();if(t){for(var s=0,c=o;s=0),e.Debug.assert(t<=o),e.Debug.assert(o<=a.length),d(a,t)){var c,u,l,p=[];return s.scanRange(t+3,i-5,(function(){var e,r,n,i=1,_=t-(a.lastIndexOf("\n",t)+1)+4;function d(t){e||(e=_),p.push(t),_+=t.length}for(De();J(5););J(4)&&(i=0,_=0);e:for(;;){switch(ve()){case 59:0===i||1===i?(g(p),T(b(_)),i=0,e=void 0):d(s.getTokenText());break;case 4:p.push(s.getTokenText()),i=0,_=0;break;case 41:var m=s.getTokenText();1===i||2===i?(i=2,d(m)):(i=1,_+=m.length);break;case 5:var y=s.getTokenText();2===i?p.push(y):void 0!==e&&_+y.length>e&&p.push(y.slice(e-_)),_+=y.length;break;case 1:break e;default:i=2,d(s.getTokenText())}De()}return f(p),g(p),r=p.length?p.join(""):void 0,n=c&&Ue(c,u,l),Ve(L.createJSDocComment(r,n),t,o)}))}function f(e){for(;e.length&&("\n"===e[0]||"\r"===e[0]);)e.shift()}function g(e){for(;e.length&&""===e[e.length-1].trim();)e.pop()}function m(){for(;;){if(De(),1===ve())return!0;if(5!==ve()&&4!==ve())return!1}}function y(){if(5!==ve()&&4!==ve()||!Ae(m))for(;5===ve()||4===ve();)De()}function v(){if((5===ve()||4===ve())&&Ae(m))return"";for(var e=s.hasPrecedingLineBreak(),t=!1,r="";e&&41===ve()||5===ve()||4===ve();)r+=s.getTokenText(),4===ve()?(e=!0,t=!0,r=""):41===ve()&&(e=!1),De();return t?r:""}function b(t){e.Debug.assert(59===ve());var i=s.getTokenPos();De();var a,u=z(void 0),l=v();switch(u.escapedText){case"author":a=function(e,t,r,n){var i=function(){var e=[],t=!1,r=s.getToken();for(;1!==r&&4!==r;){if(29===r)t=!0;else{if(59===r&&!t)break;if(31===r&&t){e.push(s.getTokenText()),s.setTextPos(s.getTokenPos()+1);break}}e.push(s.getTokenText()),r=De()}return e.join("")}()+(x(e,o,r,n)||"");return Ve(L.createJSDocAuthorTag(t,i||void 0),e)}(i,u,t,l);break;case"implements":a=function(e,t,r,n){var i=F(),a=me();return Ve(L.createJSDocImplementsTag(t,i,x(e,a,r,n)),e,a)}(i,u,t,l);break;case"augments":case"extends":a=function(e,t,r,n){var i=F(),a=me();return Ve(L.createJSDocAugmentsTag(t,i,x(e,a,r,n)),e,a)}(i,u,t,l);break;case"class":case"constructor":a=w(i,L.createJSDocClassTag,u,t,l);break;case"public":a=w(i,L.createJSDocPublicTag,u,t,l);break;case"private":a=w(i,L.createJSDocPrivateTag,u,t,l);break;case"protected":a=w(i,L.createJSDocProtectedTag,u,t,l);break;case"readonly":a=w(i,L.createJSDocReadonlyTag,u,t,l);break;case"deprecated":H=!0,a=w(i,L.createJSDocDeprecatedTag,u,t,l);break;case"this":a=function(e,t,n,i){var a=r(!0);y();var o=me();return Ve(L.createJSDocThisTag(t,a,x(e,o,n,i)),e,o)}(i,u,t,l);break;case"enum":a=function(e,t,n,i){var a=r(!0);y();var o=me();return Ve(L.createJSDocEnumTag(t,a,x(e,o,n,i)),e,o)}(i,u,t,l);break;case"arg":case"argument":case"param":return N(i,u,2,t);case"return":case"returns":a=function(t,r,n,i){e.some(c,e.isJSDocReturnTag)&&pe(r.pos,s.getTokenPos(),e.Diagnostics._0_tag_already_specified,r.escapedText);var a=C(),o=me();return Ve(L.createJSDocReturnTag(r,a,x(t,o,n,i)),t,o)}(i,u,t,l);break;case"template":a=function(e,t,n,i){var a=18===ve()?r():void 0,o=function(){var e=me(),t=[];do{y(),t.push(j()),v()}while(J(27));return Ue(t,e)}(),s=me();return Ve(L.createJSDocTemplateTag(t,a,o,x(e,s,n,i)),e,s)}(i,u,t,l);break;case"type":a=A(i,u,t,l);break;case"typedef":a=function(t,r,n,i){var a,o=C();v();var s=I();y();var c,u=D(n);if(!o||k(o.type)){for(var l=void 0,d=void 0,p=void 0,f=!1;l=Fe((function(){return M(n)}));)if(f=!0,329===l.kind){if(d){_e(e.Diagnostics.A_JSDoc_typedef_comment_may_not_contain_multiple_type_tags);var g=e.lastOrUndefined(S);g&&e.addRelatedInfo(g,e.createDetachedDiagnostic(_,0,0,e.Diagnostics.The_tag_was_first_specified_here));break}d=l}else p=e.append(p,l);if(f){var m=o&&178===o.type.kind,h=L.createJSDocTypeLiteral(p,m);c=(o=d&&d.typeExpression&&!k(d.typeExpression.type)?d.typeExpression:Ve(h,t)).end}}c=c||void 0!==u?me():(null!==(a=null!=s?s:o)&&void 0!==a?a:r).end,u||(u=x(t,c,n,i));return Ve(L.createJSDocTypedefTag(r,o,s,u),t,c)}(i,u,t,l);break;case"callback":a=function(t,r,n,i){var a=I();y();var o=D(n),s=function(t){var r,n,i=me();for(;r=Fe((function(){return R(4,t)}));)n=e.append(n,r);return Ue(n||[],i)}(n),c=Fe((function(){if(J(59)){var e=b(n);if(e&&327===e.kind)return e}})),u=Ve(L.createJSDocSignature(void 0,s,c),t),l=me();o||(o=x(t,l,n,i));return Ve(L.createJSDocCallbackTag(r,u,a,o),t,l)}(i,u,t,l);break;case"see":a=function(e,t,r,i){var a=n(),o=me(),s=void 0!==r&&void 0!==i?x(e,o,r,i):void 0;return Ve(L.createJSDocSeeTag(t,a,s),e,o)}(i,u,t,l);break;default:a=function(e,t,r,n){var i=me();return Ve(L.createJSDocUnknownTag(t,x(e,i,r,n)),e,i)}(i,u,t,l)}return a}function x(e,t,r,n){return n||(r+=t-e),D(r,n.slice(r))}function D(t,r){var n,i=[],a=0,o=!0;function c(e){n||(n=t),i.push(e),t+=e.length}void 0!==r&&(""!==r&&c(r),a=1);var u=ve();e:for(;;){switch(u){case 4:a=0,i.push(s.getTokenText()),t=0;break;case 59:if(3===a||!o&&2===a){i.push(s.getTokenText());break}s.setTextPos(s.getTextPos()-1);case 1:break e;case 5:if(2===a||3===a)c(s.getTokenText());else{var l=s.getTokenText();void 0!==n&&t+l.length>n&&i.push(l.slice(n-t)),t+=l.length}break;case 18:a=2,Ae((function(){return 59===De()&&e.tokenIsIdentifierOrKeyword(De())&&"link"===s.getTokenText()}))&&(c(s.getTokenText()),De(),c(s.getTokenText()),De()),c(s.getTokenText());break;case 61:a=3===a?2:3,c(s.getTokenText());break;case 41:if(0===a){a=1,t+=1;break}default:3!==a&&(a=2),c(s.getTokenText())}o=5===ve(),u=De()}return f(i),g(i),0===i.length?void 0:i.join("")}function T(e){e&&(c?c.push(e):(c=[e],u=e.pos),l=e.end)}function C(){return v(),18===ve()?r():void 0}function E(){var t=J(22);t&&y();var r,n=J(61),i=function(){var e=z();Me(22)&&Ie(23);for(;Me(24);){var t=z();Me(22)&&Ie(23),e=Et(e,t)}return e}();return n&&(Re(r=61)||Ke(r,!1,e.Diagnostics._0_expected,e.tokenToString(r))),t&&(y(),Le(62)&&jr(),Ie(23)),{name:i,isBracketed:t}}function k(t){switch(t.kind){case 145:return!0;case 178:return k(t.elementType);default:return e.isTypeReferenceNode(t)&&e.isIdentifier(t.typeName)&&"Object"===t.typeName.escapedText&&!t.typeArguments}}function N(t,r,n,i){var a=C(),o=!a;v();var s=E(),c=s.name,u=s.isBracketed,l=v();o&&(a=C());var _=x(t,me(),i,l),d=4!==n&&function(t,r,n,i){if(t&&k(t.type)){for(var a=me(),o=void 0,s=void 0;o=Fe((function(){return R(n,i,r)}));)326!==o.kind&&333!==o.kind||(s=e.append(s,o));if(s){var c=Ve(L.createJSDocTypeLiteral(s,178===t.type.kind),a);return Ve(L.createJSDocTypeExpression(c),a)}}}(a,c,n,i);return d&&(a=d,o=!0),Ve(1===n?L.createJSDocPropertyTag(r,c,u,a,o,_):L.createJSDocParameterTag(r,c,u,a,o,_),t)}function A(t,n,i,a){e.some(c,e.isJSDocTypeTag)&&pe(n.pos,s.getTokenPos(),e.Diagnostics._0_tag_already_specified,n.escapedText);var o=r(!0),u=me(),l=void 0!==i&&void 0!==a?x(t,u,i,a):void 0;return Ve(L.createJSDocTypeTag(n,o,l),t,u)}function F(){var e=Me(18),t=me(),r=function(){var e=me(),t=z();for(;Me(24);){var r=z();t=Ve(L.createPropertyAccessExpression(t,r),e)}return t}(),n=Ti(),i=Ve(L.createExpressionWithTypeArguments(r,n),t);return e&&Ie(19),i}function w(e,t,r,n,i){var a=me();return Ve(t(r,x(e,a,n,i)),e,a)}function I(t){var r=s.getTokenPos();if(e.tokenIsIdentifierOrKeyword(ve())){var n=z();if(Me(24)){var i=I(!0);return Ve(L.createModuleDeclaration(void 0,void 0,n,i,t?4:void 0),r)}return t&&(n.isInJSDocNamespace=!0),n}}function O(t,r){for(;!e.isIdentifier(t)||!e.isIdentifier(r);){if(e.isIdentifier(t)||e.isIdentifier(r)||t.right.escapedText!==r.right.escapedText)return!1;t=t.left,r=r.left}return t.escapedText===r.escapedText}function M(e){return R(1,e)}function R(t,r,n){for(var i=!0,a=!1;;)switch(De()){case 59:if(i){var o=B(t,r);return!(o&&(326===o.kind||333===o.kind)&&4!==t&&n&&(e.isIdentifier(o.name)||!O(n,o.name.left)))&&o}a=!1;break;case 4:i=!0,a=!1;break;case 41:a&&(i=!1),a=!0;break;case 78:i=!1;break;case 1:return!1}}function B(t,r){e.Debug.assert(59===ve());var n=s.getStartPos();De();var i,a=z();switch(y(),a.escapedText){case"type":return 1===t&&A(n,a);case"prop":case"property":i=1;break;case"arg":case"argument":case"param":i=6;break;default:return!1}return!!(t&i)&&N(n,a,t,r)}function j(){var t=me(),r=z(e.Diagnostics.Unexpected_token_A_type_parameter_name_was_expected_without_curly_braces);return Ve(L.createTypeParameterDeclaration(r,void 0,void 0),t)}function J(e){return ve()===e&&(De(),!0)}function z(t){if(!e.tokenIsIdentifierOrKeyword(ve()))return Ke(78,!t,t||e.Diagnostics.Identifier_expected);P++;var r=s.getTokenPos(),n=s.getTextPos(),i=ve(),a=qe(s.getTokenValue()),o=Ve(L.createIdentifier(a,void 0,i),r,n);return De(),o}}t.parseJSDocTypeExpressionForTests=function(t,n,i){J("file.js",t,99,void 0,1),s.setText(t,n,i),k=s.scan();var a=r(),o=Q("file.js",99,1,!1,[],L.createToken(1),0),c=e.attachFileToDiagnostics(S,o);return T&&(o.jsDocDiagnostics=e.attachFileToDiagnostics(T,o)),z(),a?{jsDocTypeExpression:a,diagnostics:c}:void 0},t.parseJSDocTypeExpression=r,t.parseJSDocNameReference=n,t.parseIsolatedJSDocComment=function(t,r,n){J("",t,99,void 0,1);var i=ne(4194304,(function(){return o(r,n)})),a={languageVariant:0,text:t},s=e.attachFileToDiagnostics(S,a);return z(),i?{jsDoc:i,diagnostics:s}:void 0},t.parseJSDocComment=function(t,r,n){var i=k,a=S.length,s=B,c=ne(4194304,(function(){return o(r,n)}));return e.setParent(c,t),131072&O&&(T||(T=[]),T.push.apply(T,S)),k=i,S.length=a,B=s,c},function(e){e[e.BeginningOfLine=0]="BeginningOfLine",e[e.SawAsterisk=1]="SawAsterisk",e[e.SavingComments=2]="SavingComments",e[e.SavingBackticks=3]="SavingBackticks"}(i||(i={})),function(e){e[e.Property=1]="Property",e[e.Parameter=2]="Parameter",e[e.CallbackParameter=4]="CallbackParameter"}(a||(a={}))}(W=t.JSDocParser||(t.JSDocParser={}))}(c||(c={})),function(t){function r(t,r,i,o,s,c){return void(r?l(t):u(t));function u(t){var r="";if(c&&n(t)&&(r=o.substring(t.pos,t.end)),t._children&&(t._children=void 0),e.setTextRangePosEnd(t,t.pos+i,t.end+i),c&&n(t)&&e.Debug.assert(r===s.substring(t.pos,t.end)),p(t,u,l),e.hasJSDocNodes(t))for(var _=0,d=t.jsDoc;_=r,"Adjusting an element that was entirely before the change range"),e.Debug.assert(t.pos<=n,"Adjusting an element that was entirely after the change range"),e.Debug.assert(t.pos<=t.end);var o=Math.min(t.pos,i),s=t.end>=n?t.end+a:Math.min(t.end,i);e.Debug.assert(o<=s),t.parent&&(e.Debug.assertGreaterThanOrEqual(o,t.parent.pos),e.Debug.assertLessThanOrEqual(s,t.parent.end)),e.setTextRangePosEnd(t,o,s)}function a(t,r){if(r){var n=t.pos,i=function(t){e.Debug.assert(t.pos>=n),n=t.end};if(e.hasJSDocNodes(t))for(var a=0,o=t.jsDoc;ar),!0;if(a.pos>=i.pos&&(i=a),ri.pos&&(i=a)}return i}function s(t,r,n,i){var a=t.text;if(n&&(e.Debug.assert(a.length-n.span.length+n.newLength===r.length),i||e.Debug.shouldAssert(3))){var o=a.substr(0,n.span.start),s=r.substr(0,n.span.start);e.Debug.assert(o===s);var c=a.substring(e.textSpanEnd(n.span),a.length),u=r.substring(e.textSpanEnd(e.textChangeRangeNewSpan(n)),r.length);e.Debug.assert(c===u)}}function u(t){var r=t.statements,n=0;e.Debug.assert(n=t.pos&&e=t.pos&&e0&&a<=n;a++){var s=o(t,i);e.Debug.assert(s.pos<=i);var c=s.pos;i=Math.max(0,c-1)}var u=e.createTextSpanFromBounds(i,e.textSpanEnd(r.span)),l=r.newLength+(r.span.start-i);return e.createTextChangeRange(u,l)}(t,l);s(t,n,m,_),e.Debug.assert(m.span.start<=l.span.start),e.Debug.assert(e.textSpanEnd(m.span)===e.textSpanEnd(l.span)),e.Debug.assert(e.textSpanEnd(e.textChangeRangeNewSpan(m))===e.textSpanEnd(e.textChangeRangeNewSpan(l)));var y=e.textChangeRangeNewSpan(m).length-m.span.length;!function(t,n,o,s,c,u,l,_){return void d(t);function d(t){if(e.Debug.assert(t.pos<=t.end),t.pos>o)r(t,!1,c,u,l,_);else{var g=t.end;if(g>=n){if(t.intersectsChange=!0,t._children=void 0,i(t,n,o,s,c),p(t,d,f),e.hasJSDocNodes(t))for(var m=0,y=t.jsDoc;mo)r(t,!0,c,u,l,_);else{var a=t.end;if(a>=n){t.intersectsChange=!0,t._children=void 0,i(t,n,o,s,c);for(var p=0,f=t;pi){y();var m={range:{pos:f.pos+a,end:f.end+a},type:g};u=e.append(u,m),c&&e.Debug.assert(o.substring(f.pos,f.end)===s.substring(m.range.pos,m.range.end))}}return y(),u;function y(){l||(l=!0,u?r&&u.push.apply(u,r):u=r)}}(t.commentDirectives,v.commentDirectives,m.span.start,e.textSpanEnd(m.span),y,f,n,_),v},t.createSyntaxCursor=u,function(e){e[e.Value=-1]="Value"}(l||(l={}))}(u||(u={})),e.isDeclarationFileName=m,e.processCommentPragmas=y,e.processPragmasIntoFields=v;var h=new e.Map;function b(e){if(h.has(e))return h.get(e);var t=new RegExp("(\\s"+e+"\\s*=\\s*)('|\")(.+?)\\2","im");return h.set(e,t),t}var x=/^\/\/\/\s*<(\S+)\s.*?\/>/im,D=/^\/\/\/?\s*@(\S+)\s*(.*)\s*$/im;function S(t,r,n){var i=2===r.kind&&x.exec(n);if(i){var a=i[1].toLowerCase(),o=e.commentPragmas[a];if(!(o&&1&o.kind))return;if(o.args){for(var s={},c=0,u=o.args;c=r.length)break;var o=a;if(34===r.charCodeAt(o)){for(a++;a32;)a++;i.push(r.substring(o,a))}}c(i)}else s.push(r)}}function g(t,r,n,i,a,o){if(i.isTSConfigOnly)"null"===(s=t[r])?(a[i.name]=void 0,r++):"boolean"===i.type?"false"===s?(a[i.name]=ue(i,!1,o),r++):("true"===s&&r++,o.push(e.createCompilerDiagnostic(e.Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line,i.name))):(o.push(e.createCompilerDiagnostic(e.Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line,i.name)),s&&!e.startsWith(s,"-")&&r++);else if(t[r]||"boolean"===i.type||o.push(e.createCompilerDiagnostic(n.optionTypeMismatchDiagnostic,i.name,L(i))),"null"!==t[r])switch(i.type){case"number":a[i.name]=ue(i,parseInt(t[r]),o),r++;break;case"boolean":var s=t[r];a[i.name]=ue(i,"false"!==s,o),"false"!==s&&"true"!==s||r++;break;case"string":a[i.name]=ue(i,t[r]||"",o),r++;break;case"list":var c=_(i,t[r],o);a[i.name]=c||[],c&&r++;break;default:a[i.name]=l(i,t[r],o),r++}else a[i.name]=void 0,r++;return r}function m(e,t){return y(o,e,t)}function y(e,t,r){void 0===r&&(r=!1),t=t.toLowerCase();var n=e(),i=n.optionsNameMap,a=n.shortOptionNames;if(r){var o=a.get(t);void 0!==o&&(t=o)}return i.get(t)}e.libs=i.map((function(e){return e[0]})),e.libMap=new e.Map(i),e.optionsForWatch=[{name:"watchFile",type:new e.Map(e.getEntries({fixedpollinginterval:e.WatchFileKind.FixedPollingInterval,prioritypollinginterval:e.WatchFileKind.PriorityPollingInterval,dynamicprioritypolling:e.WatchFileKind.DynamicPriorityPolling,usefsevents:e.WatchFileKind.UseFsEvents,usefseventsonparentdirectory:e.WatchFileKind.UseFsEventsOnParentDirectory})),category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_strategy_for_watching_file_Colon_FixedPollingInterval_default_PriorityPollingInterval_DynamicPriorityPolling_UseFsEvents_UseFsEventsOnParentDirectory},{name:"watchDirectory",type:new e.Map(e.getEntries({usefsevents:e.WatchDirectoryKind.UseFsEvents,fixedpollinginterval:e.WatchDirectoryKind.FixedPollingInterval,dynamicprioritypolling:e.WatchDirectoryKind.DynamicPriorityPolling})),category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_strategy_for_watching_directory_on_platforms_that_don_t_support_recursive_watching_natively_Colon_UseFsEvents_default_FixedPollingInterval_DynamicPriorityPolling},{name:"fallbackPolling",type:new e.Map(e.getEntries({fixedinterval:e.PollingWatchKind.FixedInterval,priorityinterval:e.PollingWatchKind.PriorityInterval,dynamicpriority:e.PollingWatchKind.DynamicPriority})),category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_strategy_for_creating_a_polling_watch_when_it_fails_to_create_using_file_system_events_Colon_FixedInterval_default_PriorityInterval_DynamicPriority},{name:"synchronousWatchDirectory",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively},{name:"excludeDirectories",type:"list",element:{name:"excludeDirectory",type:"string",isFilePath:!0,extraValidation:he},category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively},{name:"excludeFiles",type:"list",element:{name:"excludeFile",type:"string",isFilePath:!0,extraValidation:he},category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Synchronously_call_callbacks_and_update_the_state_of_directory_watchers_on_platforms_that_don_t_support_recursive_watching_natively}],e.commonOptionsWithBuild=[{name:"help",shortName:"h",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Print_this_message},{name:"help",shortName:"?",type:"boolean"},{name:"watch",shortName:"w",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Watch_input_files},{name:"preserveWatchOutput",type:"boolean",showInSimplifiedHelpView:!1,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Whether_to_keep_outdated_console_output_in_watch_mode_instead_of_clearing_the_screen},{name:"listFiles",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Print_names_of_files_part_of_the_compilation},{name:"explainFiles",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Print_names_of_files_and_the_reason_they_are_part_of_the_compilation},{name:"listEmittedFiles",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Print_names_of_generated_files_part_of_the_compilation},{name:"pretty",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Stylize_errors_and_messages_using_color_and_context_experimental},{name:"traceResolution",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Enable_tracing_of_the_name_resolution_process},{name:"diagnostics",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Show_diagnostic_information},{name:"extendedDiagnostics",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Show_verbose_diagnostic_information},{name:"generateCpuProfile",type:"string",isFilePath:!0,paramType:e.Diagnostics.FILE_OR_DIRECTORY,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Generates_a_CPU_profile},{name:"generateTrace",type:"string",isFilePath:!0,isCommandLineOnly:!0,paramType:e.Diagnostics.DIRECTORY,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Generates_an_event_trace_and_a_list_of_types},{name:"incremental",shortName:"i",type:"boolean",category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Enable_incremental_compilation,transpileOptionValue:void 0},{name:"assumeChangesOnlyAffectDirectDependencies",type:"boolean",affectsSemanticDiagnostics:!0,affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Have_recompiles_in_incremental_and_watch_assume_that_changes_within_a_file_will_only_affect_files_directly_depending_on_it},{name:"locale",type:"string",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.The_locale_used_when_displaying_messages_to_the_user_e_g_en_us}],e.targetOptionDeclaration={name:"target",shortName:"t",type:new e.Map(e.getEntries({es3:0,es5:1,es6:2,es2015:2,es2016:3,es2017:4,es2018:5,es2019:6,es2020:7,esnext:99})),affectsSourceFile:!0,affectsModuleResolution:!0,affectsEmit:!0,paramType:e.Diagnostics.VERSION,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_ECMAScript_target_version_Colon_ES3_default_ES5_ES2015_ES2016_ES2017_ES2018_ES2019_ES2020_or_ESNEXT},e.optionDeclarations=__spreadArray(__spreadArray([],e.commonOptionsWithBuild),[{name:"all",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Show_all_compiler_options},{name:"version",shortName:"v",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Print_the_compiler_s_version},{name:"init",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Initializes_a_TypeScript_project_and_creates_a_tsconfig_json_file},{name:"project",shortName:"p",type:"string",isFilePath:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,paramType:e.Diagnostics.FILE_OR_DIRECTORY,description:e.Diagnostics.Compile_the_project_given_the_path_to_its_configuration_file_or_to_a_folder_with_a_tsconfig_json},{name:"build",type:"boolean",shortName:"b",showInSimplifiedHelpView:!0,category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Build_one_or_more_projects_and_their_dependencies_if_out_of_date},{name:"showConfig",type:"boolean",category:e.Diagnostics.Command_line_Options,isCommandLineOnly:!0,description:e.Diagnostics.Print_the_final_configuration_instead_of_building},{name:"listFilesOnly",type:"boolean",category:e.Diagnostics.Command_line_Options,affectsSemanticDiagnostics:!0,affectsEmit:!0,isCommandLineOnly:!0,description:e.Diagnostics.Print_names_of_files_that_are_part_of_the_compilation_and_then_stop_processing},e.targetOptionDeclaration,{name:"module",shortName:"m",type:new e.Map(e.getEntries({none:e.ModuleKind.None,commonjs:e.ModuleKind.CommonJS,amd:e.ModuleKind.AMD,system:e.ModuleKind.System,umd:e.ModuleKind.UMD,es6:e.ModuleKind.ES2015,es2015:e.ModuleKind.ES2015,es2020:e.ModuleKind.ES2020,esnext:e.ModuleKind.ESNext})),affectsModuleResolution:!0,affectsEmit:!0,paramType:e.Diagnostics.KIND,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_module_code_generation_Colon_none_commonjs_amd_system_umd_es2015_es2020_or_ESNext},{name:"lib",type:"list",element:{name:"lib",type:e.libMap},affectsModuleResolution:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_library_files_to_be_included_in_the_compilation,transpileOptionValue:void 0},{name:"allowJs",type:"boolean",affectsModuleResolution:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Allow_javascript_files_to_be_compiled},{name:"checkJs",type:"boolean",category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Report_errors_in_js_files},{name:"jsx",type:t,affectsSourceFile:!0,affectsEmit:!0,affectsModuleResolution:!0,paramType:e.Diagnostics.KIND,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_JSX_code_generation_Colon_preserve_react_native_react_react_jsx_or_react_jsxdev},{name:"declaration",shortName:"d",type:"boolean",affectsEmit:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Generates_corresponding_d_ts_file,transpileOptionValue:void 0},{name:"declarationMap",type:"boolean",affectsEmit:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Generates_a_sourcemap_for_each_corresponding_d_ts_file,transpileOptionValue:void 0},{name:"emitDeclarationOnly",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Only_emit_d_ts_declaration_files,transpileOptionValue:void 0},{name:"sourceMap",type:"boolean",affectsEmit:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Generates_corresponding_map_file},{name:"outFile",type:"string",affectsEmit:!0,isFilePath:!0,paramType:e.Diagnostics.FILE,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Concatenate_and_emit_output_to_single_file,transpileOptionValue:void 0},{name:"outDir",type:"string",affectsEmit:!0,isFilePath:!0,paramType:e.Diagnostics.DIRECTORY,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Redirect_output_structure_to_the_directory},{name:"rootDir",type:"string",affectsEmit:!0,isFilePath:!0,paramType:e.Diagnostics.LOCATION,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_the_root_directory_of_input_files_Use_to_control_the_output_directory_structure_with_outDir},{name:"composite",type:"boolean",affectsEmit:!0,isTSConfigOnly:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Enable_project_compilation,transpileOptionValue:void 0},{name:"tsBuildInfoFile",type:"string",affectsEmit:!0,isFilePath:!0,paramType:e.Diagnostics.FILE,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Specify_file_to_store_incremental_compilation_information,transpileOptionValue:void 0},{name:"removeComments",type:"boolean",affectsEmit:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Do_not_emit_comments_to_output},{name:"noEmit",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Do_not_emit_outputs,transpileOptionValue:void 0},{name:"importHelpers",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Import_emit_helpers_from_tslib},{name:"importsNotUsedAsValues",type:new e.Map(e.getEntries({remove:0,preserve:1,error:2})),affectsEmit:!0,affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_emit_Slashchecking_behavior_for_imports_that_are_only_used_for_types},{name:"downlevelIteration",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Provide_full_support_for_iterables_in_for_of_spread_and_destructuring_when_targeting_ES5_or_ES3},{name:"isolatedModules",type:"boolean",category:e.Diagnostics.Basic_Options,description:e.Diagnostics.Transpile_each_file_as_a_separate_module_similar_to_ts_transpileModule,transpileOptionValue:!0},{name:"strict",type:"boolean",showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Enable_all_strict_type_checking_options},{name:"noImplicitAny",type:"boolean",affectsSemanticDiagnostics:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Raise_error_on_expressions_and_declarations_with_an_implied_any_type},{name:"strictNullChecks",type:"boolean",affectsSemanticDiagnostics:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Enable_strict_null_checks},{name:"strictFunctionTypes",type:"boolean",affectsSemanticDiagnostics:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Enable_strict_checking_of_function_types},{name:"strictBindCallApply",type:"boolean",strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Enable_strict_bind_call_and_apply_methods_on_functions},{name:"strictPropertyInitialization",type:"boolean",affectsSemanticDiagnostics:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Enable_strict_checking_of_property_initialization_in_classes},{name:"noImplicitThis",type:"boolean",affectsSemanticDiagnostics:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Raise_error_on_this_expressions_with_an_implied_any_type},{name:"alwaysStrict",type:"boolean",affectsSourceFile:!0,strictFlag:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Strict_Type_Checking_Options,description:e.Diagnostics.Parse_in_strict_mode_and_emit_use_strict_for_each_source_file},{name:"noUnusedLocals",type:"boolean",affectsSemanticDiagnostics:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Report_errors_on_unused_locals},{name:"noUnusedParameters",type:"boolean",affectsSemanticDiagnostics:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Report_errors_on_unused_parameters},{name:"noImplicitReturns",type:"boolean",affectsSemanticDiagnostics:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Report_error_when_not_all_code_paths_in_function_return_a_value},{name:"noFallthroughCasesInSwitch",type:"boolean",affectsBindDiagnostics:!0,affectsSemanticDiagnostics:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Report_errors_for_fallthrough_cases_in_switch_statement},{name:"noUncheckedIndexedAccess",type:"boolean",affectsSemanticDiagnostics:!0,showInSimplifiedHelpView:!1,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Include_undefined_in_index_signature_results},{name:"noPropertyAccessFromIndexSignature",type:"boolean",showInSimplifiedHelpView:!1,category:e.Diagnostics.Additional_Checks,description:e.Diagnostics.Require_undeclared_properties_from_index_signatures_to_use_element_accesses},{name:"moduleResolution",type:new e.Map(e.getEntries({node:e.ModuleResolutionKind.NodeJs,classic:e.ModuleResolutionKind.Classic})),affectsModuleResolution:!0,paramType:e.Diagnostics.STRATEGY,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Specify_module_resolution_strategy_Colon_node_Node_js_or_classic_TypeScript_pre_1_6},{name:"baseUrl",type:"string",affectsModuleResolution:!0,isFilePath:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Base_directory_to_resolve_non_absolute_module_names},{name:"paths",type:"object",affectsModuleResolution:!0,isTSConfigOnly:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.A_series_of_entries_which_re_map_imports_to_lookup_locations_relative_to_the_baseUrl,transpileOptionValue:void 0},{name:"rootDirs",type:"list",isTSConfigOnly:!0,element:{name:"rootDirs",type:"string",isFilePath:!0},affectsModuleResolution:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.List_of_root_folders_whose_combined_content_represents_the_structure_of_the_project_at_runtime,transpileOptionValue:void 0},{name:"typeRoots",type:"list",element:{name:"typeRoots",type:"string",isFilePath:!0},affectsModuleResolution:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.List_of_folders_to_include_type_definitions_from},{name:"types",type:"list",element:{name:"types",type:"string"},affectsModuleResolution:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Type_declaration_files_to_be_included_in_compilation,transpileOptionValue:void 0},{name:"allowSyntheticDefaultImports",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Allow_default_imports_from_modules_with_no_default_export_This_does_not_affect_code_emit_just_typechecking},{name:"esModuleInterop",type:"boolean",affectsSemanticDiagnostics:!0,affectsEmit:!0,showInSimplifiedHelpView:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Enables_emit_interoperability_between_CommonJS_and_ES_Modules_via_creation_of_namespace_objects_for_all_imports_Implies_allowSyntheticDefaultImports},{name:"preserveSymlinks",type:"boolean",category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Do_not_resolve_the_real_path_of_symlinks},{name:"allowUmdGlobalAccess",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Module_Resolution_Options,description:e.Diagnostics.Allow_accessing_UMD_globals_from_modules},{name:"sourceRoot",type:"string",affectsEmit:!0,paramType:e.Diagnostics.LOCATION,category:e.Diagnostics.Source_Map_Options,description:e.Diagnostics.Specify_the_location_where_debugger_should_locate_TypeScript_files_instead_of_source_locations},{name:"mapRoot",type:"string",affectsEmit:!0,paramType:e.Diagnostics.LOCATION,category:e.Diagnostics.Source_Map_Options,description:e.Diagnostics.Specify_the_location_where_debugger_should_locate_map_files_instead_of_generated_locations},{name:"inlineSourceMap",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Source_Map_Options,description:e.Diagnostics.Emit_a_single_file_with_source_maps_instead_of_having_a_separate_file},{name:"inlineSources",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Source_Map_Options,description:e.Diagnostics.Emit_the_source_alongside_the_sourcemaps_within_a_single_file_requires_inlineSourceMap_or_sourceMap_to_be_set},{name:"experimentalDecorators",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Experimental_Options,description:e.Diagnostics.Enables_experimental_support_for_ES7_decorators},{name:"emitDecoratorMetadata",type:"boolean",affectsSemanticDiagnostics:!0,affectsEmit:!0,category:e.Diagnostics.Experimental_Options,description:e.Diagnostics.Enables_experimental_support_for_emitting_type_metadata_for_decorators},{name:"jsxFactory",type:"string",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_the_JSX_factory_function_to_use_when_targeting_react_JSX_emit_e_g_React_createElement_or_h},{name:"jsxFragmentFactory",type:"string",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_the_JSX_fragment_factory_function_to_use_when_targeting_react_JSX_emit_with_jsxFactory_compiler_option_is_specified_e_g_Fragment},{name:"jsxImportSource",type:"string",affectsSemanticDiagnostics:!0,affectsEmit:!0,affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_the_module_specifier_to_be_used_to_import_the_jsx_and_jsxs_factory_functions_from_eg_react},{name:"resolveJsonModule",type:"boolean",affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Include_modules_imported_with_json_extension},{name:"out",type:"string",affectsEmit:!0,isFilePath:!1,category:e.Diagnostics.Advanced_Options,paramType:e.Diagnostics.FILE,description:e.Diagnostics.Deprecated_Use_outFile_instead_Concatenate_and_emit_output_to_single_file,transpileOptionValue:void 0},{name:"reactNamespace",type:"string",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Deprecated_Use_jsxFactory_instead_Specify_the_object_invoked_for_createElement_when_targeting_react_JSX_emit},{name:"skipDefaultLibCheck",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Deprecated_Use_skipLibCheck_instead_Skip_type_checking_of_default_library_declaration_files},{name:"charset",type:"string",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.The_character_set_of_the_input_files},{name:"emitBOM",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Emit_a_UTF_8_Byte_Order_Mark_BOM_in_the_beginning_of_output_files},{name:"newLine",type:new e.Map(e.getEntries({crlf:0,lf:1})),affectsEmit:!0,paramType:e.Diagnostics.NEWLINE,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Specify_the_end_of_line_sequence_to_be_used_when_emitting_files_Colon_CRLF_dos_or_LF_unix},{name:"noErrorTruncation",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_truncate_error_messages},{name:"noLib",type:"boolean",affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_include_the_default_library_file_lib_d_ts,transpileOptionValue:!0},{name:"noResolve",type:"boolean",affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_add_triple_slash_references_or_imported_modules_to_the_list_of_compiled_files,transpileOptionValue:!0},{name:"stripInternal",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_emit_declarations_for_code_that_has_an_internal_annotation},{name:"disableSizeLimit",type:"boolean",affectsSourceFile:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disable_size_limitations_on_JavaScript_projects},{name:"disableSourceOfProjectReferenceRedirect",type:"boolean",isTSConfigOnly:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disable_use_of_source_files_instead_of_declaration_files_from_referenced_projects},{name:"disableSolutionSearching",type:"boolean",isTSConfigOnly:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disable_solution_searching_for_this_project},{name:"disableReferencedProjectLoad",type:"boolean",isTSConfigOnly:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disable_loading_referenced_projects},{name:"noImplicitUseStrict",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_emit_use_strict_directives_in_module_output},{name:"noEmitHelpers",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_generate_custom_helper_functions_like_extends_in_compiled_output},{name:"noEmitOnError",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_emit_outputs_if_any_errors_were_reported,transpileOptionValue:void 0},{name:"preserveConstEnums",type:"boolean",affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_erase_const_enum_declarations_in_generated_code},{name:"declarationDir",type:"string",affectsEmit:!0,isFilePath:!0,paramType:e.Diagnostics.DIRECTORY,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Output_directory_for_generated_declaration_files,transpileOptionValue:void 0},{name:"skipLibCheck",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Skip_type_checking_of_declaration_files},{name:"allowUnusedLabels",type:"boolean",affectsBindDiagnostics:!0,affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_report_errors_on_unused_labels},{name:"allowUnreachableCode",type:"boolean",affectsBindDiagnostics:!0,affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Do_not_report_errors_on_unreachable_code},{name:"suppressExcessPropertyErrors",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Suppress_excess_property_checks_for_object_literals},{name:"suppressImplicitAnyIndexErrors",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Suppress_noImplicitAny_errors_for_indexing_objects_lacking_index_signatures},{name:"forceConsistentCasingInFileNames",type:"boolean",affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disallow_inconsistently_cased_references_to_the_same_file},{name:"maxNodeModuleJsDepth",type:"number",affectsModuleResolution:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.The_maximum_dependency_depth_to_search_under_node_modules_and_load_JavaScript_files},{name:"noStrictGenericChecks",type:"boolean",affectsSemanticDiagnostics:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Disable_strict_checking_of_generic_signatures_in_function_types},{name:"useDefineForClassFields",type:"boolean",affectsSemanticDiagnostics:!0,affectsEmit:!0,category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Emit_class_fields_with_Define_instead_of_Set},{name:"keyofStringsOnly",type:"boolean",category:e.Diagnostics.Advanced_Options,description:e.Diagnostics.Resolve_keyof_to_string_valued_property_names_only_no_numbers_or_symbols},{name:"plugins",type:"list",isTSConfigOnly:!0,element:{name:"plugin",type:"object"},description:e.Diagnostics.List_of_language_service_plugins}]),e.semanticDiagnosticsOptionDeclarations=e.optionDeclarations.filter((function(e){return!!e.affectsSemanticDiagnostics})),e.affectsEmitOptionDeclarations=e.optionDeclarations.filter((function(e){return!!e.affectsEmit})),e.moduleResolutionOptionDeclarations=e.optionDeclarations.filter((function(e){return!!e.affectsModuleResolution})),e.sourceFileAffectingCompilerOptions=e.optionDeclarations.filter((function(e){return!!e.affectsSourceFile||!!e.affectsModuleResolution||!!e.affectsBindDiagnostics})),e.transpileOptionValueCompilerOptions=e.optionDeclarations.filter((function(t){return e.hasProperty(t,"transpileOptionValue")})),e.buildOpts=__spreadArray(__spreadArray([],e.commonOptionsWithBuild),[{name:"verbose",shortName:"v",category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Enable_verbose_logging,type:"boolean"},{name:"dry",shortName:"d",category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Show_what_would_be_built_or_deleted_if_specified_with_clean,type:"boolean"},{name:"force",shortName:"f",category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Build_all_projects_including_those_that_appear_to_be_up_to_date,type:"boolean"},{name:"clean",category:e.Diagnostics.Command_line_Options,description:e.Diagnostics.Delete_the_outputs_of_all_projects,type:"boolean"}]),e.typeAcquisitionDeclarations=[{name:"enableAutoDiscovery",type:"boolean"},{name:"enable",type:"boolean"},{name:"include",type:"list",element:{name:"include",type:"string"}},{name:"exclude",type:"list",element:{name:"exclude",type:"string"}},{name:"disableFilenameBasedTypeAcquisition",type:"boolean"}],e.createOptionNameMap=a,e.getOptionsNameMap=o,e.defaultInitCompilerOptions={module:e.ModuleKind.CommonJS,target:1,strict:!0,esModuleInterop:!0,forceConsistentCasingInFileNames:!0,skipLibCheck:!0},e.convertEnableAutoDiscoveryToEnable=s,e.createCompilerDiagnosticForInvalidCustomType=c,e.parseCustomTypeOption=l,e.parseListTypeOption=_,e.parseCommandLineWorker=f,e.compilerOptionsDidYouMeanDiagnostics={getOptionsNameMap:o,optionDeclarations:e.optionDeclarations,unknownOptionDiagnostic:e.Diagnostics.Unknown_compiler_option_0,unknownDidYouMeanDiagnostic:e.Diagnostics.Unknown_compiler_option_0_Did_you_mean_1,optionTypeMismatchDiagnostic:e.Diagnostics.Compiler_option_0_expects_an_argument},e.parseCommandLine=function(t,r){return f(e.compilerOptionsDidYouMeanDiagnostics,t,r)},e.getOptionFromName=m;var v={getOptionsNameMap:function(){return n||(n=a(e.buildOpts))},optionDeclarations:e.buildOpts,unknownOptionDiagnostic:e.Diagnostics.Unknown_build_option_0,unknownDidYouMeanDiagnostic:e.Diagnostics.Unknown_build_option_0_Did_you_mean_1,optionTypeMismatchDiagnostic:e.Diagnostics.Build_option_0_requires_a_value_of_type_1};function h(t,r){var n=e.parseJsonText(t,r);return{config:O(n,n.parseDiagnostics),error:n.parseDiagnostics.length?n.parseDiagnostics[0]:void 0}}function b(t,r){var n=x(t,r);return e.isString(n)?e.parseJsonText(t,n):{fileName:t,parseDiagnostics:[n]}}function x(t,r){var n;try{n=r(t)}catch(r){return e.createCompilerDiagnostic(e.Diagnostics.Cannot_read_file_0_Colon_1,t,r.message)}return void 0===n?e.createCompilerDiagnostic(e.Diagnostics.Cannot_read_file_0,t):n}function D(t){return e.arrayToMap(t,d)}e.parseBuildCommand=function(t){var r=f(v,t),n=r.options,i=r.watchOptions,a=r.fileNames,o=r.errors,s=n;return 0===a.length&&a.push("."),s.clean&&s.force&&o.push(e.createCompilerDiagnostic(e.Diagnostics.Options_0_and_1_cannot_be_combined,"clean","force")),s.clean&&s.verbose&&o.push(e.createCompilerDiagnostic(e.Diagnostics.Options_0_and_1_cannot_be_combined,"clean","verbose")),s.clean&&s.watch&&o.push(e.createCompilerDiagnostic(e.Diagnostics.Options_0_and_1_cannot_be_combined,"clean","watch")),s.watch&&s.dry&&o.push(e.createCompilerDiagnostic(e.Diagnostics.Options_0_and_1_cannot_be_combined,"watch","dry")),{buildOptions:s,watchOptions:i,projects:a,errors:o}},e.getDiagnosticText=function(t){for(var r=[],n=1;n=0)return s.push(e.createCompilerDiagnostic(e.Diagnostics.Circularity_detected_while_resolving_configuration_Colon_0,__spreadArray(__spreadArray([],o),[l]).join(" -> "))),{raw:t||O(r,s)};var _=t?function(t,r,n,i,a){e.hasProperty(t,"excludes")&&a.push(e.createCompilerDiagnostic(e.Diagnostics.Unknown_option_excludes_Did_you_mean_exclude));var o,s=re(t.compilerOptions,n,a,i),c=ie(t.typeAcquisition||t.typingOptions,n,a,i),u=function(e,t,r){return ae(w(),e,t,void 0,F,r)}(t.watchOptions,n,a);if(t.compileOnSave=function(t,r,n){if(!e.hasProperty(t,e.compileOnSaveCommandLineOption.name))return!1;var i=oe(e.compileOnSaveCommandLineOption,t.compileOnSave,r,n);return"boolean"==typeof i&&i}(t,n,a),t.extends)if(e.isString(t.extends)){var l=i?G(i,n):n;o=ee(t.extends,r,l,a,e.createCompilerDiagnostic)}else a.push(e.createCompilerDiagnostic(e.Diagnostics.Compiler_option_0_requires_a_value_of_type_1,"extends","string"));return{raw:t,options:s,watchOptions:u,typeAcquisition:c,extendedConfigPath:o}}(t,n,i,a,s):function(t,r,n,i,a){var o,s,c,u,l=te(i),_={onSetValidOptionKeyValueInParent:function(t,r,a){var u;switch(t){case"compilerOptions":u=l;break;case"watchOptions":u=c||(c={});break;case"typeAcquisition":u=o||(o=ne(i));break;case"typingOptions":u=s||(s=ne(i));break;default:e.Debug.fail("Unknown option")}u[r.name]=se(r,n,a)},onSetValidOptionKeyValueInRoot:function(o,s,c,l){switch(o){case"extends":var _=i?G(i,n):n;return void(u=ee(c,r,_,a,(function(r,n){return e.createDiagnosticForNodeInSourceFile(t,l,r,n)})))}},onSetUnknownOptionKeyValueInRoot:function(r,n,i,o){"excludes"===r&&a.push(e.createDiagnosticForNodeInSourceFile(t,n,e.Diagnostics.Unknown_option_excludes_Did_you_mean_exclude))}},d=M(t,a,!0,(void 0===A&&(A={name:void 0,type:"object",elementOptions:D([{name:"compilerOptions",type:"object",elementOptions:P(),extraKeyDiagnostics:e.compilerOptionsDidYouMeanDiagnostics},{name:"watchOptions",type:"object",elementOptions:w(),extraKeyDiagnostics:F},{name:"typingOptions",type:"object",elementOptions:I(),extraKeyDiagnostics:T},{name:"typeAcquisition",type:"object",elementOptions:I(),extraKeyDiagnostics:T},{name:"extends",type:"string"},{name:"references",type:"list",element:{name:"references",type:"object"}},{name:"files",type:"list",element:{name:"files",type:"string"}},{name:"include",type:"list",element:{name:"include",type:"string"}},{name:"exclude",type:"list",element:{name:"exclude",type:"string"}},e.compileOnSaveCommandLineOption])}),A),_);o||(o=s?void 0!==s.enableAutoDiscovery?{enable:s.enableAutoDiscovery,include:s.include,exclude:s.exclude}:s:ne(i));return{raw:d,options:l,watchOptions:c,typeAcquisition:o,extendedConfigPath:u}}(r,n,i,a,s);if((null===(u=_.options)||void 0===u?void 0:u.paths)&&(_.options.pathsBasePath=i),_.extendedConfigPath){o=o.concat([l]);var d=function(t,r,n,i,a,o){var s,c,u,l,_=n.useCaseSensitiveFileNames?r:e.toFileNameLowerCase(r);o&&(c=o.get(_))?(u=c.extendedResult,l=c.extendedConfig):((u=b(r,(function(e){return n.readFile(e)}))).parseDiagnostics.length||(l=$(void 0,u,n,e.getDirectoryPath(r),e.getBaseFileName(r),i,a,o)),o&&o.set(_,{extendedResult:u,extendedConfig:l}));t&&(t.extendedSourceFiles=[u.fileName],u.extendedSourceFiles&&(s=t.extendedSourceFiles).push.apply(s,u.extendedSourceFiles));if(u.parseDiagnostics.length)return void a.push.apply(a,u.parseDiagnostics);return l}(r,_.extendedConfigPath,n,o,s,c);if(d&&d.options){var p,f=d.raw,g=_.raw,m=function(t){!g[t]&&f[t]&&(g[t]=e.map(f[t],(function(t){return e.isRootedDiskPath(t)?t:e.combinePaths(p||(p=e.convertToRelativePath(e.getDirectoryPath(_.extendedConfigPath),i,e.createGetCanonicalFileName(n.useCaseSensitiveFileNames))),t)})))};m("include"),m("exclude"),m("files"),void 0===g.compileOnSave&&(g.compileOnSave=f.compileOnSave),_.options=e.assign({},d.options,_.options),_.watchOptions=_.watchOptions&&d.watchOptions?e.assign({},d.watchOptions,_.watchOptions):_.watchOptions||d.watchOptions}}return _}function ee(t,r,n,i,a){if(t=e.normalizeSlashes(t),e.isRootedDiskPath(t)||e.startsWith(t,"./")||e.startsWith(t,"../")){var o=e.getNormalizedAbsolutePath(t,n);return r.fileExists(o)||e.endsWith(o,".json")||(o+=".json",r.fileExists(o))?o:void i.push(a(e.Diagnostics.File_0_not_found,t))}var s=e.nodeModuleNameResolver(t,e.combinePaths(n,"tsconfig.json"),{moduleResolution:e.ModuleResolutionKind.NodeJs},r,void 0,void 0,!0);if(s.resolvedModule)return s.resolvedModule.resolvedFileName;i.push(a(e.Diagnostics.File_0_not_found,t))}function te(t){return t&&"jsconfig.json"===e.getBaseFileName(t)?{allowJs:!0,maxNodeModuleJsDepth:2,allowSyntheticDefaultImports:!0,skipLibCheck:!0,noEmit:!0}:{}}function re(t,r,n,i){var a=te(i);return ae(P(),t,r,a,e.compilerOptionsDidYouMeanDiagnostics,n),i&&(a.configFilePath=e.normalizeSlashes(i)),a}function ne(t){return{enable:!!t&&"jsconfig.json"===e.getBaseFileName(t),include:[],exclude:[]}}function ie(e,t,r,n){var i=ne(n),a=s(e);return ae(I(),a,t,i,T,r),i}function ae(t,r,n,i,a,o){if(r){for(var s in r){var c=t.get(s);c?(i||(i={}))[c.name]=oe(c,r[s],n,o):o.push(p(s,a,e.createCompilerDiagnostic))}return i}}function oe(t,r,n,i){if(R(t,r)){var a=t.type;if("list"===a&&e.isArray(r))return function(t,r,n,i){return e.filter(e.map(r,(function(e){return oe(t.element,e,n,i)})),(function(e){return!!e}))}(t,r,n,i);if(!e.isString(a))return le(t,r,i);var o=ue(t,r,i);return H(o)?o:ce(t,n,o)}i.push(e.createCompilerDiagnostic(e.Diagnostics.Compiler_option_0_requires_a_value_of_type_1,t.name,L(t)))}function se(t,r,n){if(!H(n)){if("list"===t.type){var i=t;return i.element.isFilePath||!e.isString(i.element.type)?e.filter(e.map(n,(function(e){return se(i.element,r,e)})),(function(e){return!!e})):n}return e.isString(t.type)?ce(t,r,n):t.type.get(e.isString(n)?n.toLowerCase():n)}}function ce(t,r,n){return t.isFilePath&&""===(n=e.getNormalizedAbsolutePath(n,r))&&(n="."),n}function ue(t,r,n){var i;if(!H(r)){var a=null===(i=t.extraValidation)||void 0===i?void 0:i.call(t,r);if(!a)return r;n.push(e.createCompilerDiagnostic.apply(void 0,a))}}function le(e,t,r){if(!H(t)){var n=t.toLowerCase(),i=e.type.get(n);if(void 0!==i)return ue(e,i,r);r.push(c(e))}}function _e(e){return"function"==typeof e.trim?e.trim():e.replace(/^[\s]+|[\s]+$/g,"")}e.convertToObject=O,e.convertToObjectWorker=M,e.convertToTSConfig=function(t,r,n){var i,a,o,s=e.createGetCanonicalFileName(n.useCaseSensitiveFileNames),c=e.map(e.filter(t.fileNames,(null===(a=null===(i=t.options.configFile)||void 0===i?void 0:i.configFileSpecs)||void 0===a?void 0:a.validatedIncludeSpecs)?function(t,r,n,i){if(!r)return e.returnTrue;var a=e.getFileMatcherPatterns(t,n,r,i.useCaseSensitiveFileNames,i.getCurrentDirectory()),o=a.excludePattern&&e.getRegexFromPattern(a.excludePattern,i.useCaseSensitiveFileNames),s=a.includeFilePattern&&e.getRegexFromPattern(a.includeFilePattern,i.useCaseSensitiveFileNames);if(s)return o?function(e){return!(s.test(e)&&!o.test(e))}:function(e){return!s.test(e)};if(o)return function(e){return o.test(e)};return e.returnTrue}(r,t.options.configFile.configFileSpecs.validatedIncludeSpecs,t.options.configFile.configFileSpecs.validatedExcludeSpecs,n):e.returnTrue),(function(t){return e.getRelativePathFromFile(e.getNormalizedAbsolutePath(r,n.getCurrentDirectory()),e.getNormalizedAbsolutePath(t,n.getCurrentDirectory()),s)})),u=U(t.options,{configFilePath:e.getNormalizedAbsolutePath(r,n.getCurrentDirectory()),useCaseSensitiveFileNames:n.useCaseSensitiveFileNames}),l=t.watchOptions&&V(t.watchOptions,C());return __assign(__assign({compilerOptions:__assign(__assign({},B(u)),{showConfig:void 0,configFile:void 0,configFilePath:void 0,help:void 0,init:void 0,listFiles:void 0,listEmittedFiles:void 0,project:void 0,build:void 0,version:void 0}),watchOptions:l&&B(l),references:e.map(t.projectReferences,(function(e){return __assign(__assign({},e),{path:e.originalPath?e.originalPath:"",originalPath:void 0})})),files:e.length(c)?c:void 0},(null===(o=t.options.configFile)||void 0===o?void 0:o.configFileSpecs)?{include:j(t.options.configFile.configFileSpecs.validatedIncludeSpecs),exclude:t.options.configFile.configFileSpecs.validatedExcludeSpecs}:{}),{compileOnSave:!!t.compileOnSave||void 0})},e.generateTSConfig=function(t,r,n){var i=U(e.extend(t,e.defaultInitCompilerOptions));return function(){for(var t=e.createMultiMap(),c=0,u=e.optionDeclarations;c0)for(var b=function(t){if(e.fileExtensionIs(t,".json")){if(!o){var n=d.filter((function(t){return e.endsWith(t,".json")})),a=e.map(e.getRegularExpressionsForWildcards(n,r,"files"),(function(e){return"^"+e+"$"}));o=a?a.map((function(t){return e.getRegexFromPattern(t,i.useCaseSensitiveFileNames)})):e.emptyArray}if(-1!==e.findIndex(o,(function(e){return e.test(t)}))){var _=s(t);c.has(_)||l.has(_)||l.set(_,t)}return"continue"}if(function(t,r,n,i,a){for(var o=e.getExtensionPriority(t,i),s=e.adjustExtensionPriority(o,i),c=0;cs&&(s=l),1===s)return s}return s}break;case 257:var _=0;return e.forEachChild(t,(function(t){var r=n(t,a);switch(r){case 0:return;case 2:return void(_=2);case 1:return _=1,!0;default:e.Debug.assertNever(r)}})),_;case 256:return r(t,a);case 78:if(t.isInJSDocNamespace)return 0}return 1}(t,a);return a.set(o,s),s}function i(t,r){for(var i=t.propertyName||t.name,a=t.parent;a;){if(e.isBlock(a)||e.isModuleBlock(a)||e.isSourceFile(a)){for(var o=void 0,s=0,c=a.statements;so)&&(o=l),1===o)return o}}if(void 0!==o)return o}a=a.parent}return 1}function a(t){return e.Debug.attachFlowNodeDebugInfo(t),t}!function(e){e[e.NonInstantiated=0]="NonInstantiated",e[e.Instantiated=1]="Instantiated",e[e.ConstEnumOnly=2]="ConstEnumOnly"}(e.ModuleInstanceState||(e.ModuleInstanceState={})),e.getModuleInstanceState=r,function(e){e[e.None=0]="None",e[e.IsContainer=1]="IsContainer",e[e.IsBlockScopedContainer=2]="IsBlockScopedContainer",e[e.IsControlFlowContainer=4]="IsControlFlowContainer",e[e.IsFunctionLike=8]="IsFunctionLike",e[e.IsFunctionExpression=16]="IsFunctionExpression",e[e.HasLocals=32]="HasLocals",e[e.IsInterface=64]="IsInterface",e[e.IsObjectLiteralOrClassExpressionMethod=128]="IsObjectLiteralOrClassExpressionMethod"}(t||(t={}));var o=function(){var t,n,i,o,l,_,d,p,f,g,m,y,v,h,b,x,D,S,T,C,E,k,N,A,F=!1,P=0,w={flags:1},I={flags:1};function O(r,n,i,a,o){return e.createDiagnosticForNodeInSourceFile(e.getSourceFileOfNode(r)||t,r,n,i,a,o)}return function(r,s){t=r,n=s,i=e.getEmitScriptTarget(n),k=function(t,r){return!(!e.getStrictOptionValue(r,"alwaysStrict")||t.isDeclarationFile)||!!t.externalModuleIndicator}(t,s),A=new e.Set,P=0,N=e.objectAllocator.getSymbolConstructor(),e.Debug.attachFlowNodeDebugInfo(w),e.Debug.attachFlowNodeDebugInfo(I),t.locals||(Me(t),t.symbolCount=P,t.classifiableNames=A,function(){if(f){for(var r=l,n=p,i=d,s=o,u=m,_=0,g=f;_=232&&t.kind<=248&&!n.allowUnreachableCode&&(t.flowNode=m),t.kind){case 236:!function(e){var t=de(e,Y()),r=Q(),n=Q();ee(t,m),m=t,le(e.expression,r,n),m=ae(r),_e(e.statement,n,t),ee(t,m),m=ae(n)}(t);break;case 235:!function(e){var t=Y(),r=de(e,Q()),n=Q();ee(t,m),m=t,_e(e.statement,n,r),ee(r,m),m=ae(r),le(e.expression,t,n),m=ae(n)}(t);break;case 237:!function(e){var t=de(e,Y()),r=Q(),n=Q();Me(e.initializer),ee(t,m),m=t,le(e.condition,r,n),m=ae(r),_e(e.statement,n,t),Me(e.incrementor),ee(t,m),m=ae(n)}(t);break;case 238:case 239:!function(e){var t=de(e,Y()),r=Q();Me(e.expression),ee(t,m),m=t,239===e.kind&&Me(e.awaitModifier);ee(r,m),Me(e.initializer),250!==e.initializer.kind&&me(e.initializer);_e(e.statement,r,t),ee(t,m),m=ae(r)}(t);break;case 234:!function(e){var t=Q(),r=Q(),n=Q();le(e.expression,t,r),m=ae(t),Me(e.thenStatement),ee(n,m),m=ae(r),Me(e.elseStatement),ee(n,m),m=ae(n)}(t);break;case 242:case 246:!function(e){Me(e.expression),242===e.kind&&(C=!0,h&&ee(h,m));m=w}(t);break;case 241:case 240:!function(e){if(Me(e.label),e.label){var t=function(e){for(var t=T;t;t=t.next)if(t.name===e)return t;return}(e.label.escapedText);t&&(t.referenced=!0,pe(e,t.breakTarget,t.continueTarget))}else pe(e,y,v)}(t);break;case 247:!function(t){var r=h,n=D,i=Q(),a=Q(),o=Q();t.finallyBlock&&(h=a);ee(o,m),D=o,Me(t.tryBlock),ee(i,m),t.catchClause&&(m=ae(o),ee(o=Q(),m),D=o,Me(t.catchClause),ee(i,m));if(h=r,D=n,t.finallyBlock){var s=Q();s.antecedents=e.concatenate(e.concatenate(i.antecedents,o.antecedents),a.antecedents),m=s,Me(t.finallyBlock),1&m.flags?m=w:(h&&a.antecedents&&ee(h,Z(s,a.antecedents,m)),D&&o.antecedents&&ee(D,Z(s,o.antecedents,m)),m=i.antecedents?Z(s,i.antecedents,m):w)}else m=ae(i)}(t);break;case 244:!function(t){var r=Q();Me(t.expression);var n=y,i=S;y=r,S=m,Me(t.caseBlock),ee(r,m);var a=e.forEach(t.caseBlock.clauses,(function(e){return 285===e.kind}));t.possiblyExhaustive=!a&&!r.antecedents,a||ee(r,re(S,t,0,0));y=n,S=i,m=ae(r)}(t);break;case 258:!function(e){for(var t=e.clauses,r=q(e.parent.expression),i=w,a=0;a=0;)switch(t=r.expr[n],r.state[n]){case 0:e.setParent(t,o);var i=k;Be(t);var a=o;o=t,u(1,i,a);break;case 1:if(55===(c=t.operatorToken.kind)||56===c||60===c||e.isLogicalOrCoalescingAssignmentOperator(c)){if(ce(t)){var s=Q();ye(t,s,s),m=ae(s)}else ye(t,b,x);l()}else u(2),_(t.left);break;case 2:27===t.operatorToken.kind&&fe(t.left),u(3),_(t.operatorToken);break;case 3:u(4),_(t.right);break;case 4:var c=t.operatorToken.kind;if(e.isAssignmentOperator(c)&&!e.isAssignmentTarget(t))if(me(t.left),62===c&&202===t.left.kind)X(t.left.expression)&&(m=ne(256,m,t));l();break;default:return e.Debug.fail("Invalid state "+r.state[n]+" for bindBinaryExpressionFlow")}function u(e,t,i){r.state[n]=e,void 0!==t&&(r.inStrictMode[n]=t),void 0!==i&&(r.parent[n]=i)}function l(){void 0!==r.inStrictMode[n]&&(k=r.inStrictMode[n],o=r.parent[n]),n--}function _(t){t&&e.isBinaryExpression(t)&&!e.isDestructuringAssignment(t)?(n++,r.expr[n]=t,r.state[n]=0,r.inStrictMode[n]=void 0,r.parent[n]=void 0):Me(t)}}(t);break;case 210:!function(e){V(e),201===e.expression.kind&&me(e.expression)}(t);break;case 217:!function(e){var t=Q(),r=Q(),n=Q();le(e.condition,t,r),m=ae(t),Me(e.questionToken),Me(e.whenTrue),ee(n,m),m=ae(r),Me(e.colonToken),Me(e.whenFalse),ee(n,m),m=ae(n)}(t);break;case 249:!function(t){V(t),(t.initializer||e.isForInOrOfStatement(t.parent.parent))&&ve(t)}(t);break;case 201:case 202:!function(t){e.isOptionalChain(t)?xe(t):V(t)}(t);break;case 203:!function(t){if(e.isOptionalChain(t))xe(t);else{var r=e.skipParentheses(t.expression);208===r.kind||209===r.kind?(U(t.typeArguments),U(t.arguments),Me(t.expression)):(V(t),105===t.expression.kind&&(m=ie(m,t)))}if(201===t.expression.kind){var n=t.expression;e.isIdentifier(n.name)&&X(n.expression)&&e.isPushOrUnshiftIdentifier(n.name)&&(m=ne(256,m,t))}}(t);break;case 225:!function(t){e.isOptionalChain(t)?xe(t):V(t)}(t);break;case 331:case 324:case 325:!function(t){e.setParent(t.tagName,t),325!==t.kind&&t.fullName&&(e.setParent(t.fullName,t),e.setParentRecursive(t.fullName,!1))}(t);break;case 297:z(t.statements),Me(t.endOfFileToken);break;case 230:case 257:z(t.statements);break;case 198:!function(t){e.isBindingPattern(t.name)?(U(t.decorators),U(t.modifiers),Me(t.dotDotDotToken),Me(t.propertyName),Me(t.initializer),Me(t.name)):V(t)}(t);break;case 200:case 199:case 288:case 220:F=i;default:V(t)}Le(t),F=i}function q(t){switch(t.kind){case 78:case 79:case 107:case 201:case 202:return H(t);case 203:return function(e){if(e.arguments)for(var t=0,r=e.arguments;t=116&&r.originalKeywordKind<=124?t.bindDiagnostics.push(O(r,function(r){if(e.getContainingClass(r))return e.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Class_definitions_are_automatically_in_strict_mode;if(t.externalModuleIndicator)return e.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode_Modules_are_automatically_in_strict_mode;return e.Diagnostics.Identifier_expected_0_is_a_reserved_word_in_strict_mode}(r),e.declarationNameToString(r))):130===r.originalKeywordKind?e.isExternalModule(t)&&e.isInTopLevelContext(r)?t.bindDiagnostics.push(O(r,e.Diagnostics.Identifier_expected_0_is_a_reserved_word_at_the_top_level_of_a_module,e.declarationNameToString(r))):32768&r.flags&&t.bindDiagnostics.push(O(r,e.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here,e.declarationNameToString(r))):124===r.originalKeywordKind&&8192&r.flags&&t.bindDiagnostics.push(O(r,e.Diagnostics.Identifier_expected_0_is_a_reserved_word_that_cannot_be_used_here,e.declarationNameToString(r))))}function Fe(r,n){if(n&&78===n.kind){var i=n;if(o=i,e.isIdentifier(o)&&("eval"===o.escapedText||"arguments"===o.escapedText)){var a=e.getErrorSpanForNode(t,n);t.bindDiagnostics.push(e.createFileDiagnostic(t,a.start,a.length,function(r){if(e.getContainingClass(r))return e.Diagnostics.Invalid_use_of_0_Class_definitions_are_automatically_in_strict_mode;if(t.externalModuleIndicator)return e.Diagnostics.Invalid_use_of_0_Modules_are_automatically_in_strict_mode;return e.Diagnostics.Invalid_use_of_0_in_strict_mode}(r),e.idText(i)))}}var o}function Pe(e){k&&Fe(e,e.name)}function we(r){if(i<2&&297!==d.kind&&256!==d.kind&&!e.isFunctionLike(d)){var n=e.getErrorSpanForNode(t,r);t.bindDiagnostics.push(e.createFileDiagnostic(t,n.start,n.length,function(r){return e.getContainingClass(r)?e.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Class_definitions_are_automatically_in_strict_mode:t.externalModuleIndicator?e.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5_Modules_are_automatically_in_strict_mode:e.Diagnostics.Function_declarations_are_not_allowed_inside_blocks_in_strict_mode_when_targeting_ES3_or_ES5}(r)))}}function Ie(r,n,i,a,o){var s=e.getSpanOfTokenAtPosition(t,r.pos);t.bindDiagnostics.push(e.createFileDiagnostic(t,s.start,s.length,n,i,a,o))}function Oe(r,n,i,a){!function(r,n,i){var a=e.createFileDiagnostic(t,n.pos,n.end-n.pos,i);r?t.bindDiagnostics.push(a):t.bindSuggestionDiagnostics=e.append(t.bindSuggestionDiagnostics,__assign(__assign({},a),{category:e.DiagnosticCategory.Suggestion}))}(r,{pos:e.getTokenPosOfNode(n,t),end:i.end},a)}function Me(t){if(t){e.setParent(t,o);var r=k;if(Be(t),t.kind>156){var n=o;o=t;var i=De(t);0===i?K(t):function(t,r){var n=l,i=_,o=d;if(1&r?(209!==t.kind&&(_=l),l=d=t,32&r&&(l.locals=e.createSymbolTable()),Se(l)):2&r&&((d=t).locals=void 0),4&r){var s=m,c=y,u=v,p=h,f=D,b=T,x=C,S=16&r&&!e.hasSyntacticModifier(t,256)&&!t.asteriskToken&&!!e.getImmediatelyInvokedFunctionExpression(t);S||(m=a({flags:2}),144&r&&(m.node=t)),h=S||166===t.kind||e.isInJSFile(t)&&(251===t.kind||208===t.kind)?Q():void 0,D=void 0,y=void 0,v=void 0,T=void 0,C=!1,K(t),t.flags&=-2817,!(1&m.flags)&&8&r&&e.nodeIsPresent(t.body)&&(t.flags|=256,C&&(t.flags|=512),t.endFlowNode=m),297===t.kind&&(t.flags|=E),h&&(ee(h,m),m=ae(h),(166===t.kind||e.isInJSFile(t)&&(251===t.kind||208===t.kind))&&(t.returnFlowNode=m)),S||(m=s),y=c,v=u,h=p,D=f,T=b,C=x}else 64&r?(g=!1,K(t),t.flags=g?128|t.flags:-129&t.flags):K(t);l=n,_=i,d=o}(t,i),o=n}else{n=o;1===t.kind&&(o=t),Le(t),o=n}k=r}}function Le(t){if(e.hasJSDocNodes(t))if(e.isInJSFile(t))for(var r=0,n=t.jsDoc;r=2&&(e.isDeclarationStatement(t.statement)||e.isVariableStatement(t.statement))&&Ie(t.label,e.Diagnostics.A_label_is_not_allowed_here)}(r);case 187:return void(g=!0);case 172:break;case 159:return function(t){if(e.isJSDocTemplateTag(t.parent)){var r=e.find(t.parent.parent.tags,e.isJSDocTypeAlias)||e.getHostSignatureFromJSDoc(t.parent);r?(r.locals||(r.locals=e.createSymbolTable()),j(r.locals,void 0,t,262144,526824)):Te(t,262144,526824)}else if(185===t.parent.kind){var n=function(t){var r=e.findAncestor(t,(function(t){return t.parent&&e.isConditionalTypeNode(t.parent)&&t.parent.extendsType===t}));return r&&r.parent}(t.parent);n?(n.locals||(n.locals=e.createSymbolTable()),j(n.locals,void 0,t,262144,526824)):ke(t,262144,R(t))}else Te(t,262144,526824)}(r);case 160:return tt(r);case 249:return et(r);case 198:return r.flowNode=m,et(r);case 163:case 162:return function(e){return rt(e,4|(e.questionToken?16777216:0),0)}(r);case 288:case 289:return rt(r,4,0);case 291:return rt(r,8,900095);case 169:case 170:case 171:return Te(r,131072,0);case 165:case 164:return rt(r,8192|(r.questionToken?16777216:0),e.isObjectLiteralMethod(r)?0:103359);case 251:return function(r){t.isDeclarationFile||8388608&r.flags||e.isAsyncFunction(r)&&(E|=2048);Pe(r),k?(we(r),Ne(r,16,110991)):Te(r,16,110991)}(r);case 166:return Te(r,16384,0);case 167:return rt(r,32768,46015);case 168:return rt(r,65536,78783);case 174:case 308:case 313:case 175:return function(t){var r=M(131072,R(t));L(r,t,131072);var n=M(2048,"__type");L(n,t,2048),n.members=e.createSymbolTable(),n.members.set(r.escapedName,r)}(r);case 177:case 312:case 190:return function(e){return ke(e,2048,"__type")}(r);case 319:return function(t){V(t);var r=e.getHostSignatureFromJSDoc(t);r&&165!==r.kind&&L(r.symbol,r,32)}(r);case 200:return function(r){var n;if(function(e){e[e.Property=1]="Property",e[e.Accessor=2]="Accessor"}(n||(n={})),k&&!e.isAssignmentTarget(r))for(var i=new e.Map,a=0,o=r.properties;a1&&2097152&m.flags&&(t=e.createSymbolTable()).set("export=",m);return P(t),T(c);function v(e){return!!e&&78===e.kind}function h(t){return e.isVariableStatement(t)?e.filter(e.map(t.declarationList.declarations,e.getNameOfDeclaration),v):e.filter([e.getNameOfDeclaration(t)],v)}function b(t){var r=e.find(t,e.isExportAssignment),n=e.findIndex(t,e.isModuleDeclaration),i=-1!==n?t[n]:void 0;if(i&&r&&r.isExportEquals&&e.isIdentifier(r.expression)&&e.isIdentifier(i.name)&&e.idText(i.name)===e.idText(r.expression)&&i.body&&e.isModuleBlock(i.body)){var a=e.filter(t,(function(t){return!!(1&e.getEffectiveModifierFlags(t))})),o=i.name,s=i.body;if(e.length(a)&&(i=e.factory.updateModuleDeclaration(i,i.decorators,i.modifiers,i.name,s=e.factory.updateModuleBlock(s,e.factory.createNodeArray(__spreadArray(__spreadArray([],i.body.statements),[e.factory.createExportDeclaration(void 0,void 0,!1,e.factory.createNamedExports(e.map(e.flatMap(a,(function(e){return h(e)})),(function(t){return e.factory.createExportSpecifier(void 0,t)}))),void 0)])))),t=__spreadArray(__spreadArray(__spreadArray([],t.slice(0,n)),[i]),t.slice(n+1))),!e.find(t,(function(t){return t!==i&&e.nodeHasName(t,o)}))){c=[];var u=!e.some(s.statements,(function(t){return e.hasSyntacticModifier(t,1)||e.isExportAssignment(t)||e.isExportDeclaration(t)}));e.forEach(s.statements,(function(e){V(e,u?1:0)})),t=__spreadArray(__spreadArray([],e.filter(t,(function(e){return e!==i&&e!==r}))),c)}}return t}function D(t){var r=e.filter(t,(function(t){return e.isExportDeclaration(t)&&!t.moduleSpecifier&&!!t.exportClause&&e.isNamedExports(t.exportClause)}));if(e.length(r)>1){var n=e.filter(t,(function(t){return!e.isExportDeclaration(t)||!!t.moduleSpecifier||!t.exportClause}));t=__spreadArray(__spreadArray([],n),[e.factory.createExportDeclaration(void 0,void 0,!1,e.factory.createNamedExports(e.flatMap(r,(function(t){return e.cast(t.exportClause,e.isNamedExports).elements}))),void 0)])}var i=e.filter(t,(function(t){return e.isExportDeclaration(t)&&!!t.moduleSpecifier&&!!t.exportClause&&e.isNamedExports(t.exportClause)}));if(e.length(i)>1){var a=e.group(i,(function(t){return e.isStringLiteral(t.moduleSpecifier)?">"+t.moduleSpecifier.text:">"}));if(a.length!==i.length)for(var o=function(r){r.length>1&&(t=__spreadArray(__spreadArray([],e.filter(t,(function(e){return-1===r.indexOf(e)}))),[e.factory.createExportDeclaration(void 0,void 0,!1,e.factory.createNamedExports(e.flatMap(r,(function(t){return e.cast(t.exportClause,e.isNamedExports).elements}))),r[0].moduleSpecifier)]))},s=0,c=a;s=0){var n=t[r],i=e.mapDefined(n.exportClause.elements,(function(r){if(!r.propertyName){var n=e.indicesOf(t),i=e.filter(n,(function(n){return e.nodeHasName(t[n],r.name)}));if(e.length(i)&&e.every(i,(function(e){return k(t[e])}))){for(var a=0,o=i;a0&&e.isSingleOrDoubleQuote(a.charCodeAt(0))?e.stripQuotes(a):a}return"default"===n?n="_default":"export="===n&&(n="_exports"),n=e.isIdentifierText(n,z)&&!e.isStringANonContextualKeyword(n)?n:"_"+n.replace(/[^a-zA-Z0-9]/g,"_")}function fe(e,t){var n=w(e);return r.remappedSymbolNames.has(n)?r.remappedSymbolNames.get(n):(t=pe(e,t),r.remappedSymbolNames.set(n,t),t)}}(t,r,s)}))}};function r(r,n,i,a){var o,s;e.Debug.assert(void 0===r||0==(8&r.flags));var c={enclosingDeclaration:r,flags:n||0,tracker:i&&i.trackSymbol?i:{trackSymbol:e.noop,moduleResolverHost:134217728&n?{getCommonSourceDirectory:t.getCommonSourceDirectory?function(){return t.getCommonSourceDirectory()}:function(){return""},getSourceFiles:function(){return t.getSourceFiles()},getCurrentDirectory:function(){return t.getCurrentDirectory()},getSymlinkCache:e.maybeBind(t,t.getSymlinkCache),useCaseSensitiveFileNames:e.maybeBind(t,t.useCaseSensitiveFileNames),redirectTargetsMap:t.redirectTargetsMap,getProjectReferenceRedirect:function(e){return t.getProjectReferenceRedirect(e)},isSourceOfProjectReferenceRedirect:function(e){return t.isSourceOfProjectReferenceRedirect(e)},fileExists:function(e){return t.fileExists(e)},getFileIncludeReasons:function(){return t.getFileIncludeReasons()}}:void 0},encounteredError:!1,visitedTypes:void 0,symbolDepth:void 0,inferTypeParameters:void 0,approximateLength:0},u=a(c);return c.truncating&&1&c.flags&&(null===(s=null===(o=c.tracker)||void 0===o?void 0:o.reportTruncationError)||void 0===s||s.call(o)),c.encounteredError?void 0:u}function i(t){return t.truncating?t.truncating:t.truncating=t.approximateLength>(1&t.flags?e.noTruncationMaximumTruncationLength:e.defaultMaximumTruncationLength)}function o(t,r){n&&n.throwIfCancellationRequested&&n.throwIfCancellationRequested();var a=8388608&r.flags;if(r.flags&=-8388609,!t)return 262144&r.flags?(r.approximateLength+=3,e.factory.createKeywordTypeNode(128)):void(r.encounteredError=!0);if(536870912&r.flags||(t=oc(t)),1&t.flags)return r.approximateLength+=3,e.factory.createKeywordTypeNode(t===Ce?136:128);if(2&t.flags)return e.factory.createKeywordTypeNode(152);if(4&t.flags)return r.approximateLength+=6,e.factory.createKeywordTypeNode(147);if(8&t.flags)return r.approximateLength+=6,e.factory.createKeywordTypeNode(144);if(64&t.flags)return r.approximateLength+=6,e.factory.createKeywordTypeNode(155);if(16&t.flags)return r.approximateLength+=7,e.factory.createKeywordTypeNode(131);if(1024&t.flags&&!(1048576&t.flags)){var p=Ei(t.symbol),f=D(p,r,788968);if(jo(p)===t)return f;var g=e.symbolName(t.symbol);return e.isIdentifierText(g,0)?K(f,e.factory.createTypeReferenceNode(g,void 0)):e.isImportTypeNode(f)?(f.isTypeOf=!0,e.factory.createIndexedAccessTypeNode(f,e.factory.createLiteralTypeNode(e.factory.createStringLiteral(g)))):e.isTypeReferenceNode(f)?e.factory.createIndexedAccessTypeNode(e.factory.createTypeQueryNode(f.typeName),e.factory.createLiteralTypeNode(e.factory.createStringLiteral(g))):e.Debug.fail("Unhandled type node kind returned from `symbolToTypeNode`.")}if(1056&t.flags)return D(t.symbol,r,788968);if(128&t.flags)return r.approximateLength+=t.value.length+2,e.factory.createLiteralTypeNode(e.setEmitFlags(e.factory.createStringLiteral(t.value,!!(268435456&r.flags)),16777216));if(256&t.flags){var m=t.value;return r.approximateLength+=(""+m).length,e.factory.createLiteralTypeNode(m<0?e.factory.createPrefixUnaryExpression(40,e.factory.createNumericLiteral(-m)):e.factory.createNumericLiteral(m))}if(2048&t.flags)return r.approximateLength+=e.pseudoBigIntToString(t.value).length+1,e.factory.createLiteralTypeNode(e.factory.createBigIntLiteral(t.value));if(512&t.flags)return r.approximateLength+=t.intrinsicName.length,e.factory.createLiteralTypeNode("true"===t.intrinsicName?e.factory.createTrue():e.factory.createFalse());if(8192&t.flags){if(!(1048576&r.flags)){if(Xi(t.symbol,r.enclosingDeclaration))return r.approximateLength+=6,D(t.symbol,r,111551);r.tracker.reportInaccessibleUniqueSymbolError&&r.tracker.reportInaccessibleUniqueSymbolError()}return r.approximateLength+=13,e.factory.createTypeOperatorNode(151,e.factory.createKeywordTypeNode(148))}if(16384&t.flags)return r.approximateLength+=4,e.factory.createKeywordTypeNode(113);if(32768&t.flags)return r.approximateLength+=9,e.factory.createKeywordTypeNode(150);if(65536&t.flags)return r.approximateLength+=4,e.factory.createLiteralTypeNode(e.factory.createNull());if(131072&t.flags)return r.approximateLength+=5,e.factory.createKeywordTypeNode(141);if(4096&t.flags)return r.approximateLength+=6,e.factory.createKeywordTypeNode(148);if(67108864&t.flags)return r.approximateLength+=6,e.factory.createKeywordTypeNode(145);if(Il(t))return 4194304&r.flags&&(r.encounteredError||32768&r.flags||(r.encounteredError=!0),r.tracker.reportInaccessibleThisError&&r.tracker.reportInaccessibleThisError()),r.approximateLength+=4,e.factory.createThisTypeNode();if(!a&&t.aliasSymbol&&(16384&r.flags||Gi(t.aliasSymbol,r.enclosingDeclaration))){var y=u(t.aliasTypeArguments,r);return!Ji(t.aliasSymbol.escapedName)||32&t.aliasSymbol.flags?D(t.aliasSymbol,r,788968,y):e.factory.createTypeReferenceNode(e.factory.createIdentifier(""),y)}var v=e.getObjectFlags(t);if(4&v)return e.Debug.assert(!!(524288&t.flags)),t.node?z(t,V):V(t);if(262144&t.flags||3&v){if(262144&t.flags&&e.contains(r.inferTypeParameters,t))return r.approximateLength+=e.symbolName(t.symbol).length+6,e.factory.createInferTypeNode(d(t,r,void 0));if(4&r.flags&&262144&t.flags&&!Gi(t.symbol,r.enclosingDeclaration)){var h=T(t,r);return r.approximateLength+=e.idText(h).length,e.factory.createTypeReferenceNode(e.factory.createIdentifier(e.idText(h)),void 0)}return t.symbol?D(t.symbol,r,788968):e.factory.createTypeReferenceNode(e.factory.createIdentifier("?"),void 0)}if(1048576&t.flags&&t.origin&&(t=t.origin),3145728&t.flags){var b=1048576&t.flags?function(e){for(var t=[],r=0,n=0;n0?1048576&t.flags?e.factory.createUnionTypeNode(x):e.factory.createIntersectionTypeNode(x):void(r.encounteredError||262144&r.flags||(r.encounteredError=!0))}if(48&v)return e.Debug.assert(!!(524288&t.flags)),J(t);if(4194304&t.flags){var S=t.type;r.approximateLength+=6;var C=o(S,r);return e.factory.createTypeOperatorNode(138,C)}if(134217728&t.flags){var E=t.texts,k=t.types,N=e.factory.createTemplateHead(E[0]),A=e.factory.createNodeArray(e.map(k,(function(t,n){return e.factory.createTemplateLiteralTypeSpan(o(t,r),(n10)return s(r);r.symbolDepth.set(c,i+1)}r.visitedTypes.add(a);var u=n(t);return r.visitedTypes.delete(a),c&&r.symbolDepth.set(c,i),u}function U(t){if(Ls(t)||t.containsError)return function(t){e.Debug.assert(!!(524288&t.flags));var n,i=t.declaration.readonlyToken?e.factory.createToken(t.declaration.readonlyToken.kind):void 0,a=t.declaration.questionToken?e.factory.createToken(t.declaration.questionToken.kind):void 0;n=Ps(t)?e.factory.createTypeOperatorNode(138,o(ws(t),r)):o(ks(t),r);var s=d(Es(t),r,n),c=t.declaration.nameType?o(Ns(t),r):void 0,u=o(As(t),r),l=e.factory.createMappedTypeNode(i,s,c,a,u);return r.approximateLength+=10,e.setEmitFlags(l,1)}(t);var n=Rs(t);if(!n.properties.length&&!n.stringIndexInfo&&!n.numberIndexInfo){if(!n.callSignatures.length&&!n.constructSignatures.length)return r.approximateLength+=2,e.setEmitFlags(e.factory.createTypeLiteralNode(void 0),1);if(1===n.callSignatures.length&&!n.constructSignatures.length)return _(n.callSignatures[0],174,r);if(1===n.constructSignatures.length&&!n.callSignatures.length)return _(n.constructSignatures[0],175,r)}var a=e.filter(n.constructSignatures,(function(e){return!!(4&e.flags)}));if(e.some(a)){var u=e.map(a,qc);return n.callSignatures.length+(n.constructSignatures.length-a.length)+(n.stringIndexInfo?1:0)+(n.numberIndexInfo?1:0)+(2048&r.flags?e.countWhere(n.properties,(function(e){return!(4194304&e.flags)})):e.length(n.properties))&&u.push(function(t){if(0===t.constructSignatures.length)return t;if(t.objectTypeWithoutAbstractConstructSignatures)return t.objectTypeWithoutAbstractConstructSignatures;var r=e.filter(t.constructSignatures,(function(e){return!(4&e.flags)}));if(t.constructSignatures===r)return t;var n=Vi(t.symbol,t.members,t.callSignatures,e.some(r)?r:e.emptyArray,t.stringIndexInfo,t.numberIndexInfo);return t.objectTypeWithoutAbstractConstructSignatures=n,n.objectTypeWithoutAbstractConstructSignatures=n,n}(n)),o(ul(u),r)}var p=r.flags;r.flags|=4194304;var f=function(t){if(i(r))return[e.factory.createPropertySignature(void 0,"...",void 0,void 0)];for(var n=[],a=0,o=t.callSignatures;a0){var v=(t.target.typeParameters||e.emptyArray).length;y=u(n.slice(S,v),r)}T=r.flags;r.flags|=16;var h=D(t.symbol,r,788968,y);return r.flags=T,l?K(l,h):h}if(n.length>0){var b=ou(t),x=u(n.slice(0,b),r);if(x){if(t.target.labeledElementDeclarations)for(var S=0;S2)return[o(t[0],r),e.factory.createTypeReferenceNode("... "+(t.length-2)+" more ...",void 0),o(t[t.length-1],r)]}for(var a=!(64&r.flags)?e.createUnderscoreEscapedMultiMap():void 0,s=[],c=0,u=0,l=t;u0)),a}function v(t,r){var n;return 524384&tD(t).flags&&(n=e.factory.createNodeArray(e.map(ho(t),(function(e){return p(e,r)})))),n}function h(t,r,n){var i;e.Debug.assert(t&&0<=r&&r1?y(a,a.length-1,1):void 0,c=i||h(a,0,r),u=x(a[0],r);!(67108864&r.flags)&&e.getEmitModuleResolutionKind(J)===e.ModuleResolutionKind.NodeJs&&u.indexOf("/node_modules/")>=0&&(r.encounteredError=!0,r.tracker.reportLikelyUnsafeImportRequiredError&&r.tracker.reportLikelyUnsafeImportRequiredError(u));var l=e.factory.createLiteralTypeNode(e.factory.createStringLiteral(u));if(r.tracker.trackExternalModuleSymbolOfImportTypeNode&&r.tracker.trackExternalModuleSymbolOfImportTypeNode(a[0]),r.approximateLength+=u.length+10,!s||e.isEntityName(s)){if(s)(f=e.isIdentifier(s)?s:s.right).typeArguments=void 0;return e.factory.createImportTypeNode(l,s,c,o)}var _=b(s),d=_.objectType.typeName;return e.factory.createIndexedAccessTypeNode(e.factory.createImportTypeNode(l,d,c,o),_.indexType)}var p=y(a,a.length-1,0);if(e.isIndexedAccessTypeNode(p))return p;if(o)return e.factory.createTypeQueryNode(p);var f,g=(f=e.isIdentifier(p)?p:p.right).typeArguments;return f.typeArguments=void 0,e.factory.createTypeReferenceNode(p,g);function y(t,n,a){var o,s=n===t.length-1?i:h(t,n,r),c=t[n],u=t[n-1];if(0===n)r.flags|=16777216,o=va(c,r),r.approximateLength+=(o?o.length:0)+1,r.flags^=16777216;else if(u&&bi(u)){var l=bi(u);e.forEachEntry(l,(function(t,r){if(Fi(t,c)&&!Yo(r)&&"export="!==r)return o=e.unescapeLeadingUnderscores(r),!0}))}if(o||(o=va(c,r)),r.approximateLength+=o.length+1,!(16&r.flags)&&u&&ns(u)&&ns(u).get(c.escapedName)&&Fi(ns(u).get(c.escapedName),c)){var _=y(t,n-1,a);return e.isIndexedAccessTypeNode(_)?e.factory.createIndexedAccessTypeNode(_,e.factory.createLiteralTypeNode(e.factory.createStringLiteral(o))):e.factory.createIndexedAccessTypeNode(e.factory.createTypeReferenceNode(_,s),e.factory.createLiteralTypeNode(e.factory.createStringLiteral(o)))}var d=e.setEmitFlags(e.factory.createIdentifier(o,s),16777216);if(d.symbol=c,n>a){_=y(t,n-1,a);return e.isEntityName(_)?e.factory.createQualifiedName(_,d):e.Debug.fail("Impossible construct - an export of an indexed access cannot be reachable")}return d}}function S(e,t,r){var n=An(t.enclosingDeclaration,e,788968,void 0,e,!1);return!!n&&!(262144&n.flags&&n===r.symbol)}function T(t,r){var n;if(4&r.flags&&r.typeParameterNames){var i=r.typeParameterNames.get(Xu(t));if(i)return i}var a=C(t.symbol,r,788968,!0);if(!(78&a.kind))return e.factory.createIdentifier("(Missing type parameter)");if(4&r.flags){for(var o=a.escapedText,s=0,c=o;(null===(n=r.typeParameterNamesByText)||void 0===n?void 0:n.has(c))||S(c,r,t);)c=o+"_"+ ++s;c!==o&&(a=e.factory.createIdentifier(c,a.typeArguments)),(r.typeParameterNames||(r.typeParameterNames=new e.Map)).set(Xu(t),a),(r.typeParameterNamesByText||(r.typeParameterNamesByText=new e.Set)).add(a.escapedText)}return a}function C(t,r,n,i){var a=m(t,r,n);return!i||1===a.length||r.encounteredError||65536&r.flags||(r.encounteredError=!0),function t(n,i){var a=h(n,i,r),o=n[i];0===i&&(r.flags|=16777216);var s=va(o,r);0===i&&(r.flags^=16777216);var c=e.setEmitFlags(e.factory.createIdentifier(s,a),16777216);return c.symbol=o,i>0?e.factory.createQualifiedName(t(n,i-1),c):c}(a,a.length-1)}function E(t,r,n){var i=m(t,r,n);return function t(n,i){var a=h(n,i,r),o=n[i];0===i&&(r.flags|=16777216);var s=va(o,r);0===i&&(r.flags^=16777216);var c=s.charCodeAt(0);if(e.isSingleOrDoubleQuote(c)&&e.some(o.declarations,ra))return e.factory.createStringLiteral(x(o,r));var u=35===c?s.length>1&&e.isIdentifierStart(s.charCodeAt(1),z):e.isIdentifierStart(c,z);if(0===i||u){var l=e.setEmitFlags(e.factory.createIdentifier(s,a),16777216);return l.symbol=o,i>0?e.factory.createPropertyAccessExpression(t(n,i-1),l):l}91===c&&(s=s.substring(1,s.length-1),c=s.charCodeAt(0));var _=void 0;return e.isSingleOrDoubleQuote(c)?_=e.factory.createStringLiteral(s.substring(1,s.length-1).replace(/\\./g,(function(e){return e.substring(1)})),39===c):""+ +s===s&&(_=e.factory.createNumericLiteral(+s)),_||((_=e.setEmitFlags(e.factory.createIdentifier(s,a),16777216)).symbol=o),e.factory.createElementAccessExpression(t(n,i-1),_)}(i,i.length-1)}function k(t){var r=e.getNameOfDeclaration(t);return!!r&&e.isStringLiteral(r)}function N(t){var r=e.getNameOfDeclaration(t);return!!(r&&e.isStringLiteral(r)&&(r.singleQuote||!e.nodeIsSynthesized(r)&&e.startsWith(e.getTextOfNode(r,!1),"'")))}function A(t,r){var n=!!e.length(t.declarations)&&e.every(t.declarations,N),i=function(t,r,n){var i=Sn(t).nameType;if(i){if(384&i.flags){var a=""+i.value;return e.isIdentifierText(a,J.target)||Pm(a)?Pm(a)&&e.startsWith(a,"-")?e.factory.createComputedPropertyName(e.factory.createNumericLiteral(+a)):F(a):e.factory.createStringLiteral(a,!!n)}if(8192&i.flags)return e.factory.createComputedPropertyName(E(i.symbol,r,111551))}}(t,r,n);return i||(e.isKnownSymbol(t)?e.factory.createComputedPropertyName(e.factory.createPropertyAccessExpression(e.factory.createIdentifier("Symbol"),t.escapedName.substr(3))):F(e.unescapeLeadingUnderscores(t.escapedName),!!e.length(t.declarations)&&e.every(t.declarations,k),n))}function F(t,r,n){return e.isIdentifierText(t,J.target)?e.factory.createIdentifier(t):!r&&Pm(t)&&+t>=0?e.factory.createNumericLiteral(+t):e.factory.createStringLiteral(t,!!n)}function I(t,r){return t.declarations&&e.find(t.declarations,(function(t){return!(!e.getEffectiveTypeAnnotationNode(t)||r&&!e.findAncestor(t,(function(e){return e===r})))}))}function O(t,r){return!(4&e.getObjectFlags(r))||!e.isTypeReferenceNode(t)||e.length(t.typeArguments)>=Ec(r.target.typeParameters)}function M(t,r,n,i,a,s){if(r!==Se&&i){var c=I(n,i);if(c&&!e.isFunctionLikeDeclaration(c)){var u=e.getEffectiveTypeAnnotationNode(c);if(v_(u)===r&&O(u,r)){var l=R(t,u,a,s);if(l)return l}}}var _=t.flags;8192&r.flags&&r.symbol===n&&(!t.enclosingDeclaration||e.some(n.declarations,(function(r){return e.getSourceFileOfNode(r)===e.getSourceFileOfNode(t.enclosingDeclaration)})))&&(t.flags|=1048576);var d=o(r,t);return t.flags=_,d}function L(t,r,n){var i,a,o=!1,s=e.getFirstIdentifier(t);if(e.isInJSFile(t)&&(e.isExportsIdentifier(s)||e.isModuleExportsAccessExpression(s.parent)||e.isQualifiedName(s.parent)&&e.isModuleIdentifier(s.parent.left)&&e.isExportsIdentifier(s.parent.right)))return{introducesError:o=!0,node:t};var c=ui(s,67108863,!0,!0);if(c&&(0!==Zi(c,r.enclosingDeclaration,67108863,!1).accessibility?o=!0:(null===(a=null===(i=r.tracker)||void 0===i?void 0:i.trackSymbol)||void 0===a||a.call(i,c,r.enclosingDeclaration,67108863),null==n||n(c)),e.isIdentifier(t))){var u=262144&c.flags?T(jo(c),r):e.factory.cloneNode(t);return u.symbol=c,{introducesError:o,node:e.setEmitFlags(e.setOriginalNode(u,t),16777216)}}return{introducesError:o,node:t}}function R(r,i,a,s){n&&n.throwIfCancellationRequested&&n.throwIfCancellationRequested();var c=!1,u=e.getSourceFileOfNode(i),l=e.visitNode(i,(function n(i){if(e.isJSDocAllType(i)||310===i.kind)return e.factory.createKeywordTypeNode(128);if(e.isJSDocUnknownType(i))return e.factory.createKeywordTypeNode(152);if(e.isJSDocNullableType(i))return e.factory.createUnionTypeNode([e.visitNode(i.type,n),e.factory.createLiteralTypeNode(e.factory.createNull())]);if(e.isJSDocOptionalType(i))return e.factory.createUnionTypeNode([e.visitNode(i.type,n),e.factory.createKeywordTypeNode(150)]);if(e.isJSDocNonNullableType(i))return e.visitNode(i.type,n);if(e.isJSDocVariadicType(i))return e.factory.createArrayTypeNode(e.visitNode(i.type,n));if(e.isJSDocTypeLiteral(i))return e.factory.createTypeLiteralNode(e.map(i.jsDocPropertyTags,(function(t){var a=e.isIdentifier(t.name)?t.name:t.name.right,s=Ea(v_(i),a.escapedText),c=s&&t.typeExpression&&v_(t.typeExpression.type)!==s?o(s,r):void 0;return e.factory.createPropertySignature(void 0,a,t.isBracketed||t.typeExpression&&e.isJSDocOptionalType(t.typeExpression.type)?e.factory.createToken(57):void 0,c||t.typeExpression&&e.visitNode(t.typeExpression.type,n)||e.factory.createKeywordTypeNode(128))})));if(e.isTypeReferenceNode(i)&&e.isIdentifier(i.typeName)&&""===i.typeName.escapedText)return e.setOriginalNode(e.factory.createKeywordTypeNode(128),i);if((e.isExpressionWithTypeArguments(i)||e.isTypeReferenceNode(i))&&e.isJSDocIndexSignature(i))return e.factory.createTypeLiteralNode([e.factory.createIndexSignature(void 0,void 0,[e.factory.createParameterDeclaration(void 0,void 0,void 0,"x",void 0,e.visitNode(i.typeArguments[0],n))],e.visitNode(i.typeArguments[1],n))]);if(e.isJSDocFunctionType(i)){var l;return e.isJSDocConstructSignature(i)?e.factory.createConstructorTypeNode(i.modifiers,e.visitNodes(i.typeParameters,n),e.mapDefined(i.parameters,(function(t,r){return t.name&&e.isIdentifier(t.name)&&"new"===t.name.escapedText?void(l=t.type):e.factory.createParameterDeclaration(void 0,void 0,g(t),m(t,r),t.questionToken,e.visitNode(t.type,n),void 0)})),e.visitNode(l||i.type,n)||e.factory.createKeywordTypeNode(128)):e.factory.createFunctionTypeNode(e.visitNodes(i.typeParameters,n),e.map(i.parameters,(function(t,r){return e.factory.createParameterDeclaration(void 0,void 0,g(t),m(t,r),t.questionToken,e.visitNode(t.type,n),void 0)})),e.visitNode(i.type,n)||e.factory.createKeywordTypeNode(128))}if(e.isTypeReferenceNode(i)&&e.isInJSDoc(i)&&(!O(i,v_(i))||vu(i)||ve===lu(uu(i),788968,!0)))return e.setOriginalNode(o(v_(i),r),i);if(e.isLiteralImportTypeNode(i)){var _=Tn(i).resolvedSymbol;return!e.isInJSDoc(i)||!_||(i.isTypeOf||788968&_.flags)&&e.length(i.typeArguments)>=Ec(ho(_))?e.factory.updateImportTypeNode(i,e.factory.updateLiteralTypeNode(i.argument,function(n,i){if(s){if(r.tracker&&r.tracker.moduleResolverHost){var a=SS(n);if(a){var o={getCanonicalFileName:e.createGetCanonicalFileName(!!t.useCaseSensitiveFileNames),getCurrentDirectory:function(){return r.tracker.moduleResolverHost.getCurrentDirectory()},getCommonSourceDirectory:function(){return r.tracker.moduleResolverHost.getCommonSourceDirectory()}},c=e.getResolvedExternalModuleName(o,a);return e.factory.createStringLiteral(c)}}}else if(r.tracker&&r.tracker.trackExternalModuleSymbolOfImportTypeNode){var u=di(i,i,void 0);u&&r.tracker.trackExternalModuleSymbolOfImportTypeNode(u)}return i}(i,i.argument.literal)),i.qualifier,e.visitNodes(i.typeArguments,n,e.isTypeNode),i.isTypeOf):e.setOriginalNode(o(v_(i),r),i)}if(e.isEntityName(i)||e.isEntityNameExpression(i)){var d=L(i,r,a),p=d.introducesError,f=d.node;if(c=c||p,f!==i)return f}u&&e.isTupleTypeNode(i)&&e.getLineAndCharacterOfPosition(u,i.pos).line===e.getLineAndCharacterOfPosition(u,i.end).line&&e.setEmitFlags(i,1);return e.visitEachChild(i,n,e.nullTransformationContext);function g(t){return t.dotDotDotToken||(t.type&&e.isJSDocVariadicType(t.type)?e.factory.createToken(25):void 0)}function m(t,r){return t.name&&e.isIdentifier(t.name)&&"this"===t.name.escapedText?"this":g(t)?"args":"arg"+r}}));if(!c)return l===i?e.setTextRange(e.factory.cloneNode(i),i):l}}(),ee=e.createSymbolTable(),te=fn(4,"undefined");te.declarations=[];var re=fn(1536,"globalThis",8);re.exports=ee,re.declarations=[],ee.set(re.escapedName,re);var ne,ie=fn(4,"arguments"),ae=fn(4,"require"),oe={getNodeCount:function(){return e.sum(t.getSourceFiles(),"nodeCount")},getIdentifierCount:function(){return e.sum(t.getSourceFiles(),"identifierCount")},getSymbolCount:function(){return e.sum(t.getSourceFiles(),"symbolCount")+m},getTypeCatalog:function(){return S},getTypeCount:function(){return g},getInstantiationCount:function(){return v},getRelationCacheSizes:function(){return{assignable:en.size,identity:rn.size,subtype:Zr.size,strictSubtype:$r.size}},isUndefinedSymbol:function(e){return e===te},isArgumentsSymbol:function(e){return e===ie},isUnknownSymbol:function(e){return e===ve},getMergedSymbol:Ti,getDiagnostics:ND,getGlobalDiagnostics:function(){return AD(),Gr.getGlobalDiagnostics()},getRecursionIdentity:Hd,getTypeOfSymbolAtLocation:function(t,r){var n=e.getParseTreeNode(r);return n?function(t,r){if(t=t.exportSymbol||t,78===r.kind&&(e.isRightSideOfQualifiedNameOrPropertyAccess(r)&&(r=r.parent),e.isExpressionNode(r)&&!e.isAssignmentTarget(r))){var n=tb(r);if(Pi(Tn(r).resolvedSymbol)===t)return n}return _o(t)}(t,n):Se},getSymbolsOfParameterPropertyDeclaration:function(t,r){var n=e.getParseTreeNode(t,e.isParameter);return void 0===n?e.Debug.fail("Cannot get symbols of a synthetic parameter that cannot be resolved to a parse-tree node."):function(t,r){var n=t.parent,i=t.parent.parent,a=En(n.locals,r,111551),o=En(ns(i.symbol),r,111551);if(a&&o)return[a,o];return e.Debug.fail("There should exist two symbols, one as property declaration and one as parameter declaration")}(n,e.escapeLeadingUnderscores(r))},getDeclaredTypeOfSymbol:jo,getPropertiesOfType:zs,getPropertyOfType:function(t,r){return _c(t,e.escapeLeadingUnderscores(r))},getPrivateIdentifierPropertyOfType:function(t,r,n){var i=e.getParseTreeNode(n);if(i){var a=by(e.escapeLeadingUnderscores(r),i);return a?xy(t,a):void 0}},getTypeOfPropertyOfType:function(t,r){return Ea(t,e.escapeLeadingUnderscores(r))},getIndexInfoOfType:mc,getSignaturesOfType:pc,getIndexTypeOfType:yc,getBaseTypes:ko,getBaseTypeOfLiteralType:up,getWidenedType:Jp,getTypeFromTypeNode:function(t){var r=e.getParseTreeNode(t,e.isTypeNode);return r?v_(r):Se},getParameterType:Gv,getPromisedTypeOfPromise:Eb,getAwaitedType:function(e){return Nb(e)},getReturnTypeOfSignature:Mc,isNullableType:ly,getNullableType:Tp,getNonNullableType:Ep,getNonOptionalType:Ap,getTypeArguments:au,typeToTypeNode:$.typeToTypeNode,indexInfoToIndexSignatureDeclaration:$.indexInfoToIndexSignatureDeclaration,signatureToSignatureDeclaration:$.signatureToSignatureDeclaration,symbolToEntityName:$.symbolToEntityName,symbolToExpression:$.symbolToExpression,symbolToTypeParameterDeclarations:$.symbolToTypeParameterDeclarations,symbolToParameterDeclaration:$.symbolToParameterDeclaration,typeParameterToDeclaration:$.typeParameterToDeclaration,getSymbolsInScope:function(t,r){var n=e.getParseTreeNode(t);return n?function(t,r){if(16777216&t.flags)return[];var n=e.createSymbolTable(),i=!1;return a(),n.delete("this"),bc(n);function a(){for(;t;){switch(t.locals&&!Cn(t)&&s(t.locals,r),t.kind){case 297:if(!e.isExternalOrCommonJsModule(t))break;case 256:s(Ci(t).exports,2623475&r);break;case 255:s(Ci(t).exports,8&r);break;case 221:t.name&&o(t.symbol,r);case 252:case 253:i||s(ns(Ci(t)),788968&r);break;case 208:t.name&&o(t.symbol,r)}e.introducesArgumentsExoticObject(t)&&o(ie,r),i=e.hasSyntacticModifier(t,32),t=t.parent}s(ee,r)}function o(t,r){if(e.getCombinedLocalAndExportSymbolFlags(t)&r){var i=t.escapedName;n.has(i)||n.set(i,t)}}function s(e,t){t&&e.forEach((function(e){o(e,t)}))}}(n,r):[]},getSymbolAtLocation:function(t){var r=e.getParseTreeNode(t);return r?LD(r,!0):void 0},getShorthandAssignmentValueSymbol:function(t){var r=e.getParseTreeNode(t);return r?function(e){if(e&&289===e.kind)return ui(e.name,2208703);return}(r):void 0},getExportSpecifierLocalTargetSymbol:function(t){var r=e.getParseTreeNode(t,e.isExportSpecifier);return r?function(t){return e.isExportSpecifier(t)?t.parent.parent.moduleSpecifier?Gn(t.parent.parent,t):ui(t.propertyName||t.name,2998271):ui(t,2998271)}(r):void 0},getExportSymbolOfSymbol:function(e){return Ti(e.exportSymbol||e)},getTypeAtLocation:function(t){var r=e.getParseTreeNode(t);return r?RD(r):Se},getTypeOfAssignmentPattern:function(t){var r=e.getParseTreeNode(t,e.isAssignmentPattern);return r&&BD(r)||Se},getPropertySymbolOfDestructuringAssignment:function(t){var r=e.getParseTreeNode(t,e.isIdentifier);return r?function(t){var r=BD(e.cast(t.parent.parent,e.isAssignmentPattern));return r&&_c(r,t.escapedText)}(r):void 0},signatureToString:function(t,r,n,i){return oa(t,e.getParseTreeNode(r),n,i)},typeToString:function(t,r,n){return sa(t,e.getParseTreeNode(r),n)},symbolToString:function(t,r,n,i){return aa(t,e.getParseTreeNode(r),n,i)},typePredicateToString:function(t,r,n){return pa(t,e.getParseTreeNode(r),n)},writeSignature:function(t,r,n,i,a){return oa(t,e.getParseTreeNode(r),n,i,a)},writeType:function(t,r,n,i){return sa(t,e.getParseTreeNode(r),n,i)},writeSymbol:function(t,r,n,i,a){return aa(t,e.getParseTreeNode(r),n,i,a)},writeTypePredicate:function(t,r,n,i){return pa(t,e.getParseTreeNode(r),n,i)},getAugmentedPropertiesOfType:UD,getRootSymbols:function t(r){var n=function(t){if(6&e.getCheckFlags(t))return e.mapDefined(Sn(t).containingType.types,(function(e){return _c(e,t.escapedName)}));if(33554432&t.flags){var r=t,n=r.leftSpread,i=r.rightSpread,a=r.syntheticOrigin;return n?[n,i]:a?[a]:e.singleElementArray(function(e){var t,r=e;for(;r=Sn(r).target;)t=r;return t}(t))}return}(r);return n?e.flatMap(n,t):[r]},getSymbolOfExpando:Pv,getContextualType:function(t,r){var n=e.getParseTreeNode(t,e.isExpression);if(n){var i=e.findAncestor(n,e.isCallLikeExpression),a=i&&Tn(i).resolvedSignature;if(4&r&&i){var o=n;do{Tn(o).skipDirectInference=!0,o=o.parent}while(o&&o!==i);Tn(i).resolvedSignature=void 0}var s=vm(n,r);if(4&r&&i){o=n;do{Tn(o).skipDirectInference=void 0,o=o.parent}while(o&&o!==i);Tn(i).resolvedSignature=a}return s}},getContextualTypeForObjectLiteralElement:function(t){var r=e.getParseTreeNode(t,e.isObjectLiteralElementLike);return r?lm(r):void 0},getContextualTypeForArgumentAtIndex:function(t,r){var n=e.getParseTreeNode(t,e.isCallLikeExpression);return n&&im(n,r)},getContextualTypeForJsxAttribute:function(t){var r=e.getParseTreeNode(t,e.isJsxAttributeLike);return r&&pm(r)},isContextSensitive:G_,getFullyQualifiedName:ci,getResolvedSignature:function(e,t,r){return se(e,t,r,0)},getResolvedSignatureForSignatureHelp:function(e,t,r){return se(e,t,r,16)},getExpandedParameters:_s,hasEffectiveRestParameter:$v,getConstantValue:function(t){var r=e.getParseTreeNode(t,uS);return r?lS(r):void 0},isValidPropertyAccess:function(t,r){var n=e.getParseTreeNode(t,e.isPropertyAccessOrQualifiedNameOrImportTypeNode);return!!n&&function(e,t){switch(e.kind){case 201:return Oy(e,105===e.expression.kind,t,Jp(ib(e.expression)));case 157:return Oy(e,!1,t,Jp(ib(e.left)));case 195:return Oy(e,!1,t,v_(e))}}(n,e.escapeLeadingUnderscores(r))},isValidPropertyAccessForCompletions:function(t,r,n){var i=e.getParseTreeNode(t,e.isPropertyAccessExpression);return!!i&&function(e,t,r){return Oy(e,201===e.kind&&105===e.expression.kind,r.escapedName,t)}(i,r,n)},getSignatureFromDeclaration:function(t){var r=e.getParseTreeNode(t,e.isFunctionLike);return r?Nc(r):void 0},isImplementationOfOverload:function(t){var r=e.getParseTreeNode(t,e.isFunctionLike);return r?rS(r):void 0},getImmediateAliasedSymbol:Om,getAliasedSymbol:ti,getEmitResolver:function(e,t){return ND(e,t),Z},getExportsOfModule:vi,getExportsAndPropertiesOfModule:function(t){var r=vi(t),n=gi(t);n!==t&&e.addRange(r,zs(_o(n)));return r},getSymbolWalker:e.createGetSymbolWalker((function(e){return Bc(e)||be}),Oc,Mc,ko,Rs,_o,Cf,gc,Vs,e.getFirstIdentifier,au),getAmbientModules:function(){dt||(dt=[],ee.forEach((function(e,t){a.test(t)&&dt.push(e)})));return dt},getJsxIntrinsicTagNamesAt:function(t){var r=Vm(k.IntrinsicElements,t);return r?zs(r):e.emptyArray},isOptionalParameter:function(t){var r=e.getParseTreeNode(t,e.isParameter);return!!r&&Sc(r)},tryGetMemberInModuleExports:function(t,r){return hi(e.escapeLeadingUnderscores(t),r)},tryGetMemberInModuleExportsAndProperties:function(t,r){return function(t,r){var n=hi(t,r);if(n)return n;var i=gi(r);if(i===r)return;var a=_o(i);return 131068&a.flags||1&e.getObjectFlags(a)||ap(a)?void 0:_c(a,t)}(e.escapeLeadingUnderscores(t),r)},tryFindAmbientModuleWithoutAugmentations:function(e){return Dc(e,!1)},getApparentType:tc,getUnionType:rl,isTypeAssignableTo:id,createAnonymousType:Vi,createSignature:ss,createSymbol:fn,createIndexInfo:Gc,getAnyType:function(){return be},getStringType:function(){return we},getNumberType:function(){return Ie},createPromiseType:sh,createArrayType:Ou,getElementTypeOfArrayType:tp,getBooleanType:function(){return je},getFalseType:function(e){return e?Me:Le},getTrueType:function(e){return e?Re:Be},getVoidType:function(){return ze},getUndefinedType:function(){return ke},getNullType:function(){return Fe},getESSymbolType:function(){return Je},getNeverType:function(){return Ue},getOptionalType:function(){return Ae},isSymbolAccessible:Zi,isArrayType:Zd,isTupleType:fp,isArrayLikeType:rp,isTypeInvalidDueToUnionDiscriminant:function(e,t){return t.properties.some((function(t){var r=t.name&&gl(t.name),n=r&&Xo(r)?es(r):void 0,i=void 0===n?void 0:Ea(e,n);return!!i&&cp(i)&&!id(RD(t),i)}))},getAllPossiblePropertiesOfTypes:function(t){var r=rl(t);if(!(1048576&r.flags))return UD(r);for(var n=e.createSymbolTable(),i=0,a=t;i>",0,be),or=ss(void 0,void 0,void 0,e.emptyArray,be,void 0,0,0),sr=ss(void 0,void 0,void 0,e.emptyArray,Se,void 0,0,0),cr=ss(void 0,void 0,void 0,e.emptyArray,be,void 0,0,0),ur=ss(void 0,void 0,void 0,e.emptyArray,Ve,void 0,0,0),lr=Gc(we,!0),_r=new e.Map,dr={get yieldType(){return e.Debug.fail("Not supported")},get returnType(){return e.Debug.fail("Not supported")},get nextType(){return e.Debug.fail("Not supported")}},pr=Dx(be,be,be),fr=Dx(be,be,Ee),gr=Dx(Ue,be,ke),mr={iterableCacheKey:"iterationTypesOfAsyncIterable",iteratorCacheKey:"iterationTypesOfAsyncIterator",iteratorSymbolName:"asyncIterator",getGlobalIteratorType:function(e){return Kt||(Kt=Cu("AsyncIterator",3,e))||it},getGlobalIterableType:function(e){return Vt||(Vt=Cu("AsyncIterable",1,e))||it},getGlobalIterableIteratorType:function(e){return qt||(qt=Cu("AsyncIterableIterator",1,e))||it},getGlobalGeneratorType:function(e){return Wt||(Wt=Cu("AsyncGenerator",3,e))||it},resolveIterationType:Nb,mustHaveANextMethodDiagnostic:e.Diagnostics.An_async_iterator_must_have_a_next_method,mustBeAMethodDiagnostic:e.Diagnostics.The_0_property_of_an_async_iterator_must_be_a_method,mustHaveAValueDiagnostic:e.Diagnostics.The_type_returned_by_the_0_method_of_an_async_iterator_must_be_a_promise_for_a_type_with_a_value_property},yr={iterableCacheKey:"iterationTypesOfIterable",iteratorCacheKey:"iterationTypesOfIterator",iteratorSymbolName:"iterator",getGlobalIteratorType:function(e){return Bt||(Bt=Cu("Iterator",3,e))||it},getGlobalIterableType:Fu,getGlobalIterableIteratorType:function(e){return jt||(jt=Cu("IterableIterator",1,e))||it},getGlobalGeneratorType:function(e){return Jt||(Jt=Cu("Generator",3,e))||it},resolveIterationType:function(e,t){return e},mustHaveANextMethodDiagnostic:e.Diagnostics.An_iterator_must_have_a_next_method,mustBeAMethodDiagnostic:e.Diagnostics.The_0_property_of_an_iterator_must_be_a_method,mustHaveAValueDiagnostic:e.Diagnostics.The_type_returned_by_the_0_method_of_an_iterator_must_have_a_value_property},vr=new e.Map,hr=!1,br=new e.Map,xr=0,Dr=0,Sr=0,Tr=!1,Cr=0,Er=p_(""),kr=p_(0),Nr=p_({negative:!1,base10Value:"0"}),Ar=[],Fr=[],Pr=[],wr=0,Ir=[],Or=[],Mr=[],Lr=[],Rr=[],Br=[],jr=[],Jr=[],zr=[],Ur=[],Vr=[],Kr=[],qr=[],Wr=[],Hr=[],Gr=e.createDiagnosticCollection(),Xr=e.createDiagnosticCollection(),Qr=new e.Map(e.getEntries({string:we,number:Ie,bigint:Oe,boolean:je,symbol:Je,undefined:ke})),Yr=rl(e.arrayFrom(b.keys(),p_)),Zr=new e.Map,$r=new e.Map,en=new e.Map,tn=new e.Map,rn=new e.Map,nn=new e.Map,an=e.createSymbolTable();return an.set(te.escapedName,te),function(){for(var r=0,n=t.getSourceFiles();r=5||e.some(o.relatedInformation,(function(t){return 0===e.compareDiagnostics(t,s)||0===e.compareDiagnostics(t,i)})))return"continue";e.addRelatedInfo(o,e.length(o.relatedInformation)?s:i)},c=0,u=i||e.emptyArray;c1)}function Sn(e){if(33554432&e.flags)return e;var t=w(e);return Or[t]||(Or[t]=new A)}function Tn(e){var t=P(e);return Mr[t]||(Mr[t]=new F)}function Cn(t){return 297===t.kind&&!e.isExternalOrCommonJsModule(t)}function En(t,r,n){if(n){var i=Ti(t.get(r));if(i){if(e.Debug.assert(0==(1&e.getCheckFlags(i)),"Should never get an instantiated symbol here."),i.flags&n)return i;if(2097152&i.flags){var a=ti(i);if(a===ve||a.flags&n)return i}}}}function kn(r,n){var i=e.getSourceFileOfNode(r),a=e.getSourceFileOfNode(n),o=e.getEnclosingBlockScopeContainer(r);if(i!==a){if(U&&(i.externalModuleIndicator||a.externalModuleIndicator)||!e.outFile(J)||Ef(n)||8388608&r.flags)return!0;if(u(n,r))return!0;var s=t.getSourceFiles();return s.indexOf(i)<=s.indexOf(a)}if(r.pos<=n.pos&&(!e.isPropertyDeclaration(r)||!e.isThisProperty(n.parent)||r.initializer||r.exclamationToken)){if(198===r.kind){var c=e.getAncestor(n,198);return c?e.findAncestor(c,e.isBindingElement)!==e.findAncestor(r,e.isBindingElement)||r.post.end)&&void 0===e.findAncestor(r,(function(r){if(r===t)return"quit";switch(r.kind){case 209:return!0;case 163:return!n||!(e.isPropertyDeclaration(t)&&r.parent===t.parent||e.isParameterPropertyDeclaration(t,t.parent)&&r.parent===t.parent.parent)||"quit";case 230:switch(r.parent.kind){case 167:case 165:case 168:return!0;default:return!1}default:return!1}}))}}function Nn(t,r,n){var i=e.getEmitScriptTarget(J),a=r;if(e.isParameter(n)&&a.body&&t.valueDeclaration.pos>=a.body.pos&&t.valueDeclaration.end<=a.body.end&&i>=2){var o=Tn(a);return void 0===o.declarationRequiresScopeChange&&(o.declarationRequiresScopeChange=e.forEach(a.parameters,(function(e){return s(e.name)||!!e.initializer&&s(e.initializer)}))||!1),!o.declarationRequiresScopeChange}return!1;function s(t){switch(t.kind){case 209:case 208:case 251:case 166:return!1;case 165:case 167:case 168:case 288:return s(t.name);case 163:return e.hasStaticModifier(t)?i<99||!J.useDefineForClassFields:s(t.name);default:return e.isNullishCoalesce(t)||e.isOptionalChain(t)?i<7:e.isBindingElement(t)&&t.dotDotDotToken&&e.isObjectBindingPattern(t.parent)?i<4:!e.isTypeNode(t)&&(e.forEachChild(t,s)||!1)}}}function An(e,t,r,n,i,a,o,s){return void 0===o&&(o=!1),Fn(e,t,r,n,i,a,o,En,s)}function Fn(t,r,n,i,a,o,s,c,u){var l,_,d,p,f,g,m=t,y=!1,v=t,h=!1;e:for(;t;){if(t.locals&&!Cn(t)&&(l=c(t.locals,r,n))){var b=!0;if(e.isFunctionLike(t)&&_&&_!==t.body?(n&l.flags&788968&&311!==_.kind&&(b=!!(262144&l.flags)&&(_===t.type||160===_.kind||159===_.kind)),n&l.flags&3&&(Nn(l,t,_)?b=!1:1&l.flags&&(b=160===_.kind||_===t.type&&!!e.findAncestor(l.valueDeclaration,e.isParameter)))):184===t.kind&&(b=_===t.trueType),b)break e;l=void 0}switch(y=y||Pn(t,_),t.kind){case 297:if(!e.isExternalOrCommonJsModule(t))break;h=!0;case 256:var x=Ci(t).exports||T;if(297===t.kind||e.isModuleDeclaration(t)&&8388608&t.flags&&!e.isGlobalScopeAugmentation(t)){if(l=x.get("default")){var D=e.getLocalSymbolForExportDefault(l);if(D&&l.flags&n&&D.escapedName===r)break e;l=void 0}var S=x.get(r);if(S&&2097152===S.flags&&(e.getDeclarationOfKind(S,270)||e.getDeclarationOfKind(S,269)))break}if("default"!==r&&(l=c(x,r,2623475&n))){if(!e.isSourceFile(t)||!t.commonJsModuleIndicator||l.declarations.some(e.isJSDocTypeAlias))break e;l=void 0}break;case 255:if(l=c(Ci(t).exports,r,8&n))break e;break;case 163:if(!e.hasSyntacticModifier(t,32)){var C=Ii(t.parent);C&&C.locals&&c(C.locals,r,111551&n)&&(p=t)}break;case 252:case 221:case 253:if(l=c(Ci(t).members||T,r,788968&n)){if(!On(l,t)){l=void 0;break}if(_&&e.hasSyntacticModifier(_,32))return void cn(v,e.Diagnostics.Static_members_cannot_reference_class_type_parameters);break e}if(221===t.kind&&32&n){var E=t.name;if(E&&r===E.escapedText){l=t.symbol;break e}}break;case 223:if(_===t.expression&&93===t.parent.token){var k=t.parent.parent;if(e.isClassLike(k)&&(l=c(Ci(k).members,r,788968&n)))return void(i&&cn(v,e.Diagnostics.Base_class_expressions_cannot_reference_class_type_parameters))}break;case 158:if(g=t.parent.parent,(e.isClassLike(g)||253===g.kind)&&(l=c(Ci(g).members,r,788968&n)))return void cn(v,e.Diagnostics.A_computed_property_name_cannot_reference_a_type_parameter_from_its_containing_type);break;case 209:if(J.target>=2)break;case 165:case 166:case 167:case 168:case 251:if(3&n&&"arguments"===r){l=ie;break e}break;case 208:if(3&n&&"arguments"===r){l=ie;break e}if(16&n){var N=t.name;if(N&&r===N.escapedText){l=t.symbol;break e}}break;case 161:t.parent&&160===t.parent.kind&&(t=t.parent),t.parent&&(e.isClassElement(t.parent)||252===t.parent.kind)&&(t=t.parent);break;case 331:case 324:case 325:(O=e.getJSDocRoot(t))&&(t=O.parent);break;case 160:_&&(_===t.initializer||_===t.name&&e.isBindingPattern(_))&&(f||(f=t));break;case 198:_&&(_===t.initializer||_===t.name&&e.isBindingPattern(_))&&e.isParameterDeclaration(t)&&!f&&(f=t);break;case 185:if(262144&n){var A=t.typeParameter.name;if(A&&r===A.escapedText){l=t.typeParameter.symbol;break e}}}wn(t)&&(d=t),_=t,t=t.parent}if(!o||!l||d&&l===d.symbol||(l.isReferenced|=n),!l){if(_&&(e.Debug.assert(297===_.kind),_.commonJsModuleIndicator&&"exports"===r&&n&_.symbol.flags))return _.symbol;s||(l=c(ee,r,n))}if(!l&&m&&e.isInJSFile(m)&&m.parent&&e.isRequireCall(m.parent,!1))return ae;if(l){if(i){if(p&&(99!==J.target||!J.useDefineForClassFields)){var F=p.name;return void cn(v,e.Diagnostics.Initializer_of_instance_member_variable_0_cannot_reference_identifier_1_declared_in_the_constructor,e.declarationNameToString(F),In(a))}if(v&&(2&n||(32&n||384&n)&&111551==(111551&n))){var P=Pi(l);(2&P.flags||32&P.flags||384&P.flags)&&function(t,r){if(e.Debug.assert(!!(2&t.flags||32&t.flags||384&t.flags)),67108881&t.flags&&32&t.flags)return;var n=e.find(t.declarations,(function(t){return e.isBlockOrCatchScoped(t)||e.isClassLike(t)||255===t.kind}));if(void 0===n)return e.Debug.fail("checkResolvedBlockScopedVariable could not find block-scoped declaration");if(!(8388608&n.flags||kn(n,r))){var i=void 0,a=e.declarationNameToString(e.getNameOfDeclaration(n));2&t.flags?i=cn(r,e.Diagnostics.Block_scoped_variable_0_used_before_its_declaration,a):32&t.flags?i=cn(r,e.Diagnostics.Class_0_used_before_its_declaration,a):256&t.flags?i=cn(r,e.Diagnostics.Enum_0_used_before_its_declaration,a):(e.Debug.assert(!!(128&t.flags)),e.shouldPreserveConstEnums(J)&&(i=cn(r,e.Diagnostics.Enum_0_used_before_its_declaration,a))),i&&e.addRelatedInfo(i,e.createDiagnosticForNode(n,e.Diagnostics._0_is_declared_here,a))}}(P,v)}if(l&&h&&111551==(111551&n)&&!(4194304&m.flags)){var w=Ti(l);e.length(w.declarations)&&e.every(w.declarations,(function(t){return e.isNamespaceExportDeclaration(t)||e.isSourceFile(t)&&!!t.symbol.globalExports}))&&ln(!J.allowUmdGlobalAccess,v,e.Diagnostics._0_refers_to_a_UMD_global_but_the_current_file_is_a_module_Consider_adding_an_import_instead,e.unescapeLeadingUnderscores(r))}if(l&&f&&!y&&111551==(111551&n)){var I=Ti(is(l)),O=e.getRootDeclaration(f);I===Ci(f)?cn(v,e.Diagnostics.Parameter_0_cannot_reference_itself,e.declarationNameToString(f.name)):I.valueDeclaration&&I.valueDeclaration.pos>f.pos&&O.parent.locals&&c(O.parent.locals,I.escapedName,n)===I&&cn(v,e.Diagnostics.Parameter_0_cannot_reference_identifier_1_declared_after_it,e.declarationNameToString(f.name),e.declarationNameToString(v))}l&&v&&111551&n&&2097152&l.flags&&function(t,r,n){if(!e.isValidTypeOnlyAliasUseSite(n)){var i=ii(t);if(i){var a=e.typeOnlyDeclarationIsExport(i),o=a?e.Diagnostics._0_cannot_be_used_as_a_value_because_it_was_exported_using_export_type:e.Diagnostics._0_cannot_be_used_as_a_value_because_it_was_imported_using_import_type,s=a?e.Diagnostics._0_was_exported_here:e.Diagnostics._0_was_imported_here,c=e.unescapeLeadingUnderscores(r);e.addRelatedInfo(cn(n,o,c),e.createDiagnosticForNode(i,s,c))}}}(l,r,v)}return l}if(i&&!(v&&(function(t,r,n){if(!e.isIdentifier(t)||t.escapedText!==r||PD(t)||Ef(t))return!1;var i=e.getThisContainer(t,!1),a=i;for(;a;){if(e.isClassLike(a.parent)){var o=Ci(a.parent);if(!o)break;if(_c(_o(o),r))return cn(t,e.Diagnostics.Cannot_find_name_0_Did_you_mean_the_static_member_1_0,In(n),aa(o)),!0;if(a===i&&!e.hasSyntacticModifier(a,32))if(_c(jo(o).thisType,r))return cn(t,e.Diagnostics.Cannot_find_name_0_Did_you_mean_the_instance_member_this_0,In(n)),!0}a=a.parent}return!1}(v,r,a)||Mn(v)||function(t,r,n){var i=1920|(e.isInJSFile(t)?111551:0);if(n===i){var a=ei(An(t,r,788968&~i,void 0,void 0,!1)),o=t.parent;if(a){if(e.isQualifiedName(o)){e.Debug.assert(o.left===t,"Should only be resolving left side of qualified name as a namespace");var s=o.right.escapedText;if(_c(jo(a),s))return cn(o,e.Diagnostics.Cannot_access_0_1_because_0_is_a_type_but_not_a_namespace_Did_you_mean_to_retrieve_the_type_of_the_property_1_in_0_with_0_1,e.unescapeLeadingUnderscores(r),e.unescapeLeadingUnderscores(s)),!0}return cn(t,e.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_namespace_here,e.unescapeLeadingUnderscores(r)),!0}}return!1}(v,r,n)||function(t,r){if(Rn(r)&&270===t.parent.kind)return cn(t,e.Diagnostics.Cannot_export_0_Only_local_declarations_can_be_exported_from_a_module,r),!0;return!1}(v,r)||function(t,r,n){if(111551&n){if(Rn(r))return cn(t,e.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here,e.unescapeLeadingUnderscores(r)),!0;var i=ei(An(t,r,788544,void 0,void 0,!1));if(i&&!(1024&i.flags)){var a=e.unescapeLeadingUnderscores(r);return!function(e){switch(e){case"Promise":case"Symbol":case"Map":case"WeakMap":case"Set":case"WeakSet":return!0}return!1}(r)?!function(t,r){var n=e.findAncestor(t.parent,(function(t){return!e.isComputedPropertyName(t)&&!e.isPropertySignature(t)&&(e.isTypeLiteralNode(t)||"quit")}));if(n&&1===n.members.length){var i=jo(r);return!!(1048576&i.flags)&&Nh(i,384,!0)}return!1}(t,i)?cn(t,e.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here,a):cn(t,e.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Did_you_mean_to_use_1_in_0,a,"K"===a?"P":"K"):cn(t,e.Diagnostics._0_only_refers_to_a_type_but_is_being_used_as_a_value_here_Do_you_need_to_change_your_target_library_Try_changing_the_lib_compiler_option_to_es2015_or_later,a),!0}}return!1}(v,r,n)||function(t,r,n){if(111127&n){if(ei(An(t,r,1024,void 0,void 0,!1)))return cn(t,e.Diagnostics.Cannot_use_namespace_0_as_a_value,e.unescapeLeadingUnderscores(r)),!0}else if(788544&n){if(ei(An(t,r,1536,void 0,void 0,!1)))return cn(t,e.Diagnostics.Cannot_use_namespace_0_as_a_type,e.unescapeLeadingUnderscores(r)),!0}return!1}(v,r,n)||function(t,r,n){if(788584&n){var i=ei(An(t,r,111127,void 0,void 0,!1));if(i&&!(1920&i.flags))return cn(t,e.Diagnostics._0_refers_to_a_value_but_is_being_used_as_a_type_here_Did_you_mean_typeof_0,e.unescapeLeadingUnderscores(r)),!0}return!1}(v,r,n)))){var M=void 0;if(u&&wr<10)if((M=Fy(m,r,n))&&M.valueDeclaration&&e.isAmbientModule(M.valueDeclaration)&&e.isGlobalScopeAugmentation(M.valueDeclaration)&&(M=void 0),M){var L=aa(M),R=cn(v,u,In(a),L);M.valueDeclaration&&e.addRelatedInfo(R,e.createDiagnosticForNode(M.valueDeclaration,e.Diagnostics._0_is_declared_here,L))}if(!M&&a){var B=function(t){for(var r=In(t),n=e.getScriptTargetFeatures(),i=e.getOwnKeys(n),a=0,o=i;a=e.ModuleKind.ES2015?"allowSyntheticDefaultImports":"esModuleInterop",c=n.exports.get("export=").valueDeclaration,u=cn(t.name,e.Diagnostics.Module_0_can_only_be_default_imported_using_the_1_flag,aa(n),s);e.addRelatedInfo(u,e.createDiagnosticForNode(c,e.Diagnostics.This_module_is_declared_with_using_export_and_can_only_be_used_with_a_default_import_when_using_the_0_flag,s))}else!function(t,r){var n,i;if(null===(n=t.exports)||void 0===n?void 0:n.has(r.symbol.escapedName))cn(r.name,e.Diagnostics.Module_0_has_no_default_export_Did_you_mean_to_use_import_1_from_0_instead,aa(t),aa(r.symbol));else{var a=cn(r.name,e.Diagnostics.Module_0_has_no_default_export,aa(t)),o=null===(i=t.exports)||void 0===i?void 0:i.get("__export");if(o){var s=e.find(o.declarations,(function(t){var r,n;return!!(e.isExportDeclaration(t)&&t.moduleSpecifier&&(null===(n=null===(r=_i(t,t.moduleSpecifier))||void 0===r?void 0:r.exports)||void 0===n?void 0:n.has("default")))}));s&&e.addRelatedInfo(a,e.createDiagnosticForNode(s,e.Diagnostics.export_Asterisk_does_not_re_export_a_default))}}}(n,t);return ri(t,i,void 0,!1),i}}function Gn(t,r,n){var i;void 0===n&&(n=!1);var a=e.getExternalModuleRequireArgument(t)||t.moduleSpecifier,o=_i(t,a),s=!e.isPropertyAccessExpression(r)&&r.propertyName||r.name;if(e.isIdentifier(s)){var c=mi(o,a,n,"default"===s.escapedText&&!(!J.allowSyntheticDefaultImports&&!J.esModuleInterop));if(c&&s.escapedText){if(e.isShorthandAmbientModuleSymbol(o))return o;var u=void 0;u=o&&o.exports&&o.exports.get("export=")?_c(_o(c),s.escapedText,!0):function(e,t){if(3&e.flags){var r=e.valueDeclaration.type;if(r)return ei(_c(v_(r),t))}}(c,s.escapedText),u=ei(u,n);var l=function(e,t,r,n){if(1536&e.flags){var i=bi(e).get(t.escapedText),a=ei(i,n);return ri(r,i,a,!1),a}}(c,s,r,n);if(void 0===l&&"default"===s.escapedText)Wn(e.find(o.declarations,e.isSourceFile),o,n)&&(l=gi(o,n)||ei(o,n));var _=l&&u&&l!==u?function(t,r){if(t===ve&&r===ve)return ve;if(790504&t.flags)return t;var n=fn(t.flags|r.flags,t.escapedName);return n.declarations=e.deduplicate(e.concatenate(t.declarations,r.declarations),e.equateValues),n.parent=t.parent||r.parent,t.valueDeclaration&&(n.valueDeclaration=t.valueDeclaration),r.members&&(n.members=new e.Map(r.members)),t.exports&&(n.exports=new e.Map(t.exports)),n}(u,l):l||u;if(!_){var d=ci(o,t),p=e.declarationNameToString(s),f=Py(s,c);if(void 0!==f){var g=aa(f),m=cn(s,e.Diagnostics._0_has_no_exported_member_named_1_Did_you_mean_2,d,p,g);f.valueDeclaration&&e.addRelatedInfo(m,e.createDiagnosticForNode(f.valueDeclaration,e.Diagnostics._0_is_declared_here,g))}else(null===(i=o.exports)||void 0===i?void 0:i.has("default"))?cn(s,e.Diagnostics.Module_0_has_no_exported_member_1_Did_you_mean_to_use_import_1_from_0_instead,d,p):function(t,r,n,i,a){var o,s=null===(o=i.valueDeclaration.locals)||void 0===o?void 0:o.get(r.escapedText),c=i.exports;if(s){var u=null==c?void 0:c.get("export=");if(u)Fi(u,s)?function(t,r,n,i){if(U>=e.ModuleKind.ES2015){cn(r,J.esModuleInterop?e.Diagnostics._0_can_only_be_imported_by_using_a_default_import:e.Diagnostics._0_can_only_be_imported_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import,n)}else{if(e.isInJSFile(t))cn(r,J.esModuleInterop?e.Diagnostics._0_can_only_be_imported_by_using_a_require_call_or_by_using_a_default_import:e.Diagnostics._0_can_only_be_imported_by_using_a_require_call_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import,n);else cn(r,J.esModuleInterop?e.Diagnostics._0_can_only_be_imported_by_using_import_1_require_2_or_a_default_import:e.Diagnostics._0_can_only_be_imported_by_using_import_1_require_2_or_by_turning_on_the_esModuleInterop_flag_and_using_a_default_import,n,n,i)}}(t,r,n,a):cn(r,e.Diagnostics.Module_0_has_no_exported_member_1,a,n);else{var l=c?e.find(bc(c),(function(e){return!!Fi(e,s)})):void 0,_=l?cn(r,e.Diagnostics.Module_0_declares_1_locally_but_it_is_exported_as_2,a,n,aa(l)):cn(r,e.Diagnostics.Module_0_declares_1_locally_but_it_is_not_exported,a,n);e.addRelatedInfo.apply(void 0,__spreadArray([_],e.map(s.declarations,(function(t,r){return e.createDiagnosticForNode(t,0===r?e.Diagnostics._0_is_declared_here:e.Diagnostics.and_here,n)}))))}}else cn(r,e.Diagnostics.Module_0_has_no_exported_member_1,a,n)}(t,s,p,o,d)}return _}}}function Xn(t){if(e.isVariableDeclaration(t)&&t.initializer&&e.isPropertyAccessExpression(t.initializer))return t.initializer}function Qn(e,t,r){var n=e.parent.parent.moduleSpecifier?Gn(e.parent.parent,e,r):ui(e.propertyName||e.name,t,!1,r);return ri(e,void 0,n,!1),n}function Yn(t,r){if(e.isClassExpression(t))return Jh(t).symbol;if(e.isEntityName(t)||e.isEntityNameExpression(t)){var n=ui(t,901119,!0,r);return n||(Jh(t),Tn(t).resolvedSymbol)}}function Zn(t,r){switch(void 0===r&&(r=!1),t.kind){case 260:case 249:return Vn(t,r);case 262:return Hn(t,r);case 263:return function(e,t){var r=e.parent.parent.moduleSpecifier,n=_i(e,r),i=mi(n,r,t,!1);return ri(e,n,i,!1),i}(t,r);case 269:return function(e,t){var r=e.parent.moduleSpecifier,n=r&&_i(e,r),i=r&&mi(n,r,t,!1);return ri(e,n,i,!1),i}(t,r);case 265:case 198:return function(t,r){var n=e.isBindingElement(t)?e.getRootDeclaration(t):t.parent.parent.parent,i=Xn(n),a=Gn(n,i||t,r),o=t.propertyName||t.name;return i&&a&&e.isIdentifier(o)?ei(_c(_o(a),o.escapedText),r):(ri(t,void 0,a,!1),a)}(t,r);case 270:return Qn(t,901119,r);case 266:case 216:return function(t,r){var n=Yn(e.isExportAssignment(t)?t.expression:t.right,r);return ri(t,void 0,n,!1),n}(t,r);case 259:return function(e,t){var r=gi(e.parent.symbol,t);return ri(e,void 0,r,!1),r}(t,r);case 289:return ui(t.name,901119,!0,r);case 288:return function(e,t){return Yn(e.initializer,t)}(t,r);case 202:case 201:return function(t,r){if(e.isBinaryExpression(t.parent)&&t.parent.left===t&&62===t.parent.operatorToken.kind)return Yn(t.parent.right,r)}(t,r);default:return e.Debug.fail()}}function $n(e,t){return void 0===t&&(t=901119),!!e&&(2097152==(e.flags&(2097152|t))||!!(2097152&e.flags&&67108864&e.flags))}function ei(e,t){return!t&&$n(e)?ti(e):e}function ti(t){e.Debug.assert(0!=(2097152&t.flags),"Should only get Alias here.");var r=Sn(t);if(r.target)r.target===he&&(r.target=ve);else{r.target=he;var n=Jn(t);if(!n)return e.Debug.fail();var i=Zn(n);r.target===he?r.target=i||ve:cn(n,e.Diagnostics.Circular_definition_of_import_alias_0,aa(t))}return r.target}function ri(t,r,n,i){if(!t||e.isPropertyAccessExpression(t))return!1;var a=Ci(t);if(e.isTypeOnlyImportOrExportDeclaration(t))return Sn(a).typeOnlyDeclaration=t,!0;var o=Sn(a);return ni(o,r,i)||ni(o,n,i)}function ni(t,r,n){var i,a,o;if(r&&(void 0===t.typeOnlyDeclaration||n&&!1===t.typeOnlyDeclaration)){var s=null!==(a=null===(i=r.exports)||void 0===i?void 0:i.get("export="))&&void 0!==a?a:r,c=s.declarations&&e.find(s.declarations,e.isTypeOnlyImportOrExportDeclaration);t.typeOnlyDeclaration=null!==(o=null!=c?c:Sn(s).typeOnlyDeclaration)&&void 0!==o&&o}return!!t.typeOnlyDeclaration}function ii(e){if(2097152&e.flags)return Sn(e).typeOnlyDeclaration||void 0}function ai(e){var t=Ci(e),r=ti(t);r&&((r===ve||111551&r.flags&&!eS(r)&&!ii(t))&&oi(t))}function oi(t){var r=Sn(t);if(!r.referenced){r.referenced=!0;var n=Jn(t);if(!n)return e.Debug.fail();if(e.isInternalModuleImportEqualsDeclaration(n)){var i=ei(t);(i===ve||111551&i.flags)&&Jh(n.moduleReference)}}}function si(t,r){return 78===t.kind&&e.isRightSideOfQualifiedNameOrPropertyAccess(t)&&(t=t.parent),78===t.kind||157===t.parent.kind?ui(t,1920,!1,r):(e.Debug.assert(260===t.parent.kind),ui(t,901119,!1,r))}function ci(e,t){return e.parent?ci(e.parent,t)+"."+aa(e):aa(e,t,void 0,20)}function ui(t,r,n,i,a){if(!e.nodeIsMissing(t)){var o,s=1920|(e.isInJSFile(t)?111551&r:0);if(78===t.kind){var c=r===s||e.nodeIsSynthesized(t)?e.Diagnostics.Cannot_find_namespace_0:Tf(e.getFirstIdentifier(t)),u=e.isInJSFile(t)&&!e.nodeIsSynthesized(t)?function(t,r){if(mu(t.parent)){var n=function(t){if(e.findAncestor(t,(function(t){return e.isJSDocNode(t)||4194304&t.flags?e.isJSDocTypeAlias(t):"quit"})))return;var r=e.getJSDocHost(t);if(r&&e.isExpressionStatement(r)&&e.isBinaryExpression(r.expression)&&3===e.getAssignmentDeclarationKind(r.expression)){if(i=Ci(r.expression.left))return li(i)}if(r&&(e.isObjectLiteralMethod(r)||e.isPropertyAssignment(r))&&e.isBinaryExpression(r.parent.parent)&&6===e.getAssignmentDeclarationKind(r.parent.parent)){if(i=Ci(r.parent.parent.left))return li(i)}var n=e.getEffectiveJSDocHost(t);if(n&&e.isFunctionLike(n)){var i;return(i=Ci(n))&&i.valueDeclaration}}(t.parent);if(n)return An(n,t.escapedText,r,void 0,t,!0)}}(t,r):void 0;if(!(o=Ti(An(a||t,t.escapedText,r,n||u?void 0:c,t,!0))))return Ti(u)}else{if(157!==t.kind&&201!==t.kind)throw e.Debug.assertNever(t,"Unknown entity name kind.");var l=157===t.kind?t.left:t.expression,_=157===t.kind?t.right:t.name,d=ui(l,s,n,!1,a);if(!d||e.nodeIsMissing(_))return;if(d===ve)return d;if(e.isInJSFile(t)&&d.valueDeclaration&&e.isVariableDeclaration(d.valueDeclaration)&&d.valueDeclaration.initializer&&Rv(d.valueDeclaration.initializer)){var p=d.valueDeclaration.initializer.arguments[0],f=_i(p,p);if(f){var g=gi(f);g&&(d=g)}}if(!(o=Ti(En(bi(d),_.escapedText,r)))){if(!n){var m=ci(d),y=e.declarationNameToString(_),v=Py(_,d);v?cn(_,e.Diagnostics._0_has_no_exported_member_named_1_Did_you_mean_2,m,y,aa(v)):cn(_,e.Diagnostics.Namespace_0_has_no_exported_member_1,m,y)}return}}return e.Debug.assert(0==(1&e.getCheckFlags(o)),"Should never get an instantiated symbol here."),!e.nodeIsSynthesized(t)&&e.isEntityName(t)&&(2097152&o.flags||266===t.parent.kind)&&ri(e.getAliasDeclarationFromName(t),o,void 0,!0),o.flags&r||i?o:ti(o)}}function li(t){var r=t.parent.valueDeclaration;if(r)return(e.isAssignmentDeclaration(r)?e.getAssignedExpandoInitializer(r):e.hasOnlyExpressionInitializer(r)?e.getDeclaredExpandoInitializer(r):void 0)||r}function _i(t,r,n){var i=e.getEmitModuleResolutionKind(J)===e.ModuleResolutionKind.Classic?e.Diagnostics.Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option:e.Diagnostics.Cannot_find_module_0_or_its_corresponding_type_declarations;return di(t,r,n?void 0:i)}function di(t,r,n,i){return void 0===i&&(i=!1),e.isStringLiteralLike(r)?pi(t,r.text,n,r,i):void 0}function pi(r,n,i,a,o){(void 0===o&&(o=!1),e.startsWith(n,"@types/"))&&cn(a,m=e.Diagnostics.Cannot_import_type_declaration_files_Consider_importing_0_instead_of_1,e.removePrefix(n,"@types/"),n);var s=Dc(n,!0);if(s)return s;var c=e.getSourceFileOfNode(r),u=e.getResolvedModule(c,n),l=u&&e.getResolutionDiagnostic(J,u),_=u&&!l&&t.getSourceFile(u.resolvedFileName);if(_)return _.symbol?(u.isExternalLibraryImport&&!e.resolutionExtensionIsTSOrJson(u.extension)&&fi(!1,a,u,n),Ti(_.symbol)):void(i&&cn(a,e.Diagnostics.File_0_is_not_a_module,_.fileName));if(pt){var d=e.findBestPatternMatch(pt,(function(e){return e.pattern}),n);if(d){var p=ft&&ft.get(n);return Ti(p?p:d.symbol)}}if(u&&!e.resolutionExtensionIsTSOrJson(u.extension)&&void 0===l||l===e.Diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type)o?cn(a,m=e.Diagnostics.Invalid_module_name_in_augmentation_Module_0_resolves_to_an_untyped_module_at_1_which_cannot_be_augmented,n,u.resolvedFileName):fi(G&&!!i,a,u,n);else if(i){if(u){var f=t.getProjectReferenceRedirect(u.resolvedFileName);if(f)return void cn(a,e.Diagnostics.Output_file_0_has_not_been_built_from_source_file_1,f,u.resolvedFileName)}if(l)cn(a,l,n,u.resolvedFileName);else{var g=e.tryExtractTSExtension(n);if(g){var m=e.Diagnostics.An_import_path_cannot_end_with_a_0_extension_Consider_importing_1_instead,y=e.removeExtension(n,g);e.getEmitModuleKind(J)>=e.ModuleKind.ES2015&&(y+=".js"),cn(a,m,g,y)}else!J.resolveJsonModule&&e.fileExtensionIs(n,".json")&&e.getEmitModuleResolutionKind(J)===e.ModuleResolutionKind.NodeJs&&e.hasJsonModuleEmitEnabled(J)?cn(a,e.Diagnostics.Cannot_find_module_0_Consider_using_resolveJsonModule_to_import_module_with_json_extension,n):cn(a,i,n)}}}function fi(t,r,n,i){var a,o=n.packageId,s=n.resolvedFileName,c=!e.isExternalModuleNameRelative(i)&&o?(a=o.name,_().has(e.getTypesPackageName(a))?e.chainDiagnosticMessages(void 0,e.Diagnostics.If_the_0_package_actually_exposes_this_module_consider_sending_a_pull_request_to_amend_https_Colon_Slash_Slashgithub_com_SlashDefinitelyTyped_SlashDefinitelyTyped_Slashtree_Slashmaster_Slashtypes_Slash_1,o.name,e.mangleScopedPackageName(o.name)):e.chainDiagnosticMessages(void 0,e.Diagnostics.Try_npm_i_save_dev_types_Slash_1_if_it_exists_or_add_a_new_declaration_d_ts_file_containing_declare_module_0,i,e.mangleScopedPackageName(o.name))):void 0;ln(t,r,e.chainDiagnosticMessages(c,e.Diagnostics.Could_not_find_a_declaration_file_for_module_0_1_implicitly_has_an_any_type,i,s))}function gi(t,r){if(null==t?void 0:t.exports){var n=function(t,r){if(!t||t===ve||t===r||1===r.exports.size||2097152&t.flags)return t;var n=Sn(t);if(n.cjsExportMerged)return n.cjsExportMerged;var i=33554432&t.flags?t:yn(t);i.flags=512|i.flags,void 0===i.exports&&(i.exports=e.createSymbolTable());return r.exports.forEach((function(e,t){"export="!==t&&i.exports.set(t,i.exports.has(t)?vn(i.exports.get(t),e):e)})),Sn(i).cjsExportMerged=i,n.cjsExportMerged=i}(Ti(ei(t.exports.get("export="),r)),Ti(t));return Ti(n)||t}}function mi(t,r,n,i){var a=gi(t,n);if(!n&&a){if(!(i||1539&a.flags||e.getDeclarationOfKind(a,297))){var o=U>=e.ModuleKind.ES2015?"allowSyntheticDefaultImports":"esModuleInterop";return cn(r,e.Diagnostics.This_module_can_only_be_referenced_with_ECMAScript_imports_Slashexports_by_turning_on_the_0_flag_and_referencing_its_default_export,o),a}if(J.esModuleInterop){var s=r.parent;if(e.isImportDeclaration(s)&&e.getNamespaceDeclarationNode(s)||e.isImportCall(s)){var c=_o(a),u=dc(c,0);if(u&&u.length||(u=dc(c,1)),u&&u.length){var l=Lv(c,a,t),_=fn(a.flags,a.escapedName);_.declarations=a.declarations?a.declarations.slice():[],_.parent=a.parent,_.target=a,_.originatingImport=s,a.valueDeclaration&&(_.valueDeclaration=a.valueDeclaration),a.constEnumOnlyModule&&(_.constEnumOnlyModule=!0),a.members&&(_.members=new e.Map(a.members)),a.exports&&(_.exports=new e.Map(a.exports));var d=Rs(l);return _.type=Vi(_,d.members,e.emptyArray,e.emptyArray,d.stringIndexInfo,d.numberIndexInfo),_}}}}return a}function yi(e){return void 0!==e.exports.get("export=")}function vi(e){return bc(xi(e))}function hi(e,t){var r=xi(t);if(r)return r.get(e)}function bi(e){return 6256&e.flags?rs(e,"resolvedExports"):1536&e.flags?xi(e):e.exports||T}function xi(e){var t=Sn(e);return t.resolvedExports||(t.resolvedExports=Si(e))}function Di(t,r,n,i){r&&r.forEach((function(r,a){if("default"!==a){var o=t.get(a);if(o){if(n&&i&&o&&ei(o)!==ei(r)){var s=n.get(a);s.exportsWithDuplicate?s.exportsWithDuplicate.push(i):s.exportsWithDuplicate=[i]}}else t.set(a,r),n&&i&&n.set(a,{specifierText:e.getTextOfNode(i.moduleSpecifier)})}}))}function Si(t){var r=[];return function t(n){if(!(n&&n.exports&&e.pushIfUnique(r,n)))return;var i=new e.Map(n.exports),a=n.exports.get("__export");if(a){for(var o=e.createSymbolTable(),s=new e.Map,c=0,u=a.declarations;c=l?u.substr(0,l-"...".length)+"...":u}function ca(e,t){var r=la(e.symbol)?sa(e,e.symbol.valueDeclaration):sa(e),n=la(t.symbol)?sa(t,t.symbol.valueDeclaration):sa(t);return r===n&&(r=ua(e),n=ua(t)),[r,n]}function ua(e){return sa(e,void 0,64)}function la(t){return t&&t.valueDeclaration&&e.isExpression(t.valueDeclaration)&&!G_(t.valueDeclaration)}function _a(e){return void 0===e&&(e=0),814775659&e}function da(t){return!!(t.symbol&&32&t.symbol.flags&&(t===Fo(t.symbol)||1073741824&e.getObjectFlags(t)))}function pa(t,r,n,i){return void 0===n&&(n=16384),i?a(i).getText():e.usingSingleLineStringWriter(a);function a(i){var a=e.factory.createTypePredicateNode(2===t.kind||3===t.kind?e.factory.createToken(127):void 0,1===t.kind||3===t.kind?e.factory.createIdentifier(t.parameterName):e.factory.createThisTypeNode(),t.type&&$.typeToTypeNode(t.type,r,70222336|_a(n))),o=e.createPrinter({removeComments:!0}),s=r&&e.getSourceFileOfNode(r);return o.writeNode(4,a,s,i),i}}function fa(e){return 8===e?"private":16===e?"protected":"public"}function ga(t){return t&&t.parent&&257===t.parent.kind&&e.isExternalModuleAugmentation(t.parent.parent)}function ma(t){return 297===t.kind||e.isAmbientModule(t)}function ya(t,r){var n=Sn(t).nameType;if(n){if(384&n.flags){var i=""+n.value;return e.isIdentifierText(i,J.target)||Pm(i)?Pm(i)&&e.startsWith(i,"-")?"["+i+"]":i:'"'+e.escapeString(i,34)+'"'}if(8192&n.flags)return"["+va(n.symbol,r)+"]"}}function va(t,r){if(r&&"default"===t.escapedName&&!(16384&r.flags)&&(!(16777216&r.flags)||!t.declarations||r.enclosingDeclaration&&e.findAncestor(t.declarations[0],ma)!==e.findAncestor(r.enclosingDeclaration,ma)))return"default";if(t.declarations&&t.declarations.length){var n=e.firstDefined(t.declarations,(function(t){return e.getNameOfDeclaration(t)?t:void 0})),i=n&&e.getNameOfDeclaration(n);if(n&&i){if(e.isCallExpression(n)&&e.isBindableObjectDefinePropertyCall(n))return e.symbolName(t);if(e.isComputedPropertyName(i)&&!(4096&e.getCheckFlags(t))){var a=Sn(t).nameType;if(a&&384&a.flags){var o=ya(t,r);if(void 0!==o)return o}}return e.declarationNameToString(i)}if(n||(n=t.declarations[0]),n.parent&&249===n.parent.kind)return e.declarationNameToString(n.parent.name);switch(n.kind){case 221:case 208:case 209:return!r||r.encounteredError||131072&r.flags||(r.encounteredError=!0),221===n.kind?"(Anonymous class)":"(Anonymous function)"}}var s=ya(t,r);return void 0!==s?s:e.symbolName(t)}function ha(t){if(t){var r=Tn(t);return void 0===r.isVisible&&(r.isVisible=!!function(){switch(t.kind){case 324:case 331:case 325:return!!(t.parent&&t.parent.parent&&t.parent.parent.parent&&e.isSourceFile(t.parent.parent.parent));case 198:return ha(t.parent.parent);case 249:if(e.isBindingPattern(t.name)&&!t.name.elements.length)return!1;case 256:case 252:case 253:case 254:case 251:case 255:case 260:if(e.isExternalModuleAugmentation(t))return!0;var r=Ca(t);return 1&e.getCombinedModifierFlags(t)||260!==t.kind&&297!==r.kind&&8388608&r.flags?ha(r):Cn(r);case 163:case 162:case 167:case 168:case 165:case 164:if(e.hasEffectiveModifier(t,24))return!1;case 166:case 170:case 169:case 171:case 160:case 257:case 174:case 175:case 177:case 173:case 178:case 179:case 182:case 183:case 186:case 192:return ha(t.parent);case 262:case 263:case 265:return!1;case 159:case 297:case 259:return!0;case 266:default:return!1}}()),r.isVisible}return!1}function ba(t,r){var n,i,a;return t.parent&&266===t.parent.kind?n=An(t,t.escapedText,2998271,void 0,t,!1):270===t.parent.kind&&(n=Qn(t.parent,2998271)),n&&((a=new e.Set).add(w(n)),function t(n){e.forEach(n,(function(n){var o=jn(n)||n;if(r?Tn(n).isVisible=!0:(i=i||[],e.pushIfUnique(i,o)),e.isInternalModuleImportEqualsDeclaration(n)){var s=n.moduleReference,c=An(n,e.getFirstIdentifier(s).escapedText,901119,void 0,void 0,!1);c&&a&&e.tryAddToSet(a,w(c))&&t(c.declarations)}}))}(n.declarations)),i}function xa(e,t){var r=Da(e,t);if(r>=0){for(var n=Ar.length,i=r;i=0;r--){if(Sa(Ar[r],Pr[r]))return-1;if(Ar[r]===e&&Pr[r]===t)return r}return-1}function Sa(t,r){switch(r){case 0:return!!Sn(t).type;case 5:return!!Tn(t).resolvedEnumType;case 2:return!!Sn(t).declaredType;case 1:return!!t.resolvedBaseConstructorType;case 3:return!!t.resolvedReturnType;case 4:return!!t.immediateBaseConstraint;case 6:return!!t.resolvedTypeArguments;case 7:return!!t.baseTypesResolved}return e.Debug.assertNever(r)}function Ta(){return Ar.pop(),Pr.pop(),Fr.pop()}function Ca(t){return e.findAncestor(e.getRootDeclaration(t),(function(e){switch(e.kind){case 249:case 250:case 265:case 264:case 263:case 262:return!1;default:return!0}})).parent}function Ea(e,t){var r=_c(e,t);return r?_o(r):void 0}function ka(e){return e&&0!=(1&e.flags)}function Na(e){var t=Ci(e);return t&&Sn(t).type||Ra(e,!1)}function Aa(t,r,n){if(131072&(t=og(t,(function(e){return!(98304&e.flags)}))).flags)return et;if(1048576&t.flags)return cg(t,(function(e){return Aa(e,r,n)}));var i=rl(e.map(r,gl));if(Pl(t)||wl(i)){if(131072&i.flags)return t;var a=Qt||(Qt=Tu("Omit",524288,e.Diagnostics.Cannot_find_global_type_0));return a?cu(a,[t,i]):Se}for(var o=e.createSymbolTable(),s=0,c=zs(t);s=2?(i=be,wu(Fu(!0),[i])):Et;var c=e.map(a,(function(t){return e.isOmittedExpression(t)?be:Ga(t,r,n)})),u=e.findLastIndex(a,(function(t){return!(t===s||e.isOmittedExpression(t)||Em(t))}),a.length-1)+1,l=zu(c,e.map(a,(function(e,t){return e===s?4:t>=u?2:1})));return r&&((l=nu(l)).pattern=t,l.objectFlags|=1048576),l}function Qa(t,r,n){return void 0===r&&(r=!1),void 0===n&&(n=!1),196===t.kind?function(t,r,n){var i,a=e.createSymbolTable(),o=1048704;e.forEach(t.elements,(function(e){var t=e.propertyName||e.name;if(e.dotDotDotToken)i=Gc(be,!1);else{var s=gl(t);if(Xo(s)){var c=es(s),u=fn(4|(e.initializer?16777216:0),c);u.type=Ga(e,r,n),u.bindingElement=e,a.set(u.escapedName,u)}else o|=512}}));var s=Vi(void 0,a,e.emptyArray,e.emptyArray,i,void 0);return s.objectFlags|=o,r&&(s.pattern=t,s.objectFlags|=1048576),s}(t,r,n):Xa(t,r,n)}function Ya(e,t){return Za(Ra(e,!0),e,t)}function Za(t,r,n){return t?(n&&Kp(r,t),8192&t.flags&&(e.isBindingElement(r)||!r.type)&&t.symbol!==Ci(r)&&(t=Je),Jp(t)):(t=e.isParameter(r)&&r.dotDotDotToken?Et:be,n&&($a(r)||Vp(r,t)),t)}function $a(t){var r=e.getRootDeclaration(t);return xb(160===r.kind?r.parent:r)}function eo(t){var r=e.getEffectiveTypeAnnotationNode(t);if(r)return v_(r)}function to(t){var r=Sn(t);if(!r.type){var n=function(t){if(4194304&t.flags)return(r=jo(Ei(t))).typeParameters?ru(r,e.map(r.typeParameters,(function(e){return be}))):r;var r;if(t===ae)return be;if(134217728&t.flags){var n=Ci(e.getSourceFileOfNode(t.valueDeclaration)),i=fn(n.flags,"exports");i.declarations=n.declarations?n.declarations.slice():[],i.parent=t,i.target=n,n.valueDeclaration&&(i.valueDeclaration=n.valueDeclaration),n.members&&(i.members=new e.Map(n.members)),n.exports&&(i.exports=new e.Map(n.exports));var a=e.createSymbolTable();return a.set("exports",i),Vi(t,a,e.emptyArray,e.emptyArray,void 0,void 0)}var o,s=t.valueDeclaration;if(e.isCatchClauseVariableDeclarationOrBindingElement(s)){var c=s;if(!c.type)return be;var u=RD(c.type);return ka(u)||u===Ee?u:Se}if(e.isSourceFile(s)&&e.isJsonSourceFile(s))return s.statements.length?Jp(lp(ib(s.statements[0].expression))):et;if(!xa(t,0))return 512&t.flags&&!(67108864&t.flags)?co(t):lo(t);if(266===s.kind)o=Za(Jh(s.expression),s);else if(e.isBinaryExpression(s)||e.isInJSFile(s)&&(e.isCallExpression(s)||(e.isPropertyAccessExpression(s)||e.isBindableStaticElementAccessExpression(s))&&e.isBinaryExpression(s.parent)))o=Va(t);else if(e.isPropertyAccessExpression(s)||e.isElementAccessExpression(s)||e.isIdentifier(s)||e.isStringLiteralLike(s)||e.isNumericLiteral(s)||e.isClassDeclaration(s)||e.isFunctionDeclaration(s)||e.isMethodDeclaration(s)&&!e.isObjectLiteralMethod(s)||e.isMethodSignature(s)||e.isSourceFile(s)){if(9136&t.flags)return co(t);o=e.isBinaryExpression(s.parent)?Va(t):eo(s)||be}else if(e.isPropertyAssignment(s))o=eo(s)||Hh(s);else if(e.isJsxAttribute(s))o=eo(s)||jm(s);else if(e.isShorthandPropertyAssignment(s))o=eo(s)||Wh(s.name,0);else if(e.isObjectLiteralMethod(s))o=eo(s)||Gh(s,0);else if(e.isParameter(s)||e.isPropertyDeclaration(s)||e.isPropertySignature(s)||e.isVariableDeclaration(s)||e.isBindingElement(s)||e.isJSDocPropertyLikeTag(s))o=Ya(s,!0);else if(e.isEnumDeclaration(s))o=co(t);else if(e.isEnumMember(s))o=uo(t);else{if(!e.isAccessor(s))return e.Debug.fail("Unhandled declaration kind! "+e.Debug.formatSyntaxKind(s.kind)+" for "+e.Debug.formatSymbol(t));o=oo(t)}if(!Ta())return 512&t.flags&&!(67108864&t.flags)?co(t):lo(t);return o}(t);r.type||(r.type=n)}return r.type}function ro(t){if(t)return 167===t.kind?e.getEffectiveReturnTypeNode(t):e.getEffectiveSetAccessorTypeAnnotationNode(t)}function no(e){var t=ro(e);return t&&v_(t)}function io(e){return Ic(Nc(e))}function ao(t){var r=Sn(t);return r.type||(r.type=function(t){if(!xa(t,0))return Se;var r=oo(t);if(!Ta()){if(r=be,G)cn(e.getDeclarationOfKind(t,167),e.Diagnostics._0_implicitly_has_return_type_any_because_it_does_not_have_a_return_type_annotation_and_is_referenced_directly_or_indirectly_in_one_of_its_return_expressions,aa(t))}return r}(t))}function oo(t){var r=e.getDeclarationOfKind(t,167),n=e.getDeclarationOfKind(t,168);if(r&&e.isInJSFile(r)){var i=Oa(r);if(i)return i}var a=no(r);if(a)return a;var o=no(n);return o||(r&&r.body?lh(r):(n?xb(n)||ln(G,n,e.Diagnostics.Property_0_implicitly_has_type_any_because_its_set_accessor_lacks_a_parameter_type_annotation,aa(t)):(e.Debug.assert(!!r,"there must exist a getter as we are current checking either setter or getter in this function"),xb(r)||ln(G,r,e.Diagnostics.Property_0_implicitly_has_type_any_because_its_get_accessor_lacks_a_return_type_annotation,aa(t))),be))}function so(t){var r=Co(Fo(t));return 8650752&r.flags?r:2097152&r.flags?e.find(r.types,(function(e){return!!(8650752&e.flags)})):void 0}function co(t){var r=Sn(t),n=r;if(!r.type){var i=t.valueDeclaration&&Pv(t.valueDeclaration,!1);if(i){var a=Fv(t,i);a&&(t=r=a)}n.type=r.type=function(t){var r=t.valueDeclaration;if(1536&t.flags&&e.isShorthandAmbientModuleSymbol(t))return be;if(r&&(216===r.kind||e.isAccessExpression(r)&&216===r.parent.kind))return Va(t);if(512&t.flags&&r&&e.isSourceFile(r)&&r.commonJsModuleIndicator){var n=gi(t);if(n!==t){if(!xa(t,0))return Se;var i=Ti(t.exports.get("export=")),a=Va(i,i===n?void 0:n);return Ta()?a:lo(t)}}var o=Bi(16,t);if(32&t.flags){var s=so(t);return s?ul([o,s]):o}return K&&16777216&t.flags?Cp(o):o}(t)}return r.type}function uo(e){var t=Sn(e);return t.type||(t.type=Ro(e))}function lo(t){var r=t.valueDeclaration;return e.getEffectiveTypeAnnotationNode(r)?(cn(t.valueDeclaration,e.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_type_annotation,aa(t)),Se):(G&&(160!==r.kind||r.initializer)&&cn(t.valueDeclaration,e.Diagnostics._0_implicitly_has_type_any_because_it_does_not_have_a_type_annotation_and_is_referenced_directly_or_indirectly_in_its_own_initializer,aa(t)),be)}function _o(t){var r=e.getCheckFlags(t);return 65536&r?function(t){var r=Sn(t);return r.type||(e.Debug.assertIsDefined(r.deferralParent),e.Debug.assertIsDefined(r.deferralConstituents),r.type=1048576&r.deferralParent.flags?rl(r.deferralConstituents):ul(r.deferralConstituents)),r.type}(t):1&r?function(e){var t=Sn(e);if(!t.type){if(!xa(e,0))return t.type=Se;var r=V_(_o(t.target),t.mapper);Ta()||(r=lo(e)),t.type=r}return t.type}(t):262144&r?function(t){if(!t.type){var r=t.mappedType;if(!xa(t,0))return r.containsError=!0,Se;var n=V_(As(r.target||r),w_(r.mapper,Es(r),t.keyType)),i=K&&16777216&t.flags&&!Eh(n,49152)?Cp(n):524288&t.checkFlags?zf(n,524288):n;Ta()||(cn(c,e.Diagnostics.Type_of_property_0_circularly_references_itself_in_mapped_type_1,aa(t),sa(r)),i=Se),t.type=i}return t.type}(t):8192&r?function(e){return of(e.propertyType,e.mappedType,e.constraintType)}(t):7&t.flags?to(t):9136&t.flags?co(t):8&t.flags?uo(t):98304&t.flags?ao(t):2097152&t.flags?function(e){var t=Sn(e);if(!t.type){var r=ti(e);t.type=111551&r.flags?_o(r):Se}return t.type}(t):Se}function po(t,r){return void 0!==t&&void 0!==r&&0!=(4&e.getObjectFlags(t))&&t.target===r}function fo(t){return 4&e.getObjectFlags(t)?t.target:t}function go(t,r){return function t(n){if(7&e.getObjectFlags(n)){var i=fo(n);return i===r||e.some(ko(i),t)}if(2097152&n.flags)return e.some(n.types,t);return!1}(t)}function mo(t,r){for(var n=0,i=r;n0)return!0;if(8650752&e.flags){var t=Gs(e);return!!t&&bo(t)}return!1}function Do(t){return e.getEffectiveBaseTypeNode(t.symbol.valueDeclaration)}function So(t,r,n){var i=e.length(r),a=e.isInJSFile(n);return e.filter(pc(t,1),(function(t){return(a||i>=Ec(t.typeParameters))&&i<=e.length(t.typeParameters)}))}function To(t,r,n){var i=So(t,r,n),a=e.map(r,v_);return e.sameMap(i,(function(t){return e.some(t.typeParameters)?jc(t,a,e.isInJSFile(n)):t}))}function Co(t){if(!t.resolvedBaseConstructorType){var r=t.symbol.valueDeclaration,n=e.getEffectiveBaseTypeNode(r),i=Do(t);if(!i)return t.resolvedBaseConstructorType=ke;if(!xa(t,1))return Se;var a=ib(i.expression);if(n&&i!==n&&(e.Debug.assert(!n.typeArguments),ib(n.expression)),2621440&a.flags&&Rs(a),!Ta())return cn(t.symbol.valueDeclaration,e.Diagnostics._0_is_referenced_directly_or_indirectly_in_its_own_base_expression,aa(t.symbol)),t.resolvedBaseConstructorType=Se;if(!(1&a.flags||a===Pe||xo(a))){var o=cn(i.expression,e.Diagnostics.Type_0_is_not_a_constructor_function_type,sa(a));if(262144&a.flags){var s=Yc(a),c=Ee;if(s){var u=pc(s,1);u[0]&&(c=Mc(u[0]))}e.addRelatedInfo(o,e.createDiagnosticForNode(a.symbol.declarations[0],e.Diagnostics.Did_you_mean_for_0_to_be_constrained_to_type_new_args_Colon_any_1,aa(a.symbol),sa(c)))}return t.resolvedBaseConstructorType=Se}t.resolvedBaseConstructorType=a}return t.resolvedBaseConstructorType}function Eo(t,r){cn(t,e.Diagnostics.Type_0_recursively_references_itself_as_a_base_type,sa(r,void 0,2))}function ko(t){if(!t.baseTypesResolved){if(xa(t,7)&&(8&t.objectFlags?t.resolvedBaseTypes=[No(t)]:96&t.symbol.flags?(32&t.symbol.flags&&function(t){t.resolvedBaseTypes=e.resolvingEmptyArray;var r=tc(Co(t));if(!(2621441&r.flags))return t.resolvedBaseTypes=e.emptyArray;var n,i=Do(t),a=r.symbol?jo(r.symbol):void 0;if(r.symbol&&32&r.symbol.flags&&function(e){var t=e.outerTypeParameters;if(t){var r=t.length-1,n=au(e);return t[r].symbol!==n[r].symbol}return!0}(a))n=su(i,r.symbol);else if(1&r.flags)n=r;else{var o=To(r,i.typeArguments,i);if(!o.length)return cn(i.expression,e.Diagnostics.No_base_constructor_has_the_specified_number_of_type_arguments),t.resolvedBaseTypes=e.emptyArray;n=Mc(o[0])}if(n===Se)return t.resolvedBaseTypes=e.emptyArray;var s=oc(n);if(!Ao(s)){var c=lc(void 0,n),u=e.chainDiagnosticMessages(c,e.Diagnostics.Base_constructor_return_type_0_is_not_an_object_type_or_intersection_of_object_types_with_statically_known_members,sa(s));return Gr.add(e.createDiagnosticForNodeFromMessageChain(i.expression,u)),t.resolvedBaseTypes=e.emptyArray}if(t===s||go(s,t))return cn(t.symbol.valueDeclaration,e.Diagnostics.Type_0_recursively_references_itself_as_a_base_type,sa(t,void 0,2)),t.resolvedBaseTypes=e.emptyArray;t.resolvedBaseTypes===e.resolvingEmptyArray&&(t.members=void 0);t.resolvedBaseTypes=[s]}(t),64&t.symbol.flags&&function(t){t.resolvedBaseTypes=t.resolvedBaseTypes||e.emptyArray;for(var r=0,n=t.symbol.declarations;r0)return;for(var i=1;i1&&(n=void 0===n?i:-1);for(var a=0,o=t[i];a1){var l=s.thisParameter,_=e.forEach(c,(function(e){return e.thisParameter}));if(_)l=Ip(_,ul(e.mapDefined(c,(function(e){return e.thisParameter&&_o(e.thisParameter)}))));(u=us(s,c)).thisParameter=l}(r||(r=[])).push(u)}}}}if(!e.length(r)&&-1!==n){for(var d=t[void 0!==n?n:0],p=d.slice(),f=function(t){if(t!==d){var r=t[0];if(e.Debug.assert(!!r,"getUnionSignatures bails early on empty signature lists and should not have empty lists on second pass"),!(p=r.typeParameters&&e.some(p,(function(e){return!!e.typeParameters&&!function(e,t){if(e.length!==t.length)return!1;for(var r=S_(t,e),n=0;n=i?e:t,o=a===e?t:e,s=a===e?n:i,c=$v(e)||$v(t),u=c&&!$v(a),l=new Array(s+(u?1:0)),_=0;_=Zv(a)&&_>=Zv(o),y=_>=n?void 0:qv(e,_),v=_>=i?void 0:qv(t,_),h=fn(1|(m&&!g?16777216:0),(y===v?y:y?v?void 0:y:v)||"arg"+_);h.type=g?Ou(f):f,l[_]=h}if(u){var b=fn(1,"args");b.type=Ou(Gv(o,s)),o===t&&(b.type=V_(b.type,r)),l[s]=b}return l}(t,r,n),s=function(e,t,r){if(!e||!t)return e||t;var n=ul([_o(e),V_(_o(t),r)]);return Ip(e,n)}(t.thisParameter,r.thisParameter,n),c=Math.max(t.minArgumentCount,r.minArgumentCount),u=ss(a,i,s,o,void 0,void 0,c,39&(t.flags|r.flags));u.unionSignatures=e.concatenate(t.unionSignatures||[t],[r]),n&&(u.mapper=t.mapper&&t.unionSignatures?A_(t.mapper,n):n);return u}(t,r)}))))return"break"}},g=0,m=t;g0})),n=e.map(t,bo);if(r>0&&r===e.countWhere(n,(function(e){return e}))){var i=n.indexOf(!0);n[i]=!1}return n}function bs(t){for(var r,n,i,a,o=t.types,s=hs(o),c=e.countWhere(s,(function(e){return e})),u=function(u){var l=t.types[u];if(!s[u]){var _=pc(l,1);_.length&&c>0&&(_=e.map(_,(function(e){var t=cs(e);return t.resolvedReturnType=function(e,t,r,n){for(var i=[],a=0;a=p&&c<=f){var g=f?zc(d,kc(s,d.typeParameters,p,o)):cs(d);g.typeParameters=t.localTypeParameters,g.resolvedReturnType=t,g.flags=i?4|g.flags:-5&g.flags,u.push(g)}}return u}(l)),t.constructSignatures=i}}}function Ss(t){if(4194304&t.flags){var r=tc(t.type);return gp(r)?Wu(r):hl(r)}if(16777216&t.flags){if(t.root.isDistributive){var n=t.checkType,i=Ss(n);if(i!==n)return U_(t,P_(t.root.checkType,i,t.mapper))}return t}return 1048576&t.flags?cg(t,Ss):2097152&t.flags?ul(e.sameMap(t.types,Ss)):t}function Ts(t){return 4096&e.getCheckFlags(t)}function Cs(t){var r,n,i=e.createSymbolTable();Ui(t,T,e.emptyArray,e.emptyArray,void 0,void 0);var a=Es(t),o=ks(t),s=Ns(t.target||t),c=As(t.target||t),u=tc(ws(t)),l=Is(t),_=Q?128:8576;if(Ps(t)){for(var d=0,p=zs(u);d=7,Yt||(Yt=Cu("BigInt",0,r))||et):528&n.flags?St:12288&n.flags?ku(z>=2):67108864&n.flags?et:4194304&n.flags?Xe:2&n.flags&&!K?et:n}function rc(e){return oc(tc(oc(e)))}function nc(t,r,n){for(var i,a,o,s=1048576&t.flags,c=s?0:16777216,u=4,l=0,_=0,d=t.types;_2?(E.checkFlags|=65536,E.deferralParent=t,E.deferralConstituents=b):E.type=s?rl(b):ul(b),E}}function ic(t,r,n){var i,a,o=(null===(i=t.propertyCacheWithoutObjectFunctionPropertyAugment)||void 0===i?void 0:i.get(r))||!n?null===(a=t.propertyCache)||void 0===a?void 0:a.get(r):void 0;o||(o=nc(t,r,n))&&(n?t.propertyCacheWithoutObjectFunctionPropertyAugment||(t.propertyCacheWithoutObjectFunctionPropertyAugment=e.createSymbolTable()):t.propertyCache||(t.propertyCache=e.createSymbolTable())).set(r,o);return o}function ac(t,r,n){var i=ic(t,r,n);return!i||16&e.getCheckFlags(i)?void 0:i}function oc(t){return 1048576&t.flags&&268435456&t.objectFlags?t.resolvedReducedType||(t.resolvedReducedType=function(t){var r=e.sameMap(t.types,oc);if(r===t.types)return t;var n=rl(r);1048576&n.flags&&(n.resolvedReducedType=n);return n}(t)):2097152&t.flags?(268435456&t.objectFlags||(t.objectFlags|=268435456|(e.some(Js(t),sc)?536870912:0)),536870912&t.objectFlags?Ue:t):t}function sc(e){return cc(e)||uc(e)}function cc(t){return!(16777216&t.flags||192!=(131264&e.getCheckFlags(t))||!(131072&_o(t).flags))}function uc(t){return!t.valueDeclaration&&!!(1024&e.getCheckFlags(t))}function lc(t,r){if(536870912&e.getObjectFlags(r)){var n=e.find(Js(r),cc);if(n)return e.chainDiagnosticMessages(t,e.Diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_has_conflicting_types_in_some_constituents,sa(r,void 0,536870912),aa(n));var i=e.find(Js(r),uc);if(i)return e.chainDiagnosticMessages(t,e.Diagnostics.The_intersection_0_was_reduced_to_never_because_property_1_exists_in_multiple_constituents_and_is_private_in_some,sa(r,void 0,536870912),aa(i))}return t}function _c(e,t,r){if(524288&(e=rc(e)).flags){var n=Rs(e),i=n.members.get(t);if(i&&wi(i))return i;if(r)return;var a=n===at?mt:n.callSignatures.length?yt:n.constructSignatures.length?vt:void 0;if(a){var o=js(a,t);if(o)return o}return js(gt,t)}if(3145728&e.flags)return ac(e,t,r)}function dc(t,r){if(3670016&t.flags){var n=Rs(t);return 0===r?n.callSignatures:n.constructSignatures}return e.emptyArray}function pc(e,t){return dc(rc(e),t)}function fc(e,t){if(3670016&e.flags){var r=Rs(e);return 0===t?r.stringIndexInfo:r.numberIndexInfo}}function gc(e,t){var r=fc(e,t);return r&&r.type}function mc(e,t){return fc(rc(e),t)}function yc(e,t){return gc(rc(e),t)}function vc(t,r){if(wp(t)){for(var n=[],i=0,a=zs(t);i=0),n>=Zv(r,3)}var i=e.getImmediatelyInvokedFunctionExpression(t.parent);return!!i&&(!t.type&&!t.dotDotDotToken&&t.parent.parameters.indexOf(t)>=i.arguments.length)}function Tc(t){if(!e.isJSDocPropertyLikeTag(t))return!1;var r=t.isBracketed,n=t.typeExpression;return r||!!n&&307===n.type.kind}function Cc(e,t,r,n){return{kind:e,parameterName:t,parameterIndex:r,type:n}}function Ec(t){var r,n=0;if(t)for(var i=0;i=n&&o<=a){for(var s=t?t.slice():[],c=o;cu.arguments.length&&!f||xc(d)||(o=i.length)}if((167===t.kind||168===t.kind)&&$o(t)&&(!c||!s)){var g=167===t.kind?168:167,m=e.getDeclarationOfKind(Ci(t),g);m&&(s=(r=zS(m))&&r.symbol)}var y=166===t.kind?Fo(Ti(t.parent.symbol)):void 0,v=y?y.localTypeParameters:hc(t);(e.hasRestParameter(t)||e.isInJSFile(t)&&function(t,r){if(e.isJSDocSignature(t)||!Fc(t))return!1;var n=e.lastOrUndefined(t.parameters),i=n?e.getJSDocParameterTags(n):e.getJSDocTags(t).filter(e.isJSDocParameterTag),a=e.firstDefined(i,(function(t){return t.typeExpression&&e.isJSDocVariadicType(t.typeExpression.type)?t.typeExpression.type:void 0})),o=fn(3,"args",32768);o.type=a?Ou(v_(a.type)):Et,a&&r.pop();return r.push(o),!0}(t,i))&&(a|=1),(e.isConstructorTypeNode(t)&&e.hasSyntacticModifier(t,128)||e.isConstructorDeclaration(t)&&e.hasSyntacticModifier(t.parent,128))&&(a|=4),n.resolvedSignature=ss(t,v,s,i,void 0,void 0,o,a)}return n.resolvedSignature}function Ac(t){if(e.isInJSFile(t)&&e.isFunctionLikeDeclaration(t)){var r=e.getJSDocTypeTag(t),n=r&&r.typeExpression&&Gy(v_(r.typeExpression));return n&&Uc(n)}}function Fc(t){var r=Tn(t);return void 0===r.containsArgumentsReference&&(8192&r.flags?r.containsArgumentsReference=!0:r.containsArgumentsReference=function t(r){if(!r)return!1;switch(r.kind){case 78:return r.escapedText===ie.escapedName&&Cf(r)===ie;case 163:case 165:case 167:case 168:return 158===r.name.kind&&t(r.name);case 201:case 202:return t(r.expression);default:return!e.nodeStartsNewLexicalEnvironment(r)&&!e.isPartOfTypeNode(r)&&!!e.forEachChild(r,t)}}(t.body)),r.containsArgumentsReference}function Pc(t){if(!t)return e.emptyArray;for(var r=[],n=0;n0&&i.body){var a=t.declarations[n-1];if(i.parent===a.parent&&i.kind===a.kind&&i.pos===a.end)continue}r.push(Nc(i))}}return r}function wc(e){var t=_i(e,e);if(t){var r=gi(t);if(r)return _o(r)}return be}function Ic(e){if(e.thisParameter)return _o(e.thisParameter)}function Oc(t){if(!t.resolvedTypePredicate){if(t.target){var r=Oc(t.target);t.resolvedTypePredicate=r?(o=r,s=t.mapper,Cc(o.kind,o.parameterName,o.parameterIndex,V_(o.type,s))):ar}else if(t.unionSignatures)t.resolvedTypePredicate=function(e){for(var t,r=[],n=0,i=e;n=0}function Bc(e){if(B(e)){var t=_o(e.parameters[e.parameters.length-1]),r=fp(t)?yp(t):t;return r&&yc(r,1)}}function jc(e,t,r,n){var i=Jc(e,kc(t,e.typeParameters,Ec(e.typeParameters),r));if(n){var a=Xy(Mc(i));if(a){var o=cs(a);o.typeParameters=n;var s=cs(i);return s.resolvedReturnType=qc(o),s}}return i}function Jc(t,r){var n=t.instantiations||(t.instantiations=new e.Map),i=$c(r),a=n.get(i);return a||n.set(i,a=zc(t,r)),a}function zc(e,t){return O_(e,function(e,t){return S_(e.typeParameters,t)}(e,t),!0)}function Uc(e){return e.typeParameters?e.erasedSignatureCache||(e.erasedSignatureCache=function(e){return O_(e,N_(e.typeParameters),!0)}(e)):e}function Vc(t){return t.typeParameters?t.canonicalSignatureCache||(t.canonicalSignatureCache=function(t){return jc(t,e.map(t.typeParameters,(function(e){return e.target&&!Vs(e.target)?e.target:e})),e.isInJSFile(t.declaration))}(t)):t}function Kc(t){var r=t.typeParameters;if(r){var n=N_(r);return O_(t,S_(r,e.map(r,(function(e){return V_(Gs(e),n)||Ee}))),!0)}return t}function qc(t){if(!t.isolatedSignatureType){var r=t.declaration?t.declaration.kind:0,n=166===r||170===r||175===r,i=Bi(16);i.members=T,i.properties=e.emptyArray,i.callSignatures=n?e.emptyArray:[t],i.constructSignatures=n?[t]:e.emptyArray,t.isolatedSignatureType=i}return t.isolatedSignatureType}function Wc(e){return e.members.get("__index")}function Hc(t,r){var n=1===r?144:147,i=Wc(t);if(i)for(var a=0,o=i.declarations;a1&&(t+=":"+a),n+=a}return t}function eu(e,t){return e?"@"+w(e)+(t?":"+$c(t):""):""}function tu(t,r){for(var n=0,i=0,a=t;ii.length)){var c=s&&e.isExpressionWithTypeArguments(t)&&!e.isJSDocAugmentsTag(t.parent);if(cn(t,o===i.length?c?e.Diagnostics.Expected_0_type_arguments_provide_these_with_an_extends_tag:e.Diagnostics.Generic_type_0_requires_1_type_argument_s:c?e.Diagnostics.Expected_0_1_type_arguments_provide_these_with_an_extends_tag:e.Diagnostics.Generic_type_0_requires_between_1_and_2_type_arguments,sa(n,void 0,2),o,i.length),!s)return Se}return 173===t.kind&&Bu(t,e.length(t.typeArguments)!==i.length)?iu(n,t,void 0):ru(n,e.concatenate(n.outerTypeParameters,kc(bu(t),i,o,s)))}return yu(t,r)?n:Se}function cu(t,r,n,i){var a=jo(t);if(a===Ce&&N.has(t.escapedName)&&r&&1===r.length)return Sl(t,r[0]);var o=Sn(t),s=o.typeParameters,c=$c(r)+eu(n,i),u=o.instantiations.get(c);return u||o.instantiations.set(c,u=K_(a,S_(s,kc(r,s,Ec(s),e.isInJSFile(t.valueDeclaration))),n,i)),u}function uu(t){switch(t.kind){case 173:return t.typeName;case 223:var r=t.expression;if(e.isEntityNameExpression(r))return r}}function lu(e,t,r){return e&&ui(e,t,r)||ve}function _u(t,r){if(r===ve)return Se;if(96&(r=function(t){var r=t.valueDeclaration;if(r&&e.isInJSFile(r)&&!(524288&t.flags)&&!e.getExpandoInitializer(r,!1)){var n=e.isVariableDeclaration(r)?e.getDeclaredExpandoInitializer(r):e.getAssignedExpandoInitializer(r);if(n){var i=Ci(n);if(i)return Fv(i,t)}}}(r)||r).flags)return su(t,r);if(524288&r.flags)return function(t,r){var n=jo(r),i=Sn(r).typeParameters;if(i){var a=e.length(t.typeArguments),o=Ec(i);if(ai.length)return cn(t,o===i.length?e.Diagnostics.Generic_type_0_requires_1_type_argument_s:e.Diagnostics.Generic_type_0_requires_between_1_and_2_type_arguments,aa(r),o,i.length),Se;var s=e_(t);return cu(r,bu(t),s,t_(s))}return yu(t,r)?n:Se}(t,r);var n=Jo(r);if(n)return yu(t,r)?__(n):Se;if(111551&r.flags&&mu(t)){var i=function(e,t){var r=Tn(e);if(!r.resolvedJSDocType){var n=_o(t),i=n;if(t.valueDeclaration){var a=195===e.kind&&e.qualifier;n.symbol&&n.symbol!==t&&a&&(i=_u(e,n.symbol))}r.resolvedJSDocType=i}return r.resolvedJSDocType}(t,r);return i||(lu(uu(t),788968),_o(r))}return Se}function du(e,t){if(3&t.flags||t===e)return e;var r=Xu(e)+">"+Xu(t),n=ge.get(r);if(n)return n;var i=Oi(33554432);return i.baseType=e,i.substitute=t,ge.set(r,i),i}function pu(e){return 179===e.kind&&1===e.elements.length}function fu(e,t,r){return pu(t)&&pu(r)?fu(e,t.elements[0],r.elements[0]):Vl(v_(t))===e?v_(r):void 0}function gu(t,r){for(var n;r&&!e.isStatement(r)&&311!==r.kind;){var i=r.parent;if(184===i.kind&&r===i.trueType){var a=fu(t,i.checkType,i.extendsType);a&&(n=e.append(n,a))}r=i}return n?du(t,ul(e.append(n,t))):t}function mu(e){return!!(4194304&e.flags)&&(173===e.kind||195===e.kind)}function yu(t,r){return!t.typeArguments||(cn(t,e.Diagnostics.Type_0_is_not_generic,r?aa(r):t.typeName?e.declarationNameToString(t.typeName):o),!1)}function vu(t){if(e.isIdentifier(t.typeName)){var r=t.typeArguments;switch(t.typeName.escapedText){case"String":return yu(t),we;case"Number":return yu(t),Ie;case"Boolean":return yu(t),je;case"Void":return yu(t),ze;case"Undefined":return yu(t),ke;case"Null":return yu(t),Fe;case"Function":case"function":return yu(t),mt;case"array":return r&&r.length||G?void 0:Et;case"promise":return r&&r.length||G?void 0:sh(be);case"Object":if(r&&2===r.length){if(e.isJSDocIndexSignature(t)){var n=v_(r[0]),i=Gc(v_(r[1]),!1);return Vi(void 0,T,e.emptyArray,e.emptyArray,n===we?i:void 0,n===Ie?i:void 0)}return be}return yu(t),G?void 0:be}}}function hu(t){var r=Tn(t);if(!r.resolvedType){if(e.isConstTypeReference(t)&&e.isAssertionExpression(t.parent))return r.resolvedSymbol=ve,r.resolvedType=Jh(t.parent.expression);var n=void 0,i=void 0,a=788968;mu(t)&&((i=vu(t))||((n=lu(uu(t),a,!0))===ve?n=lu(uu(t),900095):lu(uu(t),a),i=_u(t,n))),i||(i=_u(t,n=lu(uu(t),a))),r.resolvedSymbol=n,r.resolvedType=i}return r.resolvedType}function bu(t){return e.map(t.typeArguments,v_)}function xu(e){var t=Tn(e);return t.resolvedType||(t.resolvedType=__(Jp(ib(e.exprName)))),t.resolvedType}function Du(t,r){function n(e){for(var t=0,r=e.declarations;t=0)return _l(e.map(r,(function(e,r){return 8&t.elementFlags[r]?e:Ee})))?cg(r[o],(function(n){return Ku(t,e.replaceElement(r,o,n))})):Se}for(var s=[],u=[],l=[],_=-1,d=-1,p=-1,f=function(o){var u=r[o],l=t.elementFlags[o];if(8&l)if(58982400&u.flags||Ls(u))v(u,8,null===(n=t.labeledElementDeclarations)||void 0===n?void 0:n[o]);else if(fp(u)){var _=au(u);if(_.length+s.length>=1e4)return cn(c,e.isPartOfTypeNode(c)?e.Diagnostics.Type_produces_a_tuple_type_that_is_too_large_to_represent:e.Diagnostics.Expression_produces_a_tuple_type_that_is_too_large_to_represent),{value:Se};e.forEach(_,(function(e,t){var r;return v(e,u.target.elementFlags[t],null===(r=u.target.labeledElementDeclarations)||void 0===r?void 0:r[t])}))}else v(rp(u)&&yc(u,1)||Se,4,null===(i=t.labeledElementDeclarations)||void 0===i?void 0:i[o]);else v(u,l,null===(a=t.labeledElementDeclarations)||void 0===a?void 0:a[o])},g=0;g=0&&di.fixedLength?function(e){var t=yp(e);return t&&Ou(t)}(t)||zu(e.emptyArray):zu(au(t).slice(r,a),i.elementFlags.slice(r,a),!1,i.labeledElementDeclarations&&i.labeledElementDeclarations.slice(r,a))}function Wu(t){return rl(e.append(e.arrayOf(t.target.fixedLength,(function(e){return p_(""+e)})),hl(t.target.readonly?bt:ht)))}function Hu(t,r){var n=e.findIndex(t.elementFlags,(function(e){return!(e&r)}));return n>=0?n:t.elementFlags.length}function Gu(t,r){return t.elementFlags.length-e.findLastIndex(t.elementFlags,(function(e){return!(e&r)}))-1}function Xu(e){return e.id}function Qu(t,r){return e.binarySearch(t,r,Xu,e.compareValues)>=0}function Yu(t,r){var n=e.binarySearch(t,r,Xu,e.compareValues);return n<0&&(t.splice(~n,0,r),!0)}function Zu(t,r,n){var i=n.flags;if(1048576&i)return $u(t,r|(function(e){return!!(1048576&e.flags&&(e.aliasSymbol||e.origin))}(n)?1048576:0),n.types);if(!(131072&i))if(r|=205258751&i,469499904&i&&(r|=262144),n===De&&(r|=8388608),!K&&98304&i)524288&e.getObjectFlags(n)||(r|=4194304);else{var a=t.length,o=a&&n.id>t[a-1].id?~a:e.binarySearch(t,n,Xu,e.compareValues);o<0&&t.splice(~o,0,n)}return r}function $u(e,t,r){for(var n=0,i=r;n0;){var a=t[--i],o=a.flags;(128&o&&4&r||256&o&&8&r||2048&o&&64&r||8192&o&&4096&r||n&&32768&o&&16384&r||d_(a)&&Qu(t,a.regularType))&&e.orderedRemoveItemAt(t,i)}}(o,s,!!(2&r)),128&s&&134217728&s&&function(t){var r=e.filter(t,Fl);if(r.length)for(var n=t.length,i=function(){n--;var i=t[n];128&i.flags&&e.some(r,(function(e){return nd(i,e)}))&&e.orderedRemoveItemAt(t,n)};n>0;)i()}(o)),2&r&&!function(t,r){for(var n=r&&e.some(t,(function(e){return!!(524288&e.flags)&&!Ls(e)&&xd(Rs(e))})),i=t.length,a=i,o=0;a>0;){var s=t[--a];if(n||469499904&s.flags)for(var u=0,l=t;u1e6)return null===e.tracing||void 0===e.tracing||e.tracing.instant("checkTypes","removeSubtypes_DepthLimit",{typeIds:t.map((function(e){return e.id}))}),cn(c,e.Diagnostics.Expression_produces_a_union_type_that_is_too_complex_to_represent),!1;if(o++,kd(s,_,$r)&&(!(1&e.getObjectFlags(fo(s)))||!(1&e.getObjectFlags(fo(_)))||ad(s,_))){e.orderedRemoveItemAt(t,a);break}}}}return!0}(o,!!(524288&s)))return Se;if(0===o.length)return 65536&s?4194304&s?Fe:Pe:32768&s?4194304&s?ke:Ne:Ue}if(!a&&1048576&s){var u=[];el(u,t);for(var l=[],_=function(t){e.some(u,(function(e){return Qu(e.types,t)}))||l.push(t)},d=0,p=o;d0;){var i=t[--r];if(134217728&i.flags)for(var a=0,o=n;a0;){var i=t[--n];(4&i.flags&&128&r||8&i.flags&&256&r||64&i.flags&&2048&r||4096&i.flags&&8192&r)&&e.orderedRemoveItemAt(t,n)}}(o,a),16777216&a&&524288&a&&e.orderedRemoveItemAt(o,e.findIndex(o,Sd)),0===o.length)return Ee;if(1===o.length)return o[0];var s=$c(o)+eu(r,n),c=le.get(s);if(!c){if(1048576&a)if(function(t){var r,n=e.findIndex(t,(function(t){return!!(262144&e.getObjectFlags(t))}));if(n<0)return!1;for(var i=n+1;i=0;o--)if(1048576&e[o].flags){var s=e[o].types,c=s.length;i[o]=s[a%c],a=Math.floor(a/c)}var u=ul(i);131072&u.flags||r.push(u)}return r}(o);c=rl(u,1,r,n,e.some(u,(function(e){return!!(2097152&e.flags)}))?tl(2097152,o):void 0)}else c=function(e,t,r){var n=Oi(2097152);return n.objectFlags=tu(e,98304),n.types=e,n.aliasSymbol=t,n.aliasTypeArguments=r,n}(o,r,n);le.set(s,c)}return c}function ll(t){return e.reduceLeft(t,(function(e,t){return 1048576&t.flags?e*t.types.length:131072&t.flags?0:e}),1)}function _l(t){var r=ll(t);return!(r>=1e5)||(null===e.tracing||void 0===e.tracing||e.tracing.instant("checkTypes","checkCrossProductUnion_DepthLimit",{typeIds:t.map((function(e){return e.id})),size:r}),cn(c,e.Diagnostics.Expression_produces_a_union_type_that_is_too_complex_to_represent),!1)}function dl(e,t){var r=Oi(4194304);return r.type=e,r.stringsOnly=t,r}function pl(e,t,r){return V_(e,w_(t.mapper,Es(t),r))}function fl(t){return!(!t||!(16777216&t.flags&&(!t.root.isDistributive||fl(t.checkType))||137363456&t.flags&&e.some(t.types,fl)||272629760&t.flags&&fl(t.type)||8388608&t.flags&&fl(t.indexType)||33554432&t.flags&&fl(t.substitute)))}function gl(t){return e.isPrivateIdentifier(t)?Ue:e.isIdentifier(t)?p_(e.unescapeLeadingUnderscores(t.escapedText)):__(e.isComputedPropertyName(t)?wm(t):ib(t))}function ml(t,r){if(!(24&e.getDeclarationModifierFlagsFromSymbol(t))){var n=Sn(is(t)).nameType;if(!n&&!e.isKnownSymbol(t))if("default"===t.escapedName)n=p_("default");else{var i=t.valueDeclaration&&e.getNameOfDeclaration(t.valueDeclaration);n=i&&gl(i)||p_(e.symbolName(t))}if(n&&n.flags&r)return n}return Ue}function yl(t,r,n){var i=n&&(7&e.getObjectFlags(t)||t.aliasSymbol)?function(e){var t=Mi(4194304);return t.type=e,t}(t):void 0;return rl(e.map(zs(t),(function(e){return ml(e,r)})),1,void 0,void 0,i)}function vl(e){var t=mc(e,1);return t!==lr?t:void 0}function hl(t,r,n){void 0===r&&(r=Q);var i=r===Q&&!n;return 1048576&(t=oc(t)).flags?ul(e.map(t.types,(function(e){return hl(e,r,n)}))):2097152&t.flags?rl(e.map(t.types,(function(e){return hl(e,r,n)}))):58982400&t.flags||gp(t)||Ls(t)&&fl(Ns(t))?function(e,t){return t?e.resolvedStringIndexType||(e.resolvedStringIndexType=dl(e,!0)):e.resolvedIndexType||(e.resolvedIndexType=dl(e,!1))}(t,r):32&e.getObjectFlags(t)?function(t,r){var n=og(ks(t),(function(e){return!(r&&5&e.flags)})),i=t.declaration.nameType&&v_(t.declaration.nameType),a=i&&ag(n,(function(e){return!!(131084&e.flags)}))&&zs(tc(ws(t)));return i?rl([cg(n,(function(e){return pl(i,t,e)})),cg(rl(e.map(a||e.emptyArray,(function(e){return ml(e,8576)}))),(function(e){return pl(i,t,e)}))]):n}(t,n):t===De?De:2&t.flags?Ue:131073&t.flags?Xe:r?!n&&mc(t,0)?we:yl(t,128,i):!n&&mc(t,0)?rl([we,Ie,yl(t,8192,i)]):vl(t)?rl([Ie,yl(t,8320,i)]):yl(t,8576,i)}function bl(t){if(Q)return t;var r=Xt||(Xt=Tu("Extract",524288,e.Diagnostics.Cannot_find_global_type_0));return r?cu(r,[t,we]):we}function xl(t,r){var n=e.findIndex(r,(function(e){return!!(1179648&e.flags)}));if(n>=0)return _l(r)?cg(r[n],(function(i){return xl(t,e.replaceElement(r,n,i))})):Se;if(e.contains(r,De))return De;var i=[],a=[],o=t[0];if(!function e(t,r){for(var n=0;n=0){if(o&&ag(r,(function(e){return!e.target.hasRestElement}))&&!(8&s)){var g=Nl(o);fp(r)?cn(g,e.Diagnostics.Tuple_type_0_of_length_1_has_no_element_at_index_2,sa(r),ou(r),e.unescapeLeadingUnderscores(d)):cn(g,e.Diagnostics.Property_0_does_not_exist_on_type_1,e.unescapeLeadingUnderscores(d),sa(r))}return T(mc(r,1)),cg(r,(function(e){var t=yp(e)||ke;return c?rl([t,ke]):t}))}}if(!(98304&n.flags)&&kh(n,402665900)){if(131073&r.flags)return r;var m=mc(r,0),y=kh(n,296)&&mc(r,1)||m;if(y)return 1&s&&y===m?void(_&&cn(_,e.Diagnostics.Type_0_cannot_be_used_to_index_type_1,sa(n),sa(t))):o&&!kh(n,12)?(cn(g=Nl(o),e.Diagnostics.Type_0_cannot_be_used_as_an_index_type,sa(n)),c?rl([y.type,ke]):y.type):(T(y),c?rl([y.type,ke]):y.type);if(131072&n.flags)return Ue;if(Tl(r))return be;if(_&&!Ah(r)){if(yf(r)){if(G&&384&n.flags)return Gr.add(e.createDiagnosticForNode(_,e.Diagnostics.Property_0_does_not_exist_on_type_1,n.value,sa(r))),ke;if(12&n.flags){var v=e.map(r.properties,(function(e){return _o(e)}));return rl(e.append(v,ke))}}if(r.symbol===re&&void 0!==d&&re.exports.has(d)&&418&re.exports.get(d).flags)cn(_,e.Diagnostics.Property_0_does_not_exist_on_type_1,e.unescapeLeadingUnderscores(d),sa(r));else if(G&&!J.suppressImplicitAnyIndexErrors&&!a)if(void 0!==d&&Ey(d,r)){var h=sa(r);cn(_,e.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_to_access_the_static_member_2_instead,d,h,h+"["+e.getTextOfNode(_.argumentExpression)+"]")}else if(yc(r,1))cn(_.argumentExpression,e.Diagnostics.Element_implicitly_has_an_any_type_because_index_expression_is_not_of_type_number);else{var b=void 0;if(void 0!==d&&(b=Ay(d,r)))void 0!==b&&cn(_.argumentExpression,e.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2,d,sa(r),b);else{var x=function(t,r,n){function i(e){var r=js(t,e);if(r){var i=Gy(_o(r));return!!i&&Zv(i)>=1&&id(n,Gv(i,0))}return!1}var a=e.isAssignmentTarget(r)?"set":"get";if(!i(a))return;var o=e.tryGetPropertyAccessOrIdentifierToString(r.expression);void 0===o?o=a:o+="."+a;return o}(r,_,n);if(void 0!==x)cn(_,e.Diagnostics.Element_implicitly_has_an_any_type_because_type_0_has_no_index_signature_Did_you_mean_to_call_1,sa(r),x);else{var D=void 0;if(1024&n.flags)D=e.chainDiagnosticMessages(void 0,e.Diagnostics.Property_0_does_not_exist_on_type_1,"["+sa(n)+"]",sa(r));else if(8192&n.flags){var S=ci(n.symbol,_);D=e.chainDiagnosticMessages(void 0,e.Diagnostics.Property_0_does_not_exist_on_type_1,"["+S+"]",sa(r))}else 128&n.flags||256&n.flags?D=e.chainDiagnosticMessages(void 0,e.Diagnostics.Property_0_does_not_exist_on_type_1,n.value,sa(r)):12&n.flags&&(D=e.chainDiagnosticMessages(void 0,e.Diagnostics.No_index_signature_with_a_parameter_of_type_0_was_found_on_type_1,sa(n),sa(r)));D=e.chainDiagnosticMessages(D,e.Diagnostics.Element_implicitly_has_an_any_type_because_expression_of_type_0_can_t_be_used_to_index_type_1,sa(i),sa(r)),Gr.add(e.createDiagnosticForNodeFromMessageChain(_,D))}}}return}}if(Tl(r))return be;if(o){g=Nl(o);384&n.flags?cn(g,e.Diagnostics.Property_0_does_not_exist_on_type_1,""+n.value,sa(r)):12&n.flags?cn(g,e.Diagnostics.Type_0_has_no_matching_index_signature_for_type_1,sa(r),sa(n)):cn(g,e.Diagnostics.Type_0_cannot_be_used_as_an_index_type,sa(n))}return ka(n)?n:void 0;function T(t){t&&t.isReadonly&&_&&(e.isAssignmentTarget(_)||e.isDeleteTarget(_))&&cn(_,e.Diagnostics.Index_signature_in_type_0_only_permits_reading,sa(r))}}function Nl(e){return 202===e.kind?e.argumentExpression:189===e.kind?e.indexType:158===e.kind?e.expression:e}function Al(e){return-1!==Ye.types.indexOf(e)||!!(1&e.flags)}function Fl(t){return!!(134217728&t.flags)&&e.every(t.types,Al)}function Pl(t){return 3145728&t.flags?(4194304&t.objectFlags||(t.objectFlags|=4194304|(e.some(t.types,Pl)?8388608:0)),!!(8388608&t.objectFlags)):!!(58982400&t.flags)||Ls(t)||gp(t)}function wl(t){return 3145728&t.flags?(16777216&t.objectFlags||(t.objectFlags|=16777216|(e.some(t.types,wl)?33554432:0)),!!(33554432&t.objectFlags)):!!(465829888&t.flags)&&!Fl(t)}function Il(e){return!!(262144&e.flags&&e.isThisType)}function Ol(t,r){return 8388608&t.flags?function(t,r){var n=r?"simplifiedForWriting":"simplifiedForReading";if(t[n])return t[n]===st?t:t[n];t[n]=st;var i=Ol(t.objectType,r),a=Ol(t.indexType,r),o=function(t,r,n){if(1048576&r.flags){var i=e.map(r.types,(function(e){return Ol(Bl(t,e),n)}));return n?ul(i):rl(i)}}(i,a,r);if(o)return t[n]=o;if(!(465829888&a.flags)){var s=Ml(i,a,r);if(s)return t[n]=s}if(gp(i)&&296&a.flags){var c=vp(i,8&a.flags?0:i.target.fixedLength,0,r);if(c)return t[n]=c}if(Ls(i))return t[n]=cg(Rl(i,t.indexType),(function(e){return Ol(e,r)}));return t[n]=t}(t,r):16777216&t.flags?function(e,t){var r=e.checkType,n=e.extendsType,i=Hl(e),a=Gl(e);if(131072&a.flags&&Vl(i)===Vl(r)){if(1&r.flags||id(W_(r),W_(n)))return Ol(i,t);if(Ll(r,n))return Ue}else if(131072&i.flags&&Vl(a)===Vl(r)){if(!(1&r.flags)&&id(W_(r),W_(n)))return Ue;if(1&r.flags||Ll(r,n))return Ol(a,t)}return e}(t,r):t}function Ml(t,r,n){if(3145728&t.flags){var i=e.map(t.types,(function(e){return Ol(Bl(e,r),n)}));return 2097152&t.flags||n?ul(i):rl(i)}}function Ll(e,t){return!!(131072&rl([ms(e,t),Ue]).flags)}function Rl(e,t){var r=S_([Es(e)],[t]),n=A_(e.mapper,r);return V_(As(e),n)}function Bl(e,t,r,n,i,a,o){return void 0===o&&(o=0),Jl(e,t,r,n,o,i,a)||(n?Se:Ee)}function jl(e,t){return ag(e,(function(e){if(384&e.flags){var r=es(e);if(Pm(r)){var n=+r;return n>=0&&n=5e6)return null===e.tracing||void 0===e.tracing||e.tracing.instant("checkTypes","instantiateType_DepthLimit",{typeId:t.id,instantiationDepth:D,instantiationCount:h}),cn(c,e.Diagnostics.Type_instantiation_is_excessively_deep_and_possibly_infinite),Se;v++,h++,D++;var a=function(t,r,n,i){var a=t.flags;if(262144&a)return T_(t,r);if(524288&a){var o=t.objectFlags;if(52&o){if(4&o&&!t.node){var s=t.resolvedTypeArguments,c=x_(s,r);return c!==s?Vu(t.target,c):t}return function(t,r,n,i){var a=4&t.objectFlags?t.node:t.symbol.declarations[0],o=Tn(a),s=4&t.objectFlags?o.resolvedType:64&t.objectFlags?t.target:t,c=o.outerTypeParameters;if(!c){var u=yo(a,!0);if(Av(a)){var l=hc(a);u=e.addRange(u,l)}c=u||e.emptyArray,c=(4&s.objectFlags||2048&s.symbol.flags)&&!s.aliasTypeArguments?e.filter(c,(function(e){return L_(e,a)})):c,o.outerTypeParameters=c}if(c.length){var _=A_(t.mapper,r),d=e.map(c,(function(e){return T_(e,_)})),p=n||t.aliasSymbol,f=n?i:x_(t.aliasTypeArguments,r),g=$c(d)+eu(p,f);s.instantiations||(s.instantiations=new e.Map,s.instantiations.set($c(c)+eu(s.aliasSymbol,s.aliasTypeArguments),s));var m=s.instantiations.get(g);if(!m){var y=S_(c,d);m=4&s.objectFlags?iu(t.target,t.node,y,p,f):32&s.objectFlags?B_(s,y,p,f):z_(s,y,p,f),s.instantiations.set(g,m)}return m}return t}(t,r,n,i)}return t}if(3145728&a){var u=1048576&t.flags?t.origin:void 0,l=u&&3145728&u.flags?u.types:t.types,_=x_(l,r);if(_===l&&n===t.aliasSymbol)return t;var d=n||t.aliasSymbol,p=n?i:x_(t.aliasTypeArguments,r);return 2097152&a||u&&2097152&u.flags?ul(_,d,p):rl(_,1,d,p)}if(4194304&a)return hl(V_(t.type,r));if(134217728&a)return xl(t.texts,x_(t.types,r));if(268435456&a)return Sl(t.symbol,V_(t.type,r));if(8388608&a){d=n||t.aliasSymbol,p=n?i:x_(t.aliasTypeArguments,r);return Bl(V_(t.objectType,r),V_(t.indexType,r),t.noUncheckedIndexedAccessCandidate,void 0,d,p)}if(16777216&a)return U_(t,A_(t.mapper,r),n,i);if(33554432&a){var f=V_(t.baseType,r);if(8650752&f.flags)return du(f,V_(t.substitute,r));var g=V_(t.substitute,r);return 3&g.flags||id(W_(f),W_(g))?f:g}return t}(t,r,n,i);return D--,a}function q_(e){return 262143&e.flags?e:e.permissiveInstantiation||(e.permissiveInstantiation=V_(e,$e))}function W_(e){return 262143&e.flags?e:(e.restrictiveInstantiation||(e.restrictiveInstantiation=V_(e,Ze),e.restrictiveInstantiation.restrictiveInstantiation=e.restrictiveInstantiation),e.restrictiveInstantiation)}function H_(e,t){return e&&Gc(V_(e.type,t),e.isReadonly,e.declaration)}function G_(t){switch(e.Debug.assert(165!==t.kind||e.isObjectLiteralMethod(t)),t.kind){case 208:case 209:case 165:case 251:return X_(t);case 200:return e.some(t.properties,G_);case 199:return e.some(t.elements,G_);case 217:return G_(t.whenTrue)||G_(t.whenFalse);case 216:return(56===t.operatorToken.kind||60===t.operatorToken.kind)&&(G_(t.left)||G_(t.right));case 288:return G_(t.initializer);case 207:return G_(t.expression);case 281:return e.some(t.properties,G_)||e.isJsxOpeningElement(t.parent)&&e.some(t.parent.parent.children,G_);case 280:var r=t.initializer;return!!r&&G_(r);case 283:var n=t.expression;return!!n&&G_(n)}return!1}function X_(t){return(!e.isFunctionDeclaration(t)||e.isInJSFile(t)&&!!Oa(t))&&(Q_(t)||function(t){return!t.typeParameters&&!e.getEffectiveReturnTypeNode(t)&&!!t.body&&230!==t.body.kind&&G_(t.body)}(t))}function Q_(t){if(!t.typeParameters){if(e.some(t.parameters,(function(t){return!e.getEffectiveTypeAnnotationNode(t)})))return!0;if(209!==t.kind){var r=e.firstOrUndefined(t.parameters);if(!r||!e.parameterIsThisKeyword(r))return!0}}return!1}function Y_(t){return(e.isInJSFile(t)&&e.isFunctionDeclaration(t)||Sm(t)||e.isObjectLiteralMethod(t))&&X_(t)}function Z_(t){if(524288&t.flags){var r=Rs(t);if(r.constructSignatures.length||r.callSignatures.length){var n=Bi(16,t.symbol);return n.members=r.members,n.properties=r.properties,n.callSignatures=e.emptyArray,n.constructSignatures=e.emptyArray,n}}else if(2097152&t.flags)return ul(e.map(t.types,Z_));return t}function $_(e,t){return kd(e,t,rn)}function ed(e,t){return kd(e,t,rn)?-1:0}function td(e,t){return kd(e,t,en)?-1:0}function rd(e,t){return kd(e,t,Zr)?-1:0}function nd(e,t){return kd(e,t,Zr)}function id(e,t){return kd(e,t,en)}function ad(t,r){return 1048576&t.flags?e.every(t.types,(function(e){return ad(e,r)})):1048576&r.flags?e.some(r.types,(function(e){return ad(t,e)})):58982400&t.flags?ad(Gs(t)||Ee,r):r===gt?!!(67633152&t.flags):r===mt?!!(524288&t.flags)&&jf(t):go(t,fo(r))||Zd(r)&&!$d(r)&&ad(t,bt)}function od(e,t){return kd(e,t,tn)}function sd(e,t){return od(e,t)||od(t,e)}function cd(e,t,r,n,i,a){return Fd(e,t,en,r,n,i,a)}function ud(e,t,r,n,i,a){return ld(e,t,en,r,n,i,a,void 0)}function ld(e,t,r,n,i,a,o,s){return!!kd(e,t,r)||(!n||!dd(i,e,t,r,a,o,s))&&Fd(e,t,r,n,a,o,s)}function _d(t){return!!(16777216&t.flags||2097152&t.flags&&e.some(t.types,_d))}function dd(t,r,n,i,a,o,s){if(!t||_d(n))return!1;if(!Fd(r,n,i,void 0)&&function(t,r,n,i,a,o,s){for(var c=pc(r,0),u=pc(r,1),l=0,_=[u,c];l<_.length;l++){var d=_[l];if(e.some(d,(function(e){var t=Mc(e);return!(131073&t.flags)&&Fd(t,n,i,void 0)}))){var p=s||{};cd(r,n,t,a,o,p);var f=p.errors[p.errors.length-1];return e.addRelatedInfo(f,e.createDiagnosticForNode(t,d===u?e.Diagnostics.Did_you_mean_to_use_new_with_this_expression:e.Diagnostics.Did_you_mean_to_call_this_expression)),!0}}return!1}(t,r,n,i,a,o,s))return!0;switch(t.kind){case 283:case 207:return dd(t.expression,r,n,i,a,o,s);case 216:switch(t.operatorToken.kind){case 62:case 27:return dd(t.right,r,n,i,a,o,s)}break;case 200:return function(t,r,n,i,a,o){return!(131068&n.flags)&&gd(function(t){var r,n,i,a;return __generator(this,(function(o){switch(o.label){case 0:if(!e.length(t.properties))return[2];r=0,n=t.properties,o.label=1;case 1:if(!(r1,m=og(p,ap),y=og(p,(function(e){return!ap(e)}));if(g){if(m!==Ue){var v=zu(Jm(u,0));c=gd(function(t,r){var n,i,a,o,s;return __generator(this,(function(c){switch(c.label){case 0:if(!e.length(t.children))return[2];n=0,i=0,c.label=1;case 1:return il:Zv(t)>l))return 0;t.typeParameters&&t.typeParameters!==r.typeParameters&&(t=Yy(t,r=Vc(r),void 0,s));var _=Yv(t),d=th(t),p=th(r);if((d||p)&&V_(d||p,c),d&&p&&_!==l)return 0;var f=r.declaration?r.declaration.kind:0,g=!(3&n)&&q&&165!==f&&164!==f&&166!==f,m=-1,y=Ic(t);if(y&&y!==ze){var v=Ic(r);if(v){if(!(T=!g&&s(y,v,!1)||s(v,y,i)))return i&&a(e.Diagnostics.The_this_types_of_each_signature_are_incompatible),0;m&=T}}for(var h=d||p?Math.min(_,l):Math.max(_,l),b=d||p?h-1:-1,x=0;x=Zv(t)&&x0||VD(c));if(f&&!function(e,t,r){for(var n=0,i=zs(e);n0&&R(Mc(v[0]),u,!1)||h.length>0&&R(Mc(h[0]),u,!1)?O(e.Diagnostics.Value_of_type_0_has_no_properties_in_common_with_type_1_Did_you_mean_to_call_it,m,y):O(e.Diagnostics.Type_0_has_no_properties_in_common_with_type_1,m,y)}return 0}B(c,u);var x=0,S=P();if((3145728&c.flags||3145728&u.flags)&&(x=lg(c)*lg(u)>=4?q(c,u,a,8|s):W(c,u,a,8|s)),x||1048576&c.flags||!(469499904&c.flags||469499904&u.flags)||(x=q(c,u,a,s))&&F(S),!x&&2359296&c.flags){var T=function(t,r){for(var n,i=!1,a=0,o=t;a0;if(_&&b--,524288&n.flags&&524288&s.flags){var d=l;L(n,s,a),l!==d&&(_=!!l)}if(524288&n.flags&&131068&s.flags)!function(t,r){var n=la(t.symbol)?sa(t,t.symbol.valueDeclaration):sa(t),i=la(r.symbol)?sa(r,r.symbol.valueDeclaration):sa(r);(xt===t&&we===r||Dt===t&&Ie===r||St===t&&je===r||ku(!1)===t&&Je===r)&&O(e.Diagnostics._0_is_a_primitive_but_1_is_a_wrapper_object_Prefer_using_0_when_possible,i,n)}(n,s);else if(n.symbol&&524288&n.flags&>===n)O(e.Diagnostics.The_Object_type_is_assignable_to_very_few_other_types_Did_you_mean_to_use_the_any_type_instead);else if(u&&2097152&s.flags){var p=s.types,f=Vm(k.IntrinsicAttributes,i),m=Vm(k.IntrinsicClassAttributes,i);if(f!==Se&&m!==Se&&(e.contains(p,f)||e.contains(p,m)))return c}else l=lc(l,r);if(!o&&_)return g=[n,s],c;M(o,n,s)}}}function B(t,r){if(e.tracing&&3145728&t.flags&&3145728&r.flags){var n=t,a=r;if(n.objectFlags&a.objectFlags&262144)return;var o=n.types.length,s=a.types.length;o*s>1e6&&e.tracing.instant("checkTypes","traceUnionsOrIntersectionsTooLarge_DepthLimit",{sourceId:t.id,sourceSize:o,targetId:r.id,targetSize:s,pos:null==i?void 0:i.pos,end:null==i?void 0:i.end})}}function j(e,t){for(var r=-1,n=0,i=e.types;n=o.types.length&&a.length%o.types.length==0){var u=R(c,o.types[s%o.types.length],!1,void 0,n);if(u){i&=u;continue}}var l=R(c,t,r,void 0,n);if(!l)return 0;i&=l}return i}function q(t,r,i,a){if(h)return 0;var o=Ud(t,r,a|(D?16:0),n),s=n.get(o);if(void 0!==s&&(!(i&&2&s)||4&s)){if(nr){var c=24&s;8&c&&V_(t,E_(H)),16&c&&V_(t,E_(X))}return 1&s?-1:0}if(d){for(var u=0;u25)return null===e.tracing||void 0===e.tracing||e.tracing.instant("checkTypes","typeRelatedToDiscriminatedType_DepthLimit",{sourceId:t.id,targetId:r.id,numCombinations:a}),0}for(var c=new Array(i.length),u=new e.Set,l=0;l5?O(e.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more,sa(t),sa(r),e.map(g.slice(0,4),(function(e){return aa(e)})).join(", "),g.length-4):O(e.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2,sa(t),sa(r),e.map(g,(function(e){return aa(e)})).join(", ")),s&&l&&b++)}function $(t,r,i,a,o){if(n===rn)return function(e,t,r){if(!(524288&e.flags&&524288&t.flags))return 0;var n=Q(Bs(e),r),i=Q(Bs(t),r);if(n.length!==i.length)return 0;for(var a=-1,o=0,s=n;o=u-y)?t.target.elementFlags[b]:4,D=r.target.elementFlags[h];if(8&D&&!(8&x))return i&&O(e.Diagnostics.Source_provides_no_match_for_variadic_element_at_position_0_in_target,h),0;if(8&x&&!(12&D))return i&&O(e.Diagnostics.Variadic_element_at_position_0_in_source_does_not_match_element_at_position_1_in_target,b,h),0;if(1&D&&!(1&x))return i&&O(e.Diagnostics.Source_provides_no_match_for_required_element_at_position_0_in_target,h),0;if(!(v&&((12&x||12&D)&&(v=!1),v&&(null==a?void 0:a.has(""+h))))){var S=fp(t)?h=u-y?f[b]:vp(t,m,y)||Ue:f[0],T=g[h];if(!(j=R(S,8&x&&4&D?Ou(T):T,i,void 0,o)))return i&&(h=u-y||c-m-y==1?w(e.Diagnostics.Type_at_position_0_in_source_is_not_compatible_with_type_at_position_1_in_target,b,h):w(e.Diagnostics.Type_at_positions_0_through_1_in_source_is_not_compatible_with_type_at_position_2_in_target,m,c-y-1,h)),0;s&=j}}return s}if(12&r.target.combinedFlags)return 0}var C=!(n!==Zr&&n!==$r||yf(t)||np(t)||fp(t)),E=cf(t,r,C,!1);if(E)return i&&Z(t,r,E,C),0;if(yf(r))for(var k=0,N=Q(zs(t),a);k0||pc(t,n=1).length>0)return e.find(r.types,(function(e){return pc(e,n).length>0}))}(t,r)||function(t,r){for(var n,i=0,a=0,o=r.types;a=i&&(n=s,i=u)}else sp(c)&&1>=i&&(n=s,i=1)}return n}(t,r)}function Id(t,r,n,i,a){for(var o=t.types.map((function(e){})),s=0,c=r;s0&&e.every(r.properties,(function(e){return!!(16777216&e.flags)}))}return!!(2097152&t.flags)&&e.every(t.types,Od)}function Md(t,r,n){var i=ru(t,e.map(t.typeParameters,(function(e){return e===r?n:e})));return i.objectFlags|=8192,i}function Ld(e){var t=Sn(e);return Rd(t.typeParameters,t,(function(r,n,i){var a=cu(e,x_(t.typeParameters,C_(n,i)));return a.aliasTypeArgumentsContainsMarker=!0,a}))}function Rd(t,r,n){var i,a,o;void 0===t&&(t=e.emptyArray);var s=r.variances;if(!s){null===e.tracing||void 0===e.tracing||e.tracing.push("checkTypes","getVariancesWorker",{arity:t.length,id:null!==(o=null!==(i=r.id)&&void 0!==i?i:null===(a=r.declaredType)||void 0===a?void 0:a.id)&&void 0!==o?o:-1}),r.variances=e.emptyArray,s=[];for(var c=function(e){var t=!1,i=!1,a=nr;nr=function(e){return e?i=!0:t=!0};var o=n(r,e,ut),c=n(r,e,lt),u=(id(c,o)?1:0)|(id(o,c)?2:0);3===u&&id(n(r,e,ir),o)&&(u=4),nr=a,(t||i)&&(t&&(u|=8),i&&(u|=16)),s.push(u)},u=0,l=t;u":n+="-"+o.id}return n}function Ud(e,t,r,n){if(n===rn&&e.id>t.id){var i=e;e=t,t=i}var a=r?":"+r:"";if(Jd(e)&&Jd(t)){var o=[];return zd(e,o)+","+zd(t,o)+a}return e.id+","+t.id+a}function Vd(t,r){if(!(6&e.getCheckFlags(t)))return r(t);for(var n=0,i=t.containingType.types;n=5){var n=Hd(e);if(n)for(var i=0,a=0;a=5)return!0}return!1}function Hd(t){if(524288&t.flags&&!vf(t)){if(e.getObjectFlags(t)&&t.node)return t.node;if(t.symbol&&!(16&e.getObjectFlags(t)&&32&t.symbol.flags))return t.symbol;if(fp(t))return t.target}if(8388608&t.flags){do{t=t.objectType}while(8388608&t.flags);return t}if(16777216&t.flags)return t.root}function Gd(e,t){return 0!==Xd(e,t,ed)}function Xd(t,r,n){if(t===r)return-1;var i=24&e.getDeclarationModifierFlagsFromSymbol(t);if(i!==(24&e.getDeclarationModifierFlagsFromSymbol(r)))return 0;if(i){if(tD(t)!==tD(r))return 0}else if((16777216&t.flags)!=(16777216&r.flags))return 0;return xh(t)!==xh(r)?0:n(_o(t),_o(r))}function Qd(t,r,n,i,a,o){if(t===r)return-1;if(!function(e,t,r){var n=Yv(e),i=Yv(t),a=Zv(e),o=Zv(t),s=$v(e),c=$v(t);return n===i&&a===o&&s===c||!!(r&&a<=o)}(t,r,n))return 0;if(e.length(t.typeParameters)!==e.length(r.typeParameters))return 0;if(r.typeParameters){for(var s=S_(t.typeParameters,r.typeParameters),c=0;c-1&&(An(o,o.name.escapedText,788968,void 0,o.name.escapedText,!0)||o.name.originalKeywordKind&&e.isTypeNodeKind(o.name.originalKeywordKind))){var s="arg"+o.parent.parameters.indexOf(o);return void ln(G,t,e.Diagnostics.Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1,s,e.declarationNameToString(o.name))}a=t.dotDotDotToken?G?e.Diagnostics.Rest_parameter_0_implicitly_has_an_any_type:e.Diagnostics.Rest_parameter_0_implicitly_has_an_any_type_but_a_better_type_may_be_inferred_from_usage:G?e.Diagnostics.Parameter_0_implicitly_has_an_1_type:e.Diagnostics.Parameter_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage;break;case 198:if(a=e.Diagnostics.Binding_element_0_implicitly_has_an_1_type,!G)return;break;case 308:return void cn(t,e.Diagnostics.Function_type_which_lacks_return_type_annotation_implicitly_has_an_0_return_type,i);case 251:case 165:case 164:case 167:case 168:case 208:case 209:if(G&&!t.name)return void cn(t,3===n?e.Diagnostics.Generator_implicitly_has_yield_type_0_because_it_does_not_yield_any_values_Consider_supplying_a_return_type_annotation:e.Diagnostics.Function_expression_which_lacks_return_type_annotation_implicitly_has_an_0_return_type,i);a=G?3===n?e.Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type:e.Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type:e.Diagnostics._0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage;break;case 190:return void(G&&cn(t,e.Diagnostics.Mapped_object_type_implicitly_has_an_any_template_type));default:a=G?e.Diagnostics.Variable_0_implicitly_has_an_1_type:e.Diagnostics.Variable_0_implicitly_has_an_1_type_but_a_better_type_may_be_inferred_from_usage}ln(G,t,a,e.declarationNameToString(e.getNameOfDeclaration(t)),i)}}function Kp(t,n,i){!(r&&G&&524288&e.getObjectFlags(n))||i&&Tm(t)||Up(n)||Vp(t,n,i)}function qp(e,t,r){var n=Yv(e),i=Yv(t),a=eh(e),o=eh(t),s=o?i-1:i,c=a?s:Math.min(n,s),u=Ic(e);if(u){var l=Ic(t);l&&r(u,l)}for(var _=0;_0?c.indexOf(_,u):u0)for(var D=0,S=r;De.target.minLength||!t.target.hasRestElement&&(e.target.hasRestElement||t.target.fixedLength1){var r=e.filter(t,vf);if(r.length){var n=rl(r,2);return e.concatenate(e.filter(t,(function(e){return!vf(e)})),[n])}}return t}(t.candidates),o=(n=t.typeParameter,!!(i=Vs(n))&&Eh(16777216&i.flags?qs(i):i,406978556)),s=!o&&t.topLevel&&(t.isFixed||!rf(Mc(r),t.typeParameter)),c=o?e.sameMap(a,__):s?e.sameMap(a,lp):a;return Jp(208&t.priority?rl(c,2):function(t){if(!K)return Yd(t);var r=e.filter(t,(function(e){return!(98304&e.flags)}));return r.length?Tp(Yd(r),98304&bp(t)):rl(t,2)}(c))}function xf(t,r){var n=t.inferences[r];if(!n.inferredType){var i=void 0,a=t.signature;if(a){var o=n.candidates?bf(n,a):void 0;if(n.contraCandidates){var s=hf(n);i=!o||131072&o.flags||!nd(o,s)?s:o}else if(o)i=o;else if(1&t.flags)i=Ve;else{var c=$s(n.typeParameter);c&&(i=V_(c,F_(function(t,r){return E_((function(n){return e.findIndex(t.inferences,(function(e){return e.typeParameter===n}))>=r?Ee:n}))}(t,r),t.nonFixingMapper)))}}else i=uf(n);n.inferredType=i||Df(!!(2&t.flags));var u=Vs(n.typeParameter);if(u){var l=V_(u,t.nonFixingMapper);i&&t.compareTypes(i,as(l,i))||(n.inferredType=i=l)}}return n.inferredType}function Df(e){return e?be:Ee}function Sf(e){for(var t=[],r=0;r=0&&r.parameterIndex=n&&c-1){var l=a.filter((function(e){return void 0!==e})),_=c=2||0==(34&r.flags)||e.isSourceFile(r.valueDeclaration)||287===r.valueDeclaration.parent.kind)return;var n=e.getEnclosingBlockScopeContainer(r.valueDeclaration),i=function(t,r){return!!e.findAncestor(t,(function(t){return t===r?"quit":e.isFunctionLike(t)}))}(t.parent,n),a=n,o=!1;for(;a&&!e.nodeStartsNewLexicalEnvironment(a);){if(e.isIterationStatement(a,!1)){o=!0;break}a=a.parent}if(o){if(i){var s=!0;if(e.isForStatement(n))if((_=e.getAncestor(r.valueDeclaration,250))&&_.parent===n){var c=function(t,r){return e.findAncestor(t,(function(e){return e===r?"quit":e===r.initializer||e===r.condition||e===r.incrementor||e===r.statement}))}(t.parent,n);if(c){var u=Tn(c);u.flags|=131072;var l=u.capturedBlockScopeBindings||(u.capturedBlockScopeBindings=[]);e.pushIfUnique(l,r),c===n.initializer&&(s=!1)}}s&&(Tn(a).flags|=65536)}var _;if(e.isForStatement(n))(_=e.getAncestor(r.valueDeclaration,250))&&_.parent===n&&function(t,r){var n=t;for(;207===n.parent.kind;)n=n.parent;var i=!1;if(e.isAssignmentTarget(n))i=!0;else if(214===n.parent.kind||215===n.parent.kind){var a=n.parent;i=45===a.operator||46===a.operator}if(!i)return!1;return!!e.findAncestor(n,(function(e){return e===r?"quit":e===r.statement}))}(t,n)&&(Tn(r.valueDeclaration).flags|=4194304);Tn(r.valueDeclaration).flags|=524288}i&&(Tn(r.valueDeclaration).flags|=262144)}(t,r);var s=Rg(_o(i),t),c=e.getAssignmentTargetKind(t);if(c){if(!(3&i.flags||e.isInJSFile(t)&&512&i.flags))return cn(t,e.Diagnostics.Cannot_assign_to_0_because_it_is_not_a_variable,aa(r)),Se;if(xh(i))return 3&i.flags?cn(t,e.Diagnostics.Cannot_assign_to_0_because_it_is_a_constant,aa(r)):cn(t,e.Diagnostics.Cannot_assign_to_0_because_it_is_a_read_only_property,aa(r)),Se}var u=2097152&i.flags;if(3&i.flags){if(1===c)return s}else{if(!u)return s;o=e.find(r.declarations,L)}if(!o)return s;for(var l=160===e.getRootDeclaration(o).kind,_=Pg(o),d=Pg(t),p=d!==_,f=t.parent&&t.parent.parent&&e.isSpreadAssignment(t.parent)&&Hf(t.parent.parent),g=134217728&r.flags;d!==_&&(208===d.kind||209===d.kind||e.isObjectLiteralOrClassExpressionMethod(d))&&(Og(i)||l&&!wg(i));)d=Pg(d);var m=l||u||p||f||g||e.isBindingElement(o)||s!==xe&&s!==kt&&(!K||0!=(16387&s.flags)||Ef(t)||270===t.parent.kind)||225===t.parent.kind||249===o.kind&&o.exclamationToken||8388608&o.flags,y=Fg(t,s,m?l?function(e,t){if(xa(t.symbol,2)){var r=K&&160===t.kind&&t.initializer&&32768&xp(e)&&!(32768&xp(ib(t.initializer)));return Ta(),r?zf(e,524288):e}return lo(t.symbol),e}(s,o):s:s===xe||s===kt?ke:Cp(s),d,!m);if(xg(t)||s!==xe&&s!==kt){if(!m&&!(32768&xp(s))&&32768&xp(y))return cn(t,e.Diagnostics.Variable_0_is_used_before_being_assigned,aa(r)),s}else if(y===xe||y===kt)return G&&(cn(e.getNameOfDeclaration(o),e.Diagnostics.Variable_0_implicitly_has_type_1_in_some_locations_where_its_type_cannot_be_determined,aa(r),sa(y)),cn(t,e.Diagnostics.Variable_0_implicitly_has_an_1_type,aa(r),sa(y))),ox(y);return c?up(y):y}function zg(e,t){(Tn(e).flags|=2,163===t.kind||166===t.kind)?Tn(t.parent).flags|=4:Tn(t).flags|=4}function Ug(t){return e.isSuperCall(t)?t:e.isFunctionLike(t)?void 0:e.forEachChild(t,Ug)}function Vg(e){return Co(jo(Ci(e)))===Pe}function Kg(t,r,n){var i=r.parent;e.getClassExtendsHeritageElement(i)&&!Vg(i)&&t.flowNode&&!Ag(t.flowNode,!1)&&cn(t,n)}function qg(t){var r=e.getThisContainer(t,!0),n=!1;switch(166===r.kind&&Kg(t,r,e.Diagnostics.super_must_be_called_before_accessing_this_in_the_constructor_of_a_derived_class),209===r.kind&&(r=e.getThisContainer(r,!1),n=!0),r.kind){case 256:cn(t,e.Diagnostics.this_cannot_be_referenced_in_a_module_or_namespace_body);break;case 255:cn(t,e.Diagnostics.this_cannot_be_referenced_in_current_location);break;case 166:Hg(t,r)&&cn(t,e.Diagnostics.this_cannot_be_referenced_in_constructor_arguments);break;case 163:case 162:!e.hasSyntacticModifier(r,32)||99===J.target&&J.useDefineForClassFields||cn(t,e.Diagnostics.this_cannot_be_referenced_in_a_static_property_initializer);break;case 158:cn(t,e.Diagnostics.this_cannot_be_referenced_in_a_computed_property_name)}n&&z<2&&zg(t,r);var i=Wg(t,!0,r);if(X){var a=_o(re);if(i===a&&n)cn(t,e.Diagnostics.The_containing_arrow_function_captures_the_global_value_of_this);else if(!i){var o=cn(t,e.Diagnostics.this_implicitly_has_type_any_because_it_does_not_have_a_type_annotation);if(!e.isSourceFile(r)){var s=Wg(r);s&&s!==a&&e.addRelatedInfo(o,e.createDiagnosticForNode(r,e.Diagnostics.An_outer_value_of_this_is_shadowed_by_this_container))}}}return i||be}function Wg(t,r,n){void 0===r&&(r=!0),void 0===n&&(n=e.getThisContainer(t,!1));var i=e.isInJSFile(t);if(e.isFunctionLike(n)&&(!em(t)||e.getThisParameter(n))){var a=io(n)||i&&function(t){var r=e.getJSDocType(t);if(r&&308===r.kind){var n=r;if(n.parameters.length>0&&n.parameters[0].name&&"this"===n.parameters[0].name.escapedText)return v_(n.parameters[0].type)}var i=e.getJSDocThisTag(t);if(i&&i.typeExpression)return v_(i.typeExpression)}(n);if(!a){var o=function(t){if(208===t.kind&&e.isBinaryExpression(t.parent)&&3===e.getAssignmentDeclarationKind(t.parent))return t.parent.left.expression.expression;if(165===t.kind&&200===t.parent.kind&&e.isBinaryExpression(t.parent.parent)&&6===e.getAssignmentDeclarationKind(t.parent.parent))return t.parent.parent.left.expression;if(208===t.kind&&288===t.parent.kind&&200===t.parent.parent.kind&&e.isBinaryExpression(t.parent.parent.parent)&&6===e.getAssignmentDeclarationKind(t.parent.parent.parent))return t.parent.parent.parent.left.expression;if(208===t.kind&&e.isPropertyAssignment(t.parent)&&e.isIdentifier(t.parent.name)&&("value"===t.parent.name.escapedText||"get"===t.parent.name.escapedText||"set"===t.parent.name.escapedText)&&e.isObjectLiteralExpression(t.parent.parent)&&e.isCallExpression(t.parent.parent.parent)&&t.parent.parent.parent.arguments[2]===t.parent.parent&&9===e.getAssignmentDeclarationKind(t.parent.parent.parent))return t.parent.parent.parent.arguments[0].expression;if(e.isMethodDeclaration(t)&&e.isIdentifier(t.name)&&("value"===t.name.escapedText||"get"===t.name.escapedText||"set"===t.name.escapedText)&&e.isObjectLiteralExpression(t.parent)&&e.isCallExpression(t.parent.parent)&&t.parent.parent.arguments[2]===t.parent&&9===e.getAssignmentDeclarationKind(t.parent.parent))return t.parent.parent.arguments[0].expression}(n);if(i&&o){var s=ib(o).symbol;s&&s.members&&16&s.flags&&(a=jo(s).thisType)}else Av(n)&&(a=jo(Ti(n.symbol)).thisType);a||(a=Yg(n))}if(a)return Fg(t,a)}if(e.isClassLike(n.parent)){var c=Ci(n.parent);return Fg(t,e.hasSyntacticModifier(n,32)?_o(c):jo(c).thisType)}if(e.isSourceFile(n)){if(n.commonJsModuleIndicator){var u=Ci(n);return u&&_o(u)}if(n.externalModuleIndicator)return ke;if(r)return _o(re)}}function Hg(t,r){return!!e.findAncestor(t,(function(t){return e.isFunctionLikeDeclaration(t)?"quit":160===t.kind&&t.parent===r}))}function Gg(t){var r=203===t.parent.kind&&t.parent.expression===t,n=e.getSuperContainer(t,!0),i=n,a=!1;if(!r)for(;i&&209===i.kind;)i=e.getSuperContainer(i,!0),a=z<2;var o=0;if(!function(t){if(!t)return!1;if(r)return 166===t.kind;if(e.isClassLike(t.parent)||200===t.parent.kind)return e.hasSyntacticModifier(t,32)?165===t.kind||164===t.kind||167===t.kind||168===t.kind:165===t.kind||164===t.kind||167===t.kind||168===t.kind||163===t.kind||162===t.kind||166===t.kind;return!1}(i)){var s=e.findAncestor(t,(function(e){return e===i?"quit":158===e.kind}));return s&&158===s.kind?cn(t,e.Diagnostics.super_cannot_be_referenced_in_a_computed_property_name):r?cn(t,e.Diagnostics.Super_calls_are_not_permitted_outside_constructors_or_in_nested_functions_inside_constructors):i&&i.parent&&(e.isClassLike(i.parent)||200===i.parent.kind)?cn(t,e.Diagnostics.super_property_access_is_permitted_only_in_a_constructor_member_function_or_member_accessor_of_a_derived_class):cn(t,e.Diagnostics.super_can_only_be_referenced_in_members_of_derived_classes_or_object_literal_expressions),Se}if(r||166!==n.kind||Kg(t,i,e.Diagnostics.super_must_be_called_before_accessing_a_property_of_super_in_the_constructor_of_a_derived_class),o=e.hasSyntacticModifier(i,32)||r?512:256,Tn(t).flags|=o,165===i.kind&&e.hasSyntacticModifier(i,256)&&(e.isSuperProperty(t.parent)&&e.isAssignmentTarget(t.parent)?Tn(i).flags|=4096:Tn(i).flags|=2048),a&&zg(t.parent,i),200===i.parent.kind)return z<2?(cn(t,e.Diagnostics.super_is_only_allowed_in_members_of_object_literal_expressions_when_option_target_is_ES2015_or_higher),Se):be;var c=i.parent;if(!e.getClassExtendsHeritageElement(c))return cn(t,e.Diagnostics.super_can_only_be_referenced_in_a_derived_class),Se;var u=jo(Ci(c)),l=u&&ko(u)[0];return l?166===i.kind&&Hg(t,i)?(cn(t,e.Diagnostics.super_cannot_be_referenced_in_constructor_arguments),Se):512===o?Co(u):as(l,u.thisType):Se}function Xg(t){return 4&e.getObjectFlags(t)&&t.target===Ct?au(t)[0]:void 0}function Qg(t){return cg(t,(function(t){return 2097152&t.flags?e.forEach(t.types,Xg):Xg(t)}))}function Yg(t){if(209!==t.kind){if(Y_(t)){var r=Cm(t);if(r){var n=r.thisParameter;if(n)return _o(n)}}var i=e.isInJSFile(t);if(X||i){var a=function(e){return 165!==e.kind&&167!==e.kind&&168!==e.kind||200!==e.parent.kind?208===e.kind&&288===e.parent.kind?e.parent.parent:void 0:e.parent}(t);if(a){for(var o=gm(a),s=a,c=o;c;){var u=Qg(c);if(u)return V_(u,$p(hm(a)));if(288!==s.parent.kind)break;c=gm(s=s.parent.parent)}return Jp(o?Ep(o):Jh(a))}var l=e.walkUpParenthesizedExpressions(t.parent);if(216===l.kind&&62===l.operatorToken.kind){var _=l.left;if(e.isAccessExpression(_)){var d=_.expression;if(i&&e.isIdentifier(d)){var p=e.getSourceFileOfNode(l);if(p.commonJsModuleIndicator&&Cf(d)===p.symbol)return}return Jp(Jh(d))}}}}}function Zg(t){var r=t.parent;if(Y_(r)){var n=e.getImmediatelyInvokedFunctionExpression(r);if(n&&n.arguments){var i=sv(n),a=r.parameters.indexOf(t);if(t.dotDotDotToken)return tv(i,a,i.length,be,void 0,0);var o=Tn(n),s=o.resolvedSignature;o.resolvedSignature=or;var c=a=0?void 0:_o(o);if(fp(t)){var s=yp(t);if(s&&Pm(r)&&+r>=0)return s}return Pm(r)&&um(t,1)||um(t,0)}var c}),!0)}function um(e,t){return cg(e,(function(e){return gc(e,t)}),!0)}function lm(e,t){var r=gm(e.parent,t);if(r){if($o(e)){var n=cm(r,Ci(e).escapedName);if(n)return n}return Am(e.name)&&um(r,1)||um(r,0)}}function _m(e,t){return e&&(cm(e,""+t)||cg(e,(function(e){return bx(1,e,ke,void 0,!1)}),!0))}function dm(t){var r=t.parent;return e.isJsxAttributeLike(r)?vm(t):e.isJsxElement(r)?function(t,r){var n=gm(t.openingElement.tagName),i=Gm(Wm(t));if(n&&!ka(n)&&i&&""!==i){var a=e.getSemanticJsxChildren(t.children),o=a.indexOf(r),s=cm(n,i);return s&&(1===a.length?s:cg(s,(function(e){return rp(e)?Bl(e,p_(o)):e}),!0))}}(r,t):void 0}function pm(t){if(e.isJsxAttribute(t)){var r=gm(t.parent);if(!r||ka(r))return;return cm(r,t.name.escapedText)}return vm(t.parent)}function fm(e){switch(e.kind){case 10:case 8:case 9:case 14:case 109:case 94:case 103:case 78:case 150:return!0;case 201:case 207:return fm(e.expression);case 283:return!e.expression||fm(e.expression)}return!1}function gm(t,r){var n=mm(e.isObjectLiteralMethod(t)?function(t,r){if(e.Debug.assert(e.isObjectLiteralMethod(t)),!(16777216&t.flags))return lm(t,r)}(t,r):vm(t,r),t,r);if(n&&!(r&&2&r&&8650752&n.flags)){var i=cg(n,tc,!0);if(1048576&i.flags){if(e.isObjectLiteralExpression(t))return function(t,r){return Id(r,e.map(e.filter(t.properties,(function(e){return!!e.symbol&&288===e.kind&&fm(e.initializer)&&If(r,e.symbol.escapedName)})),(function(e){return[function(){return ib(e.initializer)},e.symbol.escapedName]})),id,r)}(t,i);if(e.isJsxAttributes(t))return function(t,r){return Id(r,e.map(e.filter(t.properties,(function(e){return!!e.symbol&&280===e.kind&&If(r,e.symbol.escapedName)&&(!e.initializer||fm(e.initializer))})),(function(e){return[e.initializer?function(){return ib(e.initializer)}:function(){return Re},e.symbol.escapedName]})),id,r)}(t,i)}return i}}function mm(t,r,n){if(t&&Eh(t,465829888)){var i=hm(r);if(i&&e.some(i.inferences,Yh)){if(n&&1&n)return ym(t,i.nonFixingMapper);if(i.returnMapper)return ym(t,i.returnMapper)}}return t}function ym(t,r){return 465829888&t.flags?V_(t,r):1048576&t.flags?rl(e.map(t.types,(function(e){return ym(e,r)})),0):2097152&t.flags?ul(e.map(t.types,(function(e){return ym(e,r)}))):t}function vm(t,r){if(16777216&t.flags);else{if(t.contextualType)return t.contextualType;var n=t.parent;switch(n.kind){case 249:case 160:case 163:case 162:case 198:return function(t,r){var n=t.parent;if(e.hasInitializer(n)&&t===n.initializer){var i=$g(n);if(i)return i;if(!(8&r)&&e.isBindingPattern(n.name))return Qa(n.name,!0,!1)}}(t,r);case 209:case 242:return function(t){var r=e.getContainingFunction(t);if(r){var n=rm(r);if(n){var i=e.getFunctionFlags(r);if(1&i){var a=Ex(n,2&i?2:1,void 0);if(!a)return;n=a.returnType}if(2&i){var o=cg(n,Nb);return o&&rl([o,ch(o)])}return n}}}(t);case 219:return function(t){var r=e.getContainingFunction(t);if(r){var n=e.getFunctionFlags(r),i=rm(r);if(i)return t.asteriskToken?i:Ux(0,i,0!=(2&n))}}(n);case 213:return function(e,t){var r=vm(e,t);if(r){var n=Nb(r);return n&&rl([n,ch(n)])}}(n,r);case 203:if(99===n.expression.kind)return we;case 204:return nm(n,t);case 206:case 224:return e.isConstTypeReference(n.type)?function(e){return vm(e)}(n):v_(n.type);case 216:return am(t,r);case 288:case 289:return lm(n,r);case 290:return gm(n.parent,r);case 199:var i=n;return _m(gm(i,r),e.indexOfNode(i.elements,t));case 217:return function(e,t){var r=e.parent;return e===r.whenTrue||e===r.whenFalse?vm(r,t):void 0}(t,r);case 228:return e.Debug.assert(218===n.parent.kind),function(e,t){if(205===e.parent.kind)return nm(e.parent,t)}(n.parent,t);case 207:var a=e.isInJSFile(n)?e.getJSDocTypeTag(n):void 0;return a?v_(a.typeExpression.type):vm(n,r);case 225:return vm(n,r);case 283:return dm(n);case 280:case 282:return pm(n);case 275:case 274:return function(t,r){if(e.isJsxOpeningElement(t)&&t.parent.contextualType&&4!==r)return t.parent.contextualType;return im(t,0)}(n,r)}}}function hm(t){var r=e.findAncestor(t,(function(e){return!!e.inferenceContext}));return r&&r.inferenceContext}function bm(t,r){return 0!==nv(r)?function(e,t){var r=nh(e,Ee);r=xm(t,Wm(t),r);var n=Vm(k.IntrinsicAttributes,t);n!==Se&&(r=ms(n,r));return r}(t,r):function(t,r){var n=Wm(r),i=(o=n,Hm(k.ElementAttributesPropertyNameContainer,o)),a=void 0===i?nh(t,Ee):""===i?Mc(t):function(e,t){if(e.unionSignatures){for(var r=[],n=0,i=e.unionSignatures;n=2)return cu(a,kc([s,n],c,2,e.isInJSFile(t)))}if(e.length(o.typeParameters)>=2)return ru(o,kc([s,n],o.typeParameters,2,e.isInJSFile(t)))}return n}function Dm(t,r){var n=pc(t,0);if(1===n.length){var i=n[0];if(!function(t,r){for(var n=0;n0&&(s=a_(s,M(),t.symbol,g,l),o=[],a=e.createSymbolTable(),y=!1,v=!1),!Lm(N=oc(ib(C.expression))))return cn(C,e.Diagnostics.Spread_types_may_only_be_created_from_object_types),Se;i&&zm(N,i,C),s=a_(s,N,t.symbol,g,l),D=o.length;continue}e.Debug.assert(167===C.kind||168===C.kind),SD(C)}!k||8576&k.flags?a.set(E.escapedName,E):id(k,Ge)&&(id(k,Ie)?v=!0:y=!0,n&&(m=!0)),o.push(E)}if(u&&290!==t.parent.kind)for(var I=0,O=zs(c);I0&&(s=a_(s,M(),t.symbol,g,l),o=[],a=e.createSymbolTable(),y=!1,v=!1),cg(s,(function(e){return e===et?M():e}))):M();function M(){var r=y?Im(t,D,o,0):void 0,i=v?Im(t,D,o,1):void 0,s=Vi(t.symbol,a,e.emptyArray,e.emptyArray,r,i);return s.objectFlags|=1048704|g,f&&(s.objectFlags|=16384),m&&(s.objectFlags|=512),n&&(s.pattern=t),s}}function Lm(t){if(465829888&t.flags){var r=Gs(t);if(void 0!==r)return Lm(r)}return!!(126615553&t.flags||117632&xp(t)&&Lm(Dp(t))||3145728&t.flags&&e.every(t.types,Lm))}function Rm(t){return!e.stringContains(t,"-")}function Bm(t){return 78===t.kind&&e.isIntrinsicJsxName(t.escapedText)}function jm(e,t){return e.initializer?Wh(e.initializer,t):Re}function Jm(e,t){for(var r=[],n=0,i=e.children;n0&&(s=a_(s,T(),i.symbol,l,!1),o=e.createSymbolTable()),ka(m=oc(Jh(f.expression,r)))&&(c=!0),Lm(m)?(s=a_(s,m,i.symbol,l,!1),a&&zm(m,a,f)):n=n?ul([n,m]):m}c||o.size>0&&(s=a_(s,T(),i.symbol,l,!1));var v=273===t.parent.kind?t.parent:void 0;if(v&&v.openingElement===t&&v.children.length>0){var h=Jm(v,r);if(!c&&_&&""!==_){u&&cn(i,e.Diagnostics._0_are_specified_twice_The_attribute_named_0_will_be_overwritten,e.unescapeLeadingUnderscores(_));var b=gm(t.attributes),x=b&&cm(b,_),D=fn(4,_);D.type=1===h.length?h[0]:x&&ig(x,ip)?zu(h):Ou(rl(h)),D.valueDeclaration=e.factory.createPropertySignature(void 0,e.unescapeLeadingUnderscores(_),void 0,void 0),e.setParent(D.valueDeclaration,i),D.valueDeclaration.symbol=D;var S=e.createSymbolTable();S.set(_,D),s=a_(s,Vi(i.symbol,S,e.emptyArray,e.emptyArray,void 0,void 0),i.symbol,l,!1)}}return c?be:n&&s!==tt?ul([n,s]):n||(s===tt?T():s);function T(){l|=Y;var t=Vi(i.symbol,o,e.emptyArray,e.emptyArray,void 0,void 0);return t.objectFlags|=1048704|l,t}}(t.parent,r)}function Vm(e,t){var r=Wm(t),n=r&&bi(r),i=n&&En(n,e,788968);return i?jo(i):Se}function Km(t){var r=Tn(t);if(!r.resolvedSymbol){var n=Vm(k.IntrinsicElements,t);if(n!==Se){if(!e.isIdentifier(t.tagName))return e.Debug.fail();var i=_c(n,t.tagName.escapedText);return i?(r.jsxFlags|=1,r.resolvedSymbol=i):yc(n,0)?(r.jsxFlags|=2,r.resolvedSymbol=n.symbol):(cn(t,e.Diagnostics.Property_0_does_not_exist_on_type_1,e.idText(t.tagName),"JSX."+k.IntrinsicElements),r.resolvedSymbol=ve)}return G&&cn(t,e.Diagnostics.JSX_element_implicitly_has_type_any_because_no_interface_JSX_0_exists,e.unescapeLeadingUnderscores(k.IntrinsicElements)),r.resolvedSymbol=ve}return r.resolvedSymbol}function qm(t){var r=t&&e.getSourceFileOfNode(t),n=r&&Tn(r);if(!n||!1!==n.jsxImplicitImportContainer){if(n&&n.jsxImplicitImportContainer)return n.jsxImplicitImportContainer;var i=e.getJSXRuntimeImport(e.getJSXImplicitImportBase(J,r),J);if(i){var a=pi(t,i,e.getEmitModuleResolutionKind(J)===e.ModuleResolutionKind.Classic?e.Diagnostics.Cannot_find_module_0_Did_you_mean_to_set_the_moduleResolution_option_to_node_or_to_add_aliases_to_the_paths_option:e.Diagnostics.Cannot_find_module_0_or_its_corresponding_type_declarations,t),o=a&&a!==ve?Ti(ei(a)):void 0;return n&&(n.jsxImplicitImportContainer=o||!1),o}}}function Wm(e){var t=e&&Tn(e);if(t&&t.jsxNamespace)return t.jsxNamespace;if(!t||!1!==t.jsxNamespace){var r=qm(e);if(!r||r===ve){var n=on(e);r=An(e,n,1920,void 0,n,!1)}if(r){var i=ei(En(bi(ei(r)),k.JSX,1920));if(i&&i!==ve)return t&&(t.jsxNamespace=i),i}t&&(t.jsxNamespace=!1)}var a=ei(Tu(k.JSX,1920,void 0));return a!==ve?a:void 0}function Hm(t,r){var n=r&&En(r.exports,t,788968),i=n&&jo(n),a=i&&zs(i);if(a){if(0===a.length)return"";if(1===a.length)return a[0].escapedName;a.length>1&&cn(n.declarations[0],e.Diagnostics.The_global_type_JSX_0_may_not_have_more_than_one_property,e.unescapeLeadingUnderscores(t))}}function Gm(e){return Hm(k.ElementChildrenAttributeNameContainer,e)}function Xm(t,r){if(4&t.flags)return[or];if(128&t.flags){var n=Qm(t,r);return n?[Cv(r,n)]:(cn(r,e.Diagnostics.Property_0_does_not_exist_on_type_1,t.value,"JSX."+k.IntrinsicElements),e.emptyArray)}var i=tc(t),a=pc(i,1);return 0===a.length&&(a=pc(i,0)),0===a.length&&1048576&i.flags&&(a=fs(e.map(i.types,(function(e){return Xm(e,r)})))),a}function Qm(t,r){var n=Vm(k.IntrinsicElements,r);if(n!==Se){var i=t.value,a=_c(n,e.escapeLeadingUnderscores(i));if(a)return _o(a);var o=yc(n,0);return o||void 0}return be}function Ym(t){e.Debug.assert(Bm(t.tagName));var r=Tn(t);if(!r.resolvedJsxElementAttributesType){var n=Km(t);return 1&r.jsxFlags?r.resolvedJsxElementAttributesType=_o(n):2&r.jsxFlags?r.resolvedJsxElementAttributesType=yc(jo(n),0):r.resolvedJsxElementAttributesType=Se}return r.resolvedJsxElementAttributesType}function Zm(e){var t=Vm(k.ElementClass,e);if(t!==Se)return t}function $m(e){return Vm(k.Element,e)}function ey(e){var t=$m(e);if(t)return rl([t,Fe])}function ty(t){var r,n=e.isJsxOpeningLikeElement(t);if(n&&function(t){wS(t,t.typeArguments);for(var r=new e.Map,n=0,i=t.attributes.properties;n=0)return _>=Zv(n)&&($v(n)||_s)return!1;if(o||a>=c)return!0;for(var d=a;d=i&&r.length<=n}function Gy(e){return Qy(e,0,!1)}function Xy(e){return Qy(e,0,!1)||Qy(e,1,!1)}function Qy(e,t,r){if(524288&e.flags){var n=Rs(e);if(r||0===n.properties.length&&!n.stringIndexInfo&&!n.numberIndexInfo){if(0===t&&1===n.callSignatures.length&&0===n.constructSignatures.length)return n.callSignatures[0];if(1===t&&1===n.constructSignatures.length&&0===n.callSignatures.length)return n.constructSignatures[0]}}}function Yy(t,r,n,i){var a=Hp(t.typeParameters,t,0,i),o=eh(r),s=n&&(o&&262144&o.flags?n.nonFixingMapper:n.mapper);return qp(s?O_(r,s):r,t,(function(e,t){ff(a.inferences,e,t)})),n||Wp(r,t,(function(e,t){ff(a.inferences,e,t,64)})),jc(t,Sf(a),e.isInJSFile(r.declaration))}function Zy(t){if(!t)return ze;var r=ib(t);return e.isOptionalChainRoot(t.parent)?Ep(r):e.isOptionalChain(t.parent)?Ap(r):r}function $y(t,r,n,i,a){if(e.isJsxOpeningLikeElement(t))return function(e,t,r,n){var i=bm(t,e),a=jh(e.attributes,i,n,r);return ff(n.inferences,a,i),Sf(n)}(t,r,i,a);if(161!==t.kind){var o=vm(t,e.every(r.typeParameters,(function(e){return!!$s(e)}))?8:0);if(o){var s=hm(t),c=V_(o,$p(function(t,r){return void 0===r&&(r=0),t&&Gp(e.map(t.inferences,Zp),t.signature,t.flags|r,t.compareTypes)}(s,1))),u=Gy(c),l=u&&u.typeParameters?qc(Jc(u,u.typeParameters)):c,_=Mc(r);ff(a.inferences,l,_,64);var d=Hp(r.typeParameters,r,a.flags),p=V_(o,s&&s.returnMapper);ff(d.inferences,p,_),a.returnMapper=e.some(d.inferences,Yh)?$p(function(t){var r=e.filter(t.inferences,Yh);return r.length?Gp(e.map(r,Zp),t.signature,t.flags,t.compareTypes):void 0}(d)):void 0}}var f=th(r),g=f?Math.min(Yv(r)-1,n.length):n.length;if(f&&262144&f.flags){var m=e.find(a.inferences,(function(e){return e.typeParameter===f}));m&&(m.impliedArity=e.findIndex(n,Uy,g)<0?n.length-g:void 0)}var y=Ic(r);if(y){var v=av(t);ff(a.inferences,Zy(v),y)}for(var h=0;h=n-1&&Uy(_=t[n-1]))return ev(227===_.kind?_.type:jh(_.expression,i,a,o));for(var s=[],c=[],u=[],l=r;l_&&(_=v)}}if(!l)return!0;for(var h=1/0,b=0,x=i;b0||e.isJsxOpeningElement(t)&&t.parent.children.length>0?[t.attributes]:e.emptyArray;var i=t.arguments||e.emptyArray,a=Vy(i);if(a>=0){for(var o=i.slice(0,a),s=function(t){var r=i[t],n=220===r.kind&&(Dr?ib(r.expression):Jh(r.expression));n&&fp(n)?e.forEach(au(n),(function(e,t){var i,a=n.target.elementFlags[t],s=ov(r,4&a?Ou(e):e,!!(12&a),null===(i=n.target.labeledElementDeclarations)||void 0===i?void 0:i[t]);o.push(s)})):o.push(r)},c=a;cs&&(s=p),u-1;u<=o&&h&&u--;var b=y||h?y&&h?e.Diagnostics.Expected_at_least_0_arguments_but_got_1_or_more:y?e.Diagnostics.Expected_at_least_0_arguments_but_got_1:e.Diagnostics.Expected_0_arguments_but_got_1_or_more:1===v&&0===u&&function(t){if(!e.isCallExpression(t)||!e.isIdentifier(t.expression))return!1;var r=An(t.expression,t.expression.escapedText,111551,void 0,void 0,!1),n=null==r?void 0:r.valueDeclaration;if(!(n&&e.isParameter(n)&&Sm(n.parent)&&e.isNewExpression(n.parent.parent)&&e.isIdentifier(n.parent.parent.expression)))return!1;var i=Au(!1);return!!i&&LD(n.parent.parent.expression,!0)===i}(t)?e.Diagnostics.Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise:e.Diagnostics.Expected_0_arguments_but_got_1;if(i&&Zv(i)>u&&i.declaration){var x=i.declaration.parameters[i.thisParameter?u+1:u];x&&(m=e.createDiagnosticForNode(x,e.isBindingPattern(x.name)?e.Diagnostics.An_argument_matching_this_binding_pattern_was_not_provided:e.isRestParameter(x)?e.Diagnostics.Arguments_for_the_rest_parameter_0_were_not_provided:e.Diagnostics.An_argument_for_0_was_not_provided,x.name?e.isBindingPattern(x.name)?void 0:e.idText(e.getFirstIdentifier(x.name)):u))}if(au&&S?n.indexOf(S):Math.min(o,n.length-1)))}}else g=e.factory.createNodeArray(n.slice(o));var T=e.first(g).pos,C=e.last(g).end;C===T&&C++,e.setTextRangePosEnd(g,T,C);var E=e.createDiagnosticForNodeArray(e.getSourceFileOfNode(t),g,b,v,u);return m?e.addRelatedInfo(E,m):E}function dv(t,n,i,a,o,s){var c,u=205===t.kind,l=161===t.kind,_=e.isJsxOpeningLikeElement(t),d=!i&&r;l||(c=t.typeArguments,(u||_||105!==t.expression.kind)&&e.forEach(c,xD));var p=i||[];if(function(t,r,n){var i,a,o,s,c=0,u=-1;e.Debug.assert(!r.length);for(var l=0,_=t;l<_.length;l++){var d=_[l],p=d.declaration&&Ci(d.declaration),f=d.declaration&&d.declaration.parent;a&&p!==a?(o=c=r.length,i=f):i&&f===i?o+=1:(i=f,o=c),a=p,j(d)?(s=++u,c++):s=o,r.splice(s,0,n?ls(d,n):d)}}(n,p,o),!p.length)return d&&Gr.add(lv(t,e.Diagnostics.Call_target_does_not_contain_any_signatures)),zy(t);var f,g,m,y,v=sv(t),h=1===p.length&&!p[0].typeParameters,b=l||h||!e.some(v,G_)?0:4,x=!!(16&a)&&203===t.kind&&t.arguments.hasTrailingComma;if(p.length>1&&(y=q(p,Zr,h,x)),y||(y=q(p,en,h,x)),y)return y;if(d)if(f)if(1===f.length||f.length>3){var D,S=f[f.length-1];f.length>3&&(D=e.chainDiagnosticMessages(D,e.Diagnostics.The_last_overload_gave_the_following_error),D=e.chainDiagnosticMessages(D,e.Diagnostics.No_overload_matches_this_call));var T=iv(t,v,S,en,0,!0,(function(){return D}));if(T)for(var C=0,E=T;C3&&e.addRelatedInfo(k,e.createDiagnosticForNode(S.declaration,e.Diagnostics.The_last_overload_is_declared_here)),K(S,k),Gr.add(k)}else e.Debug.fail("No error for last overload signature")}else{for(var N=[],A=0,F=Number.MAX_VALUE,P=0,w=0,I=function(r){var n=iv(t,v,r,en,0,!0,(function(){return e.chainDiagnosticMessages(void 0,e.Diagnostics.Overload_0_of_1_2_gave_the_following_error,w+1,p.length,oa(r))}));n?(n.length<=F&&(F=n.length,P=w),A=Math.max(A,n.length),N.push(n)):e.Debug.fail("No error for 3 or fewer overload signatures"),w++},O=0,M=f;O1?N[P]:e.flatten(N);e.Debug.assert(L.length>0,"No errors reported for 3 or fewer overload signatures");var R=e.chainDiagnosticMessages(e.map(L,(function(e){return"string"==typeof e.messageText?e:e.messageText})),e.Diagnostics.No_overload_matches_this_call),J=__spreadArray([],e.flatMap(L,(function(e){return e.relatedInformation}))),z=void 0;if(e.every(L,(function(e){return e.start===L[0].start&&e.length===L[0].length&&e.file===L[0].file}))){var U=L[0];z={file:U.file,start:U.start,length:U.length,code:R.code,category:R.category,messageText:R,relatedInformation:J}}else z=e.createDiagnosticForNodeFromMessageChain(t,R,J);K(f[0],z),Gr.add(z)}else if(g)Gr.add(_v(t,[g],v));else if(m)rv(m,t.typeArguments,!0,s);else{var V=e.filter(n,(function(e){return Hy(e,c)}));0===V.length?Gr.add(function(t,r,n){var i=n.length;if(1===r.length){var a=Ec((_=r[0]).typeParameters),o=e.length(_.typeParameters);return e.createDiagnosticForNodeArray(e.getSourceFileOfNode(t),n,e.Diagnostics.Expected_0_type_arguments_but_got_1,ai?c=Math.min(c,d):o0),SD(t),i||1===r.length||r.some((function(e){return!!e.typeParameters}))?function(t,r,n){var i=function(e,t){for(var r=-1,n=-1,i=0;i=t)return i;o>n&&(n=o,r=i)}return r}(r,void 0===ne?n.length:ne),a=r[i],o=a.typeParameters;if(!o)return a;var s=jy(t)?t.typeArguments:void 0,c=s?zc(a,function(e,t,r){var n=e.map(RD);for(;n.length>t.length;)n.pop();for(;n.length1?e.find(c,(function(t){return e.isFunctionLikeDeclaration(t)&&e.nodeIsPresent(t.body)})):void 0;if(u){var l=Nc(u),_=!l.typeParameters;q([l],en,_)&&e.addRelatedInfo(r,e.createDiagnosticForNode(u,e.Diagnostics.The_call_would_have_succeeded_against_this_implementation_but_implementation_signatures_of_overloads_are_not_externally_visible))}f=a,g=o,m=s}function q(r,n,i,a){if(void 0===a&&(a=!1),f=void 0,g=void 0,m=void 0,i){var o=r[0];if(e.some(c)||!Wy(t,v,o,a))return;return iv(t,v,o,n,0,!1,void 0)?void(f=[o]):o}for(var s=0;s=0&&cn(t.arguments[i],e.Diagnostics.Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher)}var a=uy(t.expression);if(a===Ve)return ur;if((a=tc(a))===Se)return zy(t);if(ka(a))return t.typeArguments&&cn(t,e.Diagnostics.Untyped_function_calls_may_not_accept_type_arguments),Jy(t);var o=pc(a,1);if(o.length){if(!function(t,r){if(!r||!r.declaration)return!0;var n=r.declaration,i=e.getSelectedEffectiveModifierFlags(n,24);if(!i||166!==n.kind)return!0;var a=e.getClassLikeDeclarationOfSymbol(n.parent.symbol),o=jo(n.parent.symbol);if(!ID(t,a)){var s=e.getContainingClass(t);if(s&&16&i){var c=RD(s);if(hv(n.parent.symbol,c))return!0}return 8&i&&cn(t,e.Diagnostics.Constructor_of_class_0_is_private_and_only_accessible_within_the_class_declaration,sa(o)),16&i&&cn(t,e.Diagnostics.Constructor_of_class_0_is_protected_and_only_accessible_within_the_class_declaration,sa(o)),!1}return!0}(t,o[0]))return zy(t);if(o.some((function(e){return 4&e.flags})))return cn(t,e.Diagnostics.Cannot_create_an_instance_of_an_abstract_class),zy(t);var s=a.symbol&&e.getClassLikeDeclarationOfSymbol(a.symbol);return s&&e.hasSyntacticModifier(s,128)?(cn(t,e.Diagnostics.Cannot_create_an_instance_of_an_abstract_class),zy(t)):dv(t,o,r,n,0)}var c=pc(a,0);if(c.length){var u=dv(t,c,r,n,0);return G||(u.declaration&&!Av(u.declaration)&&Mc(u)!==ze&&cn(t,e.Diagnostics.Only_a_void_function_can_be_called_with_the_new_keyword),Ic(u)===ze&&cn(t,e.Diagnostics.A_function_that_is_called_with_the_new_keyword_cannot_have_a_this_type_that_is_void)),u}return xv(t.expression,a,1),zy(t)}function hv(t,r){var n=ko(r);if(!e.length(n))return!1;var i=n[0];if(2097152&i.flags){for(var a=hs(i.types),o=0,s=0,c=i.types;s0;if(1048576&r.flags){for(var c=!1,u=0,l=r.types;u=n-1)return r===n-1?a:Ou(Bl(a,Ie));for(var o=[],s=[],c=[],u=r;u0&&(a=t.parameters.length-1+c)}}if(void 0===a){if(!n&&32&t.flags)return 0;a=t.minArgumentCount}if(i)return a;for(var u=a-1;u>=0;u--){if(131072&og(Gv(t,u),Ky).flags)break;a=u}t.resolvedMinArgumentCount=a}return t.resolvedMinArgumentCount}function $v(e){if(B(e)){var t=_o(e.parameters[e.parameters.length-1]);return!fp(t)||t.target.hasRestElement}return!1}function eh(e){if(B(e)){var t=_o(e.parameters[e.parameters.length-1]);if(!fp(t))return t;if(t.target.hasRestElement)return qu(t,t.target.fixedLength)}}function th(e){var t=eh(e);return!t||Zd(t)||ka(t)||0!=(131072&oc(t).flags)?void 0:t}function rh(e){return nh(e,Ue)}function nh(e,t){return e.parameters.length>0?Gv(e,0):t}function ih(t,r){(t.typeParameters=r.typeParameters,r.thisParameter)&&((!(a=t.thisParameter)||a.valueDeclaration&&!a.valueDeclaration.type)&&(a||(t.thisParameter=Ip(r.thisParameter,void 0)),ah(t.thisParameter,_o(r.thisParameter))));for(var n=t.parameters.length-(B(t)?1:0),i=0;i0&&(n=rl(l,2)):u=Ue;var _=function(t,r){var n=[],i=[],a=0!=(2&e.getFunctionFlags(t));return e.forEachYieldExpression(t.body,(function(t){var o,s=t.expression?ib(t.expression,r):Ne;if(e.pushIfUnique(n,dh(t,s,be,a)),t.asteriskToken){var c=Ex(s,a?19:17,t.expression);o=c&&c.nextType}else o=vm(t);o&&e.pushIfUnique(i,o)})),{yieldTypes:n,nextTypes:i}}(t,r),d=_.yieldTypes,p=_.nextTypes;i=e.some(d)?rl(d,2):void 0,a=e.some(p)?ul(p):void 0}else{var f=mh(t,r);if(!f)return 2&o?uh(t,Ue):Ue;if(0===f.length)return 2&o?uh(t,ze):ze;n=rl(f,2)}if(n||i||a){if(i&&Kp(t,i,3),n&&Kp(t,n,1),a&&Kp(t,a,2),n&&sp(n)||i&&sp(i)||a&&sp(a)){var g=Tm(t),m=g?g===Nc(t)?c?void 0:n:mm(Mc(g),t):void 0;c?(i=pp(i,m,0,s),n=pp(n,m,1,s),a=pp(a,m,2,s)):n=function(e,t,r){return e&&sp(e)&&(e=dp(e,t?r?Eb(t):t:void 0)),e}(n,m,s)}i&&(i=Jp(i)),n&&(n=Jp(n)),a&&(a=Jp(a))}return c?_h(i||Ue,n||u,a||tm(2,t)||Ee,s):s?sh(n||u):n||u}function _h(e,t,r,n){var i=n?mr:yr,a=i.getGlobalGeneratorType(!1);if(e=i.resolveIterationType(e,void 0)||Ee,t=i.resolveIterationType(t,void 0)||Ee,r=i.resolveIterationType(r,void 0)||Ee,a===it){var o=i.getGlobalIterableIteratorType(!1),s=o!==it?Fx(o,i):void 0,c=s?s.returnType:be,u=s?s.nextType:ke;return id(t,c)&&id(u,r)?o!==it?wu(o,[e]):(i.getGlobalIterableIteratorType(!0),et):(i.getGlobalGeneratorType(!0),et)}return wu(a,[e,t,r])}function dh(t,r,n,i){var a=t.expression||t,o=t.asteriskToken?hx(i?19:17,r,n,a):r;return i?Nb(o,a,t.asteriskToken?e.Diagnostics.Type_of_iterated_elements_of_a_yield_Asterisk_operand_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member:e.Diagnostics.Type_of_yield_operand_in_an_async_generator_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member):o}function ph(e,t,r,n){var i=0;if(n){for(var a=t;a=0;)switch(t=i.expr[a],i.state[a]){case 0:if(e.isInJSFile(t)&&e.getAssignedExpandoInitializer(t)){l(ib(t.right,r));break}if(Rh(t),62===(o=t.operatorToken.kind)&&(200===t.left.kind||199===t.left.kind)){l(Ih(t.left,ib(t.right,r),r,107===t.right.kind));break}_(1),d(t.left);break;case 1:var o,s=n;if(i.leftType[a]=s,55===(o=t.operatorToken.kind)||56===o||60===o){if(55===o){var c=e.walkUpParenthesizedExpressions(t.parent);px(t.left,s,e.isIfStatement(c)?c.thenStatement:void 0)}fx(s,t.left)}_(2),d(t.right);break;case 2:s=i.leftType[a];var u=n;l(Bh(t.left,t.operatorToken,t.right,s,u,t));break;default:return e.Debug.fail("Invalid state "+i.state[a]+" for checkBinaryExpression")}return n;function l(e){n=e,a--}function _(e){i.state[a]=e}function d(t){e.isBinaryExpression(t)?(a++,i.expr[a]=t,i.state[a]=0,i.leftType[a]=void 0):n=ib(t,r)}}function Rh(t){var r=t.left,n=t.operatorToken,i=t.right;60===n.kind&&(!e.isBinaryExpression(r)||56!==r.operatorToken.kind&&55!==r.operatorToken.kind||$S(r,e.Diagnostics._0_and_1_operations_cannot_be_mixed_without_parentheses,e.tokenToString(r.operatorToken.kind),e.tokenToString(n.kind)),!e.isBinaryExpression(i)||56!==i.operatorToken.kind&&55!==i.operatorToken.kind||$S(i,e.Diagnostics._0_and_1_operations_cannot_be_mixed_without_parentheses,e.tokenToString(i.operatorToken.kind),e.tokenToString(n.kind)))}function Bh(t,n,i,a,o,s){var c,u,l=n.kind;switch(l){case 41:case 42:case 65:case 66:case 43:case 67:case 44:case 68:case 40:case 64:case 47:case 69:case 48:case 70:case 49:case 71:case 51:case 73:case 52:case 77:case 50:case 72:if(a===Ve||o===Ve)return Ve;a=gy(a,t),o=gy(o,i);var _=void 0;if(528&a.flags&&528&o.flags&&void 0!==(_=function(e){switch(e){case 51:case 73:return 56;case 52:case 77:return 37;case 50:case 72:return 55;default:return}}(n.kind)))return cn(s||n,e.Diagnostics.The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead,e.tokenToString(n.kind),e.tokenToString(_)),Ie;var d,p=hh(t,a,e.Diagnostics.The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type,!0),f=hh(i,o,e.Diagnostics.The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type,!0);if(kh(a,3)&&kh(o,3)||!Eh(a,2112)&&!Eh(o,2112))d=Ie;else if(T(a,o)){switch(l){case 49:case 71:N();break;case 42:case 66:z<3&&cn(s,e.Diagnostics.Exponentiation_cannot_be_performed_on_bigint_values_unless_the_target_option_is_set_to_es2016_or_later)}d=Oe}else N(T),d=Se;return p&&f&&E(d),d;case 39:case 63:if(a===Ve||o===Ve)return Ve;kh(a,402653316)||kh(o,402653316)||(a=gy(a,t),o=gy(o,i));var g=void 0;if(kh(a,296,!0)&&kh(o,296,!0)?g=Ie:kh(a,2112,!0)&&kh(o,2112,!0)?g=Oe:kh(a,402653316,!0)||kh(o,402653316,!0)?g=we:(ka(a)||ka(o))&&(g=a===Se||o===Se?Se:be),g&&!C(l))return g;if(!g){var m=402655727;return N((function(e,t){return kh(e,m)&&kh(t,m)})),be}return 63===l&&E(g),g;case 29:case 31:case 32:case 33:return C(l)&&(a=up(gy(a,t)),o=up(gy(o,i)),k((function(e,t){return od(e,t)||od(t,e)||id(e,Qe)&&id(t,Qe)}))),je;case 34:case 35:case 36:case 37:return k((function(e,t){return Mh(e,t)||Mh(t,e)})),je;case 101:return function(t,r,n,i){return n===Ve||i===Ve?Ve:(!ka(n)&&Nh(n,131068)&&cn(t,e.Diagnostics.The_left_hand_side_of_an_instanceof_expression_must_be_of_type_any_an_object_type_or_a_type_parameter),ka(i)||VD(i)||nd(i,mt)||cn(r,e.Diagnostics.The_right_hand_side_of_an_instanceof_expression_must_be_of_type_any_or_of_a_type_assignable_to_the_Function_interface_type),je)}(t,i,a,o);case 100:return function(t,r,n,i){if(n===Ve||i===Ve)return Ve;n=gy(n,t),i=gy(i,r),Nh(n,402665900)||kh(n,407109632)||cn(t,e.Diagnostics.The_left_hand_side_of_an_in_expression_must_be_of_type_any_string_number_or_symbol);var a=Us(i);return(!Nh(i,126091264)||a&&(kh(i,3145728)&&!Nh(a,126091264)||!Eh(a,126615552)))&&cn(r,e.Diagnostics.The_right_hand_side_of_an_in_expression_must_not_be_a_primitive),je}(t,i,a,o);case 55:case 75:var y=4194304&Jf(a)?rl([(u=K?a:up(o),cg(u,Sp)),o]):a;return 75===l&&E(o),y;case 56:case 74:var v=8388608&Jf(a)?rl([Dp(a),o],2):a;return 74===l&&E(o),v;case 60:case 76:var h=262144&Jf(a)?rl([Ep(a),o],2):a;return 76===l&&E(o),h;case 62:var b=e.isBinaryExpression(t.parent)?e.getAssignmentDeclarationKind(t.parent):0;return function(t,r){if(2===t)for(var n=0,i=Bs(r);n1&&t.charCodeAt(r-1)>=48&&t.charCodeAt(r-1)<=57;)r--;for(var n=t.slice(0,r),i=1;;i++){var a=n+i;if(!Zh(e,a))return a}}function eb(e){var t=Gy(e);if(t&&!t.typeParameters)return Mc(t)}function tb(t){var r=rb(t);if(r)return r;if(67108864&t.flags&&er){var n=er[P(t)];if(n)return n}var i=Cr,a=ib(t);Cr!==i&&((er||(er=[]))[P(t)]=a,e.setNodeFlags(t,67108864|t.flags));return a}function rb(t){var r=e.skipParentheses(t);if(!e.isCallExpression(r)||105===r.expression.kind||e.isRequireCall(r,!0)||Ov(r)){if(e.isAssertionExpression(r)&&!e.isConstTypeReference(r.type))return v_(r.type);if(8===t.kind||10===t.kind||109===t.kind||94===t.kind)return ib(t)}else{var n=e.isCallChain(r)?function(e){var t=ib(e.expression),r=Pp(t,e.expression),n=eb(t);return n&&Fp(n,e,r!==t)}(r):eb(uy(r.expression));if(n)return n}}function nb(e){var t=Tn(e);if(t.contextFreeType)return t.contextFreeType;var r=e.contextualType;e.contextualType=be;try{return t.contextFreeType=ib(e,4)}finally{e.contextualType=r}}function ib(t,i,a){null===e.tracing||void 0===e.tracing||e.tracing.push("check","checkExpression",{kind:t.kind,pos:t.pos,end:t.end});var o=c;c=t,h=0;var s=Xh(t,function(t,i,a){var o=t.kind;if(n)switch(o){case 221:case 208:case 209:n.throwIfCancellationRequested()}switch(o){case 78:return Jg(t);case 107:return qg(t);case 105:return Gg(t);case 103:return Pe;case 14:case 10:return l_(p_(t.text));case 8:return rT(t),l_(p_(+t.text));case 9:return function(t){if(!(e.isLiteralTypeNode(t.parent)||e.isPrefixUnaryExpression(t.parent)&&e.isLiteralTypeNode(t.parent.parent))&&z<7&&$S(t,e.Diagnostics.BigInt_literals_are_not_available_when_targeting_lower_than_ES2020))return!0}(t),l_(function(t){return p_({negative:!1,base10Value:e.parsePseudoBigInt(t.text)})}(t));case 109:return Re;case 94:return Me;case 218:return function(t){for(var r=[t.head.text],n=[],i=0,a=t.templateSpans;i=2||!e.hasRestParameter(t)||8388608&t.flags||e.nodeIsMissing(t.body))return;e.forEach(t.parameters,(function(t){t.name&&!e.isBindingPattern(t.name)&&t.name.escapedText===ie.escapedName&&sn("noEmit",t,e.Diagnostics.Duplicate_identifier_arguments_Compiler_uses_arguments_to_initialize_rest_parameters)}))}(t);var i=e.getEffectiveReturnTypeNode(t);if(G&&!i)switch(t.kind){case 170:cn(t,e.Diagnostics.Construct_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type);break;case 169:cn(t,e.Diagnostics.Call_signature_which_lacks_return_type_annotation_implicitly_has_an_any_return_type)}if(i){var a=e.getFunctionFlags(t);if(1==(5&a)){var o=v_(i);if(o===ze)cn(i,e.Diagnostics.A_generator_cannot_have_a_void_type_annotation);else{var s=Ux(0,o,0!=(2&a))||be;cd(_h(s,Ux(1,o,0!=(2&a))||s,Ux(2,o,0!=(2&a))||Ee,!!(2&a)),o,i)}}else 2==(3&a)&&function(t,r){var n=v_(r);if(z>=2){if(n===Se)return;var i=Nu(!0);if(i!==it&&!po(n,i))return void cn(r,e.Diagnostics.The_return_type_of_an_async_function_or_method_must_be_the_global_Promise_T_type_Did_you_mean_to_write_Promise_0,sa(Nb(n)||ze))}else{if(function(t){Pb(t&&e.getEntityNameFromTypeNode(t))}(r),n===Se)return;var a=e.getEntityNameFromTypeNode(r);if(void 0===a)return void cn(r,e.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value,sa(n));var o=ui(a,111551,!0),s=o?_o(o):Se;if(s===Se)return void(78===a.kind&&"Promise"===a.escapedText&&fo(n)===Nu(!1)?cn(r,e.Diagnostics.An_async_function_or_method_in_ES5_SlashES3_requires_the_Promise_constructor_Make_sure_you_have_a_declaration_for_the_Promise_constructor_or_include_ES2015_in_your_lib_option):cn(r,e.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value,e.entityNameToString(a)));var c=(_=!0,Lt||(Lt=Cu("PromiseConstructorLike",0,_))||et);if(c===et)return void cn(r,e.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value,e.entityNameToString(a));if(!cd(s,c,r,e.Diagnostics.Type_0_is_not_a_valid_async_function_return_type_in_ES5_SlashES3_because_it_does_not_refer_to_a_Promise_compatible_constructor_value))return;var u=a&&e.getFirstIdentifier(a),l=En(t.locals,u.escapedText,111551);if(l)return void cn(l.valueDeclaration,e.Diagnostics.Duplicate_identifier_0_Compiler_uses_declaration_1_to_support_async_functions,e.idText(u),e.entityNameToString(a))}var _;kb(n,t,e.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member)}(t,i)}171!==t.kind&&308!==t.kind&&jb(t)}}function ub(t){for(var r=new e.Map,n=0,i=t.members;n0&&r.declarations[0]!==t)return}var n=Wc(Ci(t));if(n)for(var i=!1,a=!1,o=0,s=n.declarations;o=0)return void(r&&cn(r,e.Diagnostics.Type_is_referenced_directly_or_indirectly_in_the_fulfillment_callback_of_its_own_then_method));Hr.push(t.id);var s=Nb(o,r,n,i);if(Hr.pop(),!s)return;return a.awaitedTypeOfType=s}if(!function(e){var t=Ea(e,"then");return!!t&&pc(zf(t,2097152),0).length>0}(t))return a.awaitedTypeOfType=t;if(r){if(!n)return e.Debug.fail();cn(r,n,i)}}function Fb(t){var r=Nv(t);wv(r,t);var n=Mc(r);if(!(1&n.flags)){var i,a,o=Sv(t);switch(t.parent.kind){case 252:i=rl([_o(Ci(t.parent)),ze]);break;case 160:i=ze,a=e.chainDiagnosticMessages(void 0,e.Diagnostics.The_return_type_of_a_parameter_decorator_function_must_be_either_void_or_any);break;case 163:i=ze,a=e.chainDiagnosticMessages(void 0,e.Diagnostics.The_return_type_of_a_property_decorator_function_must_be_either_void_or_any);break;case 165:case 167:case 168:i=rl([Iu(RD(t.parent)),ze]);break;default:return e.Debug.fail()}cd(n,i,t,o,(function(){return a}))}}function Pb(t){if(t){var r=e.getFirstIdentifier(t),n=2097152|(78===t.kind?788968:1920),i=An(r,r.escapedText,n,void 0,void 0,!0);i&&2097152&i.flags&&wi(i)&&!eS(ti(i))&&!ii(i)&&oi(i)}}function wb(t){var r=Ib(t);r&&e.isEntityName(r)&&Pb(r)}function Ib(e){if(e)switch(e.kind){case 183:case 182:return Ob(e.types);case 184:return Ob([e.trueType,e.falseType]);case 186:case 192:return Ib(e.type);case 173:return e.typeName}}function Ob(t){for(var r,n=0,i=t;n=e.ModuleKind.ES2015)&&(ex(t,r,"require")||ex(t,r,"exports"))&&(!e.isModuleDeclaration(t)||1===e.getModuleInstanceState(t))){var n=Ca(t);297===n.kind&&e.isExternalOrCommonJsModule(n)&&sn("noEmit",r,e.Diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module,e.declarationNameToString(r),e.declarationNameToString(r))}}function ax(t,r){if(!(z>=4)&&ex(t,r,"Promise")&&(!e.isModuleDeclaration(t)||1===e.getModuleInstanceState(t))){var n=Ca(t);297===n.kind&&e.isExternalOrCommonJsModule(n)&&2048&n.flags&&sn("noEmit",r,e.Diagnostics.Duplicate_identifier_0_Compiler_reserves_name_1_in_top_level_scope_of_a_module_containing_async_functions,e.declarationNameToString(r),e.declarationNameToString(r))}}function ox(e){return e===xe?be:e===kt?Et:e}function sx(t){var r;if(Lb(t),e.isBindingElement(t)||xD(t.type),t.name){if(158===t.name.kind&&(wm(t.name),t.initializer&&Jh(t.initializer)),198===t.kind){196===t.parent.kind&&z<99&&TS(t,4),t.propertyName&&158===t.propertyName.kind&&wm(t.propertyName);var n=t.parent.parent,i=Na(n),a=t.propertyName||t.name;if(i&&!e.isBindingPattern(a)){var o=gl(a);if(Xo(o)){var s=_c(i,es(o));s&&(Iy(s,void 0,!1),sy(n,!!n.initializer&&105===n.initializer.kind,i,s))}}}if(e.isBindingPattern(t.name)&&(197===t.name.kind&&z<2&&J.downlevelIteration&&TS(t,512),e.forEach(t.name.elements,xD)),t.initializer&&e.isParameterDeclaration(t)&&e.nodeIsMissing(e.getContainingFunction(t).body))cn(t,e.Diagnostics.A_parameter_initializer_is_only_allowed_in_a_function_or_constructor_implementation);else if(e.isBindingPattern(t.name)){var c=t.initializer&&238!==t.parent.parent.kind,u=0===t.name.elements.length;if(c||u){var l=Ya(t);if(c){var _=Jh(t.initializer);K&&u?my(_,t):ud(_,Ya(t),t,t.initializer)}u&&(e.isArrayBindingPattern(t.name)?hx(65,l,ke,t):K&&my(l,t))}}else{var d=Ci(t);if(2097152&d.flags&&e.isRequireVariableDeclaration(t,!0))dD(t);else{var p=ox(_o(d));if(t===d.valueDeclaration){var f=e.getEffectiveInitializer(t);if(f)e.isInJSFile(t)&&e.isObjectLiteralExpression(f)&&(0===f.properties.length||e.isPrototypeAccess(t.name))&&!!(null===(r=d.exports)||void 0===r?void 0:r.size)||238===t.parent.parent.kind||ud(Jh(f),p,t,f,void 0);d.declarations.length>1&&e.some(d.declarations,(function(r){return r!==t&&e.isVariableLike(r)&&!ux(r,t)}))&&cn(t.name,e.Diagnostics.All_declarations_of_0_must_have_identical_modifiers,e.declarationNameToString(t.name))}else{var g=ox(Ya(t));p===Se||g===Se||$_(p,g)||67108864&d.flags||cx(d.valueDeclaration,p,t,g),t.initializer&&ud(Jh(t.initializer),g,t,t.initializer,void 0),ux(t,d.valueDeclaration)||cn(t.name,e.Diagnostics.All_declarations_of_0_must_have_identical_modifiers,e.declarationNameToString(t.name))}163!==t.kind&&162!==t.kind&&(Tb(t),249!==t.kind&&198!==t.kind||function(t){if(0==(3&e.getCombinedNodeFlags(t))&&!e.isParameterDeclaration(t)&&(249!==t.kind||t.initializer)){var r=Ci(t);if(1&r.flags){if(!e.isIdentifier(t.name))return e.Debug.fail();var n=An(t,t.name.escapedText,3,void 0,void 0,!1);if(n&&n!==r&&2&n.flags&&3&ay(n)){var i=e.getAncestor(n.valueDeclaration,250),a=232===i.parent.kind&&i.parent.parent?i.parent.parent:void 0;if(!a||!(230===a.kind&&e.isFunctionLike(a.parent)||257===a.kind||256===a.kind||297===a.kind)){var o=aa(n);cn(t,e.Diagnostics.Cannot_initialize_outer_scoped_variable_0_in_the_same_scope_as_block_scoped_declaration_1,o,o)}}}}}(t),ix(t,t.name),ax(t,t.name),z<99&&ex(t,t.name,"WeakMap")&&Wr.push(t))}}}}function cx(t,r,n,i){var a=e.getNameOfDeclaration(n),o=163===n.kind||162===n.kind?e.Diagnostics.Subsequent_property_declarations_must_have_the_same_type_Property_0_must_be_of_type_1_but_here_has_type_2:e.Diagnostics.Subsequent_variable_declarations_must_have_the_same_type_Variable_0_must_be_of_type_1_but_here_has_type_2,s=e.declarationNameToString(a),c=cn(a,o,s,sa(r),sa(i));t&&e.addRelatedInfo(c,e.createDiagnosticForNode(t,e.Diagnostics._0_was_also_declared_here,s))}function ux(t,r){if(160===t.kind&&249===r.kind||249===t.kind&&160===r.kind)return!0;if(e.hasQuestionToken(t)!==e.hasQuestionToken(r))return!1;return e.getSelectedEffectiveModifierFlags(t,504)===e.getSelectedEffectiveModifierFlags(r,504)}function lx(t){null===e.tracing||void 0===e.tracing||e.tracing.push("check","checkVariableDeclaration",{kind:t.kind,pos:t.pos,end:t.end}),function(t){if(238!==t.parent.parent.kind&&239!==t.parent.parent.kind)if(8388608&t.flags)qS(t);else if(!t.initializer){if(e.isBindingPattern(t.name)&&!e.isBindingPattern(t.parent))return $S(t,e.Diagnostics.A_destructuring_declaration_must_have_an_initializer);if(e.isVarConst(t))return $S(t,e.Diagnostics.const_declarations_must_be_initialized)}if(t.exclamationToken&&(232!==t.parent.parent.kind||!t.type||t.initializer||8388608&t.flags)){var r=t.initializer?e.Diagnostics.Declarations_with_initializers_cannot_also_have_definite_assignment_assertions:t.type?e.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context:e.Diagnostics.Declarations_with_definite_assignment_assertions_must_also_have_type_annotations;return $S(t.exclamationToken,r)}var n=e.getEmitModuleKind(J);n=1&&lx(t.declarations[0])}function vx(e){return hx(e.awaitModifier?15:13,uy(e.expression),ke,e.expression)}function hx(e,t,r,n){return ka(t)?t:bx(e,t,r,n,!0)||be}function bx(t,r,n,i,a){var o=0!=(2&t);if(r!==Ue){var s=z>=2,c=!s&&J.downlevelIteration,u=J.noUncheckedIndexedAccess&&!!(128&t);if(s||c||o){var l=Ex(r,t,s?i:void 0);if(a&&l){var _=8&t?e.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_for_of_will_always_send_0:32&t?e.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_spread_will_always_send_0:64&t?e.Diagnostics.Cannot_iterate_value_because_the_next_method_of_its_iterator_expects_type_1_but_array_destructuring_will_always_send_0:16&t?e.Diagnostics.Cannot_delegate_iteration_to_value_because_the_next_method_of_its_iterator_expects_type_1_but_the_containing_generator_will_always_send_0:void 0;_&&cd(n,l.nextType,i,_)}if(l||s)return u?qf(l&&l.yieldType):l&&l.yieldType}var d=r,p=!1,f=!1;if(4&t){if(1048576&d.flags){var g=r.types,m=e.filter(g,(function(e){return!(402653316&e.flags)}));m!==g&&(d=rl(m,2))}else 402653316&d.flags&&(d=Ue);if((f=d!==r)&&(z<1&&i&&(cn(i,e.Diagnostics.Using_a_string_in_a_for_of_statement_is_only_supported_in_ECMAScript_5_and_higher),p=!0),131072&d.flags))return u?qf(we):we}if(!rp(d)){if(i&&!p){var y=xx(t,0,r,void 0),v=4&t&&!f?c?[e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator,!0]:y?[e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_Use_compiler_option_downlevelIteration_to_allow_iterating_of_iterators,!1]:[e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type,!0]:c?[e.Diagnostics.Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator,!0]:y?[e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_Use_compiler_option_downlevelIteration_to_allow_iterating_of_iterators,!1]:[e.Diagnostics.Type_0_is_not_an_array_type,!0],h=v[0];_n(i,v[1]&&!!Cb(d),h,sa(d))}return f?u?qf(we):we:void 0}var b=yc(d,1);return f&&b?402653316&b.flags&&!J.noUncheckedIndexedAccess?we:rl(u?[b,we,ke]:[b,we],2):128&t?qf(b):b}Ix(i,r,o)}function xx(e,t,r,n){if(!ka(r)){var i=Ex(r,e,n);return i&&i[R(t)]}}function Dx(e,t,r){if(void 0===e&&(e=Ue),void 0===t&&(t=Ue),void 0===r&&(r=Ee),67359327&e.flags&&180227&t.flags&&180227&r.flags){var n=$c([e,t,r]),i=_r.get(n);return i||(i={yieldType:e,returnType:t,nextType:r},_r.set(n,i)),i}return{yieldType:e,returnType:t,nextType:r}}function Sx(t){for(var r,n,i,a=0,o=t;an)return!1;for(var l=0;l1)return YS(o.types[1],e.Diagnostics.Classes_can_only_extend_a_single_class);r=!0}else{if(e.Debug.assert(116===o.token),n)return YS(o,e.Diagnostics.implements_clause_already_seen);n=!0}OS(o)}})(t)||AS(t.typeParameters,r)}(t),Lb(t),t.name&&(Xx(t.name,e.Diagnostics.Class_name_cannot_be_0),ix(t,t.name),ax(t,t.name),8388608&t.flags||(n=t.name,1===z&&"Object"===n.escapedText&&U>a;case 49:return i>>>a;case 47:return i<1&&I(t,e.shouldPreserveConstEnums(J))){var s=function(t){for(var r=0,n=t.declarations;r1)for(var o=0,s=n;o=232&&i<=248&&t.flowNode&&!Eg(t.flowNode)&&ln(!1===J.allowUnreachableCode,t,e.Diagnostics.Unreachable_code_detected);switch(i){case 159:return ab(t);case 160:return ob(t);case 163:return _b(t);case 162:return function(t){return e.isPrivateIdentifier(t.name)&&cn(t,e.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies),_b(t)}(t);case 175:case 174:case 169:case 170:case 171:return cb(t);case 165:case 164:return function(t){VS(t)||LS(t.name),e.isPrivateIdentifier(t.name)&&cn(t,e.Diagnostics.A_method_cannot_be_named_with_a_private_identifier),Bb(t),e.hasSyntacticModifier(t,128)&&165===t.kind&&t.body&&cn(t,e.Diagnostics.Method_0_cannot_have_an_implementation_because_it_is_marked_abstract,e.declarationNameToString(t.name))}(t);case 166:return db(t);case 167:case 168:return pb(t);case 173:return vb(t);case 172:return function(t){var r=function(e){switch(e.parent.kind){case 209:case 169:case 251:case 208:case 174:case 165:case 164:var t=e.parent;if(e===t.type)return t}}(t);if(r){var n=Nc(r),i=Oc(n);if(i){xD(t.type);var a=t.parameterName;if(0===i.kind||2===i.kind)g_(a);else if(i.parameterIndex>=0)B(n)&&i.parameterIndex===n.parameters.length-1?cn(a,e.Diagnostics.A_type_predicate_cannot_reference_a_rest_parameter):i.type&&cd(i.type,_o(n.parameters[i.parameterIndex]),t.type,void 0,(function(){return e.chainDiagnosticMessages(void 0,e.Diagnostics.A_type_predicate_s_type_must_be_assignable_to_its_parameter_s_type)}));else if(a){for(var o=!1,s=0,c=r.parameters;s0),n.length>1&&cn(n[1],e.Diagnostics.Class_declarations_cannot_have_more_than_one_augments_or_extends_tag);var i=Rb(t.class.expression),a=e.getClassExtendsHeritageElement(r);if(a){var o=Rb(a.expression);o&&i.escapedText!==o.escapedText&&cn(i,e.Diagnostics.JSDoc_0_1_does_not_match_the_extends_2_clause,e.idText(t.tagName),e.idText(i),e.idText(o))}}else cn(r,e.Diagnostics.JSDoc_0_is_not_attached_to_a_class,e.idText(t.tagName))}(t);case 316:return function(t){var r=e.getEffectiveJSDocHost(t);r&&(e.isClassDeclaration(r)||e.isClassExpression(r))||cn(r,e.Diagnostics.JSDoc_0_is_not_attached_to_a_class,e.idText(t.tagName))}(t);case 331:case 324:case 325:return function(t){t.typeExpression||cn(t.name,e.Diagnostics.JSDoc_typedef_tag_should_either_have_a_type_annotation_or_be_followed_by_property_or_member_tags),t.name&&Xx(t.name,e.Diagnostics.Type_alias_name_cannot_be_0),xD(t.typeExpression)}(t);case 330:return function(e){xD(e.constraint);for(var t=0,r=e.typeParameters;t-1&&n1){var i=e.isEnumConst(t);e.forEach(n.declarations,(function(t){e.isEnumDeclaration(t)&&e.isEnumConst(t)!==i&&cn(e.getNameOfDeclaration(t),e.Diagnostics.Enum_declarations_must_all_be_const_or_non_const)}))}var a=!1;e.forEach(n.declarations,(function(t){if(255!==t.kind)return!1;var r=t;if(!r.members.length)return!1;var n=r.members[0];n.initializer||(a?cn(n.name,e.Diagnostics.In_an_enum_with_multiple_declarations_only_one_declaration_can_omit_an_initializer_for_its_first_enum_element):a=!0)}))}}}(t);case 256:return uD(t);case 261:return fD(t);case 260:return function(t){if(!mD(t,e.Diagnostics.An_import_declaration_can_only_be_used_in_a_namespace_or_module)&&(ES(t),e.isInternalModuleImportEqualsDeclaration(t)||_D(t)))if(pD(t),e.hasSyntacticModifier(t,1)&&ai(t),272!==t.moduleReference.kind){var r=ti(Ci(t));if(r!==ve){if(111551&r.flags){var n=e.getFirstIdentifier(t.moduleReference);1920&ui(n,112575).flags||cn(n,e.Diagnostics.Module_0_is_hidden_by_a_local_declaration_with_the_same_name,e.declarationNameToString(n))}788968&r.flags&&Xx(t.name,e.Diagnostics.Import_name_cannot_be_0)}t.isTypeOnly&&$S(t,e.Diagnostics.An_import_alias_cannot_use_import_type)}else!(U>=e.ModuleKind.ES2015)||t.isTypeOnly||8388608&t.flags||$S(t,e.Diagnostics.Import_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_import_Asterisk_as_ns_from_mod_import_a_from_mod_import_d_from_mod_or_another_module_format_instead)}(t);case 267:return gD(t);case 266:return function(t){if(!mD(t,e.Diagnostics.An_export_assignment_can_only_be_used_in_a_module)){var r=297===t.parent.kind?t.parent:t.parent.parent;if(256!==r.kind||e.isAmbientModule(r)){if(!ES(t)&&e.hasEffectiveModifiers(t)&&YS(t,e.Diagnostics.An_export_assignment_cannot_have_modifiers),78===t.expression.kind){var n=t.expression,i=ui(n,67108863,!0,!0,t);if(i){jg(i,n);var a=2097152&i.flags?ti(i):i;(a===ve||111551&a.flags)&&Jh(t.expression)}else Jh(t.expression);e.getEmitDeclarations(J)&&ba(t.expression,!0)}else Jh(t.expression);bD(r),8388608&t.flags&&!e.isEntityNameExpression(t.expression)&&$S(t.expression,e.Diagnostics.The_expression_of_an_export_assignment_must_be_an_identifier_or_qualified_name_in_an_ambient_context),!t.isExportEquals||8388608&t.flags||(U>=e.ModuleKind.ES2015?$S(t,e.Diagnostics.Export_assignment_cannot_be_used_when_targeting_ECMAScript_modules_Consider_using_export_default_or_another_module_format_instead):U===e.ModuleKind.System&&$S(t,e.Diagnostics.Export_assignment_is_not_supported_when_module_flag_is_system))}else t.isExportEquals?cn(t,e.Diagnostics.An_export_assignment_cannot_be_used_in_a_namespace):cn(t,e.Diagnostics.A_default_export_can_only_be_used_in_an_ECMAScript_style_module)}}(t);case 231:case 248:return void tT(t);case 271:(function(e){Lb(e)})(t)}}(t),c=i}}function DD(t){e.isInJSFile(t)||$S(t,e.Diagnostics.JSDoc_types_can_only_be_used_inside_documentation_comments)}function SD(t){var r=Tn(e.getSourceFileOfNode(t));if(!(1&r.flags)){r.deferredNodes=r.deferredNodes||new e.Map;var n=P(t);r.deferredNodes.set(n,t)}}function TD(t){null===e.tracing||void 0===e.tracing||e.tracing.push("check","checkDeferredNode",{kind:t.kind,pos:t.pos,end:t.end});var r=c;switch(c=t,h=0,t.kind){case 203:case 204:case 205:case 161:case 275:Jy(t);break;case 208:case 209:case 165:case 164:!function(t){e.Debug.assert(165!==t.kind||e.isObjectLiteralMethod(t));var r=e.getFunctionFlags(t),n=Lc(t);if(yh(t,n),t.body)if(e.getEffectiveReturnTypeNode(t)||Mc(Nc(t)),230===t.body.kind)xD(t.body);else{var i=ib(t.body),a=n&&qx(n,r);a&&ud(2==(3&r)?kb(i,t.body,e.Diagnostics.The_return_type_of_an_async_function_must_either_be_a_valid_promise_or_must_not_contain_a_callable_then_member):i,a,t.body,t.body)}}(t);break;case 167:case 168:pb(t);break;case 221:!function(t){e.forEach(t.members,xD),jb(t)}(t);break;case 274:!function(e){ty(e)}(t);break;case 273:!function(e){ty(e.openingElement),Bm(e.closingElement.tagName)?Km(e.closingElement):ib(e.closingElement.tagName),Jm(e)}(t)}c=r,null===e.tracing||void 0===e.tracing||e.tracing.pop()}function CD(r){null===e.tracing||void 0===e.tracing||e.tracing.push("check","checkSourceFile",{path:r.path},!0),e.performance.mark("beforeCheck"),function(r){var n=Tn(r);if(!(1&n.flags)){if(e.skipTypeChecking(r,J,t))return;!function(t){!!(8388608&t.flags)&&function(t){for(var r=0,n=t.statements;r0?e.concatenate(o,a):a}return e.forEach(t.getSourceFiles(),CD),Gr.getDiagnostics()}(r)}finally{n=void 0}}function AD(){if(!r)throw new Error("Trying to get diagnostics from a type checker that does not produce them.")}function FD(e){switch(e.kind){case 159:case 252:case 253:case 254:case 255:case 331:case 324:case 325:return!0;case 262:return e.isTypeOnly;case 265:case 270:return e.parent.parent.isTypeOnly;default:return!1}}function PD(e){for(;157===e.parent.kind;)e=e.parent;return 173===e.parent.kind}function wD(t,r){for(var n;(t=e.getContainingClass(t))&&!(n=r(t)););return n}function ID(e,t){return!!wD(e,(function(e){return e===t}))}function OD(e){return void 0!==function(e){for(;157===e.parent.kind;)e=e.parent;return 260===e.parent.kind?e.parent.moduleReference===e?e.parent:void 0:266===e.parent.kind&&e.parent.expression===e?e.parent:void 0}(e)}function MD(t){if(e.isDeclarationName(t))return Ci(t.parent);if(e.isInJSFile(t)&&201===t.parent.kind&&t.parent===t.parent.parent.left&&!e.isPrivateIdentifier(t)){var r=function(t){switch(e.getAssignmentDeclarationKind(t.parent.parent)){case 1:case 3:return Ci(t.parent);case 4:case 2:case 5:return Ci(t.parent.parent)}}(t);if(r)return r}if(266===t.parent.kind&&e.isEntityNameExpression(t)){var n=ui(t,2998271,!0);if(n&&n!==ve)return n}else if(!e.isPropertyAccessExpression(t)&&!e.isPrivateIdentifier(t)&&OD(t)){var i=e.getAncestor(t,260);return e.Debug.assert(void 0!==i),si(t,!0)}if(!e.isPropertyAccessExpression(t)&&!e.isPrivateIdentifier(t)){var a=function(t){for(var r=t.parent;e.isQualifiedName(r);)t=r,r=r.parent;if(r&&195===r.kind&&r.qualifier===t)return r}(t);if(a){v_(a);var o=Tn(t).resolvedSymbol;return o===ve?void 0:o}}for(;e.isRightSideOfQualifiedNameOrPropertyAccess(t);)t=t.parent;if(function(e){for(;201===e.parent.kind;)e=e.parent;return 223===e.parent.kind}(t)){var s=0;223===t.parent.kind?(s=788968,e.isExpressionWithTypeArgumentsInClassExtendsClause(t.parent)&&(s|=111551)):s=1920,s|=2097152;var c=e.isEntityNameExpression(t)?ui(t,s):void 0;if(c)return c}if(326===t.parent.kind)return e.getParameterSymbolFromJSDoc(t.parent);if(159===t.parent.kind&&330===t.parent.parent.kind){e.Debug.assert(!e.isInJSFile(t));var u=e.getTypeParameterFromJsDoc(t.parent);return u&&u.symbol}if(e.isExpressionNode(t)){if(e.nodeIsMissing(t))return;if(78===t.kind){if(e.isJSXTagName(t)&&Bm(t)){var l=Km(t.parent);return l===ve?void 0:l}return ui(t,111551,!1,!0)}if(201===t.kind||157===t.kind){var _=Tn(t);return _.resolvedSymbol||(201===t.kind?yy(t):vy(t)),_.resolvedSymbol}}else{if(PD(t))return ui(t,s=173===t.parent.kind?788968:1920,!1,!0);if(function(e){for(;157===e.parent.kind;)e=e.parent;for(;201===e.parent.kind;)e=e.parent;return 302===e.parent.kind}(t))return ui(t,s=901119,!1,!0,e.getHostSignatureFromJSDoc(t))}return 172===t.parent.kind?ui(t,1):void 0}function LD(t,r){if(297===t.kind)return e.isExternalModule(t)?Ti(t.symbol):void 0;var n=t.parent,i=n.parent;if(!(16777216&t.flags)){if(M(t)){var a=Ci(n);return e.isImportOrExportSpecifier(t.parent)&&t.parent.propertyName===t?Om(a):a}if(e.isLiteralComputedPropertyDeclarationName(t))return Ci(n.parent);if(78===t.kind){if(OD(t))return MD(t);if(198===n.kind&&196===i.kind&&t===n.propertyName){var o=_c(RD(i),t.escapedText);if(o)return o}}switch(t.kind){case 78:case 79:case 201:case 157:return MD(t);case 107:var s=e.getThisContainer(t,!1);if(e.isFunctionLike(s)){var c=Nc(s);if(c.thisParameter)return c.thisParameter}if(e.isInExpressionContext(t))return ib(t).symbol;case 187:return g_(t).symbol;case 105:return ib(t).symbol;case 132:var u=t.parent;return u&&166===u.kind?u.parent.symbol:void 0;case 10:case 14:if(e.isExternalModuleImportEqualsDeclaration(t.parent.parent)&&e.getExternalModuleImportEqualsDeclarationExpression(t.parent.parent)===t||(261===t.parent.kind||267===t.parent.kind)&&t.parent.moduleSpecifier===t||e.isInJSFile(t)&&e.isRequireCall(t.parent,!1)||e.isImportCall(t.parent)||e.isLiteralTypeNode(t.parent)&&e.isLiteralImportTypeNode(t.parent.parent)&&t.parent.parent.argument===t.parent)return _i(t,t,r);if(e.isCallExpression(n)&&e.isBindableObjectDefinePropertyCall(n)&&n.arguments[1]===t)return Ci(n);case 8:var l=e.isElementAccessExpression(n)?n.argumentExpression===t?tb(n.expression):void 0:e.isLiteralTypeNode(n)&&e.isIndexedAccessTypeNode(i)?v_(i.objectType):void 0;return l&&_c(l,e.escapeLeadingUnderscores(t.text));case 87:case 97:case 38:case 83:return Ci(t.parent);case 195:return e.isLiteralImportTypeNode(t)?LD(t.argument.literal,r):void 0;case 92:return e.isExportAssignment(t.parent)?e.Debug.checkDefined(t.parent.symbol):void 0;default:return}}}function RD(t){if(e.isSourceFile(t)&&!e.isExternalModule(t))return Se;if(16777216&t.flags)return Se;var r,n,i=e.tryGetClassImplementingOrExtendingExpressionWithTypeArguments(t),a=i&&Fo(Ci(i.class));if(e.isPartOfTypeNode(t)){var o=v_(t);return a?as(o,a.thisType):o}if(e.isExpressionNode(t))return jD(t);if(a&&!i.isImplements){var s=e.firstOrUndefined(ko(a));return s?as(s,a.thisType):Se}if(FD(t))return jo(n=Ci(t));if(78===(r=t).kind&&FD(r.parent)&&e.getNameOfDeclaration(r.parent)===r)return(n=LD(t))?jo(n):Se;if(e.isDeclaration(t))return _o(n=Ci(t));if(M(t))return(n=LD(t))?_o(n):Se;if(e.isBindingPattern(t))return Ra(t.parent,!0)||Se;if(OD(t)&&(n=LD(t))){var c=jo(n);return c!==Se?c:_o(n)}return Se}function BD(t){if(e.Debug.assert(200===t.kind||199===t.kind),239===t.parent.kind)return Ih(t,vx(t.parent)||Se);if(216===t.parent.kind)return Ih(t,tb(t.parent.right)||Se);if(288===t.parent.kind){var r=e.cast(t.parent.parent,e.isObjectLiteralExpression);return Ph(r,BD(r)||Se,e.indexOfNode(r.properties,t.parent))}var n=e.cast(t.parent,e.isArrayLiteralExpression),i=BD(n)||Se,a=hx(65,i,ke,t.parent)||Se;return wh(n,i,n.elements.indexOf(t),a)}function jD(t){return e.isRightSideOfQualifiedNameOrPropertyAccess(t)&&(t=t.parent),__(tb(t))}function JD(t){var r=Ci(t.parent);return e.hasSyntacticModifier(t,32)?_o(r):jo(r)}function zD(t){var r=t.name;switch(r.kind){case 78:return p_(e.idText(r));case 8:case 10:return p_(r.text);case 158:var n=wm(r);return kh(n,12288)?n:we;default:return e.Debug.fail("Unsupported property name.")}}function UD(t){t=tc(t);var r=e.createSymbolTable(zs(t)),n=pc(t,0).length?yt:pc(t,1).length?vt:void 0;return n&&e.forEach(zs(n),(function(e){r.has(e.escapedName)||r.set(e.escapedName,e)})),zi(r)}function VD(t){return e.typeHasCallOrConstructSignatures(t,oe)}function KD(t){if(e.isGeneratedIdentifier(t))return!1;var r=e.getParseTreeNode(t,e.isIdentifier);if(!r)return!1;var n=r.parent;return!!n&&(!((e.isPropertyAccessExpression(n)||e.isPropertyAssignment(n))&&n.name===r)&&yS(r)===ie)}function qD(t){var r=_i(t.parent,t);if(!r||e.isShorthandAmbientModuleSymbol(r))return!0;var n=yi(r),i=Sn(r=gi(r));return void 0===i.exportsSomeValue&&(i.exportsSomeValue=n?!!(111551&r.flags):e.forEachEntry(xi(r),(function(e){return(e=ei(e))&&!!(111551&e.flags)}))),i.exportsSomeValue}function WD(t,r){var n=e.getParseTreeNode(t,e.isIdentifier);if(n){var i=yS(n,function(t){return e.isModuleOrEnumDeclaration(t.parent)&&t===t.parent.name}(n));if(i){if(1048576&i.flags){var a=Ti(i.exportSymbol);if(!r&&944&a.flags&&!(3&a.flags))return;i=a}var o=Ei(i);if(o){if(512&o.flags&&297===o.valueDeclaration.kind){var s=o.valueDeclaration;return s!==e.getSourceFileOfNode(n)?void 0:s}return e.findAncestor(n.parent,(function(t){return e.isModuleOrEnumDeclaration(t)&&Ci(t)===o}))}}}}function HD(t){if(t.generatedImportReference)return t.generatedImportReference;var r=e.getParseTreeNode(t,e.isIdentifier);if(r){var n=yS(r);if($n(n,111551)&&!ii(n))return Jn(n)}}function GD(t){if(418&t.flags&&!e.isSourceFile(t.valueDeclaration)){var r=Sn(t);if(void 0===r.isDeclarationWithCollidingName){var n=e.getEnclosingBlockScopeContainer(t.valueDeclaration);if(e.isStatementWithLocals(n)||function(t){return e.isBindingElement(t.valueDeclaration)&&287===e.walkUpBindingElementsAndPatterns(t.valueDeclaration).parent.kind}(t)){var i=Tn(t.valueDeclaration);if(An(n.parent,t.escapedName,111551,void 0,void 0,!1))r.isDeclarationWithCollidingName=!0;else if(262144&i.flags){var a=524288&i.flags,o=e.isIterationStatement(n,!1),s=230===n.kind&&e.isIterationStatement(n.parent,!1);r.isDeclarationWithCollidingName=!(e.isBlockScopedContainerTopLevel(n)||a&&(o||s))}else r.isDeclarationWithCollidingName=!1}}return r.isDeclarationWithCollidingName}return!1}function XD(t){if(!e.isGeneratedIdentifier(t)){var r=e.getParseTreeNode(t,e.isIdentifier);if(r){var n=yS(r);if(n&&GD(n))return n.valueDeclaration}}}function QD(t){var r=e.getParseTreeNode(t,e.isDeclaration);if(r){var n=Ci(r);if(n)return GD(n)}return!1}function YD(t){switch(t.kind){case 260:return $D(Ci(t)||ve);case 262:case 263:case 265:case 270:var r=Ci(t)||ve;return $D(r)&&!ii(r);case 267:var n=t.exportClause;return!!n&&(e.isNamespaceExport(n)||e.some(n.elements,YD));case 266:return!t.expression||78!==t.expression.kind||$D(Ci(t)||ve)}return!1}function ZD(t){var r=e.getParseTreeNode(t,e.isImportEqualsDeclaration);return!(void 0===r||297!==r.parent.kind||!e.isInternalModuleImportEqualsDeclaration(r))&&($D(Ci(r))&&r.moduleReference&&!e.nodeIsMissing(r.moduleReference))}function $D(t){var r=ti(t);return r===ve||!!(111551&r.flags)&&(e.shouldPreserveConstEnums(J)||!eS(r))}function eS(e){return Fh(e)||!!e.constEnumOnlyModule}function tS(t,r){if(zn(t)){var n=Ci(t),i=n&&Sn(n);if(null==i?void 0:i.referenced)return!0;var a=Sn(n).target;if(a&&1&e.getEffectiveModifierFlags(t)&&111551&a.flags&&(e.shouldPreserveConstEnums(J)||!eS(a)))return!0}return!!r&&!!e.forEachChild(t,(function(e){return tS(e,r)}))}function rS(t){if(e.nodeIsPresent(t.body)){if(e.isGetAccessor(t)||e.isSetAccessor(t))return!1;var r=Pc(Ci(t));return r.length>1||1===r.length&&r[0].declaration!==t}return!1}function nS(t){return!(!K||Sc(t)||e.isJSDocParameterTag(t)||!t.initializer||e.hasSyntacticModifier(t,92))}function iS(t){return K&&Sc(t)&&!t.initializer&&e.hasSyntacticModifier(t,92)}function aS(t){var r=e.getParseTreeNode(t,e.isFunctionDeclaration);if(!r)return!1;var n=Ci(r);return!!(n&&16&n.flags)&&!!e.forEachEntry(bi(n),(function(t){return 111551&t.flags&&t.valueDeclaration&&e.isPropertyAccessExpression(t.valueDeclaration)}))}function oS(t){var r=e.getParseTreeNode(t,e.isFunctionDeclaration);if(!r)return e.emptyArray;var n=Ci(r);return n&&zs(_o(n))||e.emptyArray}function sS(e){return Tn(e).flags||0}function cS(e){return aD(e.parent),Tn(e).enumMemberValue}function uS(e){switch(e.kind){case 291:case 201:case 202:return!0}return!1}function lS(t){if(291===t.kind)return cS(t);var r=Tn(t).resolvedSymbol;if(r&&8&r.flags){var n=r.valueDeclaration;if(e.isEnumConst(n.parent))return cS(n)}}function _S(e){return!!(524288&e.flags)&&pc(e,0).length>0}function dS(t,r){var n,i=e.getParseTreeNode(t,e.isEntityName);if(!i)return e.TypeReferenceSerializationKind.Unknown;if(r&&!(r=e.getParseTreeNode(r)))return e.TypeReferenceSerializationKind.Unknown;var a=ui(i,111551,!0,!0,r),o=(null===(n=null==a?void 0:a.declarations)||void 0===n?void 0:n.every(e.isTypeOnlyImportOrExportDeclaration))||!1,s=a&&2097152&a.flags?ti(a):a,c=ui(i,788968,!0,!1,r);if(s&&s===c){var u=Au(!1);if(u&&s===u)return e.TypeReferenceSerializationKind.Promise;var l=_o(s);if(l&&xo(l))return o?e.TypeReferenceSerializationKind.TypeWithCallSignature:e.TypeReferenceSerializationKind.TypeWithConstructSignatureAndValue}if(!c)return o?e.TypeReferenceSerializationKind.ObjectType:e.TypeReferenceSerializationKind.Unknown;var _=jo(c);return _===Se?o?e.TypeReferenceSerializationKind.ObjectType:e.TypeReferenceSerializationKind.Unknown:3&_.flags?e.TypeReferenceSerializationKind.ObjectType:kh(_,245760)?e.TypeReferenceSerializationKind.VoidNullableOrNeverType:kh(_,528)?e.TypeReferenceSerializationKind.BooleanType:kh(_,296)?e.TypeReferenceSerializationKind.NumberLikeType:kh(_,2112)?e.TypeReferenceSerializationKind.BigIntLikeType:kh(_,402653316)?e.TypeReferenceSerializationKind.StringLikeType:fp(_)?e.TypeReferenceSerializationKind.ArrayLikeType:kh(_,12288)?e.TypeReferenceSerializationKind.ESSymbolType:_S(_)?e.TypeReferenceSerializationKind.TypeWithCallSignature:Zd(_)?e.TypeReferenceSerializationKind.ArrayLikeType:e.TypeReferenceSerializationKind.ObjectType}function pS(t,r,n,i,a){var o=e.getParseTreeNode(t,e.isVariableLikeOrAccessor);if(!o)return e.factory.createToken(128);var s=Ci(o),c=!s||133120&s.flags?Se:lp(_o(s));return 8192&c.flags&&c.symbol===s&&(n|=1048576),a&&(c=Cp(c)),$.typeToTypeNode(c,r,1024|n,i)}function fS(t,r,n,i){var a=e.getParseTreeNode(t,e.isFunctionLike);if(!a)return e.factory.createToken(128);var o=Nc(a);return $.typeToTypeNode(Mc(o),r,1024|n,i)}function gS(t,r,n,i){var a=e.getParseTreeNode(t,e.isExpression);if(!a)return e.factory.createToken(128);var o=Jp(jD(a));return $.typeToTypeNode(o,r,1024|n,i)}function mS(t){return ee.has(e.escapeLeadingUnderscores(t))}function yS(t,r){var n=Tn(t).resolvedSymbol;if(n)return n;var i=t;if(r){var a=t.parent;e.isDeclaration(a)&&t===a.name&&(i=Ca(a))}return An(i,t.escapedText,3257279,void 0,void 0,!0)}function vS(t){if(!e.isGeneratedIdentifier(t)){var r=e.getParseTreeNode(t,e.isIdentifier);if(r){var n=yS(r);if(n)return Pi(n).valueDeclaration}}}function hS(t){return!!(e.isDeclarationReadonly(t)||e.isVariableDeclaration(t)&&e.isVarConst(t))&&d_(_o(Ci(t)))}function bS(t,r){return function(t,r,n){var i=1024&t.flags?$.symbolToExpression(t.symbol,111551,r,void 0,n):t===Re?e.factory.createTrue():t===Me&&e.factory.createFalse();if(i)return i;var a=t.value;return"object"==typeof a?e.factory.createBigIntLiteral(a):"number"==typeof a?e.factory.createNumericLiteral(a):e.factory.createStringLiteral(a)}(_o(Ci(t)),t,r)}function xS(t){return t?(on(t),e.getSourceFileOfNode(t).localJsxFactory||rr):rr}function DS(t){if(t){var r=e.getSourceFileOfNode(t);if(r){if(r.localJsxFragmentFactory)return r.localJsxFragmentFactory;var n=r.pragmas.get("jsxfrag"),i=e.isArray(n)?n[0]:n;if(i)return r.localJsxFragmentFactory=e.parseIsolatedEntityName(i.arguments.factory,z),r.localJsxFragmentFactory}}if(J.jsxFragmentFactory)return e.parseIsolatedEntityName(J.jsxFragmentFactory,z)}function SS(t){var r=256===t.kind?e.tryCast(t.name,e.isStringLiteral):e.getExternalModuleName(t),n=di(r,r,void 0);if(n)return e.getDeclarationOfKind(n,297)}function TS(t,r){if((i&r)!==r&&J.importHelpers){var n=e.getSourceFileOfNode(t);if(e.isEffectiveExternalModule(n,J)&&!(8388608&t.flags)){var a=function(t,r){s||(s=pi(t,e.externalHelpersModuleNameText,e.Diagnostics.This_syntax_requires_an_imported_helper_but_module_0_cannot_be_found,r)||ve);return s}(n,t);if(a!==ve)for(var o=r&~i,c=1;c<=2097152;c<<=1)if(o&c){var u=CS(c);En(a.exports,e.escapeLeadingUnderscores(u),111551)||cn(t,e.Diagnostics.This_syntax_requires_an_imported_helper_named_1_which_does_not_exist_in_0_Consider_upgrading_your_version_of_0,e.externalHelpersModuleNameText,u)}i|=r}}}function CS(t){switch(t){case 1:return"__extends";case 2:return"__assign";case 4:return"__rest";case 8:return"__decorate";case 16:return"__metadata";case 32:return"__param";case 64:return"__awaiter";case 128:return"__generator";case 256:return"__values";case 512:return"__read";case 1024:return"__spreadArray";case 2048:return"__await";case 4096:return"__asyncGenerator";case 8192:return"__asyncDelegator";case 16384:return"__asyncValues";case 32768:return"__exportStar";case 65536:return"__importStar";case 131072:return"__importDefault";case 262144:return"__makeTemplateObject";case 524288:return"__classPrivateFieldGet";case 1048576:return"__classPrivateFieldSet";case 2097152:return"__createBinding";default:return e.Debug.fail("Unrecognized helper")}}function ES(t){return function(t){if(!t.decorators)return!1;if(!e.nodeCanBeDecorated(t,t.parent,t.parent.parent))return 165!==t.kind||e.nodeIsPresent(t.body)?YS(t,e.Diagnostics.Decorators_are_not_valid_here):YS(t,e.Diagnostics.A_decorator_can_only_decorate_a_method_implementation_not_an_overload);if(167===t.kind||168===t.kind){var r=e.getAllAccessorDeclarations(t.parent.members,t);if(r.firstAccessor.decorators&&t===r.secondAccessor)return YS(t,e.Diagnostics.Decorators_cannot_be_applied_to_multiple_get_Slashset_accessors_of_the_same_name)}return!1}(t)||function(t){var r,n,i,a,o=function(t){return!!t.modifiers&&(function(t){switch(t.kind){case 167:case 168:case 166:case 163:case 162:case 165:case 164:case 171:case 256:case 261:case 260:case 267:case 266:case 208:case 209:case 160:return!1;default:if(257===t.parent.kind||297===t.parent.kind)return!1;switch(t.kind){case 251:return kS(t,129);case 252:case 175:return kS(t,125);case 253:case 232:case 254:return!0;case 255:return kS(t,84);default:e.Debug.fail()}}}(t)?YS(t,e.Diagnostics.Modifiers_cannot_appear_here):void 0)}(t);if(void 0!==o)return o;for(var s=0,c=0,u=t.modifiers;c1||e.modifiers[0].kind!==t}function NS(t,r){return void 0===r&&(r=e.Diagnostics.Trailing_comma_not_allowed),!(!t||!t.hasTrailingComma)&&ZS(t[0],t.end-",".length,",".length,r)}function AS(t,r){if(t&&0===t.length){var n=t.pos-"<".length;return ZS(r,n,e.skipTrivia(r.text,t.end)+">".length-n,e.Diagnostics.Type_parameter_list_cannot_be_empty)}return!1}function FS(t){if(z>=3){var r=t.body&&e.isBlock(t.body)&&e.findUseStrictPrologue(t.body.statements);if(r){var n=(a=t.parameters,e.filter(a,(function(t){return!!t.initializer||e.isBindingPattern(t.name)||e.isRestParameter(t)})));if(e.length(n)){e.forEach(n,(function(t){e.addRelatedInfo(cn(t,e.Diagnostics.This_parameter_is_not_allowed_with_use_strict_directive),e.createDiagnosticForNode(r,e.Diagnostics.use_strict_directive_used_here))}));var i=n.map((function(t,r){return 0===r?e.createDiagnosticForNode(t,e.Diagnostics.Non_simple_parameter_declared_here):e.createDiagnosticForNode(t,e.Diagnostics.and_here)}));return e.addRelatedInfo.apply(void 0,__spreadArray([cn(r,e.Diagnostics.use_strict_directive_cannot_be_used_with_non_simple_parameter_list)],i)),!0}}}var a;return!1}function PS(t){var r=e.getSourceFileOfNode(t);return ES(t)||AS(t.typeParameters,r)||function(t){for(var r=!1,n=t.length,i=0;i".length-i,e.Diagnostics.Type_argument_list_cannot_be_empty)}return!1}(t,r)}function IS(t){return function(t){if(t)for(var r=0,n=t;r1){n=238===t.kind?e.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_in_statement:e.Diagnostics.Only_a_single_variable_declaration_is_allowed_in_a_for_of_statement;return YS(o.declarations[1],n)}var c=s[0];if(c.initializer){var n=238===t.kind?e.Diagnostics.The_variable_declaration_of_a_for_in_statement_cannot_have_an_initializer:e.Diagnostics.The_variable_declaration_of_a_for_of_statement_cannot_have_an_initializer;return $S(c.name,n)}if(c.type)return $S(c,n=238===t.kind?e.Diagnostics.The_left_hand_side_of_a_for_in_statement_cannot_use_a_type_annotation:e.Diagnostics.The_left_hand_side_of_a_for_of_statement_cannot_use_a_type_annotation)}}return!1}function zS(t){if(t.parameters.length===(167===t.kind?1:2))return e.getThisParameter(t)}function US(t,r){if(function(t){return e.isDynamicName(t)&&!Qo(t)}(t))return $S(t,r)}function VS(t){if(PS(t))return!0;if(165===t.kind){if(200===t.parent.kind){if(t.modifiers&&(1!==t.modifiers.length||129!==e.first(t.modifiers).kind))return YS(t,e.Diagnostics.Modifiers_cannot_appear_here);if(BS(t.questionToken,e.Diagnostics.An_object_member_cannot_be_declared_optional))return!0;if(jS(t.exclamationToken,e.Diagnostics.A_definite_assignment_assertion_is_not_permitted_in_this_context))return!0;if(void 0===t.body)return ZS(t,t.end-1,";".length,e.Diagnostics._0_expected,"{")}if(RS(t))return!0}if(e.isClassLike(t.parent)){if(8388608&t.flags)return US(t.name,e.Diagnostics.A_computed_property_name_in_an_ambient_context_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type);if(165===t.kind&&!t.body)return US(t.name,e.Diagnostics.A_computed_property_name_in_a_method_overload_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type)}else{if(253===t.parent.kind)return US(t.name,e.Diagnostics.A_computed_property_name_in_an_interface_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type);if(177===t.parent.kind)return US(t.name,e.Diagnostics.A_computed_property_name_in_a_type_literal_must_refer_to_an_expression_whose_type_is_a_literal_type_or_a_unique_symbol_type)}}function KS(t){return e.isStringOrNumericLiteralLike(t)||214===t.kind&&40===t.operator&&8===t.operand.kind}function qS(t){var r,n=t.initializer;if(n){var i=!(KS(n)||function(t){if((e.isPropertyAccessExpression(t)||e.isElementAccessExpression(t)&&KS(t.argumentExpression))&&e.isEntityNameExpression(t.expression))return!!(1024&Jh(t).flags)}(n)||109===n.kind||94===n.kind||(r=n,9===r.kind||214===r.kind&&40===r.operator&&9===r.operand.kind)),a=e.isDeclarationReadonly(t)||e.isVariableDeclaration(t)&&e.isVarConst(t);if(!a||t.type)return $S(n,e.Diagnostics.Initializers_are_not_allowed_in_ambient_contexts);if(i)return $S(n,e.Diagnostics.A_const_initializer_in_an_ambient_context_must_be_a_string_or_numeric_literal_or_literal_enum_reference);if(!a||i)return $S(n,e.Diagnostics.Initializers_are_not_allowed_in_ambient_contexts)}}function WS(t){if(78===t.kind){if("__esModule"===e.idText(t))return function(t,r,n,i,a,o){if(!QS(e.getSourceFileOfNode(r)))return sn(t,r,n,i,a,o),!0;return!1}("noEmit",t,e.Diagnostics.Identifier_expected_esModule_is_reserved_as_an_exported_marker_when_transforming_ECMAScript_modules)}else for(var r=0,n=t.elements;r0}function YS(t,r,n,i,a){var o=e.getSourceFileOfNode(t);if(!QS(o)){var s=e.getSpanOfTokenAtPosition(o,t.pos);return Gr.add(e.createFileDiagnostic(o,s.start,s.length,r,n,i,a)),!0}return!1}function ZS(t,r,n,i,a,o,s){var c=e.getSourceFileOfNode(t);return!QS(c)&&(Gr.add(e.createFileDiagnostic(c,r,n,i,a,o,s)),!0)}function $S(t,r,n,i,a){return!QS(e.getSourceFileOfNode(t))&&(Gr.add(e.createDiagnosticForNode(t,r,n,i,a)),!0)}function eT(t){return 253!==t.kind&&254!==t.kind&&261!==t.kind&&260!==t.kind&&267!==t.kind&&266!==t.kind&&259!==t.kind&&!e.hasSyntacticModifier(t,515)&&YS(t,e.Diagnostics.Top_level_declarations_in_d_ts_files_must_start_with_either_a_declare_or_export_modifier)}function tT(t){if(8388608&t.flags){if(!Tn(t).hasReportedStatementInAmbientContext&&(e.isFunctionLike(t.parent)||e.isAccessor(t.parent)))return Tn(t).hasReportedStatementInAmbientContext=YS(t,e.Diagnostics.An_implementation_cannot_be_declared_in_ambient_contexts);if(230===t.parent.kind||257===t.parent.kind||297===t.parent.kind){var r=Tn(t.parent);if(!r.hasReportedStatementInAmbientContext)return r.hasReportedStatementInAmbientContext=YS(t,e.Diagnostics.Statements_are_not_allowed_in_ambient_contexts)}}return!1}function rT(t){if(32&t.numericLiteralFlags){var r=void 0;if(z>=1?r=e.Diagnostics.Octal_literals_are_not_available_when_targeting_ECMAScript_5_and_higher_Use_the_syntax_0:e.isChildOfNodeWithKind(t,191)?r=e.Diagnostics.Octal_literal_types_must_use_ES2015_syntax_Use_the_syntax_0:e.isChildOfNodeWithKind(t,291)&&(r=e.Diagnostics.Octal_literals_are_not_allowed_in_enums_members_initializer_Use_the_syntax_0),r){var n=e.isPrefixUnaryExpression(t.parent)&&40===t.parent.operator,i=(n?"-":"")+"0o"+t.text;return $S(n?t.parent:t,r,i)}}return function(t){if(16&t.numericLiteralFlags||t.text.length<=15||-1!==t.text.indexOf("."))return;var r=+e.getTextOfNode(t);if(r<=Math.pow(2,53)-1&&r+1>r)return;un(!1,e.createDiagnosticForNode(t,e.Diagnostics.Numeric_literals_with_absolute_values_equal_to_2_53_or_greater_are_too_large_to_be_represented_accurately_as_integers))}(t),!1}function nT(t,r,n,i){if(1048576&r.flags&&2621440&t.flags){var a=zs(t);if(a){var o=Of(a,r);if(o)return Id(r,e.map(o,(function(e){return[function(){return _o(e)},e.escapedName]})),n,void 0,i)}}}},function(e){e.JSX="JSX",e.IntrinsicElements="IntrinsicElements",e.ElementClass="ElementClass",e.ElementAttributesPropertyNameContainer="ElementAttributesProperty",e.ElementChildrenAttributeNameContainer="ElementChildrenAttribute",e.Element="Element",e.IntrinsicAttributes="IntrinsicAttributes",e.IntrinsicClassAttributes="IntrinsicClassAttributes",e.LibraryManagedAttributes="LibraryManagedAttributes"}(k||(k={})),e.signatureHasRestParameter=B,e.signatureHasLiteralTypes=j}(ts||(ts={})),function(e){var t=e.or(e.isTypeNode,e.isTypeParameterDeclaration);function r(t,r,n,i){if(void 0===t||void 0===r)return t;var a,o=r(t);return o===t?t:void 0!==o?(a=e.isArray(o)?(i||c)(o):o,e.Debug.assertNode(a,n),a):void 0}function n(t,r,n,i,a){if(void 0===t||void 0===r)return t;var o,s,c=t.length;(void 0===i||i<0)&&(i=0),(void 0===a||a>c-i)&&(a=c-i);var u=-1,l=-1;(i>0||a=2&&(s=function(t,r){for(var n,i=0;i0&&p<=156||187===p)return o;var f=u.factory;switch(p){case 78:return f.updateIdentifier(o,l(o.typeArguments,c,t));case 157:return f.updateQualifiedName(o,d(o.left,c,e.isEntityName),d(o.right,c,e.isIdentifier));case 158:return f.updateComputedPropertyName(o,d(o.expression,c,e.isExpression));case 159:return f.updateTypeParameterDeclaration(o,d(o.name,c,e.isIdentifier),d(o.constraint,c,e.isTypeNode),d(o.default,c,e.isTypeNode));case 160:return f.updateParameterDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.dotDotDotToken,_,e.isToken),d(o.name,c,e.isBindingName),d(o.questionToken,_,e.isToken),d(o.type,c,e.isTypeNode),d(o.initializer,c,e.isExpression));case 161:return f.updateDecorator(o,d(o.expression,c,e.isExpression));case 162:return f.updatePropertySignature(o,l(o.modifiers,c,e.isToken),d(o.name,c,e.isPropertyName),d(o.questionToken,_,e.isToken),d(o.type,c,e.isTypeNode));case 163:return f.updatePropertyDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isPropertyName),d(o.questionToken||o.exclamationToken,_,e.isToken),d(o.type,c,e.isTypeNode),d(o.initializer,c,e.isExpression));case 164:return f.updateMethodSignature(o,l(o.modifiers,c,e.isModifier),d(o.name,c,e.isPropertyName),d(o.questionToken,_,e.isToken),l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 165:return f.updateMethodDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.asteriskToken,_,e.isToken),d(o.name,c,e.isPropertyName),d(o.questionToken,_,e.isToken),l(o.typeParameters,c,e.isTypeParameterDeclaration),a(o.parameters,c,u,l),d(o.type,c,e.isTypeNode),s(o.body,c,u,d));case 166:return f.updateConstructorDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),a(o.parameters,c,u,l),s(o.body,c,u,d));case 167:return f.updateGetAccessorDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isPropertyName),a(o.parameters,c,u,l),d(o.type,c,e.isTypeNode),s(o.body,c,u,d));case 168:return f.updateSetAccessorDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isPropertyName),a(o.parameters,c,u,l),s(o.body,c,u,d));case 169:return f.updateCallSignature(o,l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 170:return f.updateConstructSignature(o,l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 171:return f.updateIndexSignature(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 172:return f.updateTypePredicateNode(o,d(o.assertsModifier,c),d(o.parameterName,c),d(o.type,c,e.isTypeNode));case 173:return f.updateTypeReferenceNode(o,d(o.typeName,c,e.isEntityName),l(o.typeArguments,c,e.isTypeNode));case 174:return f.updateFunctionTypeNode(o,l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 175:return f.updateConstructorTypeNode(o,l(o.modifiers,c,e.isModifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.parameters,c,e.isParameterDeclaration),d(o.type,c,e.isTypeNode));case 176:return f.updateTypeQueryNode(o,d(o.exprName,c,e.isEntityName));case 177:return f.updateTypeLiteralNode(o,l(o.members,c,e.isTypeElement));case 178:return f.updateArrayTypeNode(o,d(o.elementType,c,e.isTypeNode));case 179:return f.updateTupleTypeNode(o,l(o.elements,c,e.isTypeNode));case 180:return f.updateOptionalTypeNode(o,d(o.type,c,e.isTypeNode));case 181:return f.updateRestTypeNode(o,d(o.type,c,e.isTypeNode));case 182:return f.updateUnionTypeNode(o,l(o.types,c,e.isTypeNode));case 183:return f.updateIntersectionTypeNode(o,l(o.types,c,e.isTypeNode));case 184:return f.updateConditionalTypeNode(o,d(o.checkType,c,e.isTypeNode),d(o.extendsType,c,e.isTypeNode),d(o.trueType,c,e.isTypeNode),d(o.falseType,c,e.isTypeNode));case 185:return f.updateInferTypeNode(o,d(o.typeParameter,c,e.isTypeParameterDeclaration));case 195:return f.updateImportTypeNode(o,d(o.argument,c,e.isTypeNode),d(o.qualifier,c,e.isEntityName),n(o.typeArguments,c,e.isTypeNode),o.isTypeOf);case 192:return f.updateNamedTupleMember(o,r(o.dotDotDotToken,c,e.isToken),r(o.name,c,e.isIdentifier),r(o.questionToken,c,e.isToken),r(o.type,c,e.isTypeNode));case 186:return f.updateParenthesizedType(o,d(o.type,c,e.isTypeNode));case 188:return f.updateTypeOperatorNode(o,d(o.type,c,e.isTypeNode));case 189:return f.updateIndexedAccessTypeNode(o,d(o.objectType,c,e.isTypeNode),d(o.indexType,c,e.isTypeNode));case 190:return f.updateMappedTypeNode(o,d(o.readonlyToken,_,e.isToken),d(o.typeParameter,c,e.isTypeParameterDeclaration),d(o.nameType,c,e.isTypeNode),d(o.questionToken,_,e.isToken),d(o.type,c,e.isTypeNode));case 191:return f.updateLiteralTypeNode(o,d(o.literal,c,e.isExpression));case 193:return f.updateTemplateLiteralType(o,d(o.head,c,e.isTemplateHead),l(o.templateSpans,c,e.isTemplateLiteralTypeSpan));case 194:return f.updateTemplateLiteralTypeSpan(o,d(o.type,c,e.isTypeNode),d(o.literal,c,e.isTemplateMiddleOrTemplateTail));case 196:return f.updateObjectBindingPattern(o,l(o.elements,c,e.isBindingElement));case 197:return f.updateArrayBindingPattern(o,l(o.elements,c,e.isArrayBindingElement));case 198:return f.updateBindingElement(o,d(o.dotDotDotToken,_,e.isToken),d(o.propertyName,c,e.isPropertyName),d(o.name,c,e.isBindingName),d(o.initializer,c,e.isExpression));case 199:return f.updateArrayLiteralExpression(o,l(o.elements,c,e.isExpression));case 200:return f.updateObjectLiteralExpression(o,l(o.properties,c,e.isObjectLiteralElementLike));case 201:return 32&o.flags?f.updatePropertyAccessChain(o,d(o.expression,c,e.isExpression),d(o.questionDotToken,_,e.isToken),d(o.name,c,e.isIdentifier)):f.updatePropertyAccessExpression(o,d(o.expression,c,e.isExpression),d(o.name,c,e.isIdentifierOrPrivateIdentifier));case 202:return 32&o.flags?f.updateElementAccessChain(o,d(o.expression,c,e.isExpression),d(o.questionDotToken,_,e.isToken),d(o.argumentExpression,c,e.isExpression)):f.updateElementAccessExpression(o,d(o.expression,c,e.isExpression),d(o.argumentExpression,c,e.isExpression));case 203:return 32&o.flags?f.updateCallChain(o,d(o.expression,c,e.isExpression),d(o.questionDotToken,_,e.isToken),l(o.typeArguments,c,e.isTypeNode),l(o.arguments,c,e.isExpression)):f.updateCallExpression(o,d(o.expression,c,e.isExpression),l(o.typeArguments,c,e.isTypeNode),l(o.arguments,c,e.isExpression));case 204:return f.updateNewExpression(o,d(o.expression,c,e.isExpression),l(o.typeArguments,c,e.isTypeNode),l(o.arguments,c,e.isExpression));case 205:return f.updateTaggedTemplateExpression(o,d(o.tag,c,e.isExpression),n(o.typeArguments,c,e.isExpression),d(o.template,c,e.isTemplateLiteral));case 206:return f.updateTypeAssertion(o,d(o.type,c,e.isTypeNode),d(o.expression,c,e.isExpression));case 207:return f.updateParenthesizedExpression(o,d(o.expression,c,e.isExpression));case 208:return f.updateFunctionExpression(o,l(o.modifiers,c,e.isModifier),d(o.asteriskToken,_,e.isToken),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),a(o.parameters,c,u,l),d(o.type,c,e.isTypeNode),s(o.body,c,u,d));case 209:return f.updateArrowFunction(o,l(o.modifiers,c,e.isModifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),a(o.parameters,c,u,l),d(o.type,c,e.isTypeNode),d(o.equalsGreaterThanToken,_,e.isToken),s(o.body,c,u,d));case 210:return f.updateDeleteExpression(o,d(o.expression,c,e.isExpression));case 211:return f.updateTypeOfExpression(o,d(o.expression,c,e.isExpression));case 212:return f.updateVoidExpression(o,d(o.expression,c,e.isExpression));case 213:return f.updateAwaitExpression(o,d(o.expression,c,e.isExpression));case 214:return f.updatePrefixUnaryExpression(o,d(o.operand,c,e.isExpression));case 215:return f.updatePostfixUnaryExpression(o,d(o.operand,c,e.isExpression));case 216:return f.updateBinaryExpression(o,d(o.left,c,e.isExpression),d(o.operatorToken,_,e.isToken),d(o.right,c,e.isExpression));case 217:return f.updateConditionalExpression(o,d(o.condition,c,e.isExpression),d(o.questionToken,_,e.isToken),d(o.whenTrue,c,e.isExpression),d(o.colonToken,_,e.isToken),d(o.whenFalse,c,e.isExpression));case 218:return f.updateTemplateExpression(o,d(o.head,c,e.isTemplateHead),l(o.templateSpans,c,e.isTemplateSpan));case 219:return f.updateYieldExpression(o,d(o.asteriskToken,_,e.isToken),d(o.expression,c,e.isExpression));case 220:return f.updateSpreadElement(o,d(o.expression,c,e.isExpression));case 221:return f.updateClassExpression(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.heritageClauses,c,e.isHeritageClause),l(o.members,c,e.isClassElement));case 223:return f.updateExpressionWithTypeArguments(o,d(o.expression,c,e.isExpression),l(o.typeArguments,c,e.isTypeNode));case 224:return f.updateAsExpression(o,d(o.expression,c,e.isExpression),d(o.type,c,e.isTypeNode));case 225:return 32&o.flags?f.updateNonNullChain(o,d(o.expression,c,e.isExpression)):f.updateNonNullExpression(o,d(o.expression,c,e.isExpression));case 226:return f.updateMetaProperty(o,d(o.name,c,e.isIdentifier));case 228:return f.updateTemplateSpan(o,d(o.expression,c,e.isExpression),d(o.literal,c,e.isTemplateMiddleOrTemplateTail));case 230:return f.updateBlock(o,l(o.statements,c,e.isStatement));case 232:return f.updateVariableStatement(o,l(o.modifiers,c,e.isModifier),d(o.declarationList,c,e.isVariableDeclarationList));case 233:return f.updateExpressionStatement(o,d(o.expression,c,e.isExpression));case 234:return f.updateIfStatement(o,d(o.expression,c,e.isExpression),d(o.thenStatement,c,e.isStatement,f.liftToBlock),d(o.elseStatement,c,e.isStatement,f.liftToBlock));case 235:return f.updateDoStatement(o,d(o.statement,c,e.isStatement,f.liftToBlock),d(o.expression,c,e.isExpression));case 236:return f.updateWhileStatement(o,d(o.expression,c,e.isExpression),d(o.statement,c,e.isStatement,f.liftToBlock));case 237:return f.updateForStatement(o,d(o.initializer,c,e.isForInitializer),d(o.condition,c,e.isExpression),d(o.incrementor,c,e.isExpression),d(o.statement,c,e.isStatement,f.liftToBlock));case 238:return f.updateForInStatement(o,d(o.initializer,c,e.isForInitializer),d(o.expression,c,e.isExpression),d(o.statement,c,e.isStatement,f.liftToBlock));case 239:return f.updateForOfStatement(o,d(o.awaitModifier,_,e.isToken),d(o.initializer,c,e.isForInitializer),d(o.expression,c,e.isExpression),d(o.statement,c,e.isStatement,f.liftToBlock));case 240:return f.updateContinueStatement(o,d(o.label,c,e.isIdentifier));case 241:return f.updateBreakStatement(o,d(o.label,c,e.isIdentifier));case 242:return f.updateReturnStatement(o,d(o.expression,c,e.isExpression));case 243:return f.updateWithStatement(o,d(o.expression,c,e.isExpression),d(o.statement,c,e.isStatement,f.liftToBlock));case 244:return f.updateSwitchStatement(o,d(o.expression,c,e.isExpression),d(o.caseBlock,c,e.isCaseBlock));case 245:return f.updateLabeledStatement(o,d(o.label,c,e.isIdentifier),d(o.statement,c,e.isStatement,f.liftToBlock));case 246:return f.updateThrowStatement(o,d(o.expression,c,e.isExpression));case 247:return f.updateTryStatement(o,d(o.tryBlock,c,e.isBlock),d(o.catchClause,c,e.isCatchClause),d(o.finallyBlock,c,e.isBlock));case 249:return f.updateVariableDeclaration(o,d(o.name,c,e.isBindingName),d(o.exclamationToken,_,e.isToken),d(o.type,c,e.isTypeNode),d(o.initializer,c,e.isExpression));case 250:return f.updateVariableDeclarationList(o,l(o.declarations,c,e.isVariableDeclaration));case 251:return f.updateFunctionDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.asteriskToken,_,e.isToken),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),a(o.parameters,c,u,l),d(o.type,c,e.isTypeNode),s(o.body,c,u,d));case 252:return f.updateClassDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.heritageClauses,c,e.isHeritageClause),l(o.members,c,e.isClassElement));case 253:return f.updateInterfaceDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),l(o.heritageClauses,c,e.isHeritageClause),l(o.members,c,e.isTypeElement));case 254:return f.updateTypeAliasDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),l(o.typeParameters,c,e.isTypeParameterDeclaration),d(o.type,c,e.isTypeNode));case 255:return f.updateEnumDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),l(o.members,c,e.isEnumMember));case 256:return f.updateModuleDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.name,c,e.isIdentifier),d(o.body,c,e.isModuleBody));case 257:return f.updateModuleBlock(o,l(o.statements,c,e.isStatement));case 258:return f.updateCaseBlock(o,l(o.clauses,c,e.isCaseOrDefaultClause));case 259:return f.updateNamespaceExportDeclaration(o,d(o.name,c,e.isIdentifier));case 260:return f.updateImportEqualsDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),o.isTypeOnly,d(o.name,c,e.isIdentifier),d(o.moduleReference,c,e.isModuleReference));case 261:return f.updateImportDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.importClause,c,e.isImportClause),d(o.moduleSpecifier,c,e.isExpression));case 262:return f.updateImportClause(o,o.isTypeOnly,d(o.name,c,e.isIdentifier),d(o.namedBindings,c,e.isNamedImportBindings));case 263:return f.updateNamespaceImport(o,d(o.name,c,e.isIdentifier));case 269:return f.updateNamespaceExport(o,d(o.name,c,e.isIdentifier));case 264:return f.updateNamedImports(o,l(o.elements,c,e.isImportSpecifier));case 265:return f.updateImportSpecifier(o,d(o.propertyName,c,e.isIdentifier),d(o.name,c,e.isIdentifier));case 266:return f.updateExportAssignment(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),d(o.expression,c,e.isExpression));case 267:return f.updateExportDeclaration(o,l(o.decorators,c,e.isDecorator),l(o.modifiers,c,e.isModifier),o.isTypeOnly,d(o.exportClause,c,e.isNamedExportBindings),d(o.moduleSpecifier,c,e.isExpression));case 268:return f.updateNamedExports(o,l(o.elements,c,e.isExportSpecifier));case 270:return f.updateExportSpecifier(o,d(o.propertyName,c,e.isIdentifier),d(o.name,c,e.isIdentifier));case 272:return f.updateExternalModuleReference(o,d(o.expression,c,e.isExpression));case 273:return f.updateJsxElement(o,d(o.openingElement,c,e.isJsxOpeningElement),l(o.children,c,e.isJsxChild),d(o.closingElement,c,e.isJsxClosingElement));case 274:return f.updateJsxSelfClosingElement(o,d(o.tagName,c,e.isJsxTagNameExpression),l(o.typeArguments,c,e.isTypeNode),d(o.attributes,c,e.isJsxAttributes));case 275:return f.updateJsxOpeningElement(o,d(o.tagName,c,e.isJsxTagNameExpression),l(o.typeArguments,c,e.isTypeNode),d(o.attributes,c,e.isJsxAttributes));case 276:return f.updateJsxClosingElement(o,d(o.tagName,c,e.isJsxTagNameExpression));case 277:return f.updateJsxFragment(o,d(o.openingFragment,c,e.isJsxOpeningFragment),l(o.children,c,e.isJsxChild),d(o.closingFragment,c,e.isJsxClosingFragment));case 280:return f.updateJsxAttribute(o,d(o.name,c,e.isIdentifier),d(o.initializer,c,e.isStringLiteralOrJsxExpression));case 281:return f.updateJsxAttributes(o,l(o.properties,c,e.isJsxAttributeLike));case 282:return f.updateJsxSpreadAttribute(o,d(o.expression,c,e.isExpression));case 283:return f.updateJsxExpression(o,d(o.expression,c,e.isExpression));case 284:return f.updateCaseClause(o,d(o.expression,c,e.isExpression),l(o.statements,c,e.isStatement));case 285:return f.updateDefaultClause(o,l(o.statements,c,e.isStatement));case 286:return f.updateHeritageClause(o,l(o.types,c,e.isExpressionWithTypeArguments));case 287:return f.updateCatchClause(o,d(o.variableDeclaration,c,e.isVariableDeclaration),d(o.block,c,e.isBlock));case 288:return f.updatePropertyAssignment(o,d(o.name,c,e.isPropertyName),d(o.initializer,c,e.isExpression));case 289:return f.updateShorthandPropertyAssignment(o,d(o.name,c,e.isIdentifier),d(o.objectAssignmentInitializer,c,e.isExpression));case 290:return f.updateSpreadAssignment(o,d(o.expression,c,e.isExpression));case 291:return f.updateEnumMember(o,d(o.name,c,e.isPropertyName),d(o.initializer,c,e.isExpression));case 297:return f.updateSourceFile(o,i(o.statements,c,u));case 336:return f.updatePartiallyEmittedExpression(o,d(o.expression,c,e.isExpression));case 337:return f.updateCommaListExpression(o,l(o.elements,c,e.isExpression));default:return o}}}}(ts||(ts={})),function(e){e.createSourceMapGenerator=function(t,r,n,i,o){var c,u,l=o.extendedDiagnostics?e.performance.createTimer("Source Map","beforeSourcemap","afterSourcemap"):e.performance.nullTimer,_=l.enter,d=l.exit,p=[],f=[],g=new e.Map,m=[],y="",v=0,h=0,b=0,x=0,D=0,S=0,T=!1,C=0,E=0,k=0,N=0,A=0,F=0,P=!1,w=!1,I=!1;return{getSources:function(){return p},addSource:O,setSourceContent:M,addName:L,addMapping:R,appendSourceMap:function(t,r,n,i,o,s){e.Debug.assert(t>=C,"generatedLine cannot backtrack"),e.Debug.assert(r>=0,"generatedCharacter cannot be negative"),_();for(var c,u=[],l=a(n.mappings),p=l.next();!p.done;p=l.next()){var f=p.value;if(s&&(f.generatedLine>s.line||f.generatedLine===s.line&&f.generatedCharacter>s.character))break;if(!o||!(f.generatedLine=C,"generatedLine cannot backtrack"),e.Debug.assert(r>=0,"generatedCharacter cannot be negative"),e.Debug.assert(void 0===n||n>=0,"sourceIndex cannot be negative"),e.Debug.assert(void 0===i||i>=0,"sourceLine cannot be negative"),e.Debug.assert(void 0===a||a>=0,"sourceCharacter cannot be negative"),_(),(function(e,t){return!P||C!==e||E!==t}(t,r)||function(e,t,r){return void 0!==e&&void 0!==t&&void 0!==r&&k===e&&(N>t||N===t&&A>r)}(n,i,a))&&(B(),C=t,E=r,w=!1,I=!1,P=!0),void 0!==n&&void 0!==i&&void 0!==a&&(k=n,N=i,A=a,w=!0,void 0!==o&&(F=o,I=!0)),d()}function B(){if(P&&(!T||v!==C||h!==E||b!==k||x!==N||D!==A||S!==F)){if(_(),v=e.length)return d("Error in decoding base64VLQFormatDecode, past the mapping string"),-1;var o=(t=e.charCodeAt(n))>=65&&t<=90?t-65:t>=97&&t<=122?t-97+26:t>=48&&t<=57?t-48+52:43===t?62:47===t?63:-1;if(-1===o)return d("Invalid character in VLQ"),-1;r=0!=(32&o),a|=(31&o)<>=1:a=-(a>>=1),a}}function o(e){return void 0!==e.sourceIndex&&void 0!==e.sourceLine&&void 0!==e.sourceCharacter}function s(t){t<0?t=1+(-t<<1):t<<=1;var r,n="";do{var i=31&t;(t>>=5)>0&&(i|=32),n+=String.fromCharCode((r=i)>=0&&r<26?65+r:r>=26&&r<52?97+r-26:r>=52&&r<62?48+r-52:62===r?43:63===r?47:e.Debug.fail(r+": not a base64 value"))}while(t>0);return n}function c(e){return void 0!==e.sourceIndex&&void 0!==e.sourcePosition}function u(e,t){return e.generatedPosition===t.generatedPosition&&e.sourceIndex===t.sourceIndex&&e.sourcePosition===t.sourcePosition}function l(t,r){return e.Debug.assert(t.sourceIndex===r.sourceIndex),e.compareValues(t.sourcePosition,r.sourcePosition)}function _(t,r){return e.compareValues(t.generatedPosition,r.generatedPosition)}function d(e){return e.sourcePosition}function p(e){return e.generatedPosition}e.getLineInfo=function(e,t){return{getLineCount:function(){return t.length},getLineText:function(r){return e.substring(t[r],t[r+1])}}},e.tryGetSourceMappingURL=function(e){for(var n=e.getLineCount()-1;n>=0;n--){var i=e.getLineText(n),a=t.exec(i);if(a)return a[1];if(!i.match(r))break}},e.isRawSourceMap=i,e.tryParseRawSourceMap=function(e){try{var t=JSON.parse(e);if(i(t))return t}catch(e){}},e.decodeMappings=a,e.sameMapping=function(e,t){return e===t||e.generatedLine===t.generatedLine&&e.generatedCharacter===t.generatedCharacter&&e.sourceIndex===t.sourceIndex&&e.sourceLine===t.sourceLine&&e.sourceCharacter===t.sourceCharacter&&e.nameIndex===t.nameIndex},e.isSourceMapping=o,e.createDocumentPositionMapper=function(t,r,n){var i,s,f,g=e.getDirectoryPath(n),m=r.sourceRoot?e.getNormalizedAbsolutePath(r.sourceRoot,g):g,y=e.getNormalizedAbsolutePath(r.file,g),v=t.getSourceFileLike(y),h=r.sources.map((function(t){return e.getNormalizedAbsolutePath(t,m)})),b=new e.Map(h.map((function(e,r){return[t.getCanonicalFileName(e),r]})));return{getSourcePosition:function(t){var r=T();if(!e.some(r))return t;var n=e.binarySearchKey(r,t.pos,p,e.compareValues);n<0&&(n=~n);var i=r[n];if(void 0===i||!c(i))return t;return{fileName:h[i.sourceIndex],pos:i.sourcePosition}},getGeneratedPosition:function(r){var n=b.get(t.getCanonicalFileName(r.fileName));if(void 0===n)return r;var i=S(n);if(!e.some(i))return r;var a=e.binarySearchKey(i,r.pos,d,e.compareValues);a<0&&(a=~a);var o=i[a];if(void 0===o||o.sourceIndex!==n)return r;return{fileName:y,pos:o.generatedPosition}}};function x(n){var i,a,s=void 0!==v?e.getPositionOfLineAndCharacter(v,n.generatedLine,n.generatedCharacter,!0):-1;if(o(n)){var c=t.getSourceFileLike(h[n.sourceIndex]);i=r.sources[n.sourceIndex],a=void 0!==c?e.getPositionOfLineAndCharacter(c,n.sourceLine,n.sourceCharacter,!0):-1}return{generatedPosition:s,source:i,sourceIndex:n.sourceIndex,sourcePosition:a,nameIndex:n.nameIndex}}function D(){if(void 0===i){var n=a(r.mappings),o=e.arrayFrom(n,x);void 0!==n.error?(t.log&&t.log("Encountered error while decoding sourcemap: "+n.error),i=e.emptyArray):i=o}return i}function S(t){if(void 0===f){for(var r=[],n=0,i=D();n0&&i!==n.elements.length||!!(n.elements.length-i)&&e.isDefaultImport(t)}function i(t){return!n(t)&&(e.isDefaultImport(t)||!!t.importClause&&e.isNamedImports(t.importClause.namedBindings)&&function(t){return!!t&&!!e.isNamedImports(t)&&e.some(t.elements,r)}(t.importClause.namedBindings))}function a(t,r,n){if(e.isBindingPattern(t.name))for(var i=0,o=t.name.elements;i=63&&e<=77},e.getNonAssignmentOperatorForCompoundAssignment=function(e){switch(e){case 63:return 39;case 64:return 40;case 65:return 41;case 66:return 42;case 67:return 43;case 68:return 44;case 69:return 47;case 70:return 48;case 71:return 49;case 72:return 50;case 73:return 51;case 77:return 52;case 74:return 56;case 75:return 55;case 76:return 60}},e.addPrologueDirectivesAndInitialSuperCall=function(t,r,n,i){if(r.body){var a=r.body.statements,o=t.copyPrologue(a,n,!1,i);if(o===a.length)return o;var s=e.findIndex(a,(function(t){return e.isExpressionStatement(t)&&e.isSuperCall(t.expression)}),o);if(s>-1){for(var c=o;c<=s;c++)n.push(e.visitNode(a[c],i,e.isStatement));return s+1}return o}return 0},e.getProperties=function(t,r,n){return e.filter(t.members,(function(t){return function(t,r,n){return e.isPropertyDeclaration(t)&&(!!t.initializer||!r)&&e.hasStaticModifier(t)===n}(t,r,n)}))},e.isInitializedProperty=function(e){return 163===e.kind&&void 0!==e.initializer}}(ts||(ts={})),function(e){function t(r,n){var i=e.getTargetOfBindingOrAssignmentElement(r);return e.isBindingOrAssignmentPattern(i)?function(r,n){for(var i=e.getElementsOfBindingOrAssignmentPattern(r),a=0,o=i;a=1)||24576&f.transformFlags||24576&e.getTargetOfBindingOrAssignmentElement(f).transformFlags||e.isComputedPropertyName(g)){u&&(t.emitBindingOrAssignment(t.createObjectBindingOrAssignmentPattern(u),s,c,i),u=void 0);var m=a(t,s,g);e.isComputedPropertyName(g)&&(l=e.append(l,m.argumentExpression)),n(t,f,m,f)}else u=e.append(u,e.visitNode(f,t.visitor))}}u&&t.emitBindingOrAssignment(t.createObjectBindingOrAssignmentPattern(u),s,c,i)}(t,r,l,s,c):e.isArrayBindingOrAssignmentPattern(l)?function(t,r,a,s,c){var u,l,_=e.getElementsOfBindingOrAssignmentPattern(a),d=_.length;if(t.level<1&&t.downlevelIteration)s=o(t,e.setTextRange(t.context.getEmitHelperFactory().createReadHelper(s,d>0&&e.getRestIndicatorOfBindingOrAssignmentElement(_[d-1])?void 0:d),c),!1,c);else if(1!==d&&(t.level<1||0===d)||e.every(_,e.isOmittedExpression)){s=o(t,s,!e.isDeclarationBindingElement(r)||0!==d,c)}for(var p=0;p=1)if(16384&f.transformFlags||t.hasTransformedPriorElement&&!i(f)){t.hasTransformedPriorElement=!0;var g=t.context.factory.createTempVariable(void 0);t.hoistTempVariables&&t.context.hoistVariableDeclaration(g),l=e.append(l,[g,f]),u=e.append(u,t.createArrayBindingOrAssignmentElement(g))}else u=e.append(u,f);else{if(e.isOmittedExpression(f))continue;if(e.getRestIndicatorOfBindingOrAssignmentElement(f)){if(p===d-1){m=t.context.factory.createArraySliceCall(s,p);n(t,f,m,f)}}else{var m=t.context.factory.createElementAccessExpression(s,p);n(t,f,m,f)}}}u&&t.emitBindingOrAssignment(t.createArrayBindingOrAssignmentPattern(u),s,c,a);if(l)for(var y=0,v=l;y0)return!0;var r=e.getFirstConstructorWithBody(t);if(r)return e.forEach(r.parameters,B);return!1})(t)&&(n|=2);e.childIsDecorated(t)&&(n|=4);Pe(t)?n|=8:!function(t){return we(t)&&e.hasSyntacticModifier(t,512)}(t)?Ie(t)&&(n|=16):n|=32;x<=1&&7&n&&(n|=128);return n}(i,a);128&o&&t.startLexicalEnvironment();var s=i.name||(5&o?d.getGeneratedNameForNode(i):void 0),c=2&o?function(r,n){var i=e.moveRangePastDecorators(r),a=function(r){if(16777216&v.getNodeCheckFlags(r)){0==(1&u)&&(u|=1,t.enableSubstitution(78),l=[]);var n=d.createUniqueName(r.name&&!e.isGeneratedIdentifier(r.name)?e.idText(r.name):"default");return l[e.getOriginalNodeId(r)]=n,y(n),n}}(r),o=d.getLocalName(r,!1,!0),s=e.visitNodes(r.heritageClauses,k,e.isHeritageClause),c=z(r),_=d.createClassExpression(void 0,void 0,n,void 0,s,c);e.setOriginalNode(_,r),e.setTextRange(_,i);var p=d.createVariableStatement(void 0,d.createVariableDeclarationList([d.createVariableDeclaration(o,void 0,void 0,a?d.createAssignment(a,_):_)],1));return e.setOriginalNode(p,r),e.setTextRange(p,i),e.setCommentRange(p,r),p}(i,s):function(t,r,n){var i=128&n?void 0:e.visitNodes(t.modifiers,M,e.isModifier),a=d.createClassDeclaration(void 0,i,r,void 0,e.visitNodes(t.heritageClauses,k,e.isHeritageClause),z(t)),o=e.getEmitFlags(t);1&n&&(o|=32);return e.setTextRange(a,t),e.setOriginalNode(a,t),e.setEmitFlags(a,o),a}(i,s,o),_=[c];if(H(_,i,!1),H(_,i,!0),function(t,r){var n=function(t){var r=function(t){var r=t.decorators,n=K(e.getFirstConstructorWithBody(t));if(!r&&!n)return;return{decorators:r,parameters:n}}(t),n=W(t,t,r);if(!n)return;var i=l&&l[e.getOriginalNodeId(t)],a=d.getLocalName(t,!1,!0),o=p().createDecorateHelper(n,a),s=d.createAssignment(a,i?d.createAssignment(i,o):o);return e.setEmitFlags(s,1536),e.setSourceMapRange(s,e.moveRangePastDecorators(t)),s}(r);n&&t.push(e.setOriginalNode(d.createExpressionStatement(n),r))}(_,i),128&o){var f=e.createTokenRange(e.skipTrivia(r.text,i.members.end),19),g=d.getInternalName(i),m=d.createPartiallyEmittedExpression(g);e.setTextRangeEnd(m,f.end),e.setEmitFlags(m,1536);var h=d.createReturnStatement(m);e.setTextRangePos(h,f.pos),e.setEmitFlags(h,1920),_.push(h),e.insertStatementsAfterStandardPrologue(_,t.endLexicalEnvironment());var b=d.createImmediatelyInvokedArrowFunction(_);e.setEmitFlags(b,33554432);var D=d.createVariableStatement(void 0,d.createVariableDeclarationList([d.createVariableDeclaration(d.getLocalName(i,!1,!1),void 0,void 0,b)]));e.setOriginalNode(D,i),e.setCommentRange(D,i),e.setSourceMapRange(D,e.moveRangePastDecorators(i)),e.startOnNewLine(D),_=[D]}8&o?Me(_,i):(128&o||2&o)&&(32&o?_.push(d.createExportDefault(d.getLocalName(i,!1,!0))):16&o&&_.push(d.createExternalModuleExport(d.getLocalName(i,!1,!0))));_.length>1&&(_.push(d.createEndOfDeclarationMarker(i)),e.setEmitFlags(c,4194304|e.getEmitFlags(c)));return e.singleOrMany(_)}(o);case 221:return function(r){if(!J(r))return e.visitEachChild(r,k,t);var n=d.createClassExpression(void 0,void 0,r.name,void 0,e.visitNodes(r.heritageClauses,k,e.isHeritageClause),z(r));return e.setOriginalNode(n,r),e.setTextRange(n,r),n}(o);case 286:return function(r){if(116===r.token)return;return e.visitEachChild(r,k,t)}(o);case 223:return function(t){return d.updateExpressionWithTypeArguments(t,e.visitNode(t.expression,k,e.isLeftHandSideExpression),void 0)}(o);case 165:return function(r){if(!de(r))return;var n=d.updateMethodDeclaration(r,void 0,e.visitNodes(r.modifiers,M,e.isModifier),r.asteriskToken,_e(r),void 0,void 0,e.visitParameterList(r.parameters,k,t),void 0,e.visitFunctionBody(r.body,k,t));n!==r&&(e.setCommentRange(n,r),e.setSourceMapRange(n,e.moveRangePastDecorators(r)));return n}(o);case 167:return function(r){if(!me(r))return;var n=d.updateGetAccessorDeclaration(r,void 0,e.visitNodes(r.modifiers,M,e.isModifier),_e(r),e.visitParameterList(r.parameters,k,t),void 0,e.visitFunctionBody(r.body,k,t)||d.createBlock([]));n!==r&&(e.setCommentRange(n,r),e.setSourceMapRange(n,e.moveRangePastDecorators(r)));return n}(o);case 168:return function(r){if(!me(r))return;var n=d.updateSetAccessorDeclaration(r,void 0,e.visitNodes(r.modifiers,M,e.isModifier),_e(r),e.visitParameterList(r.parameters,k,t),e.visitFunctionBody(r.body,k,t)||d.createBlock([]));n!==r&&(e.setCommentRange(n,r),e.setSourceMapRange(n,e.moveRangePastDecorators(r)));return n}(o);case 251:return function(r){if(!de(r))return d.createNotEmittedStatement(r);var n=d.updateFunctionDeclaration(r,void 0,e.visitNodes(r.modifiers,M,e.isModifier),r.asteriskToken,r.name,void 0,e.visitParameterList(r.parameters,k,t),void 0,e.visitFunctionBody(r.body,k,t)||d.createBlock([]));if(Pe(r)){var i=[n];return Me(i,r),i}return n}(o);case 208:return function(r){if(!de(r))return d.createOmittedExpression();return d.updateFunctionExpression(r,e.visitNodes(r.modifiers,M,e.isModifier),r.asteriskToken,r.name,void 0,e.visitParameterList(r.parameters,k,t),void 0,e.visitFunctionBody(r.body,k,t)||d.createBlock([]))}(o);case 209:return function(r){return d.updateArrowFunction(r,e.visitNodes(r.modifiers,M,e.isModifier),void 0,e.visitParameterList(r.parameters,k,t),void 0,r.equalsGreaterThanToken,e.visitFunctionBody(r.body,k,t))}(o);case 160:return function(t){if(e.parameterIsThisKeyword(t))return;var r=d.updateParameterDeclaration(t,void 0,void 0,t.dotDotDotToken,e.visitNode(t.name,k,e.isBindingName),void 0,void 0,e.visitNode(t.initializer,k,e.isExpression));r!==t&&(e.setCommentRange(r,t),e.setTextRange(r,e.moveRangePastModifiers(t)),e.setSourceMapRange(r,e.moveRangePastModifiers(t)),e.setEmitFlags(r.name,32));return r}(o);case 207:return function(n){var i=e.skipOuterExpressions(n.expression,-7);if(e.isAssertionExpression(i)){var a=e.visitNode(n.expression,k,e.isExpression);return e.length(e.getLeadingCommentRangesOfNode(a,r))?d.updateParenthesizedExpression(n,a):d.createPartiallyEmittedExpression(a,n)}return e.visitEachChild(n,k,t)}(o);case 206:case 224:return function(t){var r=e.visitNode(t.expression,k,e.isExpression);return d.createPartiallyEmittedExpression(r,t)}(o);case 203:return function(t){return d.updateCallExpression(t,e.visitNode(t.expression,k,e.isExpression),void 0,e.visitNodes(t.arguments,k,e.isExpression))}(o);case 204:return function(t){return d.updateNewExpression(t,e.visitNode(t.expression,k,e.isExpression),void 0,e.visitNodes(t.arguments,k,e.isExpression))}(o);case 205:return function(t){return d.updateTaggedTemplateExpression(t,e.visitNode(t.tag,k,e.isExpression),void 0,e.visitNode(t.template,k,e.isExpression))}(o);case 225:return function(t){var r=e.visitNode(t.expression,k,e.isLeftHandSideExpression);return d.createPartiallyEmittedExpression(r,t)}(o);case 255:return function(t){if(!function(t){return!e.isEnumConst(t)||e.shouldPreserveConstEnums(h)}(t))return d.createNotEmittedStatement(t);var n=[],o=2,s=De(n,t);s&&(D===e.ModuleKind.System&&a===r||(o|=512));var c=Be(t),u=je(t),l=e.hasSyntacticModifier(t,1)?d.getExternalModuleOrNamespaceExportName(i,t,!1,!0):d.getLocalName(t,!1,!0),_=d.createLogicalOr(l,d.createAssignment(l,d.createObjectLiteralExpression()));if(he(t)){var p=d.getLocalName(t,!1,!0);_=d.createAssignment(p,_)}var g=d.createExpressionStatement(d.createCallExpression(d.createFunctionExpression(void 0,void 0,void 0,void 0,[d.createParameterDeclaration(void 0,void 0,void 0,c)],void 0,function(t,r){var n=i;i=r;var a=[];f();var o=e.map(t.members,ve);return e.insertStatementsAfterStandardPrologue(a,m()),e.addRange(a,o),i=n,d.createBlock(e.setTextRange(d.createNodeArray(a),t.members),!0)}(t,u)),void 0,[_]));e.setOriginalNode(g,t),s&&(e.setSyntheticLeadingComments(g,void 0),e.setSyntheticTrailingComments(g,void 0));return e.setTextRange(g,t),e.addEmitFlags(g,o),n.push(g),n.push(d.createEndOfDeclarationMarker(t)),n}(o);case 232:return function(r){if(Pe(r)){var n=e.getInitializedVariables(r.declarationList);if(0===n.length)return;return e.setTextRange(d.createExpressionStatement(d.inlineExpressions(e.map(n,ye))),r)}return e.visitEachChild(r,k,t)}(o);case 249:return function(t){return d.updateVariableDeclaration(t,e.visitNode(t.name,k,e.isBindingName),void 0,void 0,e.visitNode(t.initializer,k,e.isExpression))}(o);case 256:return Se(o);case 260:return Fe(o);case 274:return function(t){return d.updateJsxSelfClosingElement(t,e.visitNode(t.tagName,k,e.isJsxTagNameExpression),void 0,e.visitNode(t.attributes,k,e.isJsxAttributes))}(o);case 275:return function(t){return d.updateJsxOpeningElement(t,e.visitNode(t.tagName,k,e.isJsxTagNameExpression),void 0,e.visitNode(t.attributes,k,e.isJsxAttributes))}(o);default:return e.visitEachChild(o,k,t)}}function R(r){var n=e.getStrictOptionValue(h,"alwaysStrict")&&!(e.isExternalModule(r)&&D>=e.ModuleKind.ES2015)&&!e.isJsonSourceFile(r);return d.updateSourceFile(r,e.visitLexicalEnvironment(r.statements,A,t,0,n))}function B(e){return void 0!==e.decorators&&e.decorators.length>0}function j(e){return!!(2048&e.transformFlags)}function J(t){return e.some(t.decorators)||e.some(t.typeParameters)||e.some(t.heritageClauses,j)||e.some(t.members,j)}function z(t){var r=[],n=e.getFirstConstructorWithBody(t),i=n&&e.filter(n.parameters,(function(t){return e.isParameterPropertyDeclaration(t,n)}));if(i)for(var a=0,o=i;a0&&e.parameterIsThisKeyword(n[0]),a=i?1:0,o=i?n.length-1:n.length,s=0;s0?163===r.kind?d.createVoidZero():d.createNull():void 0,s=p().createDecorateHelper(n,i,a,o);return e.setTextRange(s,e.moveRangePastDecorators(r)),e.setEmitFlags(s,1536),s}}function X(t){return e.visitNode(t.expression,k,e.isExpression)}function Q(t,r){var n;if(t){n=[];for(var i=0,a=t;il&&(a||e.addRange(_,e.visitNodes(n.body.statements,y,e.isStatement,l,d-l)),l=d)}N(_,s,o.createThis()),n&&e.addRange(_,e.visitNodes(n.body.statements,y,e.isStatement,l));return _=o.mergeLexicalEnvironment(_,c()),e.setTextRange(o.createBlock(e.setTextRange(o.createNodeArray(_),n?n.body.statements:r.members),!0),n?n.body:void 0)}(r,i,n);if(!l)return;return e.startOnNewLine(e.setOriginalNode(e.setTextRange(o.createConstructorDeclaration(void 0,void 0,null!=s?s:[],l),i||r),i))}(r,n);return _&&l.push(_),e.addRange(l,e.visitNodes(r.members,h,e.isClassElement)),e.setTextRange(o.createNodeArray(l),r.members)}function k(r){return!(!e.isPropertyDeclaration(r)||e.hasStaticModifier(r)||e.hasSyntacticModifier(e.getOriginalNode(r),128))&&(t.getCompilerOptions().useDefineForClassFields?d<99:e.isInitializedProperty(r)||p&&e.isPrivateIdentifierPropertyDeclaration(r))}function N(t,r,n){for(var i=0,a=r;i=0;--t){var r,n=m[t];if(n)if(r=n.get(e.escapedText))return r}}function I(r){var n=o.getGeneratedNameForNode(r),i=w(r.name);if(!i)return e.visitEachChild(r,y,t);var a=r.expression;return(e.isThisProperty(r)||e.isSuperProperty(r)||!e.isSimpleCopiableExpression(r.expression))&&(a=o.createTempVariable(s,!0),F().push(o.createBinaryExpression(a,62,r.expression))),o.createPropertyAccessExpression(o.createParenthesizedExpression(o.createObjectLiteralExpression([o.createSetAccessorDeclaration(void 0,void 0,"value",[o.createParameterDeclaration(void 0,void 0,void 0,n,void 0,void 0,void 0)],o.createBlock([o.createExpressionStatement(T(i,a,n,62))]))])),"value")}function O(t){var r=e.getTargetOfBindingOrAssignmentElement(t);if(r&&e.isPrivateIdentifierPropertyAccessExpression(r)){var n=I(r);return e.isAssignmentExpression(t)?o.updateBinaryExpression(t,n,t.operatorToken,e.visitNode(t.right,y,e.isExpression)):e.isSpreadElement(t)?o.updateSpreadElement(t,n):n}return e.visitNode(t,v)}function M(t){if(e.isPropertyAssignment(t)){var r=e.getTargetOfBindingOrAssignmentElement(t);if(r&&e.isPrivateIdentifierPropertyAccessExpression(r)){var n=e.getInitializerOfBindingOrAssignmentElement(t),i=I(r);return o.updatePropertyAssignment(t,e.visitNode(t.name,y),n?o.createAssignment(i,e.visitNode(n,y)):i)}return o.updatePropertyAssignment(t,e.visitNode(t.name,y),e.visitNode(t.initializer,v))}return e.visitNode(t,y)}}}(ts||(ts={})),function(e){var t,r;function n(t,r,n,i){var a=0!=(4096&r.getNodeCheckFlags(n)),o=[];return i.forEach((function(r,n){var i=e.unescapeLeadingUnderscores(n),s=[];s.push(t.createPropertyAssignment("get",t.createArrowFunction(void 0,void 0,[],void 0,void 0,e.setEmitFlags(t.createPropertyAccessExpression(e.setEmitFlags(t.createSuper(),4),i),4)))),a&&s.push(t.createPropertyAssignment("set",t.createArrowFunction(void 0,void 0,[t.createParameterDeclaration(void 0,void 0,void 0,"v",void 0,void 0,void 0)],void 0,void 0,t.createAssignment(e.setEmitFlags(t.createPropertyAccessExpression(e.setEmitFlags(t.createSuper(),4),i),4),t.createIdentifier("v"))))),o.push(t.createPropertyAssignment(i,t.createObjectLiteralExpression(s)))})),t.createVariableStatement(void 0,t.createVariableDeclarationList([t.createVariableDeclaration(t.createUniqueName("_super",48),void 0,void 0,t.createCallExpression(t.createPropertyAccessExpression(t.createIdentifier("Object"),"create"),void 0,[t.createNull(),t.createObjectLiteralExpression(o,!0)]))],2))}!function(e){e[e.AsyncMethodsWithSuper=1]="AsyncMethodsWithSuper"}(t||(t={})),function(e){e[e.NonTopLevel=1]="NonTopLevel",e[e.HasLexicalThis=2]="HasLexicalThis"}(r||(r={})),e.transformES2017=function(t){var r,i,a,o,s=t.factory,c=t.getEmitHelperFactory,u=t.resumeLexicalEnvironment,l=t.endLexicalEnvironment,_=t.hoistVariableDeclaration,d=t.getEmitResolver(),p=t.getCompilerOptions(),f=e.getEmitScriptTarget(p),g=0,m=[],y=0,v=t.onEmitNode,h=t.onSubstituteNode;return t.onEmitNode=function(t,n,i){if(1&r&&function(e){var t=e.kind;return 252===t||166===t||165===t||167===t||168===t}(n)){var a=6144&d.getNodeCheckFlags(n);if(a!==g){var o=g;return g=a,v(t,n,i),void(g=o)}}else if(r&&m[e.getNodeId(n)]){o=g;return g=0,v(t,n,i),void(g=o)}v(t,n,i)},t.onSubstituteNode=function(t,r){if(r=h(t,r),1===t&&g)return function(t){switch(t.kind){case 201:return j(t);case 202:return J(t);case 203:return function(t){var r=t.expression;if(e.isSuperProperty(r)){var n=e.isPropertyAccessExpression(r)?j(r):J(r);return s.createCallExpression(s.createPropertyAccessExpression(n,"call"),void 0,__spreadArray([s.createThis()],t.arguments))}return t}(t)}return t}(r);return r},e.chainBundle(t,(function(r){if(r.isDeclarationFile)return r;b(1,!1),b(2,!e.isEffectiveStrictModeSourceFile(r,p));var n=e.visitEachChild(r,C,t);return e.addEmitHelpers(n,t.readEmitHelpers()),n}));function b(e,t){y=t?y|e:y&~e}function x(e){return 0!=(y&e)}function D(){return x(2)}function S(e,t,r){var n=e&~y;if(n){b(n,!0);var i=t(r);return b(n,!1),i}return t(r)}function T(r){return e.visitEachChild(r,C,t)}function C(r){if(0==(64&r.transformFlags))return r;switch(r.kind){case 129:return;case 213:return function(r){if(!x(1))return e.visitEachChild(r,C,t);return e.setOriginalNode(e.setTextRange(s.createYieldExpression(void 0,e.visitNode(r.expression,C,e.isExpression)),r),r)}(r);case 165:return S(3,k,r);case 251:return S(3,N,r);case 208:return S(3,A,r);case 209:return S(1,F,r);case 201:return a&&e.isPropertyAccessExpression(r)&&105===r.expression.kind&&a.add(r.name.escapedText),e.visitEachChild(r,C,t);case 202:return a&&105===r.expression.kind&&(o=!0),e.visitEachChild(r,C,t);case 167:case 168:case 166:case 252:case 221:return S(3,T,r);default:return e.visitEachChild(r,C,t)}}function E(r){if(e.isNodeWithPossibleHoistedDeclaration(r))switch(r.kind){case 232:return function(r){if(w(r.declarationList)){var n=I(r.declarationList,!1);return n?s.createExpressionStatement(n):void 0}return e.visitEachChild(r,C,t)}(r);case 237:return function(t){var r=t.initializer;return s.updateForStatement(t,w(r)?I(r,!1):e.visitNode(t.initializer,C,e.isForInitializer),e.visitNode(t.condition,C,e.isExpression),e.visitNode(t.incrementor,C,e.isExpression),e.visitNode(t.statement,E,e.isStatement,s.liftToBlock))}(r);case 238:return function(t){return s.updateForInStatement(t,w(t.initializer)?I(t.initializer,!0):e.visitNode(t.initializer,C,e.isForInitializer),e.visitNode(t.expression,C,e.isExpression),e.visitNode(t.statement,E,e.isStatement,s.liftToBlock))}(r);case 239:return function(t){return s.updateForOfStatement(t,e.visitNode(t.awaitModifier,C,e.isToken),w(t.initializer)?I(t.initializer,!0):e.visitNode(t.initializer,C,e.isForInitializer),e.visitNode(t.expression,C,e.isExpression),e.visitNode(t.statement,E,e.isStatement,s.liftToBlock))}(r);case 287:return function(r){var n,a=new e.Set;if(P(r.variableDeclaration,a),a.forEach((function(t,r){i.has(r)&&(n||(n=new e.Set(i)),n.delete(r))})),n){var o=i;i=n;var s=e.visitEachChild(r,E,t);return i=o,s}return e.visitEachChild(r,E,t)}(r);case 230:case 244:case 258:case 284:case 285:case 247:case 235:case 236:case 234:case 243:case 245:return e.visitEachChild(r,E,t);default:return e.Debug.assertNever(r,"Unhandled node.")}return C(r)}function k(r){return s.updateMethodDeclaration(r,void 0,e.visitNodes(r.modifiers,C,e.isModifier),r.asteriskToken,r.name,void 0,void 0,e.visitParameterList(r.parameters,C,t),void 0,2&e.getFunctionFlags(r)?R(r):e.visitFunctionBody(r.body,C,t))}function N(r){return s.updateFunctionDeclaration(r,void 0,e.visitNodes(r.modifiers,C,e.isModifier),r.asteriskToken,r.name,void 0,e.visitParameterList(r.parameters,C,t),void 0,2&e.getFunctionFlags(r)?R(r):e.visitFunctionBody(r.body,C,t))}function A(r){return s.updateFunctionExpression(r,e.visitNodes(r.modifiers,C,e.isModifier),r.asteriskToken,r.name,void 0,e.visitParameterList(r.parameters,C,t),void 0,2&e.getFunctionFlags(r)?R(r):e.visitFunctionBody(r.body,C,t))}function F(r){return s.updateArrowFunction(r,e.visitNodes(r.modifiers,C,e.isModifier),void 0,e.visitParameterList(r.parameters,C,t),void 0,r.equalsGreaterThanToken,2&e.getFunctionFlags(r)?R(r):e.visitFunctionBody(r.body,C,t))}function P(t,r){var n=t.name;if(e.isIdentifier(n))r.add(n.escapedText);else for(var i=0,a=n.elements;i=2&&6144&d.getNodeCheckFlags(_);if(w&&(0==(1&r)&&(r|=1,t.enableSubstitution(203),t.enableSubstitution(201),t.enableSubstitution(202),t.enableEmitNotification(252),t.enableEmitNotification(165),t.enableEmitNotification(167),t.enableEmitNotification(168),t.enableEmitNotification(166),t.enableEmitNotification(232)),a.size)){var I=n(s,d,_,a);m[e.getNodeId(I)]=!0,e.insertStatementsAfterStandardPrologue(A,[I])}var O=s.createBlock(A,!0);e.setTextRange(O,_.body),w&&o&&(4096&d.getNodeCheckFlags(_)?e.addEmitHelper(O,e.advancedAsyncSuperHelper):2048&d.getNodeCheckFlags(_)&&e.addEmitHelper(O,e.asyncSuperHelper)),S=O}return i=h,y||(a=T,o=E),S}function B(t,r){return e.isBlock(t)?s.updateBlock(t,e.visitNodes(t.statements,E,e.isStatement,r)):s.converters.convertToFunctionBlock(e.visitNode(t,E,e.isConciseBody))}function j(t){return 105===t.expression.kind?e.setTextRange(s.createPropertyAccessExpression(s.createUniqueName("_super",48),t.name),t):t}function J(t){return 105===t.expression.kind?(r=t.argumentExpression,n=t,4096&g?e.setTextRange(s.createPropertyAccessExpression(s.createCallExpression(s.createUniqueName("_superIndex",48),void 0,[r]),"value"),n):e.setTextRange(s.createCallExpression(s.createUniqueName("_superIndex",48),void 0,[r]),n)):t;var r,n}},e.createSuperAccessVariableStatement=n}(ts||(ts={})),function(e){var t,r;!function(e){e[e.AsyncMethodsWithSuper=1]="AsyncMethodsWithSuper"}(t||(t={})),function(e){e[e.None=0]="None",e[e.HasLexicalThis=1]="HasLexicalThis",e[e.IterationContainer=2]="IterationContainer",e[e.AncestorFactsMask=3]="AncestorFactsMask",e[e.SourceFileIncludes=1]="SourceFileIncludes",e[e.SourceFileExcludes=2]="SourceFileExcludes",e[e.StrictModeSourceFileIncludes=0]="StrictModeSourceFileIncludes",e[e.ClassOrFunctionIncludes=1]="ClassOrFunctionIncludes",e[e.ClassOrFunctionExcludes=2]="ClassOrFunctionExcludes",e[e.ArrowFunctionIncludes=0]="ArrowFunctionIncludes",e[e.ArrowFunctionExcludes=2]="ArrowFunctionExcludes",e[e.IterationStatementIncludes=2]="IterationStatementIncludes",e[e.IterationStatementExcludes=0]="IterationStatementExcludes"}(r||(r={})),e.transformES2018=function(t){var r=t.factory,n=t.getEmitHelperFactory,i=t.resumeLexicalEnvironment,a=t.endLexicalEnvironment,o=t.hoistVariableDeclaration,s=t.getEmitResolver(),c=t.getCompilerOptions(),u=e.getEmitScriptTarget(c),l=t.onEmitNode;t.onEmitNode=function(t,r,n){if(1&d&&function(e){var t=e.kind;return 252===t||166===t||165===t||167===t||168===t}(r)){var i=6144&s.getNodeCheckFlags(r);if(i!==h){var a=h;return h=i,l(t,r,n),void(h=a)}}else if(d&&x[e.getNodeId(r)]){a=h;return h=0,l(t,r,n),void(h=a)}l(t,r,n)};var _=t.onSubstituteNode;t.onSubstituteNode=function(t,n){if(n=_(t,n),1===t&&h)return function(t){switch(t.kind){case 201:return q(t);case 202:return W(t);case 203:return function(t){var n=t.expression;if(e.isSuperProperty(n)){var i=e.isPropertyAccessExpression(n)?q(n):W(n);return r.createCallExpression(r.createPropertyAccessExpression(i,"call"),void 0,__spreadArray([r.createThis()],t.arguments))}return t}(t)}return t}(n);return n};var d,p,f,g,m,y,v=!1,h=0,b=0,x=[];return e.chainBundle(t,(function(n){if(n.isDeclarationFile)return n;f=n;var i=function(n){var i=D(2,e.isEffectiveStrictModeSourceFile(n,c)?0:1);v=!1;var a=e.visitEachChild(n,C,t),o=e.concatenate(a.statements,g&&[r.createVariableStatement(void 0,r.createVariableDeclarationList(g))]),s=r.updateSourceFile(a,e.setTextRange(r.createNodeArray(o),n.statements));return S(i),s}(n);return e.addEmitHelpers(i,t.readEmitHelpers()),f=void 0,g=void 0,i}));function D(e,t){var r=b;return b=3&(b&~e|t),r}function S(e){b=e}function T(t){g=e.append(g,r.createVariableDeclaration(t))}function C(e){return F(e,!1)}function E(e){return F(e,!0)}function k(e){if(129!==e.kind)return e}function N(e,t,r,n){if(function(e,t){return b!==(b&~e|t)}(r,n)){var i=D(r,n),a=e(t);return S(i),a}return e(t)}function A(r){return e.visitEachChild(r,C,t)}function F(i,a){if(0==(32&i.transformFlags))return i;switch(i.kind){case 213:return function(i){if(2&p&&1&p)return e.setOriginalNode(e.setTextRange(r.createYieldExpression(void 0,n().createAwaitHelper(e.visitNode(i.expression,C,e.isExpression))),i),i);return e.visitEachChild(i,C,t)}(i);case 219:return function(i){if(2&p&&1&p){if(i.asteriskToken){var a=e.visitNode(e.Debug.assertDefined(i.expression),C,e.isExpression);return e.setOriginalNode(e.setTextRange(r.createYieldExpression(void 0,n().createAwaitHelper(r.updateYieldExpression(i,i.asteriskToken,e.setTextRange(n().createAsyncDelegatorHelper(e.setTextRange(n().createAsyncValuesHelper(a),a)),a)))),i),i)}return e.setOriginalNode(e.setTextRange(r.createYieldExpression(void 0,O(i.expression?e.visitNode(i.expression,C,e.isExpression):r.createVoidZero())),i),i)}return e.visitEachChild(i,C,t)}(i);case 242:return function(n){if(2&p&&1&p)return r.updateReturnStatement(n,O(n.expression?e.visitNode(n.expression,C,e.isExpression):r.createVoidZero()));return e.visitEachChild(n,C,t)}(i);case 245:return function(n){if(2&p){var i=e.unwrapInnermostStatementOfLabel(n);return 239===i.kind&&i.awaitModifier?I(i,n):r.restoreEnclosingLabel(e.visitNode(i,C,e.isStatement,r.liftToBlock),n)}return e.visitEachChild(n,C,t)}(i);case 200:return function(i){if(16384&i.transformFlags){var a=function(t){for(var n,i=[],a=0,o=t;a1){for(var s=1;s=2&&6144&s.getNodeCheckFlags(o);if(g){0==(1&d)&&(d|=1,t.enableSubstitution(203),t.enableSubstitution(201),t.enableSubstitution(202),t.enableEmitNotification(252),t.enableEmitNotification(165),t.enableEmitNotification(167),t.enableEmitNotification(168),t.enableEmitNotification(166),t.enableEmitNotification(232));var v=e.createSuperAccessVariableStatement(r,s,o,m);x[e.getNodeId(v)]=!0,e.insertStatementsAfterStandardPrologue(c,[v])}c.push(f),e.insertStatementsAfterStandardPrologue(c,a());var h=r.updateBlock(o.body,c);return g&&y&&(4096&s.getNodeCheckFlags(o)?e.addEmitHelper(h,e.advancedAsyncSuperHelper):2048&s.getNodeCheckFlags(o)&&e.addEmitHelper(h,e.asyncSuperHelper)),m=_,y=p,h}function V(t){var n;i();var o=0,s=[],c=null!==(n=e.visitNode(t.body,C,e.isConciseBody))&&void 0!==n?n:r.createBlock([]);e.isBlock(c)&&(o=r.copyPrologue(c.statements,s,!1,C)),e.addRange(s,K(void 0,t));var u=a();if(o>0||e.some(s)||e.some(u)){var l=r.converters.convertToFunctionBlock(c,!0);return e.insertStatementsAfterStandardPrologue(s,u),e.addRange(s,l.statements.slice(o)),r.updateBlock(l,e.setTextRange(r.createNodeArray(s),l.statements))}return c}function K(n,i){for(var a=0,o=i.parameters;a1?"jsxs":"jsx"}(e))}function l(t){var r,n,o="createElement"===t?i.importSpecifier:e.getJSXRuntimeImport(i.importSpecifier,s),c=null===(n=null===(r=i.utilizedImplicitRuntimeImports)||void 0===r?void 0:r.get(o))||void 0===n?void 0:n.get(t);if(c)return c.name;i.utilizedImplicitRuntimeImports||(i.utilizedImplicitRuntimeImports=e.createMap());var u=i.utilizedImplicitRuntimeImports.get(o);u||(u=e.createMap(),i.utilizedImplicitRuntimeImports.set(o,u));var l=a.createUniqueName("_"+t,112),_=a.createImportSpecifier(a.createIdentifier(t),l);return l.generatedImportReference=_,u.set(t,_),l}function _(t){return 2&t.transformFlags?function(t){switch(t.kind){case 273:return f(t,!1);case 274:return g(t,!1);case 277:return m(t,!1);case 283:return A(t);default:return e.visitEachChild(t,_,r)}}(t):t}function d(t){switch(t.kind){case 11:return function(t){var r=function(t){for(var r,n=0,i=-1,a=0;a1?a.createTrue():a.createFalse());var f=e.getLineAndCharacterOfPosition(p,_.pos);d.push(a.createObjectLiteralExpression([a.createPropertyAssignment("fileName",c()),a.createPropertyAssignment("lineNumber",a.createNumericLiteral(f.line+1)),a.createPropertyAssignment("columnNumber",a.createNumericLiteral(f.character+1))])),d.push(a.createThis())}}var g=e.setTextRange(a.createCallExpression(u(o),void 0,d),_);return l&&e.startOnNewLine(g),g}function b(t,c,u,_){var p,f=N(t),g=t.attributes.properties;if(0===g.length)p=a.createNull();else{var m=e.flatten(e.spanMap(g,e.isJsxSpreadAttribute,(function(t,r){return r?e.map(t,S):a.createObjectLiteralExpression(e.map(t,T))})));e.isJsxSpreadAttribute(g[0])&&m.unshift(a.createObjectLiteralExpression()),(p=e.singleOrUndefined(m))||(p=o().createAssignHelper(m))}var y=void 0===i.importSpecifier?e.createJsxFactoryExpression(a,r.getEmitResolver().getJsxFactoryEntity(n),s.reactNamespace,t):l("createElement"),v=e.createExpressionForJsxElement(a,y,f,p,e.mapDefined(c,d),_);return u&&e.startOnNewLine(v),v}function x(t,r,n,i){var o;if(r&&r.length){var s=y(r);s&&(o=s)}return h(l("Fragment"),o||a.createObjectLiteralExpression([]),void 0,e.length(e.getSemanticJsxChildren(r)),n,i)}function D(t,i,o,c){var u=e.createExpressionForJsxFragment(a,r.getEmitResolver().getJsxFactoryEntity(n),r.getEmitResolver().getJsxFragmentFactoryEntity(n),s.reactNamespace,e.mapDefined(i,d),t,c);return o&&e.startOnNewLine(u),u}function S(t){return e.visitNode(t.expression,_,e.isExpression)}function T(t){var r=function(t){var r=t.name,n=e.idText(r);return/^[A-Za-z_]\w*$/.test(n)?r:a.createStringLiteral(n)}(t),n=C(t.initializer);return a.createPropertyAssignment(r,n)}function C(t){if(void 0===t)return a.createTrue();if(10===t.kind){var r=void 0!==t.singleQuote?t.singleQuote:!e.isStringDoubleQuoted(t,n),i=a.createStringLiteral((o=t.text,((s=k(o))===o?void 0:s)||t.text),r);return e.setTextRange(i,t)}return 283===t.kind?void 0===t.expression?a.createTrue():e.visitNode(t.expression,_,e.isExpression):e.Debug.failBadSyntaxKind(t);var o,s}function E(e,t){var r=k(t);return void 0===e?r:e+" "+r}function k(r){return r.replace(/&((#((\d+)|x([\da-fA-F]+)))|(\w+));/g,(function(r,n,i,a,o,s,c){if(o)return e.utf16EncodeAsString(parseInt(o,10));if(s)return e.utf16EncodeAsString(parseInt(s,16));var u=t.get(c);return u?e.utf16EncodeAsString(u):r}))}function N(t){if(273===t.kind)return N(t.openingElement);var r=t.tagName;return e.isIdentifier(r)&&e.isIntrinsicJsxName(r.escapedText)?a.createStringLiteral(e.idText(r)):e.createExpressionFromEntityName(a,r)}function A(t){return e.visitNode(t.expression,_,e.isExpression)}};var t=new e.Map(e.getEntries({quot:34,amp:38,apos:39,lt:60,gt:62,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,copy:169,ordf:170,laquo:171,not:172,shy:173,reg:174,macr:175,deg:176,plusmn:177,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,sup1:185,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,Agrave:192,Aacute:193,Acirc:194,Atilde:195,Auml:196,Aring:197,AElig:198,Ccedil:199,Egrave:200,Eacute:201,Ecirc:202,Euml:203,Igrave:204,Iacute:205,Icirc:206,Iuml:207,ETH:208,Ntilde:209,Ograve:210,Oacute:211,Ocirc:212,Otilde:213,Ouml:214,times:215,Oslash:216,Ugrave:217,Uacute:218,Ucirc:219,Uuml:220,Yacute:221,THORN:222,szlig:223,agrave:224,aacute:225,acirc:226,atilde:227,auml:228,aring:229,aelig:230,ccedil:231,egrave:232,eacute:233,ecirc:234,euml:235,igrave:236,iacute:237,icirc:238,iuml:239,eth:240,ntilde:241,ograve:242,oacute:243,ocirc:244,otilde:245,ouml:246,divide:247,oslash:248,ugrave:249,uacute:250,ucirc:251,uuml:252,yacute:253,thorn:254,yuml:255,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830}))}(ts||(ts={})),function(e){e.transformES2016=function(t){var r=t.factory,n=t.hoistVariableDeclaration;return e.chainBundle(t,(function(r){if(r.isDeclarationFile)return r;return e.visitEachChild(r,i,t)}));function i(a){if(0==(128&a.transformFlags))return a;switch(a.kind){case 216:return function(a){switch(a.operatorToken.kind){case 66:return function(t){var a,o,s=e.visitNode(t.left,i,e.isExpression),c=e.visitNode(t.right,i,e.isExpression);if(e.isElementAccessExpression(s)){var u=r.createTempVariable(n),l=r.createTempVariable(n);a=e.setTextRange(r.createElementAccessExpression(e.setTextRange(r.createAssignment(u,s.expression),s.expression),e.setTextRange(r.createAssignment(l,s.argumentExpression),s.argumentExpression)),s),o=e.setTextRange(r.createElementAccessExpression(u,l),s)}else if(e.isPropertyAccessExpression(s)){u=r.createTempVariable(n);a=e.setTextRange(r.createPropertyAccessExpression(e.setTextRange(r.createAssignment(u,s.expression),s.expression),s.name),s),o=e.setTextRange(r.createPropertyAccessExpression(u,s.name),s)}else a=s,o=s;return e.setTextRange(r.createAssignment(a,e.setTextRange(r.createGlobalMethodCall("Math","pow",[o,c]),t)),t)}(a);case 42:return function(t){var n=e.visitNode(t.left,i,e.isExpression),a=e.visitNode(t.right,i,e.isExpression);return e.setTextRange(r.createGlobalMethodCall("Math","pow",[n,a]),t)}(a);default:return e.visitEachChild(a,i,t)}}(a);default:return e.visitEachChild(a,i,t)}}}}(ts||(ts={})),function(e){var t,r,n,i,a;!function(e){e[e.CapturedThis=1]="CapturedThis",e[e.BlockScopedBindings=2]="BlockScopedBindings"}(t||(t={})),function(e){e[e.Body=1]="Body",e[e.Initializer=2]="Initializer"}(r||(r={})),function(e){e[e.ToOriginal=0]="ToOriginal",e[e.ToOutParameter=1]="ToOutParameter"}(n||(n={})),function(e){e[e.Break=2]="Break",e[e.Continue=4]="Continue",e[e.Return=8]="Return"}(i||(i={})),function(e){e[e.None=0]="None",e[e.Function=1]="Function",e[e.ArrowFunction=2]="ArrowFunction",e[e.AsyncFunctionBody=4]="AsyncFunctionBody",e[e.NonStaticClassElement=8]="NonStaticClassElement",e[e.CapturesThis=16]="CapturesThis",e[e.ExportedVariableStatement=32]="ExportedVariableStatement",e[e.TopLevel=64]="TopLevel",e[e.Block=128]="Block",e[e.IterationStatement=256]="IterationStatement",e[e.IterationStatementBlock=512]="IterationStatementBlock",e[e.IterationContainer=1024]="IterationContainer",e[e.ForStatement=2048]="ForStatement",e[e.ForInOrForOfStatement=4096]="ForInOrForOfStatement",e[e.ConstructorWithCapturedSuper=8192]="ConstructorWithCapturedSuper",e[e.AncestorFactsMask=16383]="AncestorFactsMask",e[e.BlockScopeIncludes=0]="BlockScopeIncludes",e[e.BlockScopeExcludes=7104]="BlockScopeExcludes",e[e.SourceFileIncludes=64]="SourceFileIncludes",e[e.SourceFileExcludes=8064]="SourceFileExcludes",e[e.FunctionIncludes=65]="FunctionIncludes",e[e.FunctionExcludes=16286]="FunctionExcludes",e[e.AsyncFunctionBodyIncludes=69]="AsyncFunctionBodyIncludes",e[e.AsyncFunctionBodyExcludes=16278]="AsyncFunctionBodyExcludes",e[e.ArrowFunctionIncludes=66]="ArrowFunctionIncludes",e[e.ArrowFunctionExcludes=15232]="ArrowFunctionExcludes",e[e.ConstructorIncludes=73]="ConstructorIncludes",e[e.ConstructorExcludes=16278]="ConstructorExcludes",e[e.DoOrWhileStatementIncludes=1280]="DoOrWhileStatementIncludes",e[e.DoOrWhileStatementExcludes=0]="DoOrWhileStatementExcludes",e[e.ForStatementIncludes=3328]="ForStatementIncludes",e[e.ForStatementExcludes=5056]="ForStatementExcludes",e[e.ForInOrForOfStatementIncludes=5376]="ForInOrForOfStatementIncludes",e[e.ForInOrForOfStatementExcludes=3008]="ForInOrForOfStatementExcludes",e[e.BlockIncludes=128]="BlockIncludes",e[e.BlockExcludes=6976]="BlockExcludes",e[e.IterationStatementBlockIncludes=512]="IterationStatementBlockIncludes",e[e.IterationStatementBlockExcludes=7104]="IterationStatementBlockExcludes",e[e.NewTarget=16384]="NewTarget",e[e.CapturedLexicalThis=32768]="CapturedLexicalThis",e[e.SubtreeFactsMask=-16384]="SubtreeFactsMask",e[e.ArrowFunctionSubtreeExcludes=0]="ArrowFunctionSubtreeExcludes",e[e.FunctionSubtreeExcludes=49152]="FunctionSubtreeExcludes"}(a||(a={})),e.transformES2015=function(t){var r,n,i,a,o,s,c=t.factory,u=t.getEmitHelperFactory,l=t.startLexicalEnvironment,_=t.resumeLexicalEnvironment,d=t.endLexicalEnvironment,p=t.hoistVariableDeclaration,f=t.getCompilerOptions(),g=t.getEmitResolver(),m=t.onSubstituteNode,y=t.onEmitNode;function v(t){a=e.append(a,c.createVariableDeclaration(t))}return t.onEmitNode=function(t,r,n){if(1&s&&e.isFunctionLike(r)){var i=h(16286,8&e.getEmitFlags(r)?81:65);return y(t,r,n),void b(i,0,0)}y(t,r,n)},t.onSubstituteNode=function(t,r){if(r=m(t,r),1===t)return function(t){switch(t.kind){case 78:return function(t){if(2&s&&!e.isInternalName(t)){var r=g.getReferencedDeclarationWithCollidingName(t);if(r&&(!e.isClassLike(r)||!function(t,r){var n=e.getParseTreeNode(r);if(!n||n===t||n.end<=t.pos||n.pos>=t.end)return!1;var i=e.getEnclosingBlockScopeContainer(t);for(;n;){if(n===i||n===t)return!1;if(e.isClassElement(n)&&n.parent===t)return!0;n=n.parent}return!1}(r,t)))return e.setTextRange(c.getGeneratedNameForNode(e.getNameOfDeclaration(r)),t)}return t}(t);case 107:return function(t){if(1&s&&16&i)return e.setTextRange(c.createUniqueName("_this",48),t);return t}(t)}return t}(r);if(e.isIdentifier(r))return function(t){if(2&s&&!e.isInternalName(t)){var r=e.getParseTreeNode(t,e.isIdentifier);if(r&&function(e){switch(e.parent.kind){case 198:case 252:case 255:case 249:return e.parent.name===e&&g.isDeclarationWithCollidingName(e.parent)}return!1}(r))return e.setTextRange(c.getGeneratedNameForNode(r),t)}return t}(r);return r},e.chainBundle(t,(function(o){if(o.isDeclarationFile)return o;r=o,n=o.text;var s=function(t){var r=h(8064,64),n=[],i=[];l();var o=c.copyPrologue(t.statements,n,!1,S);e.addRange(i,e.visitNodes(t.statements,S,e.isStatement,o)),a&&i.push(c.createVariableStatement(void 0,c.createVariableDeclarationList(a)));return c.mergeLexicalEnvironment(n,d()),B(n,t),b(r,0,0),c.updateSourceFile(t,e.setTextRange(c.createNodeArray(e.concatenate(n,i)),t.statements))}(o);return e.addEmitHelpers(s,t.readEmitHelpers()),r=void 0,n=void 0,a=void 0,i=0,s}));function h(e,t){var r=i;return i=16383&(i&~e|t),r}function b(e,t,r){i=-16384&(i&~t|r)|e}function x(e){return 0!=(8192&i)&&242===e.kind&&!e.expression}function D(t){return 0!=(256&t.transformFlags)||void 0!==o||8192&i&&function(t){return 1048576&t.transformFlags&&(e.isReturnStatement(t)||e.isIfStatement(t)||e.isWithStatement(t)||e.isSwitchStatement(t)||e.isCaseBlock(t)||e.isCaseClause(t)||e.isDefaultClause(t)||e.isTryStatement(t)||e.isCatchClause(t)||e.isLabeledStatement(t)||e.isIterationStatement(t,!1)||e.isBlock(t))}(t)||e.isIterationStatement(t,!1)&&le(t)||0!=(33554432&e.getEmitFlags(t))}function S(e){return D(e)?E(e,!1):e}function T(e){return D(e)?E(e,!0):e}function C(e){return 105===e.kind?Ae(!0):S(e)}function E(n,a){switch(n.kind){case 123:return;case 252:return function(t){var r=c.createVariableDeclaration(c.getLocalName(t,!0),void 0,void 0,A(t));e.setOriginalNode(r,t);var n=[],i=c.createVariableStatement(void 0,c.createVariableDeclarationList([r]));if(e.setOriginalNode(i,t),e.setTextRange(i,t),e.startOnNewLine(i),n.push(i),e.hasSyntacticModifier(t,1)){var a=e.hasSyntacticModifier(t,512)?c.createExportDefault(c.getLocalName(t)):c.createExternalModuleExport(c.getLocalName(t));e.setOriginalNode(a,i),n.push(a)}var o=e.getEmitFlags(t);0==(4194304&o)&&(n.push(c.createEndOfDeclarationMarker(t)),e.setEmitFlags(i,4194304|o));return e.singleOrMany(n)}(n);case 221:return function(e){return A(e)}(n);case 160:return function(t){return t.dotDotDotToken?void 0:e.isBindingPattern(t.name)?e.setOriginalNode(e.setTextRange(c.createParameterDeclaration(void 0,void 0,void 0,c.getGeneratedNameForNode(t),void 0,void 0,void 0),t),t):t.initializer?e.setOriginalNode(e.setTextRange(c.createParameterDeclaration(void 0,void 0,void 0,t.name,void 0,void 0,void 0),t),t):t}(n);case 251:return function(r){var n=o;o=void 0;var a=h(16286,65),s=e.visitParameterList(r.parameters,S,t),u=W(r),l=16384&i?c.getLocalName(r):r.name;return b(a,49152,0),o=n,c.updateFunctionDeclaration(r,void 0,e.visitNodes(r.modifiers,S,e.isModifier),r.asteriskToken,l,void 0,s,void 0,u)}(n);case 209:return function(r){4096&r.transformFlags&&(i|=32768);var n=o;o=void 0;var a=h(15232,66),s=c.createFunctionExpression(void 0,void 0,void 0,void 0,e.visitParameterList(r.parameters,S,t),void 0,W(r));e.setTextRange(s,r),e.setOriginalNode(s,r),e.setEmitFlags(s,8),32768&i&&Pe();return b(a,0,0),o=n,s}(n);case 208:return function(r){var n=262144&e.getEmitFlags(r)?h(16278,69):h(16286,65),a=o;o=void 0;var s=e.visitParameterList(r.parameters,S,t),u=W(r),l=16384&i?c.getLocalName(r):r.name;return b(n,49152,0),o=a,c.updateFunctionExpression(r,void 0,r.asteriskToken,l,void 0,s,void 0,u)}(n);case 249:return X(n);case 78:return N(n);case 250:return function(r){if(3&r.flags||131072&r.transformFlags){3&r.flags&&Fe();var n=e.flatMap(r.declarations,1&r.flags?G:X),i=c.createVariableDeclarationList(n);return e.setOriginalNode(i,r),e.setTextRange(i,r),e.setCommentRange(i,r),131072&r.transformFlags&&(e.isBindingPattern(r.declarations[0].name)||e.isBindingPattern(e.last(r.declarations).name))&&e.setSourceMapRange(i,function(t){for(var r=-1,n=-1,i=0,a=t;i0?(e.insertStatementAfterCustomPrologue(r,e.setEmitFlags(c.createVariableStatement(void 0,c.createVariableDeclarationList(e.flattenDestructuringBinding(n,S,t,0,c.getGeneratedNameForNode(n)))),1048576)),!0):!!a&&(e.insertStatementAfterCustomPrologue(r,e.setEmitFlags(c.createExpressionStatement(c.createAssignment(c.getGeneratedNameForNode(n),e.visitNode(a,S,e.isExpression))),1048576)),!0)}function L(t,r,n,i){i=e.visitNode(i,S,e.isExpression);var a=c.createIfStatement(c.createTypeCheck(c.cloneNode(n),"undefined"),e.setEmitFlags(e.setTextRange(c.createBlock([c.createExpressionStatement(e.setEmitFlags(e.setTextRange(c.createAssignment(e.setEmitFlags(e.setParent(e.setTextRange(c.cloneNode(n),n),n.parent),48),e.setEmitFlags(i,1584|e.getEmitFlags(i))),r),1536))]),r),1953));e.startOnNewLine(a),e.setTextRange(a,r),e.setEmitFlags(a,1050528),e.insertStatementAfterCustomPrologue(t,a)}function R(r,n,i){var a=[],o=e.lastOrUndefined(n.parameters);if(!function(e,t){return!(!e||!e.dotDotDotToken||t)}(o,i))return!1;var s=78===o.name.kind?e.setParent(e.setTextRange(c.cloneNode(o.name),o.name),o.name.parent):c.createTempVariable(void 0);e.setEmitFlags(s,48);var u=78===o.name.kind?c.cloneNode(o.name):s,l=n.parameters.length-1,_=c.createLoopVariable();a.push(e.setEmitFlags(e.setTextRange(c.createVariableStatement(void 0,c.createVariableDeclarationList([c.createVariableDeclaration(s,void 0,void 0,c.createArrayLiteralExpression([]))])),o),1048576));var d=c.createForStatement(e.setTextRange(c.createVariableDeclarationList([c.createVariableDeclaration(_,void 0,void 0,c.createNumericLiteral(l))]),o),e.setTextRange(c.createLessThan(_,c.createPropertyAccessExpression(c.createIdentifier("arguments"),"length")),o),e.setTextRange(c.createPostfixIncrement(_),o),c.createBlock([e.startOnNewLine(e.setTextRange(c.createExpressionStatement(c.createAssignment(c.createElementAccessExpression(u,0===l?_:c.createSubtract(_,c.createNumericLiteral(l))),c.createElementAccessExpression(c.createIdentifier("arguments"),_))),o))]));return e.setEmitFlags(d,1048576),e.startOnNewLine(d),a.push(d),78!==o.name.kind&&a.push(e.setEmitFlags(e.setTextRange(c.createVariableStatement(void 0,c.createVariableDeclarationList(e.flattenDestructuringBinding(o,S,t,0,u))),o),1048576)),e.insertStatementsAfterCustomPrologue(r,a),!0}function B(e,t){return!!(32768&i&&209!==t.kind)&&(j(e,t,c.createThis()),!0)}function j(t,r,n){Pe();var i=c.createVariableStatement(void 0,c.createVariableDeclarationList([c.createVariableDeclaration(c.createUniqueName("_this",48),void 0,void 0,n)]));e.setEmitFlags(i,1050112),e.setSourceMapRange(i,r),e.insertStatementAfterCustomPrologue(t,i)}function J(t,r,n){if(16384&i){var a=void 0;switch(r.kind){case 209:return t;case 165:case 167:case 168:a=c.createVoidZero();break;case 166:a=c.createPropertyAccessExpression(e.setEmitFlags(c.createThis(),4),"constructor");break;case 251:case 208:a=c.createConditionalExpression(c.createLogicalAnd(e.setEmitFlags(c.createThis(),4),c.createBinaryExpression(e.setEmitFlags(c.createThis(),4),101,c.getLocalName(r))),void 0,c.createPropertyAccessExpression(e.setEmitFlags(c.createThis(),4),"constructor"),void 0,c.createVoidZero());break;default:return e.Debug.failBadSyntaxKind(r)}var o=c.createVariableStatement(void 0,c.createVariableDeclarationList([c.createVariableDeclaration(c.createUniqueName("_newTarget",48),void 0,void 0,a)]));e.setEmitFlags(o,1050112),n&&(t=t.slice()),e.insertStatementAfterCustomPrologue(t,o)}return t}function z(t){return e.setTextRange(c.createEmptyStatement(),t)}function U(r,n,i){var a,o=e.getCommentRange(n),s=e.getSourceMapRange(n),u=q(n,n,void 0,i),l=e.visitNode(n.name,S,e.isPropertyName);if(!e.isPrivateIdentifier(l)&&t.getCompilerOptions().useDefineForClassFields){var _=e.isComputedPropertyName(l)?l.expression:e.isIdentifier(l)?c.createStringLiteral(e.unescapeLeadingUnderscores(l.escapedText)):l;a=c.createObjectDefinePropertyCall(r,_,c.createPropertyDescriptor({value:u,enumerable:!1,writable:!0,configurable:!0}))}else{var d=e.createMemberAccessForPropertyName(c,r,l,n.name);a=c.createAssignment(d,u)}e.setEmitFlags(u,1536),e.setSourceMapRange(u,s);var p=e.setTextRange(c.createExpressionStatement(a),n);return e.setOriginalNode(p,n),e.setCommentRange(p,o),e.setEmitFlags(p,48),p}function V(t,r,n){var i=c.createExpressionStatement(K(t,r,n,!1));return e.setEmitFlags(i,1536),e.setSourceMapRange(i,e.getSourceMapRange(r.firstAccessor)),i}function K(t,r,n,i){var a=r.firstAccessor,o=r.getAccessor,s=r.setAccessor,u=e.setParent(e.setTextRange(c.cloneNode(t),t),t.parent);e.setEmitFlags(u,1568),e.setSourceMapRange(u,a.name);var l=e.visitNode(a.name,S,e.isPropertyName);if(e.isPrivateIdentifier(l))return e.Debug.failBadSyntaxKind(l,"Encountered unhandled private identifier while transforming ES2015.");var _=e.createExpressionForPropertyName(c,l);e.setEmitFlags(_,1552),e.setSourceMapRange(_,a.name);var d=[];if(o){var p=q(o,void 0,void 0,n);e.setSourceMapRange(p,e.getSourceMapRange(o)),e.setEmitFlags(p,512);var f=c.createPropertyAssignment("get",p);e.setCommentRange(f,e.getCommentRange(o)),d.push(f)}if(s){var g=q(s,void 0,void 0,n);e.setSourceMapRange(g,e.getSourceMapRange(s)),e.setEmitFlags(g,512);var m=c.createPropertyAssignment("set",g);e.setCommentRange(m,e.getCommentRange(s)),d.push(m)}d.push(c.createPropertyAssignment("enumerable",o||s?c.createFalse():c.createTrue()),c.createPropertyAssignment("configurable",c.createTrue()));var y=c.createCallExpression(c.createPropertyAccessExpression(c.createIdentifier("Object"),"defineProperty"),void 0,[u,_,c.createObjectLiteralExpression(d,!0)]);return i&&e.startOnNewLine(y),y}function q(r,n,a,s){var u=o;o=void 0;var l=s&&e.isClassLike(s)&&!e.hasSyntacticModifier(r,32)?h(16286,73):h(16286,65),_=e.visitParameterList(r.parameters,S,t),d=W(r);return 16384&i&&!a&&(251===r.kind||208===r.kind)&&(a=c.getGeneratedNameForNode(r)),b(l,49152,0),o=u,e.setOriginalNode(e.setTextRange(c.createFunctionExpression(void 0,r.asteriskToken,a,void 0,_,void 0,d),n),r)}function W(t){var n,i,a,o=!1,s=!1,u=[],l=[],p=t.body;if(_(),e.isBlock(p)&&(a=c.copyStandardPrologue(p.statements,u,!1),a=c.copyCustomPrologue(p.statements,l,a,S,e.isHoistedFunction),a=c.copyCustomPrologue(p.statements,l,a,S,e.isHoistedVariableStatement)),o=O(l,t)||o,o=R(l,t,!1)||o,e.isBlock(p))a=c.copyCustomPrologue(p.statements,l,a,S),n=p.statements,e.addRange(l,e.visitNodes(p.statements,S,e.isStatement,a)),!o&&p.multiLine&&(o=!0);else{e.Debug.assert(209===t.kind),n=e.moveRangeEnd(p,-1);var f=t.equalsGreaterThanToken;e.nodeIsSynthesized(f)||e.nodeIsSynthesized(p)||(e.rangeEndIsOnSameLineAsRangeStart(f,p,r)?s=!0:o=!0);var g=e.visitNode(p,S,e.isExpression),m=c.createReturnStatement(g);e.setTextRange(m,p),e.moveSyntheticComments(m,p),e.setEmitFlags(m,1440),l.push(m),i=p}if(c.mergeLexicalEnvironment(u,d()),J(u,t,!1),B(u,t),e.some(u)&&(o=!0),l.unshift.apply(l,u),e.isBlock(p)&&e.arrayIsEqualTo(l,p.statements))return p;var y=c.createBlock(e.setTextRange(c.createNodeArray(l),n),o);return e.setTextRange(y,t.body),!o&&s&&e.setEmitFlags(y,1),i&&e.setTokenSourceMapRange(y,19,i),e.setOriginalNode(y,t.body),y}function H(r,n){return e.isDestructuringAssignment(r)?e.flattenDestructuringAssignment(r,S,t,0,!n):27===r.operatorToken.kind?c.updateBinaryExpression(r,e.visitNode(r.left,T,e.isExpression),r.operatorToken,e.visitNode(r.right,n?T:S,e.isExpression)):e.visitEachChild(r,S,t)}function G(r){var n=r.name;return e.isBindingPattern(n)?X(r):!r.initializer&&function(e){var t=g.getNodeCheckFlags(e),r=262144&t,n=524288&t;return!(0!=(64&i)||r&&n&&0!=(512&i))&&0==(4096&i)&&(!g.isDeclarationWithCollidingName(e)||n&&!r&&0==(6144&i))}(r)?c.updateVariableDeclaration(r,r.name,void 0,void 0,c.createVoidZero()):e.visitEachChild(r,S,t)}function X(r){var n,i=h(32,0);return n=e.isBindingPattern(r.name)?e.flattenDestructuringBinding(r,S,t,0,void 0,0!=(32&i)):e.visitEachChild(r,S,t),b(i,0,0),n}function Q(t){o.labels.set(e.idText(t.label),!0)}function Y(t){o.labels.set(e.idText(t.label),!1)}function Z(r,n,a,s,u){var _=h(r,n),p=function(r,n,a,s){if(!le(r)){var u=void 0;o&&(u=o.allowedNonLabeledJumps,o.allowedNonLabeledJumps=6);var _=s?s(r,n,void 0,a):c.restoreEnclosingLabel(e.isForStatement(r)?function(t){return c.updateForStatement(t,e.visitNode(t.initializer,T,e.isForInitializer),e.visitNode(t.condition,S,e.isExpression),e.visitNode(t.incrementor,T,e.isExpression),e.visitNode(t.statement,S,e.isStatement,c.liftToBlock))}(r):e.visitEachChild(r,S,t),n,o&&Y);return o&&(o.allowedNonLabeledJumps=u),_}var p=function(t){var r;switch(t.kind){case 237:case 238:case 239:var n=t.initializer;n&&250===n.kind&&(r=n)}var i=[],a=[];if(r&&3&e.getCombinedNodeFlags(r))for(var s=ce(t),c=0,u=r.declarations;c=80&&r<=115)return e.setTextRange(i.createStringLiteralFromNode(t),t)}}}(ts||(ts={})),function(e){var t,r,n,i,a;!function(e){e[e.Nop=0]="Nop",e[e.Statement=1]="Statement",e[e.Assign=2]="Assign",e[e.Break=3]="Break",e[e.BreakWhenTrue=4]="BreakWhenTrue",e[e.BreakWhenFalse=5]="BreakWhenFalse",e[e.Yield=6]="Yield",e[e.YieldStar=7]="YieldStar",e[e.Return=8]="Return",e[e.Throw=9]="Throw",e[e.Endfinally=10]="Endfinally"}(t||(t={})),function(e){e[e.Open=0]="Open",e[e.Close=1]="Close"}(r||(r={})),function(e){e[e.Exception=0]="Exception",e[e.With=1]="With",e[e.Switch=2]="Switch",e[e.Loop=3]="Loop",e[e.Labeled=4]="Labeled"}(n||(n={})),function(e){e[e.Try=0]="Try",e[e.Catch=1]="Catch",e[e.Finally=2]="Finally",e[e.Done=3]="Done"}(i||(i={})),function(e){e[e.Next=0]="Next",e[e.Throw=1]="Throw",e[e.Return=2]="Return",e[e.Break=3]="Break",e[e.Yield=4]="Yield",e[e.YieldStar=5]="YieldStar",e[e.Catch=6]="Catch",e[e.Endfinally=7]="Endfinally"}(a||(a={})),e.transformGenerators=function(t){var r,n,i,a,o,s,c,u,l,_,d=t.factory,p=t.getEmitHelperFactory,f=t.resumeLexicalEnvironment,g=t.endLexicalEnvironment,m=t.hoistFunctionDeclaration,y=t.hoistVariableDeclaration,v=t.getCompilerOptions(),h=e.getEmitScriptTarget(v),b=t.getEmitResolver(),x=t.onSubstituteNode;t.onSubstituteNode=function(t,i){if(i=x(t,i),1===t)return function(t){if(e.isIdentifier(t))return function(t){if(!e.isGeneratedIdentifier(t)&&r&&r.has(e.idText(t))){var i=e.getOriginalNode(t);if(e.isIdentifier(i)&&i.parent){var a=b.getReferencedValueDeclaration(i);if(a){var o=n[e.getOriginalNodeId(a)];if(o){var s=e.setParent(e.setTextRange(d.cloneNode(o),o),o.parent);return e.setSourceMapRange(s,t),e.setCommentRange(s,t),s}}}}return t}(t);return t}(i);return i};var D,S,T,C,E,k,N,A,F,P,w,I,O=1,M=0,L=0;return e.chainBundle(t,(function(r){if(r.isDeclarationFile||0==(512&r.transformFlags))return r;var n=e.visitEachChild(r,R,t);return e.addEmitHelpers(n,t.readEmitHelpers()),n}));function R(r){var n=r.transformFlags;return a?function(r){switch(r.kind){case 235:case 236:return function(r){return a?(ae(),r=e.visitEachChild(r,R,t),se(),r):e.visitEachChild(r,R,t)}(r);case 244:return function(r){a&&te({kind:2,isScript:!0,breakLabel:-1});r=e.visitEachChild(r,R,t),a&&ce();return r}(r);case 245:return function(r){a&&te({kind:4,isScript:!0,labelText:e.idText(r.label),breakLabel:-1});r=e.visitEachChild(r,R,t),a&&ue();return r}(r);default:return B(r)}}(r):i?B(r):e.isFunctionLikeDeclaration(r)&&r.asteriskToken?function(t){switch(t.kind){case 251:return j(t);case 208:return J(t);default:return e.Debug.failBadSyntaxKind(t)}}(r):512&n?e.visitEachChild(r,R,t):r}function B(r){switch(r.kind){case 251:return j(r);case 208:return J(r);case 167:case 168:return function(r){var n=i,o=a;return i=!1,a=!1,r=e.visitEachChild(r,R,t),i=n,a=o,r}(r);case 232:return function(t){if(262144&t.transformFlags)return void H(t.declarationList);if(1048576&e.getEmitFlags(t))return t;for(var r=0,n=t.declarationList.declarations;r0?d.inlineExpressions(e.map(c,G)):void 0,e.visitNode(r.condition,R,e.isExpression),e.visitNode(r.incrementor,R,e.isExpression),e.visitNode(r.statement,R,e.isStatement,d.liftToBlock))}else r=e.visitEachChild(r,R,t);a&&se();return r}(r);case 238:return function(r){a&&ae();var n=r.initializer;if(e.isVariableDeclarationList(n)){for(var i=0,o=n.declarations;i0)return ve(n,r)}return e.visitEachChild(r,R,t)}(r);case 240:return function(r){if(a){var n=ge(r.label&&e.idText(r.label));if(n>0)return ve(n,r)}return e.visitEachChild(r,R,t)}(r);case 242:return function(t){return r=e.visitNode(t.expression,R,e.isExpression),n=t,e.setTextRange(d.createReturnStatement(d.createArrayLiteralExpression(r?[ye(2),r]:[ye(2)])),n);var r,n}(r);default:return 262144&r.transformFlags?function(r){switch(r.kind){case 216:return function(r){var n=e.getExpressionAssociativity(r);switch(n){case 0:return function(r){if(X(r.right))return e.isLogicalOperator(r.operatorToken.kind)?function(t){var r=$(),n=Z();xe(n,e.visitNode(t.left,R,e.isExpression),t.left),55===t.operatorToken.kind?Te(r,n,t.left):Se(r,n,t.left);return xe(n,e.visitNode(t.right,R,e.isExpression),t.right),ee(r),n}(r):27===r.operatorToken.kind?U(r):d.updateBinaryExpression(r,Y(e.visitNode(r.left,R,e.isExpression)),r.operatorToken,e.visitNode(r.right,R,e.isExpression));return e.visitEachChild(r,R,t)}(r);case 1:return function(r){var n=r.left,i=r.right;if(X(i)){var a=void 0;switch(n.kind){case 201:a=d.updatePropertyAccessExpression(n,Y(e.visitNode(n.expression,R,e.isLeftHandSideExpression)),n.name);break;case 202:a=d.updateElementAccessExpression(n,Y(e.visitNode(n.expression,R,e.isLeftHandSideExpression)),Y(e.visitNode(n.argumentExpression,R,e.isExpression)));break;default:a=e.visitNode(n,R,e.isExpression)}var o=r.operatorToken.kind;return e.isCompoundAssignment(o)?e.setTextRange(d.createAssignment(a,e.setTextRange(d.createBinaryExpression(Y(a),e.getNonAssignmentOperatorForCompoundAssignment(o),e.visitNode(i,R,e.isExpression)),r)),r):d.updateBinaryExpression(r,a,r.operatorToken,e.visitNode(i,R,e.isExpression))}return e.visitEachChild(r,R,t)}(r);default:return e.Debug.assertNever(n)}}(r);case 337:return function(t){for(var r=[],n=0,i=t.elements;n0&&(Ce(1,[d.createExpressionStatement(d.inlineExpressions(r))]),r=[]),r.push(e.visitNode(a,R,e.isExpression)))}return d.inlineExpressions(r)}(r);case 217:return function(r){if(X(r.whenTrue)||X(r.whenFalse)){var n=$(),i=$(),a=Z();return Te(n,e.visitNode(r.condition,R,e.isExpression),r.condition),xe(a,e.visitNode(r.whenTrue,R,e.isExpression),r.whenTrue),De(i),ee(n),xe(a,e.visitNode(r.whenFalse,R,e.isExpression),r.whenFalse),ee(i),a}return e.visitEachChild(r,R,t)}(r);case 219:return function(t){var r=$(),n=e.visitNode(t.expression,R,e.isExpression);if(t.asteriskToken){!function(e,t){Ce(7,[e],t)}(0==(8388608&e.getEmitFlags(t.expression))?e.setTextRange(p().createValuesHelper(n),t):n,t)}else!function(e,t){Ce(6,[e],t)}(n,t);return ee(r),function(t){return e.setTextRange(d.createCallExpression(d.createPropertyAccessExpression(C,"sent"),void 0,[]),t)}(t)}(r);case 199:return function(e){return V(e.elements,void 0,void 0,e.multiLine)}(r);case 200:return function(t){var r=t.properties,n=t.multiLine,i=Q(r),a=Z();xe(a,d.createObjectLiteralExpression(e.visitNodes(r,R,e.isObjectLiteralElementLike,0,i),n));var o=e.reduceLeft(r,s,[],i);return o.push(n?e.startOnNewLine(e.setParent(e.setTextRange(d.cloneNode(a),a),a.parent)):a),d.inlineExpressions(o);function s(r,i){X(i)&&r.length>0&&(be(d.createExpressionStatement(d.inlineExpressions(r))),r=[]);var o=e.createExpressionForObjectLiteralElementLike(d,t,i,a),s=e.visitNode(o,R,e.isExpression);return s&&(n&&e.startOnNewLine(s),r.push(s)),r}}(r);case 202:return function(r){if(X(r.argumentExpression))return d.updateElementAccessExpression(r,Y(e.visitNode(r.expression,R,e.isLeftHandSideExpression)),e.visitNode(r.argumentExpression,R,e.isExpression));return e.visitEachChild(r,R,t)}(r);case 203:return function(r){if(!e.isImportCall(r)&&e.forEach(r.arguments,X)){var n=d.createCallBinding(r.expression,y,h,!0),i=n.target,a=n.thisArg;return e.setOriginalNode(e.setTextRange(d.createFunctionApplyCall(Y(e.visitNode(i,R,e.isLeftHandSideExpression)),a,V(r.arguments)),r),r)}return e.visitEachChild(r,R,t)}(r);case 204:return function(r){if(e.forEach(r.arguments,X)){var n=d.createCallBinding(d.createPropertyAccessExpression(r.expression,"bind"),y),i=n.target,a=n.thisArg;return e.setOriginalNode(e.setTextRange(d.createNewExpression(d.createFunctionApplyCall(Y(e.visitNode(i,R,e.isExpression)),a,V(r.arguments,d.createVoidZero())),void 0,[]),r),r)}return e.visitEachChild(r,R,t)}(r);default:return e.visitEachChild(r,R,t)}}(r):1049088&r.transformFlags?e.visitEachChild(r,R,t):r}}function j(r){if(r.asteriskToken)r=e.setOriginalNode(e.setTextRange(d.createFunctionDeclaration(void 0,r.modifiers,void 0,r.name,void 0,e.visitParameterList(r.parameters,R,t),void 0,z(r.body)),r),r);else{var n=i,o=a;i=!1,a=!1,r=e.visitEachChild(r,R,t),i=n,a=o}return i?void m(r):r}function J(r){if(r.asteriskToken)r=e.setOriginalNode(e.setTextRange(d.createFunctionExpression(void 0,void 0,r.name,void 0,e.visitParameterList(r.parameters,R,t),void 0,z(r.body)),r),r);else{var n=i,o=a;i=!1,a=!1,r=e.visitEachChild(r,R,t),i=n,a=o}return r}function z(t){var r=[],n=i,p=a,m=o,y=s,v=c,h=u,b=l,x=_,E=O,k=D,N=S,A=T,F=C;i=!0,a=!1,o=void 0,s=void 0,c=void 0,u=void 0,l=void 0,_=void 0,O=1,D=void 0,S=void 0,T=void 0,C=d.createTempVariable(void 0),f();var P=d.copyPrologue(t.statements,r,!1,R);K(t.statements,P);var w=Ee();return e.insertStatementsAfterStandardPrologue(r,g()),r.push(d.createReturnStatement(w)),i=n,a=p,o=m,s=y,c=v,u=h,l=b,_=x,O=E,D=k,S=N,T=A,C=F,e.setTextRange(d.createBlock(r,t.multiLine),t)}function U(t){var r=[];return n(t.left),n(t.right),d.inlineExpressions(r);function n(t){e.isBinaryExpression(t)&&27===t.operatorToken.kind?(n(t.left),n(t.right)):(X(t)&&r.length>0&&(Ce(1,[d.createExpressionStatement(d.inlineExpressions(r))]),r=[]),r.push(e.visitNode(t,R,e.isExpression)))}}function V(t,r,n,i){var a,o=Q(t);if(o>0){a=Z();var s=e.visitNodes(t,R,e.isExpression,0,o);xe(a,d.createArrayLiteralExpression(r?__spreadArray([r],s):s)),r=void 0}var c=e.reduceLeft(t,(function(t,n){if(X(n)&&t.length>0){var o=void 0!==a;a||(a=Z()),xe(a,o?d.createArrayConcatCall(a,[d.createArrayLiteralExpression(t,i)]):d.createArrayLiteralExpression(r?__spreadArray([r],t):t,i)),r=void 0,t=[]}return t.push(e.visitNode(n,R,e.isExpression)),t}),[],o);return a?d.createArrayConcatCall(a,[d.createArrayLiteralExpression(c,i)]):e.setTextRange(d.createArrayLiteralExpression(r?__spreadArray([r],c):c,i),n)}function K(e,t){void 0===t&&(t=0);for(var r=e.length,n=t;n0?De(r,t):be(t)}(i);case 241:return function(t){var r=fe(t.label?e.idText(t.label):void 0);r>0?De(r,t):be(t)}(i);case 242:return function(t){r=e.visitNode(t.expression,R,e.isExpression),n=t,Ce(8,[r],n);var r,n}(i);case 243:return function(t){X(t)?(r=Y(e.visitNode(t.expression,R,e.isExpression)),n=$(),i=$(),ee(n),te({kind:1,expression:r,startLabel:n,endLabel:i}),q(t.statement),e.Debug.assert(1===ie()),ee(re().endLabel)):be(e.visitNode(t,R,e.isStatement));var r,n,i}(i);case 244:return function(t){if(X(t.caseBlock)){for(var r=t.caseBlock,n=r.clauses.length,i=(te({kind:2,isScript:!1,breakLabel:f=$()}),f),a=Y(e.visitNode(t.expression,R,e.isExpression)),o=[],s=-1,c=0;c0)break;_.push(d.createCaseClause(e.visitNode(u.expression,R,e.isExpression),[ve(o[c],u.expression)]))}else p++}_.length&&(be(d.createSwitchStatement(a,d.createCaseBlock(_))),l+=_.length,_=[]),p>0&&(l+=p,p=0)}De(s>=0?o[s]:i);for(c=0;c0)break;u.push(G(i))}u.length&&(be(d.createExpressionStatement(d.inlineExpressions(u))),c+=u.length,u=[])}}function G(t){return e.setSourceMapRange(d.createAssignment(e.setSourceMapRange(d.cloneNode(t.name),t.name),e.visitNode(t.initializer,R,e.isExpression)),t)}function X(e){return!!e&&0!=(262144&e.transformFlags)}function Q(e){for(var t=e.length,r=0;r=0;r--){var n=u[r];if(!_e(n))break;if(n.labelText===e)return!0}return!1}function fe(e){if(u)if(e)for(var t=u.length-1;t>=0;t--){if(_e(r=u[t])&&r.labelText===e)return r.breakLabel;if(le(r)&&pe(e,t-1))return r.breakLabel}else for(t=u.length-1;t>=0;t--){var r;if(le(r=u[t]))return r.breakLabel}return 0}function ge(e){if(u)if(e)for(var t=u.length-1;t>=0;t--){if(de(r=u[t])&&pe(e,t-1))return r.continueLabel}else for(t=u.length-1;t>=0;t--){var r;if(de(r=u[t]))return r.continueLabel}return 0}function me(e){if(void 0!==e&&e>0){void 0===_&&(_=[]);var t=d.createNumericLiteral(-1);return void 0===_[e]?_[e]=[t]:_[e].push(t),t}return d.createOmittedExpression()}function ye(t){var r=d.createNumericLiteral(t);return e.addSyntheticTrailingComment(r,3,function(e){switch(e){case 2:return"return";case 3:return"break";case 4:return"yield";case 5:return"yield*";case 7:return"endfinally";default:return}}(t)),r}function ve(t,r){return e.Debug.assertLessThan(0,t,"Invalid label"),e.setTextRange(d.createReturnStatement(d.createArrayLiteralExpression([ye(3),me(t)])),r)}function he(){Ce(0)}function be(e){e?Ce(1,[e]):he()}function xe(e,t,r){Ce(2,[e,t],r)}function De(e,t){Ce(3,[e],t)}function Se(e,t,r){Ce(4,[e,t],r)}function Te(e,t,r){Ce(5,[e,t],r)}function Ce(e,t,r){void 0===D&&(D=[],S=[],T=[]),void 0===l&&ee($());var n=D.length;D[n]=e,S[n]=t,T[n]=r}function Ee(){M=0,L=0,E=void 0,k=!1,N=!1,A=void 0,F=void 0,P=void 0,w=void 0,I=void 0;var t=function(){if(D){for(var t=0;t0)),524288))}function ke(e){(function(e){if(!N)return!0;if(!l||!_)return!1;for(var t=0;t=0;t--){var r=I[t];F=[d.createWithStatement(r.expression,d.createBlock(F))]}if(w){var n=w.startLabel,i=w.catchLabel,a=w.finallyLabel,o=w.endLabel;F.unshift(d.createExpressionStatement(d.createCallExpression(d.createPropertyAccessExpression(d.createPropertyAccessExpression(C,"trys"),"push"),void 0,[d.createArrayLiteralExpression([me(n),me(i),me(a),me(o)])]))),w=void 0}e&&F.push(d.createExpressionStatement(d.createAssignment(d.createPropertyAccessExpression(C,"label"),d.createNumericLiteral(L+1))))}A.push(d.createCaseClause(d.createNumericLiteral(L),F||[])),F=void 0}function Ae(e){if(l)for(var t=0;t=2?2:0)),t),t))}else i&&e.isDefaultImport(t)&&(r=e.append(r,n.createVariableStatement(void 0,n.createVariableDeclarationList([e.setOriginalNode(e.setTextRange(n.createVariableDeclaration(n.cloneNode(i.name),void 0,void 0,n.getGeneratedNameForNode(t)),t),t)],_>=2?2:0))));if(B(t)){var o=e.getOriginalNodeId(t);b[o]=j(b[o],t)}else r=j(r,t);return e.singleOrMany(r)}(t);case 260:return function(t){var r;e.Debug.assert(e.isExternalModuleImportEqualsDeclaration(t),"import= for internal module references should be handled in an earlier transformer."),d!==e.ModuleKind.AMD?r=e.hasSyntacticModifier(t,1)?e.append(r,e.setOriginalNode(e.setTextRange(n.createExpressionStatement(H(t.name,M(t))),t),t)):e.append(r,e.setOriginalNode(e.setTextRange(n.createVariableStatement(void 0,n.createVariableDeclarationList([n.createVariableDeclaration(n.cloneNode(t.name),void 0,void 0,M(t))],_>=2?2:0)),t),t)):e.hasSyntacticModifier(t,1)&&(r=e.append(r,e.setOriginalNode(e.setTextRange(n.createExpressionStatement(H(n.getExportName(t),n.getLocalName(t))),t),t)));if(B(t)){var i=e.getOriginalNodeId(t);b[i]=J(b[i],t)}else r=J(r,t);return e.singleOrMany(r)}(t);case 267:return function(t){if(!t.moduleSpecifier)return;var r=n.getGeneratedNameForNode(t);if(t.exportClause&&e.isNamedExports(t.exportClause)){var a=[];d!==e.ModuleKind.AMD&&a.push(e.setOriginalNode(e.setTextRange(n.createVariableStatement(void 0,n.createVariableDeclarationList([n.createVariableDeclaration(r,void 0,void 0,M(t))])),t),t));for(var o=0,s=t.exportClause.elements;o(e.isExportName(t)?1:0);return!1}function w(t,r){var a,o=n.createUniqueName("resolve"),s=n.createUniqueName("reject"),u=[n.createParameterDeclaration(void 0,void 0,void 0,o),n.createParameterDeclaration(void 0,void 0,void 0,s)],l=n.createBlock([n.createExpressionStatement(n.createCallExpression(n.createIdentifier("require"),void 0,[n.createArrayLiteralExpression([t||n.createOmittedExpression()]),o,s]))]);_>=2?a=n.createArrowFunction(void 0,void 0,u,void 0,void 0,l):(a=n.createFunctionExpression(void 0,void 0,void 0,void 0,u,void 0,l),r&&e.setEmitFlags(a,8));var d=n.createNewExpression(n.createIdentifier("Promise"),void 0,[a]);return c.esModuleInterop?n.createCallExpression(n.createPropertyAccessExpression(d,n.createIdentifier("then")),void 0,[i().createImportStarCallbackHelper()]):d}function I(t,r){var a,o=n.createCallExpression(n.createPropertyAccessExpression(n.createIdentifier("Promise"),"resolve"),void 0,[]),s=n.createCallExpression(n.createIdentifier("require"),void 0,t?[t]:[]);return c.esModuleInterop&&(s=i().createImportStarHelper(s)),_>=2?a=n.createArrowFunction(void 0,void 0,[],void 0,void 0,s):(a=n.createFunctionExpression(void 0,void 0,void 0,void 0,[],void 0,n.createBlock([n.createReturnStatement(s)])),r&&e.setEmitFlags(a,8)),n.createCallExpression(n.createPropertyAccessExpression(o,"then"),void 0,[a])}function O(t,r){return!c.esModuleInterop||67108864&e.getEmitFlags(t)?r:e.getImportNeedsImportStarHelper(t)?i().createImportStarHelper(r):e.getImportNeedsImportDefaultHelper(t)?i().createImportDefaultHelper(r):r}function M(t){var r=e.getExternalModuleNameLiteral(n,t,g,l,u,c),i=[];return r&&i.push(r),n.createCallExpression(n.createIdentifier("require"),void 0,i)}function L(t,r,i){var a=Q(t);if(a){for(var o=e.isExportName(t)?r:n.createAssignment(t,r),s=0,c=a;se.ModuleKind.ES2015)return t;if(!t.exportClause||!e.isNamespaceExport(t.exportClause)||!t.moduleSpecifier)return t;var r=t.exportClause.name,i=n.getGeneratedNameForNode(r),o=n.createImportDeclaration(void 0,void 0,n.createImportClause(!1,void 0,n.createNamespaceImport(i)),t.moduleSpecifier);e.setOriginalNode(o,t.exportClause);var s=e.isExportNamespaceAsDefaultDeclaration(t)?n.createExportDefault(i):n.createExportDeclaration(void 0,void 0,!1,n.createNamedExports([n.createExportSpecifier(i,r)]));return e.setOriginalNode(s,t),[o,s]}(t)}return t}}}(ts||(ts={})),function(e){function t(t){return e.isVariableDeclaration(t)||e.isPropertyDeclaration(t)||e.isPropertySignature(t)||e.isPropertyAccessExpression(t)||e.isBindingElement(t)||e.isConstructorDeclaration(t)?r:e.isSetAccessor(t)||e.isGetAccessor(t)?function(r){var n;n=168===t.kind?e.hasSyntacticModifier(t,32)?r.errorModuleName?e.Diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_type_of_public_static_setter_0_from_exported_class_has_or_is_using_private_name_1:r.errorModuleName?e.Diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_type_of_public_setter_0_from_exported_class_has_or_is_using_private_name_1:e.hasSyntacticModifier(t,32)?r.errorModuleName?2===r.accessibility?e.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Return_type_of_public_static_getter_0_from_exported_class_has_or_is_using_private_name_1:r.errorModuleName?2===r.accessibility?e.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Return_type_of_public_getter_0_from_exported_class_has_or_is_using_private_name_1;return{diagnosticMessage:n,errorNode:t.name,typeName:t.name}}:e.isConstructSignatureDeclaration(t)||e.isCallSignatureDeclaration(t)||e.isMethodDeclaration(t)||e.isMethodSignature(t)||e.isFunctionDeclaration(t)||e.isIndexSignatureDeclaration(t)?function(r){var n;switch(t.kind){case 170:n=r.errorModuleName?e.Diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_0;break;case 169:n=r.errorModuleName?e.Diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_call_signature_from_exported_interface_has_or_is_using_private_name_0;break;case 171:n=r.errorModuleName?e.Diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_index_signature_from_exported_interface_has_or_is_using_private_name_0;break;case 165:case 164:n=e.hasSyntacticModifier(t,32)?r.errorModuleName?2===r.accessibility?e.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:e.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_public_static_method_from_exported_class_has_or_is_using_private_name_0:252===t.parent.kind?r.errorModuleName?2===r.accessibility?e.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:e.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_public_method_from_exported_class_has_or_is_using_private_name_0:r.errorModuleName?e.Diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_method_from_exported_interface_has_or_is_using_private_name_0;break;case 251:n=r.errorModuleName?2===r.accessibility?e.Diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_external_module_1_but_cannot_be_named:e.Diagnostics.Return_type_of_exported_function_has_or_is_using_name_0_from_private_module_1:e.Diagnostics.Return_type_of_exported_function_has_or_is_using_private_name_0;break;default:return e.Debug.fail("This is unknown kind for signature: "+t.kind)}return{diagnosticMessage:n,errorNode:t.name||t}}:e.isParameter(t)?e.isParameterPropertyDeclaration(t,t.parent)&&e.hasSyntacticModifier(t.parent,8)?r:function(r){var n=function(r){switch(t.parent.kind){case 166:return r.errorModuleName?2===r.accessibility?e.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_constructor_from_exported_class_has_or_is_using_private_name_1;case 170:case 175:return r.errorModuleName?e.Diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1;case 169:return r.errorModuleName?e.Diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1;case 171:return r.errorModuleName?e.Diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_index_signature_from_exported_interface_has_or_is_using_private_name_1;case 165:case 164:return e.hasSyntacticModifier(t.parent,32)?r.errorModuleName?2===r.accessibility?e.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1:252===t.parent.parent.kind?r.errorModuleName?2===r.accessibility?e.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1:r.errorModuleName?e.Diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1;case 251:case 174:return r.errorModuleName?2===r.accessibility?e.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_exported_function_has_or_is_using_private_name_1;case 168:case 167:return r.errorModuleName?2===r.accessibility?e.Diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Parameter_0_of_accessor_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Parameter_0_of_accessor_has_or_is_using_private_name_1;default:return e.Debug.fail("Unknown parent for parameter: "+e.SyntaxKind[t.parent.kind])}}(r);return void 0!==n?{diagnosticMessage:n,errorNode:t,typeName:t.name}:void 0}:e.isTypeParameterDeclaration(t)?function(){var r;switch(t.parent.kind){case 252:r=e.Diagnostics.Type_parameter_0_of_exported_class_has_or_is_using_private_name_1;break;case 253:r=e.Diagnostics.Type_parameter_0_of_exported_interface_has_or_is_using_private_name_1;break;case 190:r=e.Diagnostics.Type_parameter_0_of_exported_mapped_object_type_is_using_private_name_1;break;case 175:case 170:r=e.Diagnostics.Type_parameter_0_of_constructor_signature_from_exported_interface_has_or_is_using_private_name_1;break;case 169:r=e.Diagnostics.Type_parameter_0_of_call_signature_from_exported_interface_has_or_is_using_private_name_1;break;case 165:case 164:r=e.hasSyntacticModifier(t.parent,32)?e.Diagnostics.Type_parameter_0_of_public_static_method_from_exported_class_has_or_is_using_private_name_1:252===t.parent.parent.kind?e.Diagnostics.Type_parameter_0_of_public_method_from_exported_class_has_or_is_using_private_name_1:e.Diagnostics.Type_parameter_0_of_method_from_exported_interface_has_or_is_using_private_name_1;break;case 174:case 251:r=e.Diagnostics.Type_parameter_0_of_exported_function_has_or_is_using_private_name_1;break;case 254:r=e.Diagnostics.Type_parameter_0_of_exported_type_alias_has_or_is_using_private_name_1;break;default:return e.Debug.fail("This is unknown parent for type parameter: "+t.parent.kind)}return{diagnosticMessage:r,errorNode:t,typeName:t.name}}:e.isExpressionWithTypeArguments(t)?function(){var r;r=e.isClassDeclaration(t.parent.parent)?e.isHeritageClause(t.parent)&&116===t.parent.token?e.Diagnostics.Implements_clause_of_exported_class_0_has_or_is_using_private_name_1:t.parent.parent.name?e.Diagnostics.extends_clause_of_exported_class_0_has_or_is_using_private_name_1:e.Diagnostics.extends_clause_of_exported_class_has_or_is_using_private_name_0:e.Diagnostics.extends_clause_of_exported_interface_0_has_or_is_using_private_name_1;return{diagnosticMessage:r,errorNode:t,typeName:e.getNameOfDeclaration(t.parent.parent)}}:e.isImportEqualsDeclaration(t)?function(){return{diagnosticMessage:e.Diagnostics.Import_declaration_0_is_using_private_name_1,errorNode:t,typeName:t.name}}:e.isTypeAliasDeclaration(t)||e.isJSDocTypeAlias(t)?function(r){return{diagnosticMessage:r.errorModuleName?e.Diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1_from_module_2:e.Diagnostics.Exported_type_alias_0_has_or_is_using_private_name_1,errorNode:e.isJSDocTypeAlias(t)?e.Debug.checkDefined(t.typeExpression):t.type,typeName:e.isJSDocTypeAlias(t)?e.getNameOfDeclaration(t):t.name}}:e.Debug.assertNever(t,"Attempted to set a declaration diagnostic context for unhandled node kind: "+e.SyntaxKind[t.kind]);function r(r){var n=function(r){return 249===t.kind||198===t.kind?r.errorModuleName?2===r.accessibility?e.Diagnostics.Exported_variable_0_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Exported_variable_0_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Exported_variable_0_has_or_is_using_private_name_1:163===t.kind||201===t.kind||162===t.kind||160===t.kind&&e.hasSyntacticModifier(t.parent,8)?e.hasSyntacticModifier(t,32)?r.errorModuleName?2===r.accessibility?e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_private_name_1:252===t.parent.kind||160===t.kind?r.errorModuleName?2===r.accessibility?e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_private_name_1:r.errorModuleName?e.Diagnostics.Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Property_0_of_exported_interface_has_or_is_using_private_name_1:void 0}(r);return void 0!==n?{diagnosticMessage:n,errorNode:t,typeName:t.name}:void 0}}e.canProduceDiagnostics=function(t){return e.isVariableDeclaration(t)||e.isPropertyDeclaration(t)||e.isPropertySignature(t)||e.isBindingElement(t)||e.isSetAccessor(t)||e.isGetAccessor(t)||e.isConstructSignatureDeclaration(t)||e.isCallSignatureDeclaration(t)||e.isMethodDeclaration(t)||e.isMethodSignature(t)||e.isFunctionDeclaration(t)||e.isParameter(t)||e.isTypeParameterDeclaration(t)||e.isExpressionWithTypeArguments(t)||e.isImportEqualsDeclaration(t)||e.isTypeAliasDeclaration(t)||e.isConstructorDeclaration(t)||e.isIndexSignatureDeclaration(t)||e.isPropertyAccessExpression(t)||e.isJSDocTypeAlias(t)},e.createGetSymbolAccessibilityDiagnosticForNodeName=function(r){return e.isSetAccessor(r)||e.isGetAccessor(r)?function(t){var n=function(t){return e.hasSyntacticModifier(r,32)?t.errorModuleName?2===t.accessibility?e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_static_property_0_of_exported_class_has_or_is_using_private_name_1:252===r.parent.kind?t.errorModuleName?2===t.accessibility?e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_property_0_of_exported_class_has_or_is_using_private_name_1:t.errorModuleName?e.Diagnostics.Property_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Property_0_of_exported_interface_has_or_is_using_private_name_1}(t);return void 0!==n?{diagnosticMessage:n,errorNode:r,typeName:r.name}:void 0}:e.isMethodSignature(r)||e.isMethodDeclaration(r)?function(t){var n=function(t){return e.hasSyntacticModifier(r,32)?t.errorModuleName?2===t.accessibility?e.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_static_method_0_of_exported_class_has_or_is_using_private_name_1:252===r.parent.kind?t.errorModuleName?2===t.accessibility?e.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_external_module_2_but_cannot_be_named:e.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Public_method_0_of_exported_class_has_or_is_using_private_name_1:t.errorModuleName?e.Diagnostics.Method_0_of_exported_interface_has_or_is_using_name_1_from_private_module_2:e.Diagnostics.Method_0_of_exported_interface_has_or_is_using_private_name_1}(t);return void 0!==n?{diagnosticMessage:n,errorNode:r,typeName:r.name}:void 0}:t(r)},e.createGetSymbolAccessibilityDiagnosticForNode=t}(ts||(ts={})),function(e){function t(t,r){var n=r.text.substring(t.pos,t.end);return e.stringContains(n,"@internal")}function r(r,n){var i=e.getParseTreeNode(r);if(i&&160===i.kind){var a=i.parent.parameters.indexOf(i),o=a>0?i.parent.parameters[a-1]:void 0,s=n.text,c=o?e.concatenate(e.getTrailingCommentRanges(s,e.skipTrivia(s,o.end+1,!1,!0)),e.getLeadingCommentRanges(s,r.pos)):e.getTrailingCommentRanges(s,e.skipTrivia(s,r.pos,!1,!0));return c&&c.length&&t(e.last(c),n)}var u=i&&e.getLeadingCommentRangesOfNode(i,n);return!!e.forEach(u,(function(e){return t(e,n)}))}e.getDeclarationDiagnostics=function(t,r,n){var a=t.getCompilerOptions();return e.transformNodes(r,t,e.factory,a,n?[n]:e.filter(t.getSourceFiles(),e.isSourceFileNotJson),[i],!1).diagnostics},e.isInternalDeclaration=r;var n=531469;function i(t){var i,s,c,u,l,_,d,p,f,g,m,y,v=function(){return e.Debug.fail("Diagnostic emitted without context")},h=v,b=!0,x=!1,D=!1,S=!1,T=!1,C=t.factory,E=t.getEmitHost(),k={trackSymbol:function(e,t,r){if(262144&e.flags)return;I(N.isSymbolAccessible(e,t,r,!0)),w(N.getTypeReferenceDirectivesForSymbol(e,r))},reportInaccessibleThisError:function(){d&&t.addDiagnostic(e.createDiagnosticForNode(d,e.Diagnostics.The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary,e.declarationNameToString(d),"this"))},reportInaccessibleUniqueSymbolError:function(){d&&t.addDiagnostic(e.createDiagnosticForNode(d,e.Diagnostics.The_inferred_type_of_0_references_an_inaccessible_1_type_A_type_annotation_is_necessary,e.declarationNameToString(d),"unique symbol"))},reportCyclicStructureError:function(){d&&t.addDiagnostic(e.createDiagnosticForNode(d,e.Diagnostics.The_inferred_type_of_0_references_a_type_with_a_cyclic_structure_which_cannot_be_trivially_serialized_A_type_annotation_is_necessary,e.declarationNameToString(d)))},reportPrivateInBaseOfClassExpression:function(r){(d||p)&&t.addDiagnostic(e.createDiagnosticForNode(d||p,e.Diagnostics.Property_0_of_exported_class_expression_may_not_be_private_or_protected,r))},reportLikelyUnsafeImportRequiredError:function(r){d&&t.addDiagnostic(e.createDiagnosticForNode(d,e.Diagnostics.The_inferred_type_of_0_cannot_be_named_without_a_reference_to_1_This_is_likely_not_portable_A_type_annotation_is_necessary,e.declarationNameToString(d),r))},reportTruncationError:function(){(d||p)&&t.addDiagnostic(e.createDiagnosticForNode(d||p,e.Diagnostics.The_inferred_type_of_this_node_exceeds_the_maximum_length_the_compiler_will_serialize_An_explicit_type_annotation_is_needed))},moduleResolverHost:E,trackReferencedAmbientModule:function(t,r){var n=N.getTypeReferenceDirectivesForSymbol(r,67108863);if(e.length(n))return w(n);var i=e.getSourceFileOfNode(t);g.set(e.getOriginalNodeId(i),i)},trackExternalModuleSymbolOfImportTypeNode:function(e){x||(_||(_=[])).push(e)},reportNonlocalAugmentation:function(r,n,i){for(var a=e.find(n.declarations,(function(t){return e.getSourceFileOfNode(t)===r})),o=e.filter(i.declarations,(function(t){return e.getSourceFileOfNode(t)!==r})),s=0,c=o;s0?e.parameters[0].type:void 0}e.transformDeclarations=i}(ts||(ts={})),function(e){var t,r;function n(t,r,n){if(n)return e.emptyArray;var i=e.getEmitScriptTarget(t),a=e.getEmitModuleKind(t),s=[];return e.addRange(s,r&&e.map(r.before,o)),s.push(e.transformTypeScript),s.push(e.transformClassFields),e.getJSXTransformEnabled(t)&&s.push(e.transformJsx),i<99&&s.push(e.transformESNext),i<7&&s.push(e.transformES2020),i<6&&s.push(e.transformES2019),i<5&&s.push(e.transformES2018),i<4&&s.push(e.transformES2017),i<3&&s.push(e.transformES2016),i<2&&(s.push(e.transformES2015),s.push(e.transformGenerators)),s.push(function(t){switch(t){case e.ModuleKind.ESNext:case e.ModuleKind.ES2020:case e.ModuleKind.ES2015:return e.transformECMAScriptModule;case e.ModuleKind.System:return e.transformSystemModule;default:return e.transformModule}}(a)),i<1&&s.push(e.transformES5),e.addRange(s,r&&e.map(r.after,o)),s}function i(t){var r=[];return r.push(e.transformDeclarations),e.addRange(r,t&&e.map(t.afterDeclarations,s)),r}function a(t,r){return function(n){var i=t(n);return"function"==typeof i?r(n,i):function(t){return function(r){return e.isBundle(r)?t.transformBundle(r):t.transformSourceFile(r)}}(i)}}function o(t){return a(t,e.chainBundle)}function s(e){return a(e,(function(e,t){return t}))}function c(e,t){return t}function u(e,t,r){r(e,t)}!function(e){e[e.Uninitialized=0]="Uninitialized",e[e.Initialized=1]="Initialized",e[e.Completed=2]="Completed",e[e.Disposed=3]="Disposed"}(t||(t={})),function(e){e[e.Substitution=1]="Substitution",e[e.EmitNotifications=2]="EmitNotifications"}(r||(r={})),e.noTransformers={scriptTransformers:e.emptyArray,declarationTransformers:e.emptyArray},e.getTransformers=function(e,t,r){return{scriptTransformers:n(e,t,r),declarationTransformers:i(t)}},e.noEmitSubstitution=c,e.noEmitNotification=u,e.transformNodes=function(t,r,n,i,a,o,s){for(var l,_,d,p,f=new Array(341),g=0,m=[],y=[],v=[],h=[],b=0,x=!1,D=c,S=u,T=0,C=[],E={factory:n,getCompilerOptions:function(){return i},getEmitResolver:function(){return t},getEmitHost:function(){return r},getEmitHelperFactory:e.memoize((function(){return e.createEmitHelperFactory(E)})),startLexicalEnvironment:function(){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.Debug.assert(!x,"Lexical environment is suspended."),m[b]=l,y[b]=_,v[b]=d,h[b]=g,b++,l=void 0,_=void 0,d=void 0,g=0},suspendLexicalEnvironment:function(){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.Debug.assert(!x,"Lexical environment is already suspended."),x=!0},resumeLexicalEnvironment:function(){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.Debug.assert(x,"Lexical environment is not suspended."),x=!1},endLexicalEnvironment:function(){var t;if(e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.Debug.assert(!x,"Lexical environment is suspended."),l||_||d){if(_&&(t=__spreadArray([],_)),l){var r=n.createVariableStatement(void 0,n.createVariableDeclarationList(l));e.setEmitFlags(r,1048576),t?t.push(r):t=[r]}d&&(t=__spreadArray(t?__spreadArray([],t):[],d))}b--,l=m[b],_=y[b],d=v[b],g=h[b],0===b&&(m=[],y=[],v=[],h=[]);return t},setLexicalEnvironmentFlags:function(e,t){g=t?g|e:g&~e},getLexicalEnvironmentFlags:function(){return g},hoistVariableDeclaration:function(t){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed.");var r=e.setEmitFlags(n.createVariableDeclaration(t),64);l?l.push(r):l=[r];1&g&&(g|=2)},hoistFunctionDeclaration:function(t){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.setEmitFlags(t,1048576),_?_.push(t):_=[t]},addInitializationStatement:function(t){e.Debug.assert(T>0,"Cannot modify the lexical environment during initialization."),e.Debug.assert(T<2,"Cannot modify the lexical environment after transformation has completed."),e.setEmitFlags(t,1048576),d?d.push(t):d=[t]},requestEmitHelper:function t(r){if(e.Debug.assert(T>0,"Cannot modify the transformation context during initialization."),e.Debug.assert(T<2,"Cannot modify the transformation context after transformation has completed."),e.Debug.assert(!r.scoped,"Cannot request a scoped emit helper."),r.dependencies)for(var n=0,i=r.dependencies;n0,"Cannot modify the transformation context during initialization."),e.Debug.assert(T<2,"Cannot modify the transformation context after transformation has completed.");var t=p;return p=void 0,t},enableSubstitution:function(t){e.Debug.assert(T<2,"Cannot modify the transformation context after transformation has completed."),f[t]|=1},enableEmitNotification:function(t){e.Debug.assert(T<2,"Cannot modify the transformation context after transformation has completed."),f[t]|=2},isSubstitutionEnabled:L,isEmitNotificationEnabled:R,get onSubstituteNode(){return D},set onSubstituteNode(t){e.Debug.assert(T<1,"Cannot modify transformation hooks after initialization has completed."),e.Debug.assert(void 0!==t,"Value must not be 'undefined'"),D=t},get onEmitNode(){return S},set onEmitNode(t){e.Debug.assert(T<1,"Cannot modify transformation hooks after initialization has completed."),e.Debug.assert(void 0!==t,"Value must not be 'undefined'"),S=t},addDiagnostic:function(e){C.push(e)}},k=0,N=a;k"],e[8192]=["[","]"],e}(),i={pos:-1,end:-1};function a(t,r,n,i,a,s){void 0===i&&(i=!1);var u=e.isArray(n)?n:e.getSourceFilesToEmit(t,n,i),l=t.getCompilerOptions();if(e.outFile(l)){var _=t.getPrependNodes();if(u.length||_.length){var d=e.factory.createBundle(u,_);if(g=r(c(d,t,i),d))return g}}else{if(!a)for(var p=0,f=u;p"),It(),be(e.type),ir(e)}(r);case 308:return function(e){At("function"),bt(e,e.parameters),kt(":"),be(e.type)}(r);case 175:return function(e){nr(e),_t(e,e.modifiers),At("new"),It(),ht(e,e.typeParameters),bt(e,e.parameters),It(),kt("=>"),It(),be(e.type),ir(e)}(r);case 176:return function(e){At("typeof"),It(),be(e.exprName)}(r);case 177:return function(t){kt("{");var r=1&e.getEmitFlags(t)?768:32897;Dt(t,t.members,524288|r),kt("}")}(r);case 178:return function(e){be(e.elementType),kt("["),kt("]")}(r);case 179:return function(t){Je(22,t.pos,kt,t);var r=1&e.getEmitFlags(t)?528:657;Dt(t,t.elements,524288|r),Je(23,t.elements.end,kt,t)}(r);case 180:return function(e){be(e.type),kt("?")}(r);case 182:return function(e){Dt(e,e.types,516)}(r);case 183:return function(e){Dt(e,e.types,520)}(r);case 184:return function(e){be(e.checkType),It(),At("extends"),It(),be(e.extendsType),It(),kt("?"),It(),be(e.trueType),It(),kt(":"),It(),be(e.falseType)}(r);case 185:return function(e){At("infer"),It(),be(e.typeParameter)}(r);case 186:return function(e){kt("("),be(e.type),kt(")")}(r);case 223:return function(e){De(e.expression),vt(e,e.typeArguments)}(r);case 187:return void At("this");case 188:return function(e){Jt(e.operator,At),It(),be(e.type)}(r);case 189:return function(e){be(e.objectType),kt("["),be(e.indexType),kt("]")}(r);case 190:return function(t){var r=e.getEmitFlags(t);kt("{"),1&r?It():(Mt(),Lt());t.readonlyToken&&(be(t.readonlyToken),142!==t.readonlyToken.kind&&At("readonly"),It());kt("["),Te(3,t.typeParameter),t.nameType&&(It(),At("as"),It(),be(t.nameType));kt("]"),t.questionToken&&(be(t.questionToken),57!==t.questionToken.kind&&kt("?"));kt(":"),It(),be(t.type),Nt(),1&r?It():(Mt(),Rt());kt("}")}(r);case 191:return function(e){De(e.literal)}(r);case 193:return function(e){be(e.head),Dt(e,e.templateSpans,262144)}(r);case 195:return function(e){e.isTypeOf&&(At("typeof"),It());At("import"),kt("("),be(e.argument),kt(")"),e.qualifier&&(kt("."),be(e.qualifier));vt(e,e.typeArguments)}(r);case 303:return void kt("*");case 304:return void kt("?");case 305:return function(e){kt("?"),be(e.type)}(r);case 306:return function(e){kt("!"),be(e.type)}(r);case 307:return function(e){be(e.type),kt("=")}(r);case 181:case 309:return function(e){kt("..."),be(e.type)}(r);case 192:return function(e){be(e.dotDotDotToken),be(e.name),be(e.questionToken),Je(58,e.name.end,kt,e),It(),be(e.type)}(r);case 196:return function(e){kt("{"),Dt(e,e.elements,525136),kt("}")}(r);case 197:return function(e){kt("["),Dt(e,e.elements,524880),kt("]")}(r);case 198:return function(e){be(e.dotDotDotToken),e.propertyName&&(be(e.propertyName),kt(":"),It());be(e.name),pt(e.initializer,e.name.end,e)}(r);case 228:return function(e){De(e.expression),be(e.literal)}(r);case 229:return void Nt();case 230:return function(e){Le(e,!e.multiLine&&$t(e))}(r);case 232:return function(e){_t(e,e.modifiers),be(e.declarationList),Nt()}(r);case 231:return Re(!1);case 233:return function(t){De(t.expression),(!e.isJsonSourceFile(a)||e.nodeIsSynthesized(t.expression))&&Nt()}(r);case 234:return function(e){var t=Je(98,e.pos,At,e);It(),Je(20,t,kt,e),De(e.expression),Je(21,e.expression.end,kt,e),mt(e,e.thenStatement),e.elseStatement&&(zt(e,e.thenStatement,e.elseStatement),Je(90,e.thenStatement.end,At,e),234===e.elseStatement.kind?(It(),be(e.elseStatement)):mt(e,e.elseStatement))}(r);case 235:return function(t){Je(89,t.pos,At,t),mt(t,t.statement),e.isBlock(t.statement)&&!B?It():zt(t,t.statement,t.expression);Be(t,t.statement.end),Nt()}(r);case 236:return function(e){Be(e,e.pos),mt(e,e.statement)}(r);case 237:return function(e){var t=Je(96,e.pos,At,e);It();var r=Je(20,t,kt,e);je(e.initializer),r=Je(26,e.initializer?e.initializer.end:r,kt,e),gt(e.condition),r=Je(26,e.condition?e.condition.end:r,kt,e),gt(e.incrementor),Je(21,e.incrementor?e.incrementor.end:r,kt,e),mt(e,e.statement)}(r);case 238:return function(e){var t=Je(96,e.pos,At,e);It(),Je(20,t,kt,e),je(e.initializer),It(),Je(100,e.initializer.end,At,e),It(),De(e.expression),Je(21,e.expression.end,kt,e),mt(e,e.statement)}(r);case 239:return function(e){var t=Je(96,e.pos,At,e);It(),function(e){e&&(be(e),It())}(e.awaitModifier),Je(20,t,kt,e),je(e.initializer),It(),Je(156,e.initializer.end,At,e),It(),De(e.expression),Je(21,e.expression.end,kt,e),mt(e,e.statement)}(r);case 240:return function(e){Je(85,e.pos,At,e),ft(e.label),Nt()}(r);case 241:return function(e){Je(80,e.pos,At,e),ft(e.label),Nt()}(r);case 242:return function(e){Je(104,e.pos,At,e),gt(e.expression),Nt()}(r);case 243:return function(e){var t=Je(115,e.pos,At,e);It(),Je(20,t,kt,e),De(e.expression),Je(21,e.expression.end,kt,e),mt(e,e.statement)}(r);case 244:return function(e){var t=Je(106,e.pos,At,e);It(),Je(20,t,kt,e),De(e.expression),Je(21,e.expression.end,kt,e),It(),be(e.caseBlock)}(r);case 245:return function(e){be(e.label),Je(58,e.label.end,kt,e),It(),be(e.statement)}(r);case 246:return function(e){Je(108,e.pos,At,e),gt(e.expression),Nt()}(r);case 247:return function(e){Je(110,e.pos,At,e),It(),be(e.tryBlock),e.catchClause&&(zt(e,e.tryBlock,e.catchClause),be(e.catchClause));e.finallyBlock&&(zt(e,e.catchClause||e.tryBlock,e.finallyBlock),Je(95,(e.catchClause||e.tryBlock).end,At,e),It(),be(e.finallyBlock))}(r);case 248:return function(e){Bt(86,e.pos,At),Nt()}(r);case 249:return function(e){be(e.name),be(e.exclamationToken),dt(e.type),pt(e.initializer,e.type?e.type.end:e.name.end,e)}(r);case 250:return function(t){At(e.isLet(t)?"let":e.isVarConst(t)?"const":"var"),It(),Dt(t,t.declarations,528)}(r);case 251:return function(e){ze(e)}(r);case 252:return function(e){Ge(e)}(r);case 253:return function(e){yt(e,e.decorators),_t(e,e.modifiers),At("interface"),It(),be(e.name),ht(e,e.typeParameters),Dt(e,e.heritageClauses,512),It(),kt("{"),Dt(e,e.members,129),kt("}")}(r);case 254:return function(e){yt(e,e.decorators),_t(e,e.modifiers),At("type"),It(),be(e.name),ht(e,e.typeParameters),It(),kt("="),It(),be(e.type),Nt()}(r);case 255:return function(e){_t(e,e.modifiers),At("enum"),It(),be(e.name),It(),kt("{"),Dt(e,e.members,145),kt("}")}(r);case 256:return function(e){_t(e,e.modifiers),1024&~e.flags&&(At(16&e.flags?"namespace":"module"),It());be(e.name);var t=e.body;if(!t)return Nt();for(;256===t.kind;)kt("."),be(t.name),t=t.body;It(),be(t)}(r);case 257:return function(t){nr(t),e.forEach(t.statements,or),Le(t,$t(t)),ir(t)}(r);case 258:return function(e){Je(18,e.pos,kt,e),Dt(e,e.clauses,129),Je(19,e.clauses.end,kt,e,!0)}(r);case 259:return function(e){var t=Je(92,e.pos,At,e);It(),t=Je(126,t,At,e),It(),t=Je(140,t,At,e),It(),be(e.name),Nt()}(r);case 260:return function(e){_t(e,e.modifiers),Je(99,e.modifiers?e.modifiers.end:e.pos,At,e),It(),e.isTypeOnly&&(Je(149,e.pos,At,e),It());be(e.name),It(),Je(62,e.name.end,kt,e),It(),function(e){78===e.kind?De(e):be(e)}(e.moduleReference),Nt()}(r);case 261:return function(e){_t(e,e.modifiers),Je(99,e.modifiers?e.modifiers.end:e.pos,At,e),It(),e.importClause&&(be(e.importClause),It(),Je(153,e.importClause.end,At,e),It());De(e.moduleSpecifier),Nt()}(r);case 262:return function(e){e.isTypeOnly&&(Je(149,e.pos,At,e),It());be(e.name),e.name&&e.namedBindings&&(Je(27,e.name.end,kt,e),It());be(e.namedBindings)}(r);case 263:return function(e){var t=Je(41,e.pos,kt,e);It(),Je(126,t,At,e),It(),be(e.name)}(r);case 269:return function(e){var t=Je(41,e.pos,kt,e);It(),Je(126,t,At,e),It(),be(e.name)}(r);case 264:return function(e){Xe(e)}(r);case 265:return function(e){Qe(e)}(r);case 266:return function(e){var t=Je(92,e.pos,At,e);It(),e.isExportEquals?Je(62,t,Ft,e):Je(87,t,At,e);It(),De(e.expression),Nt()}(r);case 267:return function(e){var t=Je(92,e.pos,At,e);It(),e.isTypeOnly&&(t=Je(149,t,At,e),It());e.exportClause?be(e.exportClause):t=Je(41,t,kt,e);if(e.moduleSpecifier){It(),Je(153,e.exportClause?e.exportClause.end:t,At,e),It(),De(e.moduleSpecifier)}Nt()}(r);case 268:return function(e){Xe(e)}(r);case 270:return function(e){Qe(e)}(r);case 271:return;case 272:return function(e){At("require"),kt("("),De(e.expression),kt(")")}(r);case 11:return function(e){f.writeLiteral(e.text)}(r);case 275:case 278:return function(t){if(kt("<"),e.isJsxOpeningElement(t)){var r=Xt(t.tagName,t);Ye(t.tagName),vt(t,t.typeArguments),t.attributes.properties&&t.attributes.properties.length>0&&It(),be(t.attributes),Qt(t.attributes,t),Kt(r)}kt(">")}(r);case 276:case 279:return function(t){kt("")}(r);case 280:return function(e){be(e.name),function(e,t,r,n){r&&(t(e),n(r))}("=",kt,e.initializer,Se)}(r);case 281:return function(e){Dt(e,e.properties,262656)}(r);case 282:return function(e){kt("{..."),De(e.expression),kt("}")}(r);case 283:return function(t){var r;if(t.expression||!Z&&!e.nodeIsSynthesized(t)&&function(t){return function(t){var r=!1;return e.forEachTrailingCommentRange((null==a?void 0:a.text)||"",t+1,(function(){return r=!0})),r}(t)||function(t){var r=!1;return e.forEachLeadingCommentRange((null==a?void 0:a.text)||"",t+1,(function(){return r=!0})),r}(t)}(t.pos)){var n=a&&!e.nodeIsSynthesized(t)&&e.getLineAndCharacterOfPosition(a,t.pos).line!==e.getLineAndCharacterOfPosition(a,t.end).line;n&&f.increaseIndent();var i=Je(18,t.pos,kt,t);be(t.dotDotDotToken),De(t.expression),Je(19,(null===(r=t.expression)||void 0===r?void 0:r.end)||i,kt,t),n&&f.decreaseIndent()}}(r);case 284:return function(e){Je(81,e.pos,At,e),It(),De(e.expression),Ze(e,e.statements,e.expression.end)}(r);case 285:return function(e){var t=Je(87,e.pos,At,e);Ze(e,e.statements,t)}(r);case 286:return function(e){It(),Jt(e.token,At),It(),Dt(e,e.types,528)}(r);case 287:return function(e){var t=Je(82,e.pos,At,e);It(),e.variableDeclaration&&(Je(20,t,kt,e),be(e.variableDeclaration),Je(21,e.variableDeclaration.end,kt,e),It());be(e.block)}(r);case 288:return function(t){be(t.name),kt(":"),It();var r=t.initializer;if(0==(512&e.getEmitFlags(r))){Nr(e.getCommentRange(r).pos)}De(r)}(r);case 289:return function(e){be(e.name),e.objectAssignmentInitializer&&(It(),kt("="),It(),De(e.objectAssignmentInitializer))}(r);case 290:return function(e){e.expression&&(Je(25,e.pos,kt,e),De(e.expression))}(r);case 291:return function(e){be(e.name),pt(e.initializer,e.name.end,e)}(r);case 326:case 333:return function(e){tt(e.tagName),nt(e.typeExpression),It(),e.isBracketed&&kt("[");be(e.name),e.isBracketed&&kt("]");rt(e.comment)}(r);case 327:case 329:case 328:case 325:return tt((n=r).tagName),nt(n.typeExpression),void rt(n.comment);case 316:case 315:return function(e){tt(e.tagName),It(),kt("{"),be(e.class),kt("}"),rt(e.comment)}(r);case 330:return function(e){tt(e.tagName),nt(e.constraint),It(),Dt(e,e.typeParameters,528),rt(e.comment)}(r);case 331:return function(e){tt(e.tagName),e.typeExpression&&(301===e.typeExpression.kind?nt(e.typeExpression):(It(),kt("{"),j("Object"),e.typeExpression.isArrayType&&(kt("["),kt("]")),kt("}")));e.fullName&&(It(),be(e.fullName));rt(e.comment),e.typeExpression&&312===e.typeExpression.kind&&$e(e.typeExpression)}(r);case 324:return function(e){tt(e.tagName),e.name&&(It(),be(e.name));rt(e.comment),et(e.typeExpression)}(r);case 313:return et(r);case 312:return $e(r);case 319:case 314:return function(e){tt(e.tagName),rt(e.comment)}(r);case 332:return function(e){tt(e.tagName),be(e.name),rt(e.comment)}(r);case 302:return function(e){It(),kt("{"),be(e.name),kt("}")}(r);case 311:return function(e){if(j("/**"),e.comment)for(var t=0,r=e.comment.split(/\r\n?|\n/g);t=1&&!e.isJsonSourceFile(a)?64:0;Dt(t,t.properties,526226|i|n),r&&Rt()}(r);case 201:return function(t){var r=e.cast(De(t.expression),e.isExpression),n=t.questionDotToken||e.setTextRangePosEnd(e.factory.createToken(24),t.expression.end,t.name.pos),i=Zt(t,t.expression,n),a=Zt(t,n,t.name);Vt(i,!1),28===n.kind||!function(t){if(t=e.skipPartiallyEmittedExpressions(t),e.isNumericLiteral(t)){var r=rr(t,!0,!1);return!t.numericLiteralFlags&&!e.stringContains(r,e.tokenToString(24))}if(e.isAccessExpression(t)){var n=e.getConstantValue(t);return"number"==typeof n&&isFinite(n)&&Math.floor(n)===n}}(r)||f.hasTrailingComment()||f.hasTrailingWhitespace()||kt(".");t.questionDotToken?be(n):Je(n.kind,t.expression.end,kt,t);Vt(a,!1),be(t.name),Kt(i,a)}(r);case 202:return function(e){De(e.expression),be(e.questionDotToken),Je(22,e.expression.end,kt,e),De(e.argumentExpression),Je(23,e.argumentExpression.end,kt,e)}(r);case 203:return function(e){De(e.expression),be(e.questionDotToken),vt(e,e.typeArguments),St(e,e.arguments,2576)}(r);case 204:return function(e){Je(102,e.pos,At,e),It(),De(e.expression),vt(e,e.typeArguments),St(e,e.arguments,18960)}(r);case 205:return function(e){De(e.tag),vt(e,e.typeArguments),It(),De(e.template)}(r);case 206:return function(e){kt("<"),be(e.type),kt(">"),De(e.expression)}(r);case 207:return function(e){var t=Je(20,e.pos,kt,e),r=Xt(e.expression,e);De(e.expression),Qt(e.expression,e),Kt(r),Je(21,e.expression?e.expression.end:t,kt,e)}(r);case 208:return function(e){cr(e.name),ze(e)}(r);case 209:return function(e){yt(e,e.decorators),_t(e,e.modifiers),Ve(e,Me)}(r);case 210:return function(e){Je(88,e.pos,At,e),It(),De(e.expression)}(r);case 211:return function(e){Je(111,e.pos,At,e),It(),De(e.expression)}(r);case 212:return function(e){Je(113,e.pos,At,e),It(),De(e.expression)}(r);case 213:return function(e){Je(130,e.pos,At,e),It(),De(e.expression)}(r);case 214:return function(e){Jt(e.operator,Ft),function(e){var t=e.operand;return 214===t.kind&&(39===e.operator&&(39===t.operator||45===t.operator)||40===e.operator&&(40===t.operator||46===t.operator))}(e)&&It();De(e.operand)}(r);case 215:return function(e){De(e.operand),Jt(e.operator,Ft)}(r);case 216:return function(t){var r=[t],n=[0],i=0;for(;i>=0;)switch(t=r[i],n[i]){case 0:c(t.left);break;case 1:var a=27!==t.operatorToken.kind,o=Zt(t,t.left,t.operatorToken),s=Zt(t,t.operatorToken,t.right);Vt(o,a),Er(t.operatorToken.pos),jt(t.operatorToken,100===t.operatorToken.kind?At:Ft),Nr(t.operatorToken.end,!0),Vt(s,!0),c(t.right);break;case 2:Kt(o=Zt(t,t.left,t.operatorToken),s=Zt(t,t.operatorToken,t.right)),i--;break;default:return e.Debug.fail("Invalid state "+n[i]+" for emitBinaryExpressionWorker")}function c(t){n[i]++;var a=D,o=S;D=t,S=void 0;var s=Ce(0,1,t);s===Ne&&e.isBinaryExpression(t)?(i++,n[i]=0,r[i]=t):s(1,t),e.Debug.assert(D===t),D=a,S=o}}(r);case 217:return function(e){var t=Zt(e,e.condition,e.questionToken),r=Zt(e,e.questionToken,e.whenTrue),n=Zt(e,e.whenTrue,e.colonToken),i=Zt(e,e.colonToken,e.whenFalse);De(e.condition),Vt(t,!0),be(e.questionToken),Vt(r,!0),De(e.whenTrue),Kt(t,r),Vt(n,!0),be(e.colonToken),Vt(i,!0),De(e.whenFalse),Kt(n,i)}(r);case 218:return function(e){be(e.head),Dt(e,e.templateSpans,262144)}(r);case 219:return function(e){Je(124,e.pos,At,e),be(e.asteriskToken),gt(e.expression)}(r);case 220:return function(e){Je(25,e.pos,kt,e),De(e.expression)}(r);case 221:return function(e){cr(e.name),Ge(e)}(r);case 222:return;case 224:return function(e){De(e.expression),e.type&&(It(),At("as"),It(),be(e.type))}(r);case 225:return function(e){De(e.expression),Ft("!")}(r);case 226:return function(e){Bt(e.keywordToken,e.pos,kt),kt("."),be(e.name)}(r);case 273:return function(e){be(e.openingElement),Dt(e,e.children,262144),be(e.closingElement)}(r);case 274:return function(e){kt("<"),Ye(e.tagName),vt(e,e.typeArguments),It(),be(e.attributes),kt("/>")}(r);case 277:return function(e){be(e.openingFragment),Dt(e,e.children,262144),be(e.closingFragment)}(r);case 336:return function(e){De(e.expression)}(r);case 337:return function(e){St(e,e.elements,528)}(r)}}function Ae(t,r){e.Debug.assert(D===r||S===r),Ee(1,t,r)(t,S),e.Debug.assert(D===r||S===r)}function Fe(r){var n=!1,i=298===r.kind?r:void 0;if(!i||L!==e.ModuleKind.None){for(var o=i?i.prepends.length:0,s=i?i.sourceFiles.length+o:1,c=0;c0)return!1;r=o}return!0}(t)?We:He;br?br(t,t.statements,r):r(t),Rt(),Bt(19,t.statements.end,kt,t)}function We(e){He(e,!0)}function He(e,t){var r=ot(e.statements),n=f.getTextPos();Fe(e),0===r&&n===f.getTextPos()&&t?(Rt(),Dt(e,e.statements,768),Lt()):Dt(e,e.statements,1,r)}function Ge(t){e.forEach(t.members,sr),yt(t,t.decorators),_t(t,t.modifiers),At("class"),t.name&&(It(),xe(t.name));var r=65536&e.getEmitFlags(t);r&&Lt(),ht(t,t.typeParameters),Dt(t,t.heritageClauses,0),It(),kt("{"),Dt(t,t.members,129),kt("}"),r&&Rt()}function Xe(e){kt("{"),Dt(e,e.elements,525136),kt("}")}function Qe(e){e.propertyName&&(be(e.propertyName),It(),Je(126,e.propertyName.end,At,e),It()),be(e.name)}function Ye(e){78===e.kind?De(e):be(e)}function Ze(t,r,n){var i=163969;1===r.length&&(e.nodeIsSynthesized(t)||e.nodeIsSynthesized(r[0])||e.rangeStartPositionsAreOnSameLine(t,r[0],a))?(Bt(58,n,kt,t),It(),i&=-130):Je(58,n,kt,t),Dt(t,r,i)}function $e(t){Dt(t,e.factory.createNodeArray(t.jsDocPropertyTags),33)}function et(t){t.typeParameters&&Dt(t,e.factory.createNodeArray(t.typeParameters),33),t.parameters&&Dt(t,e.factory.createNodeArray(t.parameters),33),t.type&&(Mt(),It(),kt("*"),It(),be(t.type))}function tt(e){kt("@"),be(e)}function rt(e){e&&(It(),j(e))}function nt(e){e&&(It(),kt("{"),be(e.type),kt("}"))}function it(e,t,r,n){if(e){var i=f.getTextPos();wt('/// '),J&&J.sections.push({pos:i,end:f.getTextPos(),kind:"no-default-lib"}),Mt()}if(a&&a.moduleName&&(wt('/// '),Mt()),a&&a.amdDependencies)for(var o=0,s=a.amdDependencies;o'):wt('/// '),Mt()}for(var u=0,l=t;u'),J&&J.sections.push({pos:i,end:f.getTextPos(),kind:"reference",data:_.fileName}),Mt()}for(var d=0,p=r;d'),J&&J.sections.push({pos:i,end:f.getTextPos(),kind:"type",data:_.fileName}),Mt()}for(var g=0,m=n;g'),J&&J.sections.push({pos:i,end:f.getTextPos(),kind:"lib",data:_.fileName}),Mt()}}function at(t){var r=t.statements;nr(t),e.forEach(t.statements,or),Fe(t);var n=e.findIndex(r,(function(t){return!e.isPrologueDirective(t)}));!function(e){e.isDeclarationFile&&it(e.hasNoDefaultLib,e.referencedFiles,e.typeReferenceDirectives,e.libReferenceDirectives)}(t),Dt(t,r,1,-1===n?r.length:n),ir(t)}function ot(t,r,n,i){for(var a=!!r,o=0;o=i.length||0===c;if(l&&32768&o)return F&&F(i),void(P&&P(i));if(15360&o&&(kt(function(e){return n[15360&e][0]}(o)),l&&!u&&Nr(i.pos,!0)),F&&F(i),l)!(1&o)||B&&e.rangeIsOnSingleLine(r,a)?256&o&&!(524288&o)&&It():Mt();else{var _=0==(262144&o),d=_,f=qt(r,i,o);f?(Mt(f),d=!1):256&o&&It(),128&o&&Lt();for(var g=void 0,m=void 0,y=!1,v=0;v0?(0==(131&o)&&(Lt(),y=!0),Mt(b),d=!1):g&&512&o&&It()}if(m=ce(h),d){if(Nr)Nr(e.getCommentRange(h).pos)}else d=_;p=h.pos,t(h),y&&(Rt(),y=!1),g=h}var x=g?e.getEmitFlags(g):0,D=Z||!!(1024&x),S=(null==i?void 0:i.hasTrailingComma)&&64&o&&16&o;S&&(g&&!D?Je(27,g.end,kt,g):kt(",")),g&&r.end!==g.end&&60&o&&!D&&Er(S&&(null==i?void 0:i.end)?i.end:g.end),128&o&&Rt(),ue(m);var T=Ht(r,i,o);T?Mt(T):2097408&o&&It()}P&&P(i),15360&o&&(l&&!u&&Er(i.end),kt(function(e){return n[15360&e][1]}(o)))}}function Et(e,t){f.writeSymbol(e,t)}function kt(e){f.writePunctuation(e)}function Nt(){f.writeTrailingSemicolon(";")}function At(e){f.writeKeyword(e)}function Ft(e){f.writeOperator(e)}function Pt(e){f.writeParameter(e)}function wt(e){f.writeComment(e)}function It(){f.writeSpace(" ")}function Ot(e){f.writeProperty(e)}function Mt(e){void 0===e&&(e=1);for(var t=0;t0)}function Lt(){f.increaseIndent()}function Rt(){f.decreaseIndent()}function Bt(t,r,n,i){return q?Jt(t,n,r):function(t,r,n,i,a){if(q||t&&e.isInJsonFile(t))return a(r,n,i);var o=t&&t.emitNode,s=o&&o.flags||0,c=o&&o.tokenSourceMapRanges&&o.tokenSourceMapRanges[r],u=c&&c.source||v;i=Lr(u,c?c.pos:i),0==(128&s)&&i>=0&&Br(u,i);i=a(r,n,i),c&&(i=c.end);0==(256&s)&&i>=0&&Br(u,i);return i}(i,t,n,r,Jt)}function jt(t,r){w&&w(t),r(e.tokenToString(t.kind)),I&&I(t)}function Jt(t,r,n){var i=e.tokenToString(t);return r(i),n<0?n:n+i.length}function zt(t,r,n){if(1&e.getEmitFlags(t))It();else if(B){var i=Zt(t,r,n);i?Mt(i):It()}else Mt()}function Ut(t){for(var r=t.split(/\r\n?|\n/g),n=e.guessIndentation(r),i=0,a=r;i0||o>0)&&a!==o&&(c||xr(a,s),(!c||a>=0&&0!=(512&n))&&(G=a),(!u||o>=0&&0!=(1024&n))&&(X=o,250===r.kind&&(Q=o))),e.forEach(e.getSyntheticLeadingComments(r),yr),te();var p=Ee(2,t,r);2048&n?(Z=!0,p(t,r),Z=!1):p(t,r),ee(),e.forEach(e.getSyntheticTrailingComments(r),vr),(a>0||o>0)&&a!==o&&(G=l,X=_,Q=d,!u&&s&&function(e){wr(e,kr)}(o)),te(),e.Debug.assert(D===r||S===r)}function yr(e){(e.hasLeadingNewline||2===e.kind)&&f.writeLine(),hr(e),e.hasTrailingNewLine||2===e.kind?f.writeLine():f.writeSpace(" ")}function vr(e){f.isAtStartOfLine()||f.writeSpace(" "),hr(e),e.hasTrailingNewLine&&f.writeLine()}function hr(t){var r=function(e){return 3===e.kind?"/*"+e.text+"*/":"//"+e.text}(t),n=3===t.kind?e.computeLineStarts(r):void 0;e.writeCommentRange(r,n,f,0,r.length,M)}function br(t,r,n){ee();var i,o,s=r.pos,c=r.end,u=e.getEmitFlags(t),l=Z||c<0||0!=(1024&u);s<0||0!=(512&u)||(i=r,(o=e.emitDetachedComments(a.text,he(),f,Ir,i,M,Z))&&(x?x.push(o):x=[o])),te(),2048&u&&!Z?(Z=!0,n(t),Z=!1):n(t),ee(),l||(xr(r.end,!0),Y&&!f.isAtStartOfLine()&&f.writeLine()),te()}function xr(e,t){Y=!1,t?0===e&&(null==a?void 0:a.isDeclarationFile)?Pr(e,Sr):Pr(e,Cr):0===e&&Pr(e,Dr)}function Dr(e,t,r,n,i){Or(e,t)&&Cr(e,t,r,n,i)}function Sr(e,t,r,n,i){Or(e,t)||Cr(e,t,r,n,i)}function Tr(r,n){return!t.onlyPrintJsDocStyle||(e.isJSDocLikeText(r,n)||e.isPinnedComment(r,n))}function Cr(t,r,n,i,o){Tr(a.text,t)&&(Y||(e.emitNewLineBeforeLeadingCommentOfPosition(he(),f,o,t),Y=!0),Rr(t),e.writeCommentRange(a.text,he(),f,t,r,M),Rr(r),i?f.writeLine():3===n&&f.writeSpace(" "))}function Er(e){Z||-1===e||xr(e,!0)}function kr(t,r,n,i){Tr(a.text,t)&&(f.isAtStartOfLine()||f.writeSpace(" "),Rr(t),e.writeCommentRange(a.text,he(),f,t,r,M),Rr(r),i&&f.writeLine())}function Nr(e,t,r){Z||(ee(),wr(e,t?kr:r?Ar:Fr),te())}function Ar(t,r,n){Rr(t),e.writeCommentRange(a.text,he(),f,t,r,M),Rr(r),2===n&&f.writeLine()}function Fr(t,r,n,i){Rr(t),e.writeCommentRange(a.text,he(),f,t,r,M),Rr(r),i?f.writeLine():f.writeSpace(" ")}function Pr(t,r){!a||-1!==G&&t===G||(function(t){return void 0!==x&&e.last(x).nodePos===t}(t)?function(t){var r=e.last(x).detachedCommentEndPos;x.length-1?x.pop():x=void 0;e.forEachLeadingCommentRange(a.text,r,t,r)}(r):e.forEachLeadingCommentRange(a.text,t,r,t))}function wr(t,r){a&&(-1===X||t!==X&&t!==Q)&&e.forEachTrailingCommentRange(a.text,t,r)}function Ir(t,r,n,i,o,s){Tr(a.text,i)&&(Rr(i),e.writeCommentRange(t,r,n,i,o,s),Rr(o))}function Or(t,r){return e.isRecognizedTripleSlashComment(a.text,t,r)}function Mr(t,r){e.Debug.assert(D===r||S===r);var n=Ee(3,t,r);if(e.isUnparsedSource(r)||e.isUnparsedPrepend(r))n(t,r);else if(e.isUnparsedNode(r)){var i=function(t){return void 0===t.parsedSourceMap&&void 0!==t.sourceMapText&&(t.parsedSourceMap=e.tryParseRawSourceMap(t.sourceMapText)||!1),t.parsedSourceMap||void 0}(r.parent);i&&y&&y.appendSourceMap(f.getLine(),f.getColumn(),i,r.parent.sourceMapPath,r.parent.getLineAndCharacterOfPosition(r.pos),r.parent.getLineAndCharacterOfPosition(r.end)),n(t,r)}else{var a=e.getSourceMapRange(r),o=a.pos,s=a.end,c=a.source,u=void 0===c?v:c,l=e.getEmitFlags(r);335!==r.kind&&0==(16&l)&&o>=0&&Br(u,Lr(u,o)),64&l?(q=!0,n(t,r),q=!1):n(t,r),335!==r.kind&&0==(32&l)&&s>=0&&Br(u,s)}e.Debug.assert(D===r||S===r)}function Lr(t,r){return t.skipTrivia?t.skipTrivia(r):e.skipTrivia(t.text,r)}function Rr(t){if(!(q||e.positionIsSynthesized(t)||Jr(v))){var r=e.getLineAndCharacterOfPosition(v,t),n=r.line,i=r.character;y.addMapping(f.getLine(),f.getColumn(),W,n,i,void 0)}}function Br(e,t){if(e!==v){var r=v,n=W;jr(e),Rr(t),function(e,t){v=e,W=t}(r,n)}else Rr(t)}function jr(e){q||(v=e,e!==h?Jr(e)||(W=y.addSource(e.fileName),t.inlineSources&&y.setSourceContent(W,e.text),h=e,H=W):W=H)}function Jr(t){return e.fileExtensionIs(t.fileName,".json")}}e.isBuildInfoFile=function(t){return e.fileExtensionIs(t,".tsbuildinfo")},e.forEachEmittedFile=a,e.getTsBuildInfoEmitOutputFilePath=o,e.getOutputPathsForBundle=s,e.getOutputPathsFor=c,e.getOutputExtension=l,e.getOutputDeclarationFileName=d,e.getCommonSourceDirectory=y,e.getCommonSourceDirectoryOfConfig=v,e.getAllProjectOutputs=function(t,r){var n=f(),i=n.addOutput,a=n.getOutputs;if(e.outFile(t.options))g(t,i);else{for(var s=e.memoize((function(){return v(t,r)})),c=0,u=t.fileNames;c=4,v=(f+1+"").length;y&&(v=Math.max("...".length,v));for(var h="",b=_;b<=f;b++){h+=c.getNewLine(),y&&_+11}))&&Ht(e.Diagnostics.Cannot_find_the_common_subdirectory_path_for_the_input_files,"outDir")}O.useDefineForClassFields&&0===_&&Ht(e.Diagnostics.Option_0_cannot_be_specified_when_option_target_is_ES3,"useDefineForClassFields");O.checkJs&&!e.getAllowJSCompilerOption(O)&&re.add(e.createCompilerDiagnostic(e.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1,"checkJs","allowJs"));O.emitDeclarationOnly&&(e.getEmitDeclarations(O)||Ht(e.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1_or_option_2,"emitDeclarationOnly","declaration","composite"),O.noEmit&&Ht(e.Diagnostics.Option_0_cannot_be_specified_with_option_1,"emitDeclarationOnly","noEmit"));O.emitDecoratorMetadata&&!O.experimentalDecorators&&Ht(e.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1,"emitDecoratorMetadata","experimentalDecorators");O.jsxFactory?(O.reactNamespace&&Ht(e.Diagnostics.Option_0_cannot_be_specified_with_option_1,"reactNamespace","jsxFactory"),4!==O.jsx&&5!==O.jsx||Ht(e.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1,"jsxFactory",e.inverseJsxOptionMap.get(""+O.jsx)),e.parseIsolatedEntityName(O.jsxFactory,_)||Gt("jsxFactory",e.Diagnostics.Invalid_value_for_jsxFactory_0_is_not_a_valid_identifier_or_qualified_name,O.jsxFactory)):O.reactNamespace&&!e.isIdentifierText(O.reactNamespace,_)&&Gt("reactNamespace",e.Diagnostics.Invalid_value_for_reactNamespace_0_is_not_a_valid_identifier,O.reactNamespace);O.jsxFragmentFactory&&(O.jsxFactory||Ht(e.Diagnostics.Option_0_cannot_be_specified_without_specifying_option_1,"jsxFragmentFactory","jsxFactory"),4!==O.jsx&&5!==O.jsx||Ht(e.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1,"jsxFragmentFactory",e.inverseJsxOptionMap.get(""+O.jsx)),e.parseIsolatedEntityName(O.jsxFragmentFactory,_)||Gt("jsxFragmentFactory",e.Diagnostics.Invalid_value_for_jsxFragmentFactory_0_is_not_a_valid_identifier_or_qualified_name,O.jsxFragmentFactory));O.reactNamespace&&(4!==O.jsx&&5!==O.jsx||Ht(e.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1,"reactNamespace",e.inverseJsxOptionMap.get(""+O.jsx)));O.jsxImportSource&&2===O.jsx&&Ht(e.Diagnostics.Option_0_cannot_be_specified_when_option_jsx_is_1,"jsxImportSource",e.inverseJsxOptionMap.get(""+O.jsx));if(!O.noEmit&&!O.suppressOutputPathCheck){var v=qe(),h=new e.Set;e.forEachEmittedFile(v,(function(e){O.emitDeclarationOnly||b(e.jsFilePath,h),b(e.declarationFilePath,h)}))}function b(t,r){if(t){var n=Ue(t);if(ve.has(n)){var i=void 0;O.configFilePath||(i=e.chainDiagnosticMessages(void 0,e.Diagnostics.Adding_a_tsconfig_json_file_will_help_organize_projects_that_contain_both_TypeScript_and_JavaScript_files_Learn_more_at_https_Colon_Slash_Slashaka_ms_Slashtsconfig)),i=e.chainDiagnosticMessages(i,e.Diagnostics.Cannot_write_file_0_because_it_would_overwrite_input_file,t),$t(t,e.createCompilerDiagnosticFromMessageChain(i))}var a=Y.useCaseSensitiveFileNames()?n:e.toFileNameLowerCase(n);r.has(a)?$t(t,e.createCompilerDiagnostic(e.Diagnostics.Cannot_write_file_0_because_it_would_be_overwritten_by_multiple_input_files,t)):r.add(a)}}}(),e.performance.mark("afterProgram"),e.performance.measure("Program","beforeProgram","afterProgram"),null===e.tracing||void 0===e.tracing||e.tracing.pop(),Le;function Re(t,r,n){if(!t.length)return e.emptyArray;var i=e.getNormalizedAbsolutePath(r.originalFileName,ne),a=je(r);null===e.tracing||void 0===e.tracing||e.tracing.push("program","resolveModuleNamesWorker",{containingFileName:i}),e.performance.mark("beforeResolveModule");var o=X(t,i,n,a);return e.performance.mark("afterResolveModule"),e.performance.measure("ResolveModule","beforeResolveModule","afterResolveModule"),null===e.tracing||void 0===e.tracing||e.tracing.pop(),o}function Be(t,r){if(!t.length)return[];var n=e.isString(r)?r:e.getNormalizedAbsolutePath(r.originalFileName,ne),i=e.isString(r)?void 0:je(r);null===e.tracing||void 0===e.tracing||e.tracing.push("program","resolveTypeReferenceDirectiveNamesWorker",{containingFileName:n}),e.performance.mark("beforeResolveTypeReference");var a=Q(t,n,i);return e.performance.mark("afterResolveTypeReference"),e.performance.measure("ResolveTypeReference","beforeResolveTypeReference","afterResolveTypeReference"),null===e.tracing||void 0===e.tracing||e.tracing.pop(),a}function je(t){var r=kt(t.originalFileName);if(r||!e.fileExtensionIs(t.originalFileName,".d.ts"))return r;var n=Je(t.originalFileName,t.path);if(n)return n;if(Y.realpath&&O.preserveSymlinks&&e.stringContains(t.originalFileName,e.nodeModulesPathPart)){var i=Y.realpath(t.originalFileName),a=Ue(i);return a===t.path?void 0:Je(i,a)}}function Je(t,r){var n=At(t);return e.isString(n)?kt(n):n?Nt((function(t){var n=e.outFile(t.commandLine.options);if(n)return Ue(n)===r?t:void 0})):void 0}function ze(t){if(e.containsPath(te,t.fileName,!1)){var r=e.getBaseFileName(t.fileName);if("lib.d.ts"===r||"lib.es6.d.ts"===r)return 0;var n=e.removeSuffix(e.removePrefix(r,"lib."),".d.ts"),i=e.libs.indexOf(n);if(-1!==i)return i+1}return e.libs.length+2}function Ue(t){return e.toPath(t,ne,Lt)}function Ve(){if(void 0===k){var t=e.filter(p,(function(t){return e.sourceFileMayBeEmitted(t,Le)}));k=e.getCommonSourceDirectory(O,(function(){return e.mapDefined(t,(function(e){return e.isDeclarationFile?void 0:e.fileName}))}),ne,Lt,(function(r){return function(t,r){for(var n=!0,i=Y.getCanonicalFileName(e.getNormalizedAbsolutePath(r,ne)),a=0,o=t;a=0;){if(r.markUsed(o))return o;var s=n.text.slice(a[o],a[o+1]).trim();if(""!==s&&!/^(\s*)\/\/(.*)$/.test(s))return-1;o--}return-1}(t,i)})),directives:i}}function ct(e,t){return lt(e,t,z,ut)}function ut(t,r){return nt((function(){var n=Xe().getEmitResolver(t,r);return e.getDeclarationDiagnostics(qe(e.noop),n,t)||e.emptyArray}))}function lt(t,r,n,i){var a,o=t?null===(a=n.perFile)||void 0===a?void 0:a.get(t.path):n.allDiagnostics;if(o)return o;var s=i(t,r);return t?(n.perFile||(n.perFile=new e.Map)).set(t.path,s):n.allDiagnostics=s,s}function _t(e,t){return e.isDeclarationFile?[]:ct(e,t)}function dt(t,r,n,i){vt(e.normalizePath(t),r,n,void 0,i)}function pt(e,t){return e.fileName===t.fileName}function ft(e,t){return 78===e.kind?78===t.kind&&e.escapedText===t.escapedText:10===t.kind&&e.text===t.text}function gt(t,r){var n=e.factory.createStringLiteral(t),i=e.factory.createImportDeclaration(void 0,void 0,void 0,n);return e.addEmitFlags(i,67108864),e.setParent(n,i),e.setParent(i,r),n.flags&=-9,i.flags&=-9,n}function mt(t){if(!t.imports){var r,n,i,a=e.isSourceFileJS(t),o=e.isExternalModule(t);if((O.isolatedModules||o)&&!t.isDeclarationFile){O.importHelpers&&(r=[gt(e.externalHelpersModuleNameText,t)]);var s=e.getJSXRuntimeImport(e.getJSXImplicitImportBase(O,t),O);s&&(r||(r=[])).push(gt(s,t))}for(var c=0,u=t.statements;c0),Object.defineProperties(o,{id:{get:function(){return this.redirectInfo.redirectTarget.id},set:function(e){this.redirectInfo.redirectTarget.id=e}},symbol:{get:function(){return this.redirectInfo.redirectTarget.symbol},set:function(e){this.redirectInfo.redirectTarget.symbol=e}}}),o}(x,h,t,r,Ue(t),p);return ye.add(x.path,t),St(D,r,l),Dt(D,a),me.set(r,o.name),d.push(D),D}h&&(ge.set(b,h),me.set(r,o.name))}if(St(h,r,l),h){if(W.set(r,K>0),h.fileName=t,h.path=r,h.resolvedPath=Ue(t),h.originalFileName=p,Dt(h,a),Y.useCaseSensitiveFileNames()){var S=e.toFileNameLowerCase(r),T=he.get(S);T?bt(t,T,a):he.set(S,h)}$=$||h.hasNoDefaultLib&&!i,O.noResolve||(wt(h,n),It(h)),O.noLib||Mt(h),Rt(h),n?_.push(h):d.push(h)}return h}(t,r,n,i,a,o);return null===e.tracing||void 0===e.tracing||e.tracing.pop(),s}function Dt(e,t){e&&j.add(e.path,t)}function St(e,t,r){r?(ve.set(r,e),ve.set(t,e||!1)):ve.set(t,e)}function Tt(e){var t=Ct(e);return t&&Et(t,e)}function Ct(t){if(_e&&_e.length&&!e.fileExtensionIs(t,".d.ts")&&!e.fileExtensionIs(t,".json"))return kt(t)}function Et(t,r){var n=e.outFile(t.commandLine.options);return n?e.changeExtension(n,".d.ts"):e.getOutputDeclarationFileName(r,t.commandLine,!Y.useCaseSensitiveFileNames())}function kt(t){void 0===pe&&(pe=new e.Map,Nt((function(e){Ue(O.configFilePath)!==e.sourceFile.path&&e.commandLine.fileNames.forEach((function(t){return pe.set(Ue(t),e.sourceFile.path)}))})));var r=pe.get(Ue(t));return r&&Pt(r)}function Nt(t){return e.forEachResolvedProjectReference(_e,t)}function At(t){if(e.isDeclarationFileName(t))return void 0===fe&&(fe=new e.Map,Nt((function(t){var r=e.outFile(t.commandLine.options);if(r){var n=e.changeExtension(r,".d.ts");fe.set(Ue(n),!0)}else{var i=e.memoize((function(){return e.getCommonSourceDirectoryOfConfig(t.commandLine,!Y.useCaseSensitiveFileNames())}));e.forEach(t.commandLine.fileNames,(function(r){if(!e.fileExtensionIs(r,".d.ts")&&!e.fileExtensionIs(r,".json")){var n=e.getOutputDeclarationFileName(r,t.commandLine,!Y.useCaseSensitiveFileNames(),i);fe.set(Ue(n),r)}}))}}))),fe.get(Ue(t))}function Ft(e){return be&&!!kt(e)}function Pt(e){if(de)return de.get(e)||void 0}function wt(r,n){e.forEach(r.referencedFiles,(function(i,a){vt(t(i.fileName,r.fileName),n,!1,void 0,{kind:e.FileIncludeKind.ReferenceFile,file:r.path,index:a})}))}function It(t){var r=e.map(t.typeReferenceDirectives,(function(t){return e.toFileNameLowerCase(t.fileName)}));if(r)for(var n=Be(r,t),i=0;iV,_=u&&!T(O,a)&&!O.noResolve&&id?e.createDiagnosticForNodeInSourceFile(_,p.elements[d],t.kind===e.FileIncludeKind.OutputFromProjectReference?e.Diagnostics.File_is_output_from_referenced_project_specified_here:e.Diagnostics.File_is_source_from_referenced_project_specified_here):void 0;case e.FileIncludeKind.AutomaticTypeDirectiveFile:if(!O.types)return;i=Wt("types",t.typeReference),a=e.Diagnostics.File_is_entry_point_of_type_library_specified_here;break;case e.FileIncludeKind.LibFile:if(void 0!==t.index){i=Wt("lib",O.lib[t.index]),a=e.Diagnostics.File_is_library_specified_here;break}var f=e.forEachEntry(e.targetOptionDeclaration.type,(function(e,t){return e===O.target?t:void 0}));i=f?(h=f,(b=Kt("target"))&&e.firstDefined(b,(function(t){return e.isStringLiteral(t.initializer)&&t.initializer.text===h?t.initializer:void 0}))):void 0,a=e.Diagnostics.File_is_default_library_for_target_specified_here;break;default:e.Debug.assertNever(t)}var h,b;return i&&e.createDiagnosticForNodeInSourceFile(O.configFile,i,a)}(t))),t===r&&(r=void 0)}}function Jt(e,t,r,n){(P||(P=[])).push({kind:1,file:e&&e.path,fileProcessingReason:t,diagnostic:r,args:n})}function zt(e,t,r){re.add(jt(e,void 0,t,r))}function Ut(t,r,n,i,a,o){for(var s=!0,c=0,u=qt();cr&&(re.add(e.createDiagnosticForNodeInSourceFile(O.configFile,p.elements[r],n,i,a,o)),s=!1)}}s&&re.add(e.createCompilerDiagnostic(n,i,a,o))}function Vt(t,r,n,i){for(var a=!0,o=0,s=qt();or?re.add(e.createDiagnosticForNodeInSourceFile(t||O.configFile,o.elements[r],n,i,a)):re.add(e.createCompilerDiagnostic(n,i,a))}function Qt(t,r,n,i,a,o,s){var c=Yt();(!c||!Zt(c,t,r,n,i,a,o,s))&&re.add(e.createCompilerDiagnostic(i,a,o,s))}function Yt(){if(void 0===H){H=!1;var t=e.getTsConfigObjectLiteralExpression(O.configFile);if(t)for(var r=0,n=e.getPropertyAssignment(t,"compilerOptions");r0)for(var s=t.getTypeChecker(),c=0,u=r.imports;c0)for(var d=0,p=r.referencedFiles;d1&&D(x)}return o;function D(t){for(var n=0,i=t.declarations;n1?f.outputFiles[1]:void 0:f.outputFiles.length>0?f.outputFiles[0]:void 0;g?(e.Debug.assert(e.fileExtensionIs(g.name,".d.ts"),"File extension for signature expected to be dts",(function(){return"Found: "+e.getAnyExtensionFromPath(g.name)+" for "+g.name+":: All output files: "+JSON.stringify(f.outputFiles.map((function(e){return e.name})))})),_=(c||e.generateDjb2Hash)(g.text),u&&_!==d&&function(t,r,i){if(!r)return void i.set(t.resolvedPath,!1);var a;function o(t){t&&(a||(a=new e.Set),a.add(t))}r.forEach((function(e){return o(n(e))})),i.set(t.resolvedPath,a||!1)}(a,f.exportedModulesFromDeclarationEmit,u)):_=d}return o.set(a.resolvedPath,_),!d||_!==d}function _(t,r){if(!t.allFileNames){var n=r.getSourceFiles();t.allFileNames=n===e.emptyArray?e.emptyArray:n.map((function(e){return e.fileName}))}return t.allFileNames}function d(t,r){return e.arrayFrom(e.mapDefinedIterator(t.referencedMap.entries(),(function(e){var t=e[0];return e[1].has(r)?t:void 0})))}function p(t){return function(t){return e.some(t.moduleAugmentations,(function(t){return e.isGlobalScopeAugmentation(t.parent)}))}(t)||!e.isExternalModule(t)&&!function(t){for(var r=0,n=t.statements;r0;){var g=_.pop();if(!u.has(g)){var m=r.getSourceFileByPath(g);u.set(g,m),m&&l(t,r,m,i,a,o,s)&&_.push.apply(_,d(t,m.resolvedPath))}}return e.arrayFrom(e.mapDefinedIterator(u.values(),(function(e){return e})))}r.canReuseOldState=s,r.create=function(t,r,n){var i=new e.Map,a=t.getCompilerOptions().module!==e.ModuleKind.None?new e.Map:void 0,c=a?new e.Map:void 0,u=new e.Set,l=s(a,n);t.getTypeChecker();for(var _=0,d=t.getSourceFiles();_0;){var o=a.pop();if(!i.has(o))if(i.set(o,!0),n(t,o)&&c(t,o)){var s=e.Debug.checkDefined(t.program).getSourceFileByPath(o);a.push.apply(a,e.BuilderState.getReferencedByPaths(t,s.resolvedPath))}}}e.Debug.assert(!!t.currentAffectedFilesExportedModulesMap);var l=new e.Set;if(e.forEachEntry(t.currentAffectedFilesExportedModulesMap,(function(e,i){return e&&e.has(r.resolvedPath)&&u(t,i,l,n)})))return;e.forEachEntry(t.exportedModulesMap,(function(e,i){return!t.currentAffectedFilesExportedModulesMap.has(i)&&e.has(r.resolvedPath)&&u(t,i,l,n)}))}(t,r,(function(t,r){return function(t,r,n,i){if(s(t,r),!t.changedFilesSet.has(r)){var a=e.Debug.checkDefined(t.program),o=a.getSourceFileByPath(r);o&&(e.BuilderState.updateShapeSignature(t,a,o,e.Debug.checkDefined(t.currentAffectedFilesSignatures),n,i,t.currentAffectedFilesExportedModulesMap),e.getEmitDeclarations(t.compilerOptions)&&h(t,r,0))}return!1}(t,r,n,i)}));else if(!t.cleanedDiagnosticsOfLibFiles){t.cleanedDiagnosticsOfLibFiles=!0;var a=e.Debug.checkDefined(t.program),o=a.getCompilerOptions();e.forEach(a.getSourceFiles(),(function(r){return a.isSourceFileDefaultLibrary(r)&&!e.skipTypeChecking(r,o,a)&&s(t,r.resolvedPath)}))}}function s(e,t){return!e.semanticDiagnosticsFromOldState||(e.semanticDiagnosticsFromOldState.delete(t),e.semanticDiagnosticsPerFile.delete(t),!e.semanticDiagnosticsFromOldState.size)}function c(t,r){return e.Debug.checkDefined(t.currentAffectedFilesSignatures).get(r)!==e.Debug.checkDefined(t.fileInfos.get(r)).signature}function u(t,r,n,i){return e.forEachEntry(t.referencedMap,(function(e,a){return e.has(r)&&l(t,a,n,i)}))}function l(t,r,n,i){return!!e.tryAddToSet(n,r)&&(!!i(t,r)||(e.Debug.assert(!!t.currentAffectedFilesExportedModulesMap),!!e.forEachEntry(t.currentAffectedFilesExportedModulesMap,(function(e,a){return e&&e.has(r)&&l(t,a,n,i)}))||(!!e.forEachEntry(t.exportedModulesMap,(function(e,a){return!t.currentAffectedFilesExportedModulesMap.has(a)&&e.has(r)&&l(t,a,n,i)}))||!!e.forEachEntry(t.referencedMap,(function(e,a){return e.has(r)&&!n.has(a)&&i(t,a)})))))}function _(t,r,n,i,a){a?t.buildInfoEmitPending=!1:r===t.program?(t.changedFilesSet.clear(),t.programEmitComplete=!0):(t.seenAffectedFiles.add(r.resolvedPath),void 0!==n&&(t.seenEmittedFiles||(t.seenEmittedFiles=new e.Map)).set(r.resolvedPath,n),i?(t.affectedFilesPendingEmitIndex++,t.buildInfoEmitPending=!0):t.affectedFilesIndex++)}function d(e,t,r){return _(e,r),{result:t,affected:r}}function p(e,t,r,n,i,a){return _(e,r,n,i,a),{result:t,affected:r}}function f(t,r,n){return e.concatenate(function(t,r,n){var i=r.resolvedPath;if(t.semanticDiagnosticsPerFile){var a=t.semanticDiagnosticsPerFile.get(i);if(a)return e.filterSemanticDiagnotics(a,t.compilerOptions)}var o=e.Debug.checkDefined(t.program).getBindAndCheckDiagnostics(r,n);t.semanticDiagnosticsPerFile&&t.semanticDiagnosticsPerFile.set(i,o);return e.filterSemanticDiagnotics(o,t.compilerOptions)}(t,r,n),e.Debug.checkDefined(t.program).getProgramDiagnostics(r))}function g(t,r){var n={},i=e.getOptionsNameMap().optionsNameMap;for(var a in t)e.hasProperty(t,a)&&(n[a]=m(i.get(a.toLowerCase()),t[a],r));return n.configFilePath&&(n.configFilePath=r(n.configFilePath)),n}function m(e,t,r){if(e)if("list"===e.type){var n=t;if(e.element.isFilePath&&n.length)return n.map(r)}else if(e.isFilePath)return r(t);return t}function y(t,r){return e.Debug.assert(!!t.length),t.map((function(e){var t=v(e,r);t.reportsUnnecessary=e.reportsUnnecessary,t.reportDeprecated=e.reportsDeprecated,t.source=e.source,t.skippedOn=e.skippedOn;var n=e.relatedInformation;return t.relatedInformation=n?n.length?n.map((function(e){return v(e,r)})):[]:void 0,t}))}function v(e,t){var r=e.file;return __assign(__assign({},e),{file:r?t(r.resolvedPath):void 0})}function h(t,r,n){t.affectedFilesPendingEmit||(t.affectedFilesPendingEmit=[]),t.affectedFilesPendingEmitKind||(t.affectedFilesPendingEmitKind=new e.Map);var i=t.affectedFilesPendingEmitKind.get(r);t.affectedFilesPendingEmit.push(r),t.affectedFilesPendingEmitKind.set(r,i||n),void 0===t.affectedFilesPendingEmitIndex&&(t.affectedFilesPendingEmitIndex=0)}function b(t,r){if(t){var n=new e.Map;for(var i in t)e.hasProperty(t,i)&&n.set(r(i),new e.Set(t[i].map(r)));return n}}function x(t,r){return{getState:e.notImplemented,backupState:e.noop,restoreState:e.noop,getProgram:n,getProgramOrUndefined:function(){return t.program},releaseProgram:function(){return t.program=void 0},getCompilerOptions:function(){return t.compilerOptions},getSourceFile:function(e){return n().getSourceFile(e)},getSourceFiles:function(){return n().getSourceFiles()},getOptionsDiagnostics:function(e){return n().getOptionsDiagnostics(e)},getGlobalDiagnostics:function(e){return n().getGlobalDiagnostics(e)},getConfigFileParsingDiagnostics:function(){return r},getSyntacticDiagnostics:function(e,t){return n().getSyntacticDiagnostics(e,t)},getDeclarationDiagnostics:function(e,t){return n().getDeclarationDiagnostics(e,t)},getSemanticDiagnostics:function(e,t){return n().getSemanticDiagnostics(e,t)},emit:function(e,t,r,i,a){return n().emit(e,t,r,i,a)},emitBuildInfo:function(e,t){return n().emitBuildInfo(e,t)},getAllDependencies:e.notImplemented,getCurrentDirectory:function(){return n().getCurrentDirectory()},close:e.noop};function n(){return e.Debug.checkDefined(t.program)}}!function(e){e[e.DtsOnly=0]="DtsOnly",e[e.Full=1]="Full"}(e.BuilderFileEmit||(e.BuilderFileEmit={})),function(e){e[e.SemanticDiagnosticsBuilderProgram=0]="SemanticDiagnosticsBuilderProgram",e[e.EmitAndSemanticDiagnosticsBuilderProgram=1]="EmitAndSemanticDiagnosticsBuilderProgram"}(t=e.BuilderProgramKind||(e.BuilderProgramKind={})),e.getBuilderCreationParameters=function(t,r,n,i,a,o){var s,c,u;return void 0===t?(e.Debug.assert(void 0===r),s=n,u=i,e.Debug.assert(!!u),c=u.getProgram()):e.isArray(t)?(u=i,c=e.createProgram({rootNames:t,options:r,host:n,oldProgram:u&&u.getProgramOrUndefined(),configFileParsingDiagnostics:a,projectReferences:o}),s=n):(c=t,s=r,u=n,a=i),{host:s,newProgram:c,oldProgram:u,configFileParsingDiagnostics:a||e.emptyArray}},e.createBuilderProgram=function(n,o){var s=o.newProgram,c=o.host,u=o.oldProgram,l=o.configFileParsingDiagnostics,m=u&&u.getState();if(m&&s===m.program&&l===s.getConfigFileParsingDiagnostics())return s=void 0,m=void 0,u;var v,b=e.createGetCanonicalFileName(c.useCaseSensitiveFileNames()),D=e.maybeBind(c,c.createHash),S=r(s,b,m);s.getProgramBuildInfo=function(){return function(t,r){if(!e.outFile(t.compilerOptions)){var n=e.Debug.checkDefined(t.program).getCurrentDirectory(),i=e.getDirectoryPath(e.getNormalizedAbsolutePath(e.getTsBuildInfoEmitOutputFilePath(t.compilerOptions),n)),a={};t.fileInfos.forEach((function(e,r){var n=t.currentAffectedFilesSignatures&&t.currentAffectedFilesSignatures.get(r);a[E(r)]=void 0===n?e:{version:e.version,signature:n,affectsGlobalScope:e.affectsGlobalScope}}));var o={fileInfos:a,options:g(t.compilerOptions,(function(t){return E(e.getNormalizedAbsolutePath(t,n))}))};if(t.referencedMap){for(var s={},c=0,u=e.arrayFrom(t.referencedMap.keys()).sort(e.compareStringsCaseSensitive);c1||47!==t.charCodeAt(0);if(a&&0!==t.search(/[a-zA-Z]:/)&&0===i.search(/[a-zA-z]\$\//)){if(-1===(n=t.indexOf(e.directorySeparator,n+1)))return!1;i=t.substring(r+i.length,n+1)}if(a&&0!==i.search(/users\//i))return!0;for(var o=n+1,s=2;s>0;s--)if(0===(o=t.indexOf(e.directorySeparator,o)+1))return!1;return!0}e.removeIgnoredPath=t,e.canWatchDirectory=r,e.createResolutionCache=function(n,i,a){var o,s,c,u=e.createMultiMap(),l=[],_=e.createMultiMap(),d=!1,p=[],f=[],g=[],m=e.memoize((function(){return n.getCurrentDirectory()})),y=n.getCachedDirectoryStructureHost(),v=new e.Map,h=e.createCacheWithRedirects(),b=e.createCacheWithRedirects(),x=e.createModuleResolutionCacheWithMaps(h,b,m(),n.getCanonicalFileName),D=new e.Map,S=e.createCacheWithRedirects(),T=[".ts",".tsx",".js",".jsx",".json"],C=new e.Map,E=new e.Map,k=i&&e.removeTrailingDirectorySeparator(e.getNormalizedAbsolutePath(i,m())),N=k&&n.toPath(k),A=void 0!==N?N.split(e.directorySeparator).length:0,F=new e.Map;return{startRecordingFilesWithChangedResolutions:function(){o=[]},finishRecordingFilesWithChangedResolutions:function(){var e=o;return o=void 0,e},startCachingPerDirectoryResolution:M,finishCachingPerDirectoryResolution:function(){c=void 0,M(),E.forEach((function(e,t){0===e.refCount&&(E.delete(t),e.watcher.close())})),d=!1},resolveModuleNames:function(t,r,n,i){return R({names:t,containingFile:r,redirectedReference:i,cache:v,perDirectoryCacheWithRedirects:h,loader:L,getResolutionWithResolvedFileName:P,shouldRetryResolution:function(t){return!t.resolvedModule||!e.resolutionExtensionIsTSOrJson(t.resolvedModule.extension)},reusedNames:n,logChanges:a})},getResolvedModuleWithFailedLookupLocationsFromCache:function(e,t){var r=v.get(n.toPath(t));return r&&r.get(e)},resolveTypeReferenceDirectives:function(t,r,n){return R({names:t,containingFile:r,redirectedReference:n,cache:D,perDirectoryCacheWithRedirects:S,loader:e.resolveTypeReferenceDirective,getResolutionWithResolvedFileName:w,shouldRetryResolution:function(e){return void 0===e.resolvedTypeReferenceDirective}})},removeResolutionsFromProjectReferenceRedirects:function(t){if(!e.fileExtensionIs(t,".json"))return;var r=n.getCurrentProgram();if(!r)return;var i=r.getResolvedProjectReferenceByPath(t);if(!i)return;i.commandLine.fileNames.forEach((function(e){return Q(n.toPath(e))}))},removeResolutionsOfFile:Q,hasChangedAutomaticTypeDirectiveNames:function(){return d},invalidateResolutionOfFile:function(t){Q(t);var r=d;Y(_.get(t),e.returnTrue)&&d&&!r&&n.onChangedAutomaticTypeDirectiveNames()},invalidateResolutionsOfFailedLookupLocations:$,setFilesWithInvalidatedNonRelativeUnresolvedImports:function(t){e.Debug.assert(c===t||void 0===c),c=t},createHasInvalidatedResolution:function(t){if($(),t)return s=void 0,e.returnTrue;var r=s;return s=void 0,function(e){return!!r&&r.has(e)||O(e)}},isFileWithInvalidatedNonRelativeUnresolvedImports:O,updateTypeRootsWatch:function(){var t=n.getCompilationSettings();if(t.types)return void te();var r=e.getEffectiveTypeRoots(t,{directoryExists:ne,getCurrentDirectory:m});r?e.mutateMap(F,e.arrayToMap(r,(function(e){return n.toPath(e)})),{createNewValue:re,onDeleteValue:e.closeFileWatcher}):te()},closeTypeRootsWatch:te,clear:function(){e.clearMap(E,e.closeFileWatcherOf),C.clear(),u.clear(),te(),v.clear(),D.clear(),_.clear(),l.length=0,p.length=0,f.length=0,g.length=0,M(),d=!1}};function P(e){return e.resolvedModule}function w(e){return e.resolvedTypeReferenceDirective}function I(t,r){return!(void 0===t||r.length<=t.length)&&(e.startsWith(r,t)&&r[t.length]===e.directorySeparator)}function O(e){if(!c)return!1;var t=c.get(e);return!!t&&!!t.length}function M(){h.clear(),b.clear(),S.clear(),u.forEach(K),u.clear()}function L(t,r,i,a,o){var s,c=e.resolveModuleName(t,r,i,a,x,o);if(!n.getGlobalCache)return c;var u=n.getGlobalCache();if(!(void 0===u||e.isExternalModuleNameRelative(t)||c.resolvedModule&&e.extensionIsTS(c.resolvedModule.extension))){var l=e.loadModuleFromGlobalCache(e.Debug.checkDefined(n.globalCacheResolutionModuleName)(t),n.projectName,i,a,u),_=l.resolvedModule,d=l.failedLookupLocations;if(_)return c.resolvedModule=_,(s=c.failedLookupLocations).push.apply(s,d),c}return c}function R(t){var r,i=t.names,a=t.containingFile,s=t.redirectedReference,c=t.cache,u=t.perDirectoryCacheWithRedirects,l=t.loader,_=t.getResolutionWithResolvedFileName,d=t.shouldRetryResolution,p=t.reusedNames,f=t.logChanges,g=n.toPath(a),m=c.get(g)||c.set(g,new e.Map).get(g),y=e.getDirectoryPath(g),v=u.getOrCreateMapOfCacheRedirects(s),h=v.get(y);h||(h=new e.Map,v.set(y,h));for(var b=[],x=n.getCompilationSettings(),D=f&&O(g),S=n.getCurrentProgram(),T=S&&S.getResolvedProjectReferenceToRedirect(a),C=T?!s||s.sourceFile.path!==T.sourceFile.path:!!s,E=new e.Map,k=0,N=i;kA+1?{dir:i.slice(0,A+1).join(e.directorySeparator),dirPath:n.slice(0,A+1).join(e.directorySeparator)}:{dir:k,dirPath:N,nonRecursive:!1}}return J(e.getDirectoryPath(e.getNormalizedAbsolutePath(t,m())),e.getDirectoryPath(r))}function J(t,n){for(;e.pathContainsNodeModules(n);)t=e.getDirectoryPath(t),n=e.getDirectoryPath(n);if(e.isNodeModulesDirectory(n))return r(e.getDirectoryPath(n))?{dir:t,dirPath:n}:void 0;var i,a,o=!0;if(void 0!==N)for(;!I(n,N);){var s=e.getDirectoryPath(n);if(s===n)break;o=!1,i=n,a=t,n=s,t=e.getDirectoryPath(t)}return r(n)?{dir:a||t,dirPath:i||n,nonRecursive:o}:void 0}function z(t){return e.fileExtensionIsOneOf(t,T)}function U(t,r,i,a){if(r.refCount)r.refCount++,e.Debug.assertDefined(r.files);else{r.refCount=1,e.Debug.assert(0===e.length(r.files)),e.isExternalModuleNameRelative(t)?V(r):u.add(t,r);var o=a(r);o&&o.resolvedFileName&&_.add(n.toPath(o.resolvedFileName),r)}(r.files||(r.files=[])).push(i)}function V(t){e.Debug.assert(!!t.refCount);var r=t.failedLookupLocations;if(r.length){l.push(t);for(var i=!1,a=0,o=r;a1),C.set(d,g-1))),f===N?o=!0:H(f)}}o&&H(N)}}}function H(e){E.get(e).refCount--}function G(e,t,r){return n.watchDirectoryOfFailedLookupLocation(e,(function(e){var r=n.toPath(e);y&&y.addOrDeleteFileOrDirectory(e,r),Z(r,t===r)}),r?0:1)}function X(e,t,r){var n=e.get(t);n&&(n.forEach((function(e){return W(e,t,r)})),e.delete(t))}function Q(e){X(v,e,P),X(D,e,w)}function Y(t,r){if(!t)return!1;for(var n=!1,i=0,a=t;i1&&r.sort(u),l.push.apply(l,r));var i=e.getDirectoryPath(t);if(i===t)return c=t,"break";c=t=i},p=e.getDirectoryPath(e.toPath(t,i,a));0!==o.size;){var f=d(p);if(p=c,"break"===f)break}if(o.size){var g=e.arrayFrom(o.values());g.length>1&&g.sort(u),l.push.apply(l,g)}return l}function p(t,r,n){for(var i in n)for(var a=0,o=n[i];a=l.length+_.length&&e.startsWith(r,l)&&e.endsWith(r,_)||!_&&r===e.removeTrailingDirectorySeparator(l)){var d=r.substr(l.length,r.length-_.length);return i.replace("*",d)}}else if(c===r||c===t)return i}}function f(t,r,n,i,a){var o=t.path,s=t.isRedirect,c=r.getCanonicalFileName,u=r.sourceDirectory;if(n.fileExists&&n.readFile){var l=function(t){var r,n=0,i=0,a=0,o=0;!function(e){e[e.BeforeNodeModules=0]="BeforeNodeModules",e[e.NodeModules=1]="NodeModules",e[e.Scope=2]="Scope",e[e.PackageContent=3]="PackageContent"}(r||(r={}));var s=0,c=0,u=0;for(;c>=0;)switch(s=c,c=t.indexOf("/",s+1),u){case 0:t.indexOf(e.nodeModulesPathPart,s)===s&&(n=s,i=c,u=1);break;case 1:case 2:1===u&&"@"===t.charAt(s+1)?u=2:(a=c,u=3);break;case 3:u=t.indexOf(e.nodeModulesPathPart,s)===s?1:3}return o=s,u>1?{topLevelNodeModulesIndex:n,topLevelPackageNameIndex:i,packageRootIndex:a,fileNameIndex:o}:void 0}(o);if(l){var _=o,d=!1;if(!a)for(var f=l.packageRootIndex,g=void 0;;){var y=T(f),v=y.moduleFileToTry,h=y.packageRootPath;if(h){_=h,d=!0;break}if(g||(g=v),-1===(f=o.indexOf(e.directorySeparator,f+1))){_=C(g);break}}if(!s||d){var b=n.getGlobalTypingsCacheLocation&&n.getGlobalTypingsCacheLocation(),x=c(_.substring(0,l.topLevelNodeModulesIndex));if(e.startsWith(u,x)||b&&e.startsWith(c(b),x)){var D=_.substring(l.topLevelPackageNameIndex+1),S=e.getPackageNameFromTypesPackageName(D);return e.getEmitModuleResolutionKind(i)!==e.ModuleResolutionKind.NodeJs&&S===D?void 0:S}}}}function T(t){var r=o.substring(0,t),a=e.combinePaths(r,"package.json"),s=o;if(n.fileExists(a)){var u=JSON.parse(n.readFile(a)),l=u.typesVersions?e.getPackageJsonTypesVersionsPaths(u.typesVersions):void 0;if(l){var _=o.slice(r.length+1),d=p(e.removeFileExtension(_),m(_,0,i),l.paths);void 0!==d&&(s=e.combinePaths(r,d))}var f=u.typings||u.types||u.main;if(e.isString(f)){var g=e.toPath(f,r,c);if(e.removeFileExtension(g)===e.removeFileExtension(c(s)))return{packageRootPath:r,moduleFileToTry:s}}}return{moduleFileToTry:s}}function C(t){var r=e.removeFileExtension(t);return"/index"!==c(r.substring(l.fileNameIndex))||function(t,r){if(!t.fileExists)return;for(var n=e.getSupportedExtensions({allowJs:!0},[{extension:"node",isMixedContent:!1},{extension:"json",isMixedContent:!1,scriptKind:6}]),i=0,a=n;i0?e.ExitStatus.DiagnosticsPresent_OutputsSkipped:_.length>0?e.ExitStatus.DiagnosticsPresent_OutputsGenerated:e.ExitStatus.Success}function h(t,r){return void 0===t&&(t=e.sys),{onWatchStatusChange:r||a(t),watchFile:e.maybeBind(t,t.watchFile)||e.returnNoopFileWatcher,watchDirectory:e.maybeBind(t,t.watchDirectory)||e.returnNoopFileWatcher,setTimeout:e.maybeBind(t,t.setTimeout)||e.noop,clearTimeout:e.maybeBind(t,t.clearTimeout)||e.noop}}function b(t,r){var n=e.memoize((function(){return e.getDirectoryPath(e.normalizePath(t.getExecutingFilePath()))}));return{useCaseSensitiveFileNames:function(){return t.useCaseSensitiveFileNames},getNewLine:function(){return t.newLine},getCurrentDirectory:e.memoize((function(){return t.getCurrentDirectory()})),getDefaultLibLocation:n,getDefaultLibFileName:function(t){return e.combinePaths(n(),e.getDefaultLibFileName(t))},fileExists:function(e){return t.fileExists(e)},readFile:function(e,r){return t.readFile(e,r)},directoryExists:function(e){return t.directoryExists(e)},getDirectories:function(e){return t.getDirectories(e)},readDirectory:function(e,r,n,i,a){return t.readDirectory(e,r,n,i,a)},realpath:e.maybeBind(t,t.realpath),getEnvironmentVariable:e.maybeBind(t,t.getEnvironmentVariable),trace:function(e){return t.write(e+t.newLine)},createDirectory:function(e){return t.createDirectory(e)},writeFile:function(e,r,n){return t.writeFile(e,r,n)},createHash:e.maybeBind(t,t.createHash),createProgram:r||e.createEmitAndSemanticDiagnosticsBuilderProgram}}function x(t,r,n,i){void 0===t&&(t=e.sys);var a=function(e){return t.write(e+t.newLine)},o=b(t,r);return e.copyProperties(o,h(t,i)),o.afterProgramCreate=function(r){var i=r.getCompilerOptions(),c=e.getNewLineCharacter(i,(function(){return t.newLine}));y(r,n,a,(function(t){return o.onWatchStatusChange(e.createCompilerDiagnostic(s(t),t),c,i,t)}))},o}function D(t,r,n){r(n),t.exit(e.ExitStatus.DiagnosticsPresent_OutputsSkipped)}e.createDiagnosticReporter=r,e.screenStartingMessageCodes=[e.Diagnostics.Starting_compilation_in_watch_mode.code,e.Diagnostics.File_change_detected_Starting_incremental_compilation.code],e.getLocaleTimeString=i,e.createWatchStatusReporter=a,e.parseConfigFileWithSystem=function(t,r,n,i,a){var o=i;o.onUnRecoverableConfigFileDiagnostic=function(e){return D(i,a,e)};var s=e.getParsedCommandLineOfConfigFile(t,r,o,void 0,n);return o.onUnRecoverableConfigFileDiagnostic=void 0,s},e.getErrorCountForSummary=o,e.getWatchErrorSummaryDiagnosticMessage=s,e.getErrorSummaryText=c,e.isBuilderProgram=u,e.listFiles=l,e.explainFiles=_,e.explainIfFileIsRedirect=d,e.getMatchedFileSpec=p,e.getMatchedIncludeSpec=f,e.fileIncludeReasonToDiagnostics=g,e.emitFilesAndReportErrors=y,e.emitFilesAndReportErrorsAndGetExitStatus=v,e.noopFileWatcher={close:e.noop},e.returnNoopFileWatcher=function(){return e.noopFileWatcher},e.createWatchHost=h,e.WatchType={ConfigFile:"Config file",ExtendedConfigFile:"Extended config file",SourceFile:"Source file",MissingFile:"Missing file",WildcardDirectory:"Wild card directory",FailedLookupLocations:"Failed Lookup Locations",TypeRoots:"Type roots"},e.createWatchFactory=function(t,r){var n=t.trace?r.extendedDiagnostics?e.WatchLogLevel.Verbose:r.diagnostics?e.WatchLogLevel.TriggerOnly:e.WatchLogLevel.None:e.WatchLogLevel.None,i=n!==e.WatchLogLevel.None?function(e){return t.trace(e)}:e.noop,a=e.getWatchFactory(t,n,i);return a.writeLog=i,a},e.createCompilerHostFromProgramHost=function(t,r,n){void 0===n&&(n=t);var i=t.useCaseSensitiveFileNames(),a=e.memoize((function(){return t.getNewLine()}));return{getSourceFile:function(n,i,a){var o;try{e.performance.mark("beforeIORead"),o=t.readFile(n,r().charset),e.performance.mark("afterIORead"),e.performance.measure("I/O Read","beforeIORead","afterIORead")}catch(e){a&&a(e.message),o=""}return void 0!==o?e.createSourceFile(n,o,i):void 0},getDefaultLibLocation:e.maybeBind(t,t.getDefaultLibLocation),getDefaultLibFileName:function(e){return t.getDefaultLibFileName(e)},writeFile:function(r,n,i,a){try{e.performance.mark("beforeIOWrite"),e.writeFileEnsuringDirectories(r,n,i,(function(e,r,n){return t.writeFile(e,r,n)}),(function(e){return t.createDirectory(e)}),(function(e){return t.directoryExists(e)})),e.performance.mark("afterIOWrite"),e.performance.measure("I/O Write","beforeIOWrite","afterIOWrite")}catch(e){a&&a(e.message)}},getCurrentDirectory:e.memoize((function(){return t.getCurrentDirectory()})),useCaseSensitiveFileNames:function(){return i},getCanonicalFileName:e.createGetCanonicalFileName(i),getNewLine:function(){return e.getNewLineCharacter(r(),a)},fileExists:function(e){return t.fileExists(e)},readFile:function(e){return t.readFile(e)},trace:e.maybeBind(t,t.trace),directoryExists:e.maybeBind(n,n.directoryExists),getDirectories:e.maybeBind(n,n.getDirectories),realpath:e.maybeBind(t,t.realpath),getEnvironmentVariable:e.maybeBind(t,t.getEnvironmentVariable)||function(){return""},createHash:e.maybeBind(t,t.createHash),readDirectory:e.maybeBind(t,t.readDirectory)}},e.setGetSourceFileAsHashVersioned=function(t,r){var n=t.getSourceFile,i=e.maybeBind(r,r.createHash)||e.generateDjb2Hash;t.getSourceFile=function(){for(var e=[],r=0;re?t:e}function c(t){return e.fileExtensionIs(t,".d.ts")}function u(e){return!!e&&!!e.buildOrder}function l(e){return u(e)?e.buildOrder:e}function _(t,r){return function(n){var i=r?"["+e.formatColorAndReset(e.getLocaleTimeString(t),e.ForegroundColorEscapeSequences.Grey)+"] ":e.getLocaleTimeString(t)+" - ";i+=""+e.flattenDiagnosticMessageText(n.messageText,t.newLine)+(t.newLine+t.newLine),t.write(i)}}function d(t,r,n,i){var a=e.createProgramHost(t,r);return a.getModifiedTime=t.getModifiedTime?function(e){return t.getModifiedTime(e)}:e.returnUndefined,a.setModifiedTime=t.setModifiedTime?function(e,r){return t.setModifiedTime(e,r)}:e.noop,a.deleteFile=t.deleteFile?function(e){return t.deleteFile(e)}:e.noop,a.reportDiagnostic=n||e.createDiagnosticReporter(t),a.reportSolutionBuilderStatus=i||_(t),a.now=e.maybeBind(t,t.now),a}function p(t,r,n,i,a){var o,s,c=r,u=r,l=c.getCurrentDirectory(),_=e.createGetCanonicalFileName(c.useCaseSensitiveFileNames()),d=(o=i,s={},e.commonOptionsWithBuild.forEach((function(t){e.hasProperty(o,t.name)&&(s[t.name]=o[t.name])})),s),p=e.createCompilerHostFromProgramHost(c,(function(){return D.projectCompilerOptions}));e.setGetSourceFileAsHashVersioned(p,c),p.getParsedCommandLine=function(e){return y(D,e,g(D,e))},p.resolveModuleNames=e.maybeBind(c,c.resolveModuleNames),p.resolveTypeReferenceDirectives=e.maybeBind(c,c.resolveTypeReferenceDirectives);var f=p.resolveModuleNames?void 0:e.createModuleResolutionCache(l,_);if(!p.resolveModuleNames){var m=function(t,r,n){return e.resolveModuleName(t,r,D.projectCompilerOptions,p,f,n).resolvedModule};p.resolveModuleNames=function(t,r,n,i){return e.loadWithLocalCache(e.Debug.checkEachDefined(t),r,i,m)}}var v=e.createWatchFactory(u,i),h=v.watchFile,b=v.watchDirectory,x=v.writeLog,D={host:c,hostWithWatch:u,currentDirectory:l,getCanonicalFileName:_,parseConfigFileHost:e.parseConfigHostFromCompilerHostLike(c),write:e.maybeBind(c,c.trace),options:i,baseCompilerOptions:d,rootNames:n,baseWatchOptions:a,resolvedConfigFilePaths:new e.Map,configFileCache:new e.Map,projectStatus:new e.Map,buildInfoChecked:new e.Map,extendedConfigCache:new e.Map,builderPrograms:new e.Map,diagnostics:new e.Map,projectPendingBuild:new e.Map,projectErrorsReported:new e.Map,compilerHost:p,moduleResolutionCache:f,buildOrder:void 0,readFileWithCache:function(e){return c.readFile(e)},projectCompilerOptions:d,cache:void 0,allProjectBuildPending:!0,needsSummary:!0,watchAllProjectsPending:t,currentInvalidatedProject:void 0,watch:t,allWatchedWildcardDirectories:new e.Map,allWatchedInputFiles:new e.Map,allWatchedConfigFiles:new e.Map,allWatchedExtendedConfigFiles:new e.Map,timerToBuildInvalidatedProject:void 0,reportFileChangeDetected:!1,watchFile:h,watchDirectory:b,writeLog:x};return D}function f(t,r){return e.toPath(r,t.currentDirectory,t.getCanonicalFileName)}function g(e,t){var r=e.resolvedConfigFilePaths,n=r.get(t);if(void 0!==n)return n;var i=f(e,t);return r.set(t,i),i}function m(e){return!!e.options}function y(t,r,n){var i,a=t.configFileCache,o=a.get(n);if(o)return m(o)?o:void 0;var s,c=t.parseConfigFileHost,u=t.baseCompilerOptions,l=t.baseWatchOptions,_=t.extendedConfigCache,d=t.host;return d.getParsedCommandLine?(s=d.getParsedCommandLine(r))||(i=e.createCompilerDiagnostic(e.Diagnostics.File_0_not_found,r)):(c.onUnRecoverableConfigFileDiagnostic=function(e){return i=e},s=e.getParsedCommandLineOfConfigFile(r,u,c,_,l),c.onUnRecoverableConfigFileDiagnostic=e.noop),a.set(n,s||i),s}function v(t,r){return e.resolveConfigFileProjectName(e.resolvePath(t.currentDirectory,r))}function h(t,r){for(var n,i,a=new e.Map,o=new e.Map,s=[],c=0,u=r;c0);var o={sourceFile:n.options.configFile,commandLine:n};i.directoryToModuleNameMap.setOwnMap(i.directoryToModuleNameMap.getOrCreateMapOfCacheRedirects(o)),i.moduleNameToDirectoryMap.setOwnMap(i.moduleNameToDirectoryMap.getOrCreateMapOfCacheRedirects(o))}i.directoryToModuleNameMap.setOwnOptions(n.options),i.moduleNameToDirectoryMap.setOwnOptions(n.options)}(u,l,p),h=r.createProgram(p.fileNames,p.options,i,function(t,r,n){var i=t.options,a=t.builderPrograms,o=t.compilerHost;if(i.force)return;var s=a.get(r);return s||e.readBuilderProgram(n.options,o)}(u,_,p),e.getConfigFileParsingDiagnostics(p),p.projectReferences),u.watch&&u.builderPrograms.set(_,h),D++}function N(e,t,r){var n;e.length?(n=O(u,_,h,p,e,t,r),b=n.buildResult,D=n.step):D++}function F(r){e.Debug.assertIsDefined(h),N(__spreadArray(__spreadArray(__spreadArray(__spreadArray([],h.getConfigFileParsingDiagnostics()),h.getOptionsDiagnostics(r)),h.getGlobalDiagnostics(r)),h.getSyntacticDiagnostics(void 0,r)),t.SyntaxErrors,"Syntactic")}function P(r){N(e.Debug.checkDefined(h).getSemanticDiagnostics(void 0,r),t.TypeErrors,"Semantic")}function M(r,a,o){var l,d;e.Debug.assertIsDefined(h),e.Debug.assert(D===n.Emit),h.backupState();var g=[],m=e.emitFilesAndReportErrors(h,(function(e){return(d||(d=[])).push(e)}),void 0,void 0,(function(e,t,r){return g.push({name:e,text:t,writeByteOrderMark:r})}),a,!1,o).emitResult;if(d)return h.restoreState(),l=O(u,_,h,p,d,t.DeclarationEmitErrors,"Declaration file"),b=l.buildResult,D=l.step,{emitSkipped:!0,diagnostics:m.diagnostics};var y=u.host,v=u.compilerHost,x=t.DeclarationOutputUnchanged,S=i,T=!1,C=e.createDiagnosticCollection(),E=new e.Map;return g.forEach((function(n){var i,a=n.name,o=n.text,l=n.writeByteOrderMark;!T&&c(a)&&(y.fileExists(a)&&u.readFileWithCache(a)===o?i=y.getModifiedTime(a):(x&=~t.DeclarationOutputUnchanged,T=!0)),E.set(f(u,a),a),e.writeFile(r?{writeFile:r}:v,C,a,o,l),void 0!==i&&(S=s(i,S))})),B(C,E,S,T,g.length?g[0].name:e.getFirstProjectOutput(p,!y.useCaseSensitiveFileNames()),x),m}function L(r,i){e.Debug.assertIsDefined(h),e.Debug.assert(D===n.EmitBuildInfo);var a=h.emitBuildInfo(r,i);return a.diagnostics.length&&(ee(u,a.diagnostics),u.diagnostics.set(_,__spreadArray(__spreadArray([],u.diagnostics.get(_)),a.diagnostics)),b=t.EmitErrors&b),a.emittedFiles&&u.write&&a.emittedFiles.forEach((function(e){return w(u,p,e)})),I(u,h,p),D=n.QueueReferencingProjects,a}function B(r,i,o,s,c,l){var d,f=r.getDiagnostics();if(f.length)return d=O(u,_,h,p,f,t.EmitErrors,"Emit"),b=d.buildResult,D=d.step,f;u.write&&i.forEach((function(e){return w(u,p,e)}));var g=R(u,p,o,e.Diagnostics.Updating_unchanged_output_timestamps_of_project_0,i);return u.diagnostics.delete(_),u.projectStatus.set(_,{type:e.UpToDateStatusType.UpToDate,newestDeclarationFileContentChangedTime:s?a:g,oldestOutputFileName:c}),I(u,h,p),D=n.QueueReferencingProjects,b=l,f}function J(a,s){if(e.Debug.assert(o===r.UpdateBundle),u.options.dry)return Z(u,e.Diagnostics.A_non_dry_build_would_update_output_of_project_0,l),b=t.Success,void(D=n.QueueReferencingProjects);u.options.verbose&&Z(u,e.Diagnostics.Updating_output_of_project_0,l);var c=u.compilerHost;u.projectCompilerOptions=p.options;var h=e.emitUsingBuildInfo(p,c,(function(e){var t=v(u,e.path);return y(u,t,g(u,t))}),s);if(e.isString(h))return Z(u,e.Diagnostics.Cannot_update_output_of_project_0_because_there_was_error_reading_file_1,l,Y(u,h)),D=n.BuildInvalidatedProjectOfBundle,x=A(r.Build,u,l,_,d,p,m);e.Debug.assert(!!h.length);var S=e.createDiagnosticCollection(),T=new e.Map;return h.forEach((function(t){var r=t.name,n=t.text,i=t.writeByteOrderMark;T.set(f(u,r),r),e.writeFile(a?{writeFile:a}:c,S,r,n,i)})),{emitSkipped:!1,diagnostics:B(S,T,i,!1,h[0].name,t.DeclarationOutputUnchanged)}}function z(t,r,i,a){for(;D<=t&&Do)}}}function F(t,r,n){var i=t.options;return!(r.type===e.UpToDateStatusType.OutOfDateWithPrepend&&!i.force)||(0===n.fileNames.length||!!e.getConfigFileParsingDiagnostics(n).length||!e.isIncrementalCompilation(n.options))}function P(t,n,i){if(t.projectPendingBuild.size&&!u(n)){if(t.currentInvalidatedProject)return e.arrayIsEqualTo(t.currentInvalidatedProject.buildOrder,n)?t.currentInvalidatedProject:void 0;for(var a=t.options,o=t.projectPendingBuild,s=0;su&&(o=p,u=f)}if(!r.fileNames.length&&!e.canJsonReportNoInputFiles(r.raw))return{type:e.UpToDateStatusType.ContainerOnly};for(var m,v=e.getAllProjectOutputs(r,!l.useCaseSensitiveFileNames()),h="(none)",b=a,x="(none)",D=i,S=i,T=!1,C=0,E=v;CD&&(D=N,x=k),c(k)&&(S=s(S,l.getModifiedTime(k)||e.missingFileModifiedTime))}var A,F=!1,P=!1;if(r.projectReferences){t.projectStatus.set(n,{type:e.UpToDateStatusType.ComputingUpstream});for(var w=0,I=r.projectReferences;w=0},t.findArgument=function(t){var r=e.sys.args.indexOf(t);return r>=0&&r214)return 2;if(46===e.charCodeAt(0))return 3;if(95===e.charCodeAt(0))return 4;if(t){var r=/^@([^/]+)\/([^/]+)$/.exec(e);if(r){var n=i(r[1],!1);if(0!==n)return{name:r[1],isScopeName:!0,result:n};var a=i(r[2],!1);return 0!==a?{name:r[2],isScopeName:!1,result:a}:0}}return encodeURIComponent(e)!==e?5:0}function a(t,r,n,i){var a=i?"Scope":"Package";switch(r){case 1:return"'"+t+"':: "+a+" name '"+n+"' cannot be empty";case 2:return"'"+t+"':: "+a+" name '"+n+"' should be less than 214 characters";case 3:return"'"+t+"':: "+a+" name '"+n+"' cannot start with '.'";case 4:return"'"+t+"':: "+a+" name '"+n+"' cannot start with '_'";case 5:return"'"+t+"':: "+a+" name '"+n+"' contains non URI safe characters";case 0:return e.Debug.fail();default:throw e.Debug.assertNever(r)}}t.validatePackageName=function(e){return i(e,!0)},t.renderPackageNameValidationFailure=function(e,t){return"object"==typeof e?a(t,e.result,e.name,e.isScopeName):a(t,e,t,!1)}}(e.JsTyping||(e.JsTyping={}))}(ts||(ts={})),function(e){var t,r;function n(e){return{indentSize:4,tabSize:4,newLineCharacter:e||"\n",convertTabsToSpaces:!0,indentStyle:t.Smart,insertSpaceAfterConstructor:!1,insertSpaceAfterCommaDelimiter:!0,insertSpaceAfterSemicolonInForStatements:!0,insertSpaceBeforeAndAfterBinaryOperators:!0,insertSpaceAfterKeywordsInControlFlowStatements:!0,insertSpaceAfterFunctionKeywordForAnonymousFunctions:!1,insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis:!1,insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets:!1,insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces:!0,insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces:!1,insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces:!1,insertSpaceBeforeFunctionParenthesis:!1,placeOpenBraceOnNewLineForFunctions:!1,placeOpenBraceOnNewLineForControlBlocks:!1,semicolons:r.Ignore,trimTrailingWhitespace:!0}}!function(e){var t=function(){function e(e){this.text=e}return e.prototype.getText=function(e,t){return 0===e&&t===this.text.length?this.text:this.text.substring(e,t)},e.prototype.getLength=function(){return this.text.length},e.prototype.getChangeRange=function(){},e}();e.fromString=function(e){return new t(e)}}(e.ScriptSnapshot||(e.ScriptSnapshot={})),function(e){e[e.Dependencies=1]="Dependencies",e[e.DevDependencies=2]="DevDependencies",e[e.PeerDependencies=4]="PeerDependencies",e[e.OptionalDependencies=8]="OptionalDependencies",e[e.All=15]="All"}(e.PackageJsonDependencyGroup||(e.PackageJsonDependencyGroup={})),function(e){e[e.Off=0]="Off",e[e.On=1]="On",e[e.Auto=2]="Auto"}(e.PackageJsonAutoImportPreference||(e.PackageJsonAutoImportPreference={})),function(e){e[e.Semantic=0]="Semantic",e[e.PartialSemantic=1]="PartialSemantic",e[e.Syntactic=2]="Syntactic"}(e.LanguageServiceMode||(e.LanguageServiceMode={})),e.emptyOptions={},function(e){e.Original="original",e.TwentyTwenty="2020"}(e.SemanticClassificationFormat||(e.SemanticClassificationFormat={})),function(e){e.none="none",e.definition="definition",e.reference="reference",e.writtenReference="writtenReference"}(e.HighlightSpanKind||(e.HighlightSpanKind={})),function(e){e[e.None=0]="None",e[e.Block=1]="Block",e[e.Smart=2]="Smart"}(t=e.IndentStyle||(e.IndentStyle={})),function(e){e.Ignore="ignore",e.Insert="insert",e.Remove="remove"}(r=e.SemicolonPreference||(e.SemicolonPreference={})),e.getDefaultFormatCodeSettings=n,e.testFormatSettings=n("\n"),function(e){e[e.aliasName=0]="aliasName",e[e.className=1]="className",e[e.enumName=2]="enumName",e[e.fieldName=3]="fieldName",e[e.interfaceName=4]="interfaceName",e[e.keyword=5]="keyword",e[e.lineBreak=6]="lineBreak",e[e.numericLiteral=7]="numericLiteral",e[e.stringLiteral=8]="stringLiteral",e[e.localName=9]="localName",e[e.methodName=10]="methodName",e[e.moduleName=11]="moduleName",e[e.operator=12]="operator",e[e.parameterName=13]="parameterName",e[e.propertyName=14]="propertyName",e[e.punctuation=15]="punctuation",e[e.space=16]="space",e[e.text=17]="text",e[e.typeParameterName=18]="typeParameterName",e[e.enumMemberName=19]="enumMemberName",e[e.functionName=20]="functionName",e[e.regularExpressionLiteral=21]="regularExpressionLiteral"}(e.SymbolDisplayPartKind||(e.SymbolDisplayPartKind={})),function(e){e.Comment="comment",e.Region="region",e.Code="code",e.Imports="imports"}(e.OutliningSpanKind||(e.OutliningSpanKind={})),function(e){e[e.JavaScript=0]="JavaScript",e[e.SourceMap=1]="SourceMap",e[e.Declaration=2]="Declaration"}(e.OutputFileType||(e.OutputFileType={})),function(e){e[e.None=0]="None",e[e.InMultiLineCommentTrivia=1]="InMultiLineCommentTrivia",e[e.InSingleQuoteStringLiteral=2]="InSingleQuoteStringLiteral",e[e.InDoubleQuoteStringLiteral=3]="InDoubleQuoteStringLiteral",e[e.InTemplateHeadOrNoSubstitutionTemplate=4]="InTemplateHeadOrNoSubstitutionTemplate",e[e.InTemplateMiddleOrTail=5]="InTemplateMiddleOrTail",e[e.InTemplateSubstitutionPosition=6]="InTemplateSubstitutionPosition"}(e.EndOfLineState||(e.EndOfLineState={})),function(e){e[e.Punctuation=0]="Punctuation",e[e.Keyword=1]="Keyword",e[e.Operator=2]="Operator",e[e.Comment=3]="Comment",e[e.Whitespace=4]="Whitespace",e[e.Identifier=5]="Identifier",e[e.NumberLiteral=6]="NumberLiteral",e[e.BigIntLiteral=7]="BigIntLiteral",e[e.StringLiteral=8]="StringLiteral",e[e.RegExpLiteral=9]="RegExpLiteral"}(e.TokenClass||(e.TokenClass={})),function(e){e.unknown="",e.warning="warning",e.keyword="keyword",e.scriptElement="script",e.moduleElement="module",e.classElement="class",e.localClassElement="local class",e.interfaceElement="interface",e.typeElement="type",e.enumElement="enum",e.enumMemberElement="enum member",e.variableElement="var",e.localVariableElement="local var",e.functionElement="function",e.localFunctionElement="local function",e.memberFunctionElement="method",e.memberGetAccessorElement="getter",e.memberSetAccessorElement="setter",e.memberVariableElement="property",e.constructorImplementationElement="constructor",e.callSignatureElement="call",e.indexSignatureElement="index",e.constructSignatureElement="construct",e.parameterElement="parameter",e.typeParameterElement="type parameter",e.primitiveType="primitive type",e.label="label",e.alias="alias",e.constElement="const",e.letElement="let",e.directory="directory",e.externalModuleName="external module name",e.jsxAttribute="JSX attribute",e.string="string"}(e.ScriptElementKind||(e.ScriptElementKind={})),function(e){e.none="",e.publicMemberModifier="public",e.privateMemberModifier="private",e.protectedMemberModifier="protected",e.exportedModifier="export",e.ambientModifier="declare",e.staticModifier="static",e.abstractModifier="abstract",e.optionalModifier="optional",e.deprecatedModifier="deprecated",e.dtsModifier=".d.ts",e.tsModifier=".ts",e.tsxModifier=".tsx",e.jsModifier=".js",e.jsxModifier=".jsx",e.jsonModifier=".json"}(e.ScriptElementKindModifier||(e.ScriptElementKindModifier={})),function(e){e.comment="comment",e.identifier="identifier",e.keyword="keyword",e.numericLiteral="number",e.bigintLiteral="bigint",e.operator="operator",e.stringLiteral="string",e.whiteSpace="whitespace",e.text="text",e.punctuation="punctuation",e.className="class name",e.enumName="enum name",e.interfaceName="interface name",e.moduleName="module name",e.typeParameterName="type parameter name",e.typeAliasName="type alias name",e.parameterName="parameter name",e.docCommentTagName="doc comment tag name",e.jsxOpenTagName="jsx open tag name",e.jsxCloseTagName="jsx close tag name",e.jsxSelfClosingTagName="jsx self closing tag name",e.jsxAttribute="jsx attribute",e.jsxText="jsx text",e.jsxAttributeStringLiteralValue="jsx attribute string literal value"}(e.ClassificationTypeNames||(e.ClassificationTypeNames={})),function(e){e[e.comment=1]="comment",e[e.identifier=2]="identifier",e[e.keyword=3]="keyword",e[e.numericLiteral=4]="numericLiteral",e[e.operator=5]="operator",e[e.stringLiteral=6]="stringLiteral",e[e.regularExpressionLiteral=7]="regularExpressionLiteral",e[e.whiteSpace=8]="whiteSpace",e[e.text=9]="text",e[e.punctuation=10]="punctuation",e[e.className=11]="className",e[e.enumName=12]="enumName",e[e.interfaceName=13]="interfaceName",e[e.moduleName=14]="moduleName",e[e.typeParameterName=15]="typeParameterName",e[e.typeAliasName=16]="typeAliasName",e[e.parameterName=17]="parameterName",e[e.docCommentTagName=18]="docCommentTagName",e[e.jsxOpenTagName=19]="jsxOpenTagName",e[e.jsxCloseTagName=20]="jsxCloseTagName",e[e.jsxSelfClosingTagName=21]="jsxSelfClosingTagName",e[e.jsxAttribute=22]="jsxAttribute",e[e.jsxText=23]="jsxText",e[e.jsxAttributeStringLiteralValue=24]="jsxAttributeStringLiteralValue",e[e.bigintLiteral=25]="bigintLiteral"}(e.ClassificationType||(e.ClassificationType={}))}(ts||(ts={})),function(e){function t(t){switch(t.kind){case 249:return e.isInJSFile(t)&&e.getJSDocEnumTag(t)?7:1;case 160:case 198:case 163:case 162:case 288:case 289:case 165:case 164:case 166:case 167:case 168:case 251:case 208:case 209:case 287:case 280:return 1;case 159:case 253:case 254:case 177:return 2;case 331:return void 0===t.name?3:2;case 291:case 252:return 3;case 256:return e.isAmbientModule(t)||1===e.getModuleInstanceState(t)?5:4;case 255:case 264:case 265:case 260:case 261:case 266:case 267:return 7;case 297:return 5}return 7}function r(t){for(;157===t.parent.kind;)t=t.parent;return e.isInternalModuleImportEqualsDeclaration(t.parent)&&t.parent.moduleReference===t}function n(e){return e.expression}function i(e){return e.tag}function a(e){return e.tagName}function o(t,r,n,i,a){var o=i?c(t):s(t);return a&&(o=e.skipOuterExpressions(o)),!!o&&!!o.parent&&r(o.parent)&&n(o.parent)===o}function s(e){return _(e)?e.parent:e}function c(e){return _(e)||d(e)?e.parent:e}function u(t){var r;return e.isIdentifier(t)&&(null===(r=e.tryCast(t.parent,e.isBreakOrContinueStatement))||void 0===r?void 0:r.label)===t}function l(t){var r;return e.isIdentifier(t)&&(null===(r=e.tryCast(t.parent,e.isLabeledStatement))||void 0===r?void 0:r.label)===t}function _(t){var r;return(null===(r=e.tryCast(t.parent,e.isPropertyAccessExpression))||void 0===r?void 0:r.name)===t}function d(t){var r;return(null===(r=e.tryCast(t.parent,e.isElementAccessExpression))||void 0===r?void 0:r.argumentExpression)===t}e.scanner=e.createScanner(99,!0),function(e){e[e.None=0]="None",e[e.Value=1]="Value",e[e.Type=2]="Type",e[e.Namespace=4]="Namespace",e[e.All=7]="All"}(e.SemanticMeaning||(e.SemanticMeaning={})),e.getMeaningFromDeclaration=t,e.getMeaningFromLocation=function(n){return 297===(n=F(n)).kind?1:266===n.parent.kind||272===n.parent.kind||265===n.parent.kind||262===n.parent.kind||e.isImportEqualsDeclaration(n.parent)&&n===n.parent.name?7:r(n)?function(t){var r=157===t.kind?t:e.isQualifiedName(t.parent)&&t.parent.right===t?t.parent:void 0;return r&&260===r.parent.kind?7:4}(n):e.isDeclarationName(n)?t(n.parent):e.isEntityName(n)&&e.isJSDocNameReference(n.parent)?7:function(t){e.isRightSideOfQualifiedNameOrPropertyAccess(t)&&(t=t.parent);switch(t.kind){case 107:return!e.isExpressionNode(t);case 187:return!0}switch(t.parent.kind){case 173:return!0;case 195:return!t.parent.isTypeOf;case 223:return!e.isExpressionWithTypeArgumentsInClassExtendsClause(t.parent)}return!1}(n)?2:function(e){return function(e){var t=e,r=!0;if(157===t.parent.kind){for(;t.parent&&157===t.parent.kind;)t=t.parent;r=t.right===e}return 173===t.parent.kind&&!r}(e)||function(e){var t=e,r=!0;if(201===t.parent.kind){for(;t.parent&&201===t.parent.kind;)t=t.parent;r=t.name===e}if(!r&&223===t.parent.kind&&286===t.parent.parent.kind){var n=t.parent.parent.parent;return 252===n.kind&&116===t.parent.parent.token||253===n.kind&&93===t.parent.parent.token}return!1}(e)}(n)?4:e.isTypeParameterDeclaration(n.parent)?(e.Debug.assert(e.isJSDocTemplateTag(n.parent.parent)),2):e.isLiteralTypeNode(n.parent)?3:1},e.isInRightSideOfInternalImportEqualsDeclaration=r,e.isCallExpressionTarget=function(t,r,i){return void 0===r&&(r=!1),void 0===i&&(i=!1),o(t,e.isCallExpression,n,r,i)},e.isNewExpressionTarget=function(t,r,i){return void 0===r&&(r=!1),void 0===i&&(i=!1),o(t,e.isNewExpression,n,r,i)},e.isCallOrNewExpressionTarget=function(t,r,i){return void 0===r&&(r=!1),void 0===i&&(i=!1),o(t,e.isCallOrNewExpression,n,r,i)},e.isTaggedTemplateTag=function(t,r,n){return void 0===r&&(r=!1),void 0===n&&(n=!1),o(t,e.isTaggedTemplateExpression,i,r,n)},e.isDecoratorTarget=function(t,r,i){return void 0===r&&(r=!1),void 0===i&&(i=!1),o(t,e.isDecorator,n,r,i)},e.isJsxOpeningLikeElementTagName=function(t,r,n){return void 0===r&&(r=!1),void 0===n&&(n=!1),o(t,e.isJsxOpeningLikeElement,a,r,n)},e.climbPastPropertyAccess=s,e.climbPastPropertyOrElementAccess=c,e.getTargetLabel=function(e,t){for(;e;){if(245===e.kind&&e.label.escapedText===t)return e.label;e=e.parent}},e.hasPropertyAccessExpressionWithName=function(t,r){return!!e.isPropertyAccessExpression(t.expression)&&t.expression.name.text===r},e.isJumpStatementTarget=u,e.isLabelOfLabeledStatement=l,e.isLabelName=function(e){return l(e)||u(e)},e.isTagName=function(t){var r;return(null===(r=e.tryCast(t.parent,e.isJSDocTag))||void 0===r?void 0:r.tagName)===t},e.isRightSideOfQualifiedName=function(t){var r;return(null===(r=e.tryCast(t.parent,e.isQualifiedName))||void 0===r?void 0:r.right)===t},e.isRightSideOfPropertyAccess=_,e.isArgumentExpressionOfElementAccess=d,e.isNameOfModuleDeclaration=function(t){var r;return(null===(r=e.tryCast(t.parent,e.isModuleDeclaration))||void 0===r?void 0:r.name)===t},e.isNameOfFunctionDeclaration=function(t){var r;return e.isIdentifier(t)&&(null===(r=e.tryCast(t.parent,e.isFunctionLike))||void 0===r?void 0:r.name)===t},e.isLiteralNameOfPropertyDeclarationOrIndexAccess=function(t){switch(t.parent.kind){case 163:case 162:case 288:case 291:case 165:case 164:case 167:case 168:case 256:return e.getNameOfDeclaration(t.parent)===t;case 202:return t.parent.argumentExpression===t;case 158:return!0;case 191:return 189===t.parent.parent.kind;default:return!1}},e.isExpressionOfExternalModuleImportEqualsDeclaration=function(t){return e.isExternalModuleImportEqualsDeclaration(t.parent.parent)&&e.getExternalModuleImportEqualsDeclarationExpression(t.parent.parent)===t},e.getContainerNode=function(t){for(e.isJSDocTypeAlias(t)&&(t=t.parent.parent);;){if(!(t=t.parent))return;switch(t.kind){case 297:case 165:case 164:case 251:case 208:case 167:case 168:case 252:case 253:case 255:case 256:return t}}},e.getNodeKind=function t(r){switch(r.kind){case 297:return e.isExternalModule(r)?"module":"script";case 256:return"module";case 252:case 221:return"class";case 253:return"interface";case 254:case 324:case 331:return"type";case 255:return"enum";case 249:return c(r);case 198:return c(e.getRootDeclaration(r));case 209:case 251:case 208:return"function";case 167:return"getter";case 168:return"setter";case 165:case 164:return"method";case 288:var n=r.initializer;return e.isFunctionLike(n)?"method":"property";case 163:case 162:case 289:case 290:return"property";case 171:return"index";case 170:return"construct";case 169:return"call";case 166:return"constructor";case 159:return"type parameter";case 291:return"enum member";case 160:return e.hasSyntacticModifier(r,92)?"property":"parameter";case 260:case 265:case 270:case 263:case 269:return"alias";case 216:var i=e.getAssignmentDeclarationKind(r),a=r.right;switch(i){case 7:case 8:case 9:case 0:return"";case 1:case 2:var o=t(a);return""===o?"const":o;case 3:return e.isFunctionExpression(a)?"method":"property";case 4:return"property";case 5:return e.isFunctionExpression(a)?"method":"property";case 6:return"local class";default:return e.assertType(i),""}case 78:return e.isImportClause(r.parent)?"alias":"";case 266:var s=t(r.expression);return""===s?"const":s;default:return""}function c(t){return e.isVarConst(t)?"const":e.isLet(t)?"let":"var"}},e.isThis=function(t){switch(t.kind){case 107:return!0;case 78:return e.identifierIsThisKeyword(t)&&160===t.parent.kind;default:return!1}};var p=/^\/\/\/\s*=r.end}function y(e,t,r,n){return Math.max(e,r)t)break;var u=c.getEnd();if(tt.end||e.pos===t.end)&&q(e,n)?r(e):void 0}))}(r)}function M(t,r,n,i){var a=function a(o){if(L(o)&&1!==o.kind)return o;var s=o.getChildren(r),c=e.binarySearchKey(s,t,(function(e,t){return t}),(function(e,r){return t=s[e-1].end?0:1:-1}));if(c>=0&&s[c]){var u=s[c];if(t=t||!q(u,r)||j(u)){var l=B(s,c,r);return l&&R(l,r)}return a(u)}}e.Debug.assert(void 0!==n||297===o.kind||1===o.kind||e.isJSDocCommentContainingNode(o));var _=B(s,s.length,r);return _&&R(_,r)}(n||r);return e.Debug.assert(!(a&&j(a))),a}function L(t){return e.isToken(t)&&!j(t)}function R(e,t){if(L(e))return e;var r=e.getChildren(t);if(0===r.length)return e;var n=B(r,r.length,t);return n&&R(n,t)}function B(t,r,n){for(var i=r-1;i>=0;i--){if(j(t[i]))e.Debug.assert(i>0,"`JsxText` tokens should not be the first child of `JsxElement | JsxSelfClosingElement`");else if(q(t[i],n))return t[i]}}function j(t){return e.isJsxText(t)&&t.containsOnlyTriviaWhiteSpaces}function J(t,r,n){var i=e.tokenToString(t.kind),a=e.tokenToString(r),o=t.getFullStart(),s=n.text.lastIndexOf(a,o);if(-1!==s){if(n.text.lastIndexOf(i,o-1)=r}))}function V(t,r){if(-1!==r.text.lastIndexOf("<",t?t.pos:r.text.length))for(var n=t,i=0,a=0;n;){switch(n.kind){case 29:if((n=M(n.getFullStart(),r))&&28===n.kind&&(n=M(n.getFullStart(),r)),!n||!e.isIdentifier(n))return;if(!i)return e.isDeclarationName(n)?void 0:{called:n,nTypeArguments:a};i--;break;case 49:i=3;break;case 48:i=2;break;case 31:i++;break;case 19:if(!(n=J(n,18,r)))return;break;case 21:if(!(n=J(n,20,r)))return;break;case 23:if(!(n=J(n,22,r)))return;break;case 27:a++;break;case 38:case 78:case 10:case 8:case 9:case 109:case 94:case 111:case 93:case 138:case 24:case 51:case 57:case 58:break;default:if(e.isTypeNode(n))break;return}n=M(n.getFullStart(),r)}}function K(t,r,n){return e.formatting.getRangeOfEnclosingComment(t,r,void 0,n)}function q(e,t){return 1===e.kind?!!e.jsDoc:0!==e.getWidth(t)}function W(e,t,r){var n=K(e,t,void 0);return!!n&&r===p.test(e.text.substring(n.pos,n.end))}function H(t,r,n){return e.createTextSpanFromBounds(t.getStart(r),(n||t).getEnd())}function G(t){if(!t.isUnterminated)return e.createTextSpanFromBounds(t.getStart()+1,t.getEnd()-1)}function X(e,t){return{span:e,newText:t}}function Q(e){return 149===e.kind}function Y(t,r){return{fileExists:function(e){return t.fileExists(e)},getCurrentDirectory:function(){return r.getCurrentDirectory()},readFile:e.maybeBind(r,r.readFile),useCaseSensitiveFileNames:e.maybeBind(r,r.useCaseSensitiveFileNames),getSymlinkCache:e.maybeBind(r,r.getSymlinkCache)||t.getSymlinkCache,getGlobalTypingsCacheLocation:e.maybeBind(r,r.getGlobalTypingsCacheLocation),getSourceFiles:function(){return t.getSourceFiles()},redirectTargetsMap:t.redirectTargetsMap,getProjectReferenceRedirect:function(e){return t.getProjectReferenceRedirect(e)},isSourceOfProjectReferenceRedirect:function(e){return t.isSourceOfProjectReferenceRedirect(e)},getNearestAncestorDirectoryWithPackageJson:e.maybeBind(r,r.getNearestAncestorDirectoryWithPackageJson),getFileIncludeReasons:function(){return t.getFileIncludeReasons()}}}function Z(e,t){return __assign(__assign({},Y(e,t)),{getCommonSourceDirectory:function(){return e.getCommonSourceDirectory()}})}function $(t,r,n,i,a){return e.factory.createImportDeclaration(void 0,void 0,t||r?e.factory.createImportClause(!!a,t,r&&r.length?e.factory.createNamedImports(r):void 0):void 0,"string"==typeof n?ee(n,i):n)}function ee(t,r){return e.factory.createStringLiteral(t,0===r)}function te(t,r){return e.isStringDoubleQuoted(t,r)?1:0}function re(t,r){if(r.quotePreference&&"auto"!==r.quotePreference)return"single"===r.quotePreference?0:1;var n=t.imports&&e.find(t.imports,(function(t){return e.isStringLiteral(t)&&!e.nodeIsSynthesized(t.parent)}));return n?te(n,t):1}function ne(t){return"default"!==t.escapedName?t.escapedName:e.firstDefined(t.declarations,(function(t){var r=e.getNameOfDeclaration(t);return r&&78===r.kind?r.escapedText:void 0}))}function ie(t,r,n){return e.textSpanContainsPosition(t,r.getStart(n))&&r.getEnd()<=e.textSpanEnd(t)}function ae(e,t){return!!e&&!!t&&e.start===t.start&&e.length===t.length}function oe(e){return e.declarations&&e.declarations.length>0&&160===e.declarations[0].kind}e.getLineStartPositionForPosition=function(t,r){return e.getLineStarts(r)[r.getLineAndCharacterOfPosition(t).line]},e.rangeContainsRange=f,e.rangeContainsRangeExclusive=function(e,t){return g(e,t.pos)&&g(e,t.end)},e.rangeContainsPosition=function(e,t){return e.pos<=t&&t<=e.end},e.rangeContainsPositionExclusive=g,e.startEndContainsRange=m,e.rangeContainsStartEnd=function(e,t,r){return e.pos<=t&&e.end>=r},e.rangeOverlapsWithStartEnd=function(e,t,r){return y(e.pos,e.end,t,r)},e.nodeOverlapsWithStartEnd=function(e,t,r,n){return y(e.getStart(t),e.end,r,n)},e.startEndOverlapsWithStartEnd=y,e.positionBelongsToNode=function(t,r,n){return e.Debug.assert(t.pos<=r),rn.getStart(t)&&rn.getStart(t)},e.isInJSXText=function(t,r){var n=w(t,r);return!!e.isJsxText(n)||(!(18!==n.kind||!e.isJsxExpression(n.parent)||!e.isJsxElement(n.parent.parent))||!(29!==n.kind||!e.isJsxOpeningLikeElement(n.parent)||!e.isJsxElement(n.parent.parent)))},e.isInsideJsxElement=function(e,t){return function(r){for(;r;)if(r.kind>=274&&r.kind<=283||11===r.kind||29===r.kind||31===r.kind||78===r.kind||19===r.kind||18===r.kind||43===r.kind)r=r.parent;else{if(273!==r.kind)return!1;if(t>r.getStart(e))return!0;r=r.parent}return!1}(w(e,t))},e.findPrecedingMatchingToken=J,e.removeOptionality=z,e.isPossiblyTypeArgumentPosition=function t(r,n,i){var a=V(r,n);return void 0!==a&&(e.isPartOfTypeNode(a.called)||0!==U(a.called,a.nTypeArguments,i).length||t(a.called,n,i))},e.getPossibleGenericSignatures=U,e.getPossibleTypeArgumentsInfo=V,e.isInComment=K,e.hasDocComment=function(t,r){var n=w(t,r);return!!e.findAncestor(n,e.isJSDoc)},e.getNodeModifiers=function(t,r){void 0===r&&(r=0);var n=[],i=e.isDeclaration(t)?e.getCombinedNodeFlagsAlwaysIncludeJSDoc(t)&~r:0;return 8&i&&n.push("private"),16&i&&n.push("protected"),4&i&&n.push("public"),32&i&&n.push("static"),128&i&&n.push("abstract"),1&i&&n.push("export"),8192&i&&n.push("deprecated"),8388608&t.flags&&n.push("declare"),266===t.kind&&n.push("export"),n.length>0?n.join(","):""},e.getTypeArgumentOrTypeParameterList=function(t){return 173===t.kind||203===t.kind?t.typeArguments:e.isFunctionLike(t)||252===t.kind||253===t.kind?t.typeParameters:void 0},e.isComment=function(e){return 2===e||3===e},e.isStringOrRegularExpressionOrTemplateLiteral=function(t){return!(10!==t&&13!==t&&!e.isTemplateLiteralKind(t))},e.isPunctuation=function(e){return 18<=e&&e<=77},e.isInsideTemplateLiteral=function(t,r,n){return e.isTemplateLiteralKind(t.kind)&&t.getStart(n)=2||!!e.noEmit},e.createModuleSpecifierResolutionHost=Y,e.getModuleSpecifierResolverHost=Z,e.makeImportIfNecessary=function(e,t,r,n){return e||t&&t.length?$(e,t,r,n):void 0},e.makeImport=$,e.makeStringLiteral=ee,function(e){e[e.Single=0]="Single",e[e.Double=1]="Double"}(e.QuotePreference||(e.QuotePreference={})),e.quotePreferenceFromString=te,e.getQuotePreference=re,e.getQuoteFromPreference=function(t){switch(t){case 0:return"'";case 1:return'"';default:return e.Debug.assertNever(t)}},e.symbolNameNoDefault=function(t){var r=ne(t);return void 0===r?void 0:e.unescapeLeadingUnderscores(r)},e.symbolEscapedNameNoDefault=ne,e.isObjectBindingElementWithoutPropertyName=function(t){return e.isBindingElement(t)&&e.isObjectBindingPattern(t.parent)&&e.isIdentifier(t.name)&&!t.propertyName},e.getPropertySymbolFromBindingElement=function(e,t){var r=e.getTypeAtLocation(t.parent);return r&&e.getPropertyOfType(r,t.name.text)},e.getParentNodeInSpan=function(t,r,n){if(t)for(;t.parent;){if(e.isSourceFile(t.parent)||!ie(n,t.parent,r))return t;t=t.parent}},e.findModifier=function(t,r){return t.modifiers&&e.find(t.modifiers,(function(e){return e.kind===r}))},e.insertImports=function(t,r,n,i){var a=232===(e.isArray(n)?n[0]:n).kind?e.isRequireVariableStatement:e.isAnyImportSyntax,o=e.filter(r.statements,a),s=e.isArray(n)?e.stableSort(n,e.OrganizeImports.compareImportsOrRequireStatements):[n];if(o.length)if(o&&e.OrganizeImports.importsAreSorted(o))for(var c=0,u=s;ca&&r&&"..."!==r&&(e.isWhiteSpaceLike(r.charCodeAt(r.length-1))||t.push(ue(" ",e.SymbolDisplayPartKind.space)),t.push(ue("...",e.SymbolDisplayPartKind.punctuation))),t},writeKeyword:function(t){return c(t,e.SymbolDisplayPartKind.keyword)},writeOperator:function(t){return c(t,e.SymbolDisplayPartKind.operator)},writePunctuation:function(t){return c(t,e.SymbolDisplayPartKind.punctuation)},writeTrailingSemicolon:function(t){return c(t,e.SymbolDisplayPartKind.punctuation)},writeSpace:function(t){return c(t,e.SymbolDisplayPartKind.space)},writeStringLiteral:function(t){return c(t,e.SymbolDisplayPartKind.stringLiteral)},writeParameter:function(t){return c(t,e.SymbolDisplayPartKind.parameterName)},writeProperty:function(t){return c(t,e.SymbolDisplayPartKind.propertyName)},writeLiteral:function(t){return c(t,e.SymbolDisplayPartKind.stringLiteral)},writeSymbol:function(e,r){if(i>a)return;s(),i+=e.length,t.push(ce(e,r))},writeLine:function(){if(i>a)return;i+=1,t.push(de()),r=!0},write:o,writeComment:o,getText:function(){return""},getTextPos:function(){return 0},getColumn:function(){return 0},getLine:function(){return 0},isAtStartOfLine:function(){return!1},hasTrailingWhitespace:function(){return!1},hasTrailingComment:function(){return!1},rawWrite:e.notImplemented,getIndent:function(){return n},increaseIndent:function(){n++},decreaseIndent:function(){n--},clear:u,trackSymbol:e.noop,reportInaccessibleThisError:e.noop,reportInaccessibleUniqueSymbolError:e.noop,reportPrivateInBaseOfClassExpression:e.noop};function s(){if(!(i>a)&&r){var o=e.getIndentString(n);o&&(i+=o.length,t.push(ue(o,e.SymbolDisplayPartKind.space))),r=!1}}function c(e,r){i>a||(s(),i+=e.length,t.push(ue(e,r)))}function u(){t=[],r=!0,n=0,i=0}}();function ce(t,r){return ue(t,function(t){var r=t.flags;if(3&r)return oe(t)?e.SymbolDisplayPartKind.parameterName:e.SymbolDisplayPartKind.localName;if(4&r)return e.SymbolDisplayPartKind.propertyName;if(32768&r)return e.SymbolDisplayPartKind.propertyName;if(65536&r)return e.SymbolDisplayPartKind.propertyName;if(8&r)return e.SymbolDisplayPartKind.enumMemberName;if(16&r)return e.SymbolDisplayPartKind.functionName;if(32&r)return e.SymbolDisplayPartKind.className;if(64&r)return e.SymbolDisplayPartKind.interfaceName;if(384&r)return e.SymbolDisplayPartKind.enumName;if(1536&r)return e.SymbolDisplayPartKind.moduleName;if(8192&r)return e.SymbolDisplayPartKind.methodName;if(262144&r)return e.SymbolDisplayPartKind.typeParameterName;if(524288&r)return e.SymbolDisplayPartKind.aliasName;if(2097152&r)return e.SymbolDisplayPartKind.aliasName;return e.SymbolDisplayPartKind.text}(r))}function ue(t,r){return{text:t,kind:e.SymbolDisplayPartKind[r]}}function le(t){return ue(e.tokenToString(t),e.SymbolDisplayPartKind.keyword)}function _e(t){return ue(t,e.SymbolDisplayPartKind.text)}e.symbolPart=ce,e.displayPart=ue,e.spacePart=function(){return ue(" ",e.SymbolDisplayPartKind.space)},e.keywordPart=le,e.punctuationPart=function(t){return ue(e.tokenToString(t),e.SymbolDisplayPartKind.punctuation)},e.operatorPart=function(t){return ue(e.tokenToString(t),e.SymbolDisplayPartKind.operator)},e.textOrKeywordPart=function(t){var r=e.stringToToken(t);return void 0===r?_e(t):le(r)},e.textPart=_e;function de(){return ue("\n",e.SymbolDisplayPartKind.lineBreak)}function pe(e){try{return e(se),se.displayParts()}finally{se.clear()}}function fe(e){return 0!=(33554432&e.flags)}function ge(e){return 0!=(2097152&e.flags)}function me(e,t){void 0===t&&(t=!0);var r=e&&ve(e);return r&&!t&&he(r),r}function ye(t,r,n){var i=n(t);return i?e.setOriginalNode(i,t):i=ve(t,n),i&&!r&&he(i),i}function ve(t,r){var n=r?e.visitEachChild(t,(function(e){return ye(e,!0,r)}),e.nullTransformationContext):e.visitEachChild(t,me,e.nullTransformationContext);if(n===t){var i=e.isStringLiteral(t)?e.setOriginalNode(e.factory.createStringLiteralFromNode(t),t):e.isNumericLiteral(t)?e.setOriginalNode(e.factory.createNumericLiteral(t.text,t.numericLiteralFlags),t):e.factory.cloneNode(t);return e.setTextRange(i,t)}return n.parent=void 0,n}function he(e){be(e),xe(e)}function be(e){De(e,512,Se)}function xe(t){De(t,1024,e.getLastChild)}function De(t,r,n){e.addEmitFlags(t,r);var i=n(t);i&&De(i,r,n)}function Se(e){return e.forEachChild((function(e){return e}))}function Te(t,r,n,i,a){e.forEachLeadingCommentRange(n.text,t.pos,ke(r,n,i,a,e.addSyntheticLeadingComment))}function Ce(t,r,n,i,a){e.forEachTrailingCommentRange(n.text,t.end,ke(r,n,i,a,e.addSyntheticTrailingComment))}function Ee(t,r,n,i,a){e.forEachTrailingCommentRange(n.text,t.pos,ke(r,n,i,a,e.addSyntheticLeadingComment))}function ke(e,t,r,n,i){return function(a,o,s,c){3===s?(a+=2,o-=2):a+=2,i(e,r||s,t.text.slice(a,o),void 0!==n?n:c)}}function Ne(t,r){if(e.startsWith(t,r))return 0;var n=t.indexOf(" "+r);return-1===n&&(n=t.indexOf("."+r)),-1===n&&(n=t.indexOf('"'+r)),-1===n?-1:n+1}function Ae(e){switch(e){case 36:case 34:case 37:case 35:return!0;default:return!1}}function Fe(e,t){return t.getTypeAtLocation(e.parent.parent.expression)}function Pe(e){return 169===e||170===e||171===e||162===e||164===e}function we(e){return 251===e||166===e||165===e||167===e||168===e}function Ie(e){return 256===e}function Oe(e){return 232===e||233===e||235===e||240===e||241===e||242===e||246===e||248===e||163===e||254===e||261===e||260===e||267===e||259===e||266===e}function Me(e,t){return Re(e,e.fileExists,t)}function Le(e){try{return e()}catch(e){return}}function Re(e,t){for(var r=[],n=2;n-1&&e.isWhiteSpaceSingleLine(t.charCodeAt(r));)r-=1;return r+1},e.getSynthesizedDeepClone=me,e.getSynthesizedDeepCloneWithReplacements=ye,e.getSynthesizedDeepClones=function(t,r){return void 0===r&&(r=!0),t&&e.factory.createNodeArray(t.map((function(e){return me(e,r)})),t.hasTrailingComma)},e.getSynthesizedDeepClonesWithReplacements=function(t,r,n){return e.factory.createNodeArray(t.map((function(e){return ye(e,r,n)})),t.hasTrailingComma)},e.suppressLeadingAndTrailingTrivia=he,e.suppressLeadingTrivia=be,e.suppressTrailingTrivia=xe,e.copyComments=function(e,t){var r=e.getSourceFile();!function(e,t){for(var r=e.getFullStart(),n=e.getStart(),i=r;i=0),o},e.copyLeadingComments=Te,e.copyTrailingComments=Ce,e.copyTrailingAsLeadingComments=Ee,e.needsParentheses=function(t){return e.isBinaryExpression(t)&&27===t.operatorToken.kind||e.isObjectLiteralExpression(t)},e.getContextualTypeFromParent=function(e,t){var r=e.parent;switch(r.kind){case 204:return t.getContextualType(r);case 216:var n=r,i=n.left,a=n.operatorToken,o=n.right;return Ae(a.kind)?t.getTypeAtLocation(e===o?i:o):t.getContextualType(e);case 284:return r.expression===e?Fe(r,t):void 0;default:return t.getContextualType(e)}},e.quote=function(t,r,n){var i=re(t,r),a=JSON.stringify(n);return 0===i?"'"+e.stripQuotes(a).replace(/'/g,"\\'").replace(/\\"/g,'"')+"'":a},e.isEqualityOperatorKind=Ae,e.isStringLiteralOrTemplate=function(e){switch(e.kind){case 10:case 14:case 218:case 205:return!0;default:return!1}},e.hasIndexSignature=function(e){return!!e.getStringIndexType()||!!e.getNumberIndexType()},e.getSwitchedType=Fe,e.ANONYMOUS="anonymous function",e.getTypeNodeIfAccessible=function(e,t,r,n){var i=r.getTypeChecker(),a=!0,o=function(){a=!1},s=i.typeToTypeNode(e,t,1,{trackSymbol:function(e,t,r){a=a&&0===i.isSymbolAccessible(e,t,r,!1).accessibility},reportInaccessibleThisError:o,reportPrivateInBaseOfClassExpression:o,reportInaccessibleUniqueSymbolError:o,moduleResolverHost:Z(r,n)});return a?s:void 0},e.syntaxRequiresTrailingCommaOrSemicolonOrASI=Pe,e.syntaxRequiresTrailingFunctionBlockOrSemicolonOrASI=we,e.syntaxRequiresTrailingModuleBlockOrSemicolonOrASI=Ie,e.syntaxRequiresTrailingSemicolonOrASI=Oe,e.syntaxMayBeASICandidate=e.or(Pe,we,Ie,Oe),e.positionIsASICandidate=function(t,r,n){var i=e.findAncestor(r,(function(r){return r.end!==t?"quit":e.syntaxMayBeASICandidate(r.kind)}));return!!i&&function(t,r){var n=t.getLastToken(r);if(n&&26===n.kind)return!1;if(Pe(t.kind)){if(n&&27===n.kind)return!1}else if(Ie(t.kind)){if((i=e.last(t.getChildren(r)))&&e.isModuleBlock(i))return!1}else if(we(t.kind)){var i;if((i=e.last(t.getChildren(r)))&&e.isFunctionBlock(i))return!1}else if(!Oe(t.kind))return!1;if(235===t.kind)return!0;var a=O(t,e.findAncestor(t,(function(e){return!e.parent})),r);return!a||19===a.kind||r.getLineAndCharacterOfPosition(t.getEnd()).line!==r.getLineAndCharacterOfPosition(a.getStart(r)).line}(i,n)},e.probablyUsesSemicolons=function(t){var r=0,n=0;return e.forEachChild(t,(function i(a){if(Oe(a.kind)){var o=a.getLastToken(t);o&&26===o.kind?r++:n++}return r+n>=5||e.forEachChild(a,i)})),0===r&&n<=1||r/n>.2},e.tryGetDirectories=function(e,t){return Re(e,e.getDirectories,t)||[]},e.tryReadDirectory=function(t,r,n,i,a){return Re(t,t.readDirectory,r,n,i,a)||e.emptyArray},e.tryFileExists=Me,e.tryDirectoryExists=function(t,r){return Le((function(){return e.directoryProbablyExists(r,t)}))||!1},e.tryAndIgnoreErrors=Le,e.tryIOAndConsumeErrors=Re,e.findPackageJsons=function(t,r,n){var i=[];return e.forEachAncestorDirectory(t,(function(t){if(t===n)return!0;var a=e.combinePaths(t,"package.json");Me(r,a)&&i.push(a)})),i},e.findPackageJson=function(t,r){var n;return e.forEachAncestorDirectory(t,(function(t){return"node_modules"===t||(!!(n=e.findConfigFile(t,(function(e){return Me(r,e)}),"package.json"))||void 0)})),n},e.getPackageJsonsVisibleToFile=function(t,r){if(!r.fileExists)return[];var n=[];return e.forEachAncestorDirectory(e.getDirectoryPath(t),(function(t){var i=e.combinePaths(t,"package.json");if(r.fileExists(i)){var a=Be(i,r);a&&n.push(a)}})),n},e.createPackageJsonInfo=Be,e.consumesNodeCoreModules=function(t){return e.some(t.imports,(function(t){var r=t.text;return e.JsTyping.nodeCoreModules.has(r)}))},e.isInsideNodeModules=function(t){return e.contains(e.getPathComponents(t),"node_modules")},e.isDiagnosticWithLocation=je,e.findDiagnosticForNode=function(t,r){var n=H(t),i=e.binarySearchKey(r,n,e.identity,e.compareTextSpans);if(i>=0){var a=r[i];return e.Debug.assertEqual(a.file,t.getSourceFile(),"Diagnostics proided to 'findDiagnosticForNode' must be from a single SourceFile"),e.cast(a,je)}},e.getDiagnosticsWithinSpan=function(t,r){var n,i=e.binarySearchKey(r,t.start,(function(e){return e.start}),e.compareValues);for(i<0&&(i=~i);(null===(n=r[i-1])||void 0===n?void 0:n.start)===t.start;)i--;for(var a=[],o=e.textSpanEnd(t);;){var s=e.tryCast(r[i],je);if(!s||s.start>o)break;e.textSpanContainsTextSpan(t,s)&&a.push(s),i++}return a},e.getRefactorContextSpan=function(t){var r=t.startPosition,n=t.endPosition;return e.createTextSpanFromBounds(r,void 0===n?r:n)},e.mapOneOrMany=function(t,r,n){return void 0===n&&(n=e.identity),t?e.isArray(t)?n(e.map(t,r)):r(t,0):void 0},e.firstOrOnly=function(t){return e.isArray(t)?e.first(t):t},e.getNameForExportedSymbol=function(t,r){return 33554432&t.flags||"export="!==t.escapedName&&"default"!==t.escapedName?t.name:e.firstDefined(t.declarations,(function(t){var r;return e.isExportAssignment(t)?null===(r=e.tryCast(e.skipOuterExpressions(t.expression),e.isIdentifier))||void 0===r?void 0:r.text:void 0}))||e.codefix.moduleSymbolToValidIdentifier(function(t){var r;return e.Debug.checkDefined(t.parent,"Symbol parent was undefined. Flags: "+e.Debug.formatSymbolFlags(t.flags)+". Declarations: "+(null===(r=t.declarations)||void 0===r?void 0:r.map((function(t){var r=e.Debug.formatSyntaxKind(t.kind),n=e.isInJSFile(t),i=t.expression;return(n?"[JS]":"")+r+(i?" (expression: "+e.Debug.formatSyntaxKind(i.kind)+")":"")})).join(", "))+".")}(t),r)},e.stringContainsAt=function(e,t,r){var n=t.length;if(n+r>e.length)return!1;for(var i=0;i=i.length){var b=r(o,u,e.lastOrUndefined(_));void 0!==b&&(m=b)}}while(1!==u);function x(){switch(u){case 43:case 67:t[l]||13!==o.reScanSlashToken()||(u=13);break;case 29:78===l&&v++;break;case 31:v>0&&v--;break;case 128:case 147:case 144:case 131:case 148:v>0&&!c&&(u=78);break;case 15:_.push(u);break;case 18:_.length>0&&_.push(u);break;case 19:if(_.length>0){var r=e.lastOrUndefined(_);15===r?17===(u=o.reScanTemplateToken(!1))?_.pop():e.Debug.assertEqual(u,16,"Should have been a template middle."):(e.Debug.assertEqual(r,18,"Should have been an open brace"),_.pop())}break;default:if(!e.isKeyword(u))break;(24===l||e.isKeyword(l)&&e.isKeyword(u)&&!function(t,r){if(!e.isAccessibilityModifier(t))return!0;switch(r){case 134:case 146:case 132:case 123:return!0;default:return!1}}(l,u))&&(u=78)}}return{endOfLineState:m,spans:y}}return{getClassificationsForLine:function(t,r,n){return function(t,r){for(var n=[],a=t.spans,o=0,s=0;s=0){var _=c-o;_>0&&n.push({length:_,classification:e.TokenClass.Whitespace})}n.push({length:u,classification:i(l)}),o=c+u}var d=r.length-o;d>0&&n.push({length:d,classification:e.TokenClass.Whitespace});return{entries:n,finalLexState:t.endOfLineState}}(s(t,r,n),t)},getEncodedLexicalClassifications:s}};var t=e.arrayToNumericMap([78,10,8,9,13,107,45,46,21,23,19,109,94],(function(e){return e}),(function(){return!0}));function r(t,r,n){switch(r){case 10:if(!t.isUnterminated())return;for(var i=t.getTokenText(),a=i.length-1,o=0;92===i.charCodeAt(a-o);)o++;if(0==(1&o))return;return 34===i.charCodeAt(0)?3:2;case 3:return t.isUnterminated()?1:void 0;default:if(e.isTemplateLiteralKind(r)){if(!t.isUnterminated())return;switch(r){case 17:return 5;case 14:return 4;default:return e.Debug.fail("Only 'NoSubstitutionTemplateLiteral's and 'TemplateTail's can be unterminated; got SyntaxKind #"+r)}}return 15===n?6:void 0}}function n(e,t,r,n,i){if(8!==n){0===e&&r>0&&(e+=r);var a=t-e;a>0&&i.push(e-r,a,n)}}function i(t){switch(t){case 1:return e.TokenClass.Comment;case 3:return e.TokenClass.Keyword;case 4:return e.TokenClass.NumberLiteral;case 25:return e.TokenClass.BigIntLiteral;case 5:return e.TokenClass.Operator;case 6:return e.TokenClass.StringLiteral;case 8:return e.TokenClass.Whitespace;case 10:return e.TokenClass.Punctuation;case 2:case 11:case 12:case 13:case 14:case 15:case 16:case 9:case 17:return e.TokenClass.Identifier;default:return}}function a(t){if(e.isKeyword(t))return 3;if(function(e){switch(e){case 41:case 43:case 44:case 39:case 40:case 47:case 48:case 49:case 29:case 31:case 32:case 33:case 101:case 100:case 126:case 34:case 35:case 36:case 37:case 50:case 52:case 51:case 55:case 56:case 73:case 72:case 77:case 69:case 70:case 71:case 63:case 64:case 65:case 67:case 68:case 62:case 27:case 60:case 74:case 75:case 76:return!0;default:return!1}}(t)||function(e){switch(e){case 39:case 40:case 54:case 53:case 45:case 46:return!0;default:return!1}}(t))return 5;if(t>=18&&t<=77)return 10;switch(t){case 8:return 4;case 9:return 25;case 10:return 6;case 13:return 7;case 7:case 3:case 2:return 1;case 5:case 4:return 8;case 78:default:return e.isTemplateLiteralKind(t)?6:2}}function o(e,t){switch(t){case 256:case 252:case 253:case 251:case 221:case 208:case 209:e.throwIfCancellationRequested()}}function s(t,r,n,i,a){var s=[];return n.forEachChild((function u(l){if(l&&e.textSpanIntersectsWith(a,l.pos,l.getFullWidth())){if(o(r,l.kind),e.isIdentifier(l)&&!e.nodeIsMissing(l)&&i.has(l.escapedText)){var _=t.getSymbolAtLocation(l),d=_&&c(_,e.getMeaningFromLocation(l),t);d&&function(t,r,n){var i=r-t;e.Debug.assert(i>0,"Classification had non-positive length of "+i),s.push(t),s.push(i),s.push(n)}(l.getStart(n),l.getEnd(),d)}l.forEachChild(u)}})),{spans:s,endOfLineState:0}}function c(t,r,n){var i=t.getFlags();return 0==(2885600&i)?void 0:32&i?11:384&i?12:524288&i?16:1536&i?4&r||1&r&&function(t){return e.some(t.declarations,(function(t){return e.isModuleDeclaration(t)&&1===e.getModuleInstanceState(t)}))}(t)?14:void 0:2097152&i?c(n.getAliasedSymbol(t),r,n):2&r?64&i?13:262144&i?15:void 0:void 0}function u(e){switch(e){case 1:return"comment";case 2:return"identifier";case 3:return"keyword";case 4:return"number";case 25:return"bigint";case 5:return"operator";case 6:return"string";case 8:return"whitespace";case 9:return"text";case 10:return"punctuation";case 11:return"class name";case 12:return"enum name";case 13:return"interface name";case 14:return"module name";case 15:return"type parameter name";case 16:return"type alias name";case 17:return"parameter name";case 18:return"doc comment tag name";case 19:return"jsx open tag name";case 20:return"jsx close tag name";case 21:return"jsx self closing tag name";case 22:return"jsx attribute";case 23:return"jsx text";case 24:return"jsx attribute string literal value";default:return}}function l(t){e.Debug.assert(t.spans.length%3==0);for(var r=t.spans,n=[],i=0;i])*)(\/>)?)?/im,a=/(\S+)(\s*)(=)(\s*)('[^']+'|"[^"]+")/gim,o=r.text.substr(t,n),s=i.exec(o);if(!s)return!1;if(!s[3]||!(s[3]in e.commentPragmas))return!1;var c=t;d(c,s[1].length),l(c+=s[1].length,s[2].length,10),l(c+=s[2].length,s[3].length,21),c+=s[3].length;var u=s[4],_=c;for(;;){var p=a.exec(u);if(!p)break;var f=c+p.index;f>_&&(d(_,f-_),_=f),l(_,p[1].length,22),_+=p[1].length,p[2].length&&(d(_,p[2].length),_+=p[2].length),l(_,p[3].length,5),_+=p[3].length,p[4].length&&(d(_,p[4].length),_+=p[4].length),l(_,p[5].length,24),_+=p[5].length}(c+=s[4].length)>_&&d(_,c-_);s[5]&&(l(c,s[5].length,10),c+=s[5].length);var g=t+n;c=0),a>0){var o=n||y(t.kind,t);o&&l(i,a,o)}return!0}function y(t,r){if(e.isKeyword(t))return 3;if((29===t||31===t)&&r&&e.getTypeArgumentOrTypeParameterList(r.parent))return 10;if(e.isPunctuation(t)){if(r){var n=r.parent;if(62===t&&(249===n.kind||163===n.kind||160===n.kind||280===n.kind))return 5;if(216===n.kind||214===n.kind||215===n.kind||217===n.kind)return 5}return 10}if(8===t)return 4;if(9===t)return 25;if(10===t)return r&&280===r.parent.kind?24:6;if(13===t)return 6;if(e.isTemplateLiteralKind(t))return 6;if(11===t)return 23;if(78===t){if(r)switch(r.parent.kind){case 252:return r.parent.name===r?11:void 0;case 159:return r.parent.name===r?15:void 0;case 253:return r.parent.name===r?13:void 0;case 255:return r.parent.name===r?12:void 0;case 256:return r.parent.name===r?14:void 0;case 160:return r.parent.name===r?e.isThisIdentifier(r)?3:17:void 0}return 2}}function v(n){if(n&&e.decodedTextSpanIntersectsWith(i,a,n.pos,n.getFullWidth())){o(t,n.kind);for(var s=0,c=n.getChildren(r);s0})))return 0;if(o((function(e){return e.getCallSignatures().length>0}))&&!o((function(e){return e.getProperties().length>0}))||function(t){for(;a(t);)t=t.parent;return e.isCallExpression(t.parent)&&t.parent.expression===t}(r))return 9===n?11:10}}return n}(u,d,g);var y=f.valueDeclaration;if(y){var v=e.getCombinedModifierFlags(y),h=e.getCombinedNodeFlags(y);32&v&&(m|=2),256&v&&(m|=4),0!==g&&2!==g&&(64&v||2&h||8&f.getFlags())&&(m|=8),7!==g&&10!==g||!function(t,r){e.isBindingElement(t)&&(t=i(t));if(e.isVariableDeclaration(t))return(!e.isSourceFile(t.parent.parent.parent)||e.isCatchClause(t.parent))&&t.getSourceFile()===r;if(e.isFunctionDeclaration(t))return!e.isSourceFile(t.parent)&&t.getSourceFile()===r;return!1}(y,r)||(m|=32),t.isSourceFileDefaultLibrary(y.getSourceFile())&&(m|=16)}else f.declarations&&f.declarations.some((function(e){return t.isSourceFileDefaultLibrary(e.getSourceFile())}))&&(m|=16);s(d,g,m)}}}e.forEachChild(d,_),l=p}}_(r)}(t,r,n,(function(e,t,n){c.push(e.getStart(r),e.getWidth(r),(t+1<<8)+n)}),s),c}function i(t){for(;;){if(!e.isBindingElement(t.parent.parent))return t.parent.parent;t=t.parent.parent}}function a(t){return e.isQualifiedName(t.parent)&&t.parent.right===t||e.isPropertyAccessExpression(t.parent)&&t.parent.name===t}!function(e){e[e.typeOffset=8]="typeOffset",e[e.modifierMask=255]="modifierMask"}(t.TokenEncodingConsts||(t.TokenEncodingConsts={})),function(e){e[e.class=0]="class",e[e.enum=1]="enum",e[e.interface=2]="interface",e[e.namespace=3]="namespace",e[e.typeParameter=4]="typeParameter",e[e.type=5]="type",e[e.parameter=6]="parameter",e[e.variable=7]="variable",e[e.enumMember=8]="enumMember",e[e.property=9]="property",e[e.function=10]="function",e[e.member=11]="member"}(t.TokenType||(t.TokenType={})),function(e){e[e.declaration=0]="declaration",e[e.static=1]="static",e[e.async=2]="async",e[e.readonly=3]="readonly",e[e.defaultLibrary=4]="defaultLibrary",e[e.local=5]="local"}(t.TokenModifier||(t.TokenModifier={})),t.getSemanticClassifications=function(t,n,i,a){var o=r(t,n,i,a);e.Debug.assert(o.spans.length%3==0);for(var s=o.spans,c=[],u=0;ua.parameters.length)){var o=r.getParameterType(a,t.argumentIndex);return n=n||!!(4&o.flags),u(o,i)}})),isNewIdentifier:n}}(C,a):E()}case 261:case 267:case 272:return{kind:0,paths:p(r,n,o,l,a)};default:return E()}function E(){return{kind:2,types:u(e.getContextualTypeFromParent(n,a)),isNewIdentifier:!1}}}function s(t){switch(t.kind){case 186:return e.walkUpParenthesizedTypes(t);case 207:return e.walkUpParenthesizedExpressions(t);default:return t}}function c(t){return t&&{kind:1,symbols:e.filter(t.getApparentProperties(),(function(t){return!(t.valueDeclaration&&e.isPrivateIdentifierPropertyDeclaration(t.valueDeclaration))})),hasIndexSignature:e.hasIndexSignature(t)}}function u(t,r){return void 0===r&&(r=new e.Map),t?(t=e.skipConstraint(t)).isUnion()?e.flatMap(t.types,(function(e){return u(e,r)})):!t.isStringLiteral()||1024&t.flags||!e.addToSeen(r,t.value)?e.emptyArray:[t]:e.emptyArray}function l(e,t,r){return{name:e,kind:t,extension:r}}function _(e){return l(e,"directory",void 0)}function d(t,r,n){var i=function(t,r){var n=Math.max(t.lastIndexOf(e.directorySeparator),t.lastIndexOf(e.altDirectorySeparator)),i=-1!==n?n+1:0,a=t.length-i;return 0===a||e.isIdentifierText(t.substr(i,a),99)?void 0:e.createTextSpan(r+i,a)}(t,r),a=0===t.length?void 0:e.createTextSpan(r,t.length);return n.map((function(t){var r=t.name,n=t.kind,o=t.extension;return-1!==Math.max(r.indexOf(e.directorySeparator),r.indexOf(e.altDirectorySeparator))?{name:r,kind:n,extension:o,span:a}:{name:r,kind:n,extension:o,span:i}}))}function p(t,r,n,i,a){return d(r.text,r.getStart(t)+1,function(t,r,n,i,a){var o=e.normalizeSlashes(r.text),s=t.path,c=e.getDirectoryPath(s);return function(e){if(e&&e.length>=2&&46===e.charCodeAt(0)){var t=e.length>=3&&46===e.charCodeAt(1)?2:1,r=e.charCodeAt(t);return 47===r||92===r}return!1}(o)||!n.baseUrl&&(e.isRootedDiskPath(o)||e.isUrl(o))?function(t,r,n,i,a){var o=f(n);return n.rootDirs?function(t,r,n,i,a,o,s){var c=a.project||o.getCurrentDirectory(),u=!(o.useCaseSensitiveFileNames&&o.useCaseSensitiveFileNames()),l=function(t,r,n,i){t=t.map((function(t){return e.normalizePath(e.isRootedDiskPath(t)?t:e.combinePaths(r,t))}));var a=e.firstDefined(t,(function(t){return e.containsPath(t,n,r,i)?n.substr(t.length):void 0}));return e.deduplicate(__spreadArray(__spreadArray([],t.map((function(t){return e.combinePaths(t,a)}))),[n]),e.equateStringsCaseSensitive,e.compareStringsCaseSensitive)}(t,c,n,u);return e.flatMap(l,(function(e){return m(r,e,i,o,s)}))}(n.rootDirs,t,r,o,n,i,a):m(t,r,o,i,a)}(o,c,n,i,s):function(t,r,n,i,a){var o=n.baseUrl,s=n.paths,c=[],u=f(n);if(o){var _=n.project||i.getCurrentDirectory(),d=e.normalizePath(e.combinePaths(_,o));m(t,d,u,i,void 0,c),s&&y(c,t,d,u.extensions,s,i)}for(var p=v(t),g=0,h=function(t,r,n){var i=n.getAmbientModules().map((function(t){return e.stripQuotes(t.name)})).filter((function(r){return e.startsWith(r,t)}));if(void 0!==r){var a=e.ensureTrailingDirectorySeparator(r);return i.map((function(t){return e.removePrefix(t,a)}))}return i}(t,p,a);g=e.pos&&r<=e.end}));if(!s)return;var c=t.text.slice(s.pos,r),u=x.exec(c);if(!u)return;var l=u[1],_=u[2],p=u[3],g=e.getDirectoryPath(t.path),y="path"===_?m(p,g,f(n,!0),i,t.path):"types"===_?b(i,n,g,v(p),f(n)):e.Debug.fail();return d(p,s.pos+l.length,y)}(r,i,c,u))&&n(p);if(e.isInString(r,i,a)){if(!a||!e.isStringLiteralLike(a))return;var p;return function(r,i,a,o,s,c){if(void 0===r)return;var u=e.createTextSpanFromStringLiteralLikeContent(i);switch(r.kind){case 0:return n(r.paths);case 1:var l=[];return t.getCompletionEntriesFromSymbols(r.symbols,l,i,a,a,o,99,s,4,c),{isGlobalCompletion:!1,isMemberCompletion:!0,isNewIdentifierLocation:r.hasIndexSignature,optionalReplacementSpan:u,entries:l};case 2:l=r.types.map((function(r){return{name:r.value,kindModifiers:"",kind:"string",sortText:t.SortText.LocationPriority,replacementSpan:e.getReplacementSpanForContextToken(i)}}));return{isGlobalCompletion:!1,isMemberCompletion:!1,isNewIdentifierLocation:r.isNewIdentifier,optionalReplacementSpan:u,entries:l};default:return e.Debug.assertNever(r)}}(p=o(r,a,i,s,c,u),a,r,s,l,_)}},r.getStringLiteralCompletionDetails=function(r,n,a,s,c,u,l,_){if(s&&e.isStringLiteralLike(s)){var d=o(n,s,a,c,u,l);return d&&function(r,n,a,o,s,c){switch(a.kind){case 0:return(u=e.find(a.paths,(function(e){return e.name===r})))&&t.createCompletionDetails(r,i(u.extension),u.kind,[e.textPart(r)]);case 1:var u;return(u=e.find(a.symbols,(function(e){return e.name===r})))&&t.createCompletionDetailsForSymbol(u,s,o,n,c);case 2:return e.find(a.types,(function(e){return e.value===r}))?t.createCompletionDetails(r,"","type",[e.textPart(r)]):void 0;default:return e.Debug.assertNever(a)}}(r,s,d,n,c,_)}},function(e){e[e.Paths=0]="Paths",e[e.Properties=1]="Properties",e[e.Types=2]="Types"}(a||(a={}));var x=/^(\/\/\/\s*=t.pos;case 24:return 197===n;case 58:return 198===n;case 22:return 197===n;case 20:return 287===n||le(n);case 18:return 255===n;case 29:return 252===n||221===n||253===n||254===n||e.isFunctionLikeKind(n);case 123:return 163===n&&!e.isClassLike(r.parent);case 25:return 160===n||!!r.parent&&197===r.parent.kind;case 122:case 120:case 121:return 160===n&&!e.isConstructorDeclaration(r.parent);case 126:return 265===n||270===n||263===n;case 134:case 146:return!R(t);case 83:case 91:case 117:case 97:case 112:case 99:case 118:case 84:case 135:case 149:return!0;case 41:return e.isFunctionLike(t.parent)&&!e.isMethodDeclaration(t.parent)}if(w(O(t))&&R(t))return!1;if(ue(t)&&(!e.isIdentifier(t)||e.isParameterPropertyModifier(O(t))||fe(t)))return!1;switch(O(t)){case 125:case 83:case 84:case 133:case 91:case 97:case 117:case 118:case 120:case 121:case 122:case 123:case 112:return!0;case 129:return e.isPropertyDeclaration(t.parent)}return e.isDeclarationName(t)&&!e.isShorthandPropertyAssignment(t.parent)&&!e.isJsxAttribute(t.parent)&&!(e.isClassLike(t.parent)&&(t!==h||o>h.end))}(t)||function(e){if(8===e.kind){var t=e.getFullText();return"."===t.charAt(t.length-1)}return!1}(t)||function(e){if(11===e.kind)return!0;if(31===e.kind&&e.parent){if(275===e.parent.kind)return 275!==I.parent.kind;if(276===e.parent.kind||274===e.parent.kind)return!!e.parent.parent&&273===e.parent.parent.kind}return!1}(t);return n("getCompletionsAtPosition: isCompletionListBlocker: "+(e.timestamp()-r)),a}(b))return void n("Returning an empty list because completion was requested in an invalid position.");var j=b.parent;if(24===b.kind||28===b.kind)switch(T=24===b.kind,E=28===b.kind,j.kind){case 201:if(S=(D=j).expression,(e.isCallExpression(S)||e.isFunctionLike(S))&&S.end===b.pos&&S.getChildCount(i)&&21!==e.last(S.getChildren(i)).kind)return;break;case 157:S=j.left;break;case 256:S=j.name;break;case 195:case 226:S=j;break;default:return}else if(1===i.languageVariant){if(j&&201===j.kind&&(b=j,j=j.parent),p.parent===I)switch(p.kind){case 31:273!==p.parent.kind&&275!==p.parent.kind||(I=p);break;case 43:274===p.parent.kind&&(I=p)}switch(j.kind){case 276:43===b.kind&&(N=!0,I=b);break;case 216:if(!B(j))break;case 274:case 273:case 275:F=!0,29===b.kind&&(k=!0,I=b);break;case 283:19===h.kind&&31===p.kind&&(F=!0);break;case 280:if(j.initializer===h&&h.end0&&(q=function(t,r){if(0===r.length)return t;for(var n=new e.Set,i=new e.Set,a=0,o=r;a"),kind:"class",kindModifiers:void 0,sortText:r.LocationPriority};return{isGlobalCompletion:!1,isMemberCompletion:!0,isNewIdentifierLocation:!1,optionalReplacementSpan:_(m),entries:[A]}}var P=[];if(d(t,i)){var w=b(c,P,void 0,m,t,n,i.target,a,u,s,y,o.isJsxIdentifierExpected,S,D,x,C);!function(t,n,i,a,o){e.getNameTable(t).forEach((function(t,s){if(t!==n){var c=e.unescapeLeadingUnderscores(s);!i.has(c)&&e.isIdentifierText(c,a)&&(i.add(c),o.push({name:c,kind:"warning",kindModifiers:"",sortText:r.JavascriptIdentifiers,isFromUncheckedFile:!0}))}}))}(t,m.pos,w,i.target,P)}else{if(!(f||c&&0!==c.length||0!==v))return;b(c,P,void 0,m,t,n,i.target,a,u,s,y,o.isJsxIdentifierExpected,S,D,x,C)}if(0!==v)for(var I=new e.Set(P.map((function(e){return e.name}))),O=0,M=function(t,r){if(!r)return F(t);var n=t+7+1;return N[n]||(N[n]=F(t).filter((function(t){return!function(e){switch(e){case 125:case 128:case 155:case 131:case 133:case 91:case 154:case 116:case 135:case 117:case 137:case 138:case 139:case 140:case 141:case 144:case 145:case 120:case 121:case 122:case 142:case 147:case 148:case 149:case 151:case 152:return!0;default:return!1}}(e.stringToToken(t.name))})))}(v,!T&&e.isSourceFileJS(t));O=0&&!c(r,n[a],114);a--);return e.forEach(i(t.statement),(function(e){o(t,e)&&c(r,e.getFirstToken(),80,85)})),r}function l(e){var t=s(e);if(t)switch(t.kind){case 237:case 238:case 239:case 235:case 236:return u(t);case 244:return _(t)}}function _(t){var r=[];return c(r,t.getFirstToken(),106),e.forEach(t.caseBlock.clauses,(function(n){c(r,n.getFirstToken(),81,87),e.forEach(i(n),(function(e){o(t,e)&&c(r,e.getFirstToken(),80)}))})),r}function d(t,r){var n=[];(c(n,t.getFirstToken(),110),t.catchClause&&c(n,t.catchClause.getFirstToken(),82),t.finallyBlock)&&c(n,e.findChildOfKind(t,95,r),95);return n}function p(t,r){var i=function(t){for(var r=t;r.parent;){var n=r.parent;if(e.isFunctionBlock(n)||297===n.kind)return n;if(e.isTryStatement(n)&&n.tryBlock===r&&n.catchClause)return r;r=n}}(t);if(i){var a=[];return e.forEach(n(i),(function(t){a.push(e.findChildOfKind(t,108,r))})),e.isFunctionBlock(i)&&e.forEachReturnStatement(i,(function(t){a.push(e.findChildOfKind(t,104,r))})),a}}function f(t,r){var i=e.getContainingFunction(t);if(i){var a=[];return e.forEachReturnStatement(e.cast(i.body,e.isBlock),(function(t){a.push(e.findChildOfKind(t,104,r))})),e.forEach(n(i.body),(function(t){a.push(e.findChildOfKind(t,108,r))})),a}}function g(t){var r=e.getContainingFunction(t);if(r){var n=[];return r.modifiers&&r.modifiers.forEach((function(e){c(n,e,129)})),e.forEachChild(r,(function(t){m(t,(function(t){e.isAwaitExpression(t)&&c(n,t.getFirstToken(),130)}))})),n}}function m(t,r){r(t),e.isFunctionLike(t)||e.isClassLike(t)||e.isInterfaceDeclaration(t)||e.isModuleDeclaration(t)||e.isTypeAliasDeclaration(t)||e.isTypeNode(t)||e.forEachChild(t,(function(e){return m(e,r)}))}t.getDocumentHighlights=function(t,n,i,a,o){var s=e.getTouchingPropertyName(i,a);if(s.parent&&(e.isJsxOpeningElement(s.parent)&&s.parent.tagName===s||e.isJsxClosingElement(s.parent))){var y=s.parent.parent,v=[y.openingElement,y.closingElement].map((function(e){return r(e.tagName,i)}));return[{fileName:i.fileName,highlightSpans:v}]}return function(t,r,n,i,a){var o=new e.Set(a.map((function(e){return e.fileName}))),s=e.FindAllReferences.getReferenceEntriesForNode(t,r,n,a,i,void 0,o);if(!s)return;var c=e.arrayToMultiMap(s.map(e.FindAllReferences.toHighlightSpan),(function(e){return e.fileName}),(function(e){return e.span}));return e.arrayFrom(c.entries(),(function(t){var r=t[0],i=t[1];if(!o.has(r)){e.Debug.assert(n.redirectTargetsMap.has(r));var s=n.getSourceFile(r);r=e.find(a,(function(e){return!!e.redirectInfo&&e.redirectInfo.redirectTarget===s})).fileName,e.Debug.assert(o.has(r))}return{fileName:r,highlightSpans:i}}))}(a,s,t,n,o)||function(t,n){var i=function(t,n){switch(t.kind){case 98:case 90:return e.isIfStatement(t.parent)?function(t,n){for(var i=function(t,r){var n=[];for(;e.isIfStatement(t.parent)&&t.parent.elseStatement===t;)t=t.parent;for(;;){var i=t.getChildren(r);c(n,i[0],98);for(var a=i.length-1;a>=0&&!c(n,i[a],90);a--);if(!t.elseStatement||!e.isIfStatement(t.elseStatement))break;t=t.elseStatement}return n}(t,n),a=[],o=0;o=s.end;_--)if(!e.isWhiteSpaceSingleLine(n.text.charCodeAt(_))){l=!1;break}if(l){a.push({fileName:n.fileName,textSpan:e.createTextSpanFromBounds(s.getStart(),u.end),kind:"reference"}),o++;continue}}a.push(r(i[o],n))}return a}(t.parent,n):void 0;case 104:return s(t.parent,e.isReturnStatement,f);case 108:return s(t.parent,e.isThrowStatement,p);case 110:case 82:case 95:return s(82===t.kind?t.parent.parent:t.parent,e.isTryStatement,d);case 106:return s(t.parent,e.isSwitchStatement,_);case 81:case 87:return e.isDefaultClause(t.parent)||e.isCaseClause(t.parent)?s(t.parent.parent.parent,e.isSwitchStatement,_):void 0;case 80:case 85:return s(t.parent,e.isBreakOrContinueStatement,l);case 96:case 114:case 89:return s(t.parent,(function(t){return e.isIterationStatement(t,!0)}),u);case 132:return o(e.isConstructorDeclaration,[132]);case 134:case 146:return o(e.isAccessor,[134,146]);case 130:return s(t.parent,e.isAwaitExpression,g);case 129:return y(g(t));case 124:return y(function(t){var r=e.getContainingFunction(t);if(!r)return;var n=[];return e.forEachChild(r,(function(t){m(t,(function(t){e.isYieldExpression(t)&&c(n,t.getFirstToken(),124)}))})),n}(t));default:return e.isModifierKind(t.kind)&&(e.isDeclaration(t.parent)||e.isVariableStatement(t.parent))?y((i=t.kind,a=t.parent,e.mapDefined(function(t,r){var n=t.parent;switch(n.kind){case 257:case 297:case 230:case 284:case 285:return 128&r&&e.isClassDeclaration(t)?__spreadArray(__spreadArray([],t.members),[t]):n.statements;case 166:case 165:case 251:return __spreadArray(__spreadArray([],n.parameters),e.isClassLike(n.parent)?n.parent.members:[]);case 252:case 221:case 253:case 177:var i=n.members;if(92&r){var a=e.find(n.members,e.isConstructorDeclaration);if(a)return __spreadArray(__spreadArray([],i),a.parameters)}else if(128&r)return __spreadArray(__spreadArray([],i),[n]);return i;case 200:return;default:e.Debug.assertNever(n,"Invalid container kind.")}}(a,e.modifierToFlag(i)),(function(t){return e.findModifier(t,i)})))):void 0}var i,a;function o(r,i){return s(t.parent,r,(function(t){return e.mapDefined(t.symbol.declarations,(function(t){return r(t)?e.find(t.getChildren(n),(function(t){return e.contains(i,t.kind)})):void 0}))}))}function s(e,t,r){return t(e)?y(r(e,n)):void 0}function y(e){return e&&e.map((function(e){return r(e,n)}))}}(t,n);return i&&[{fileName:n.fileName,highlightSpans:i}]}(s,i)}}(e.DocumentHighlights||(e.DocumentHighlights={}))}(ts||(ts={})),function(e){function t(t,n,i){void 0===n&&(n="");var a=new e.Map,o=e.createGetCanonicalFileName(!!t);function s(e,t,r,n,i,a,o){return u(e,t,r,n,i,a,!0,o)}function c(e,t,r,n,i,a,o){return u(e,t,r,n,i,a,!1,o)}function u(t,r,n,o,s,c,u,l){var _=e.getOrUpdate(a,o,(function(){return new e.Map})),d=_.get(r),p=6===l?100:n.target||1;!d&&i&&((f=i.getDocument(o,r))&&(e.Debug.assert(u),d={sourceFile:f,languageServiceRefCount:0},_.set(r,d)));if(d)d.sourceFile.version!==c&&(d.sourceFile=e.updateLanguageServiceSourceFile(d.sourceFile,s,c,s.getChangeRange(d.sourceFile.scriptSnapshot)),i&&i.setDocument(o,r,d.sourceFile)),u&&d.languageServiceRefCount++;else{var f=e.createLanguageServiceSourceFile(t,s,p,c,!1,l);i&&i.setDocument(o,r,f),d={sourceFile:f,languageServiceRefCount:1},_.set(r,d)}return e.Debug.assert(0!==d.languageServiceRefCount),d.sourceFile}function l(t,r){var n=e.Debug.checkDefined(a.get(r)),i=n.get(t);i.languageServiceRefCount--,e.Debug.assert(i.languageServiceRefCount>=0),0===i.languageServiceRefCount&&n.delete(t)}return{acquireDocument:function(t,i,a,c,u){return s(t,e.toPath(t,n,o),i,r(i),a,c,u)},acquireDocumentWithKey:s,updateDocument:function(t,i,a,s,u){return c(t,e.toPath(t,n,o),i,r(i),a,s,u)},updateDocumentWithKey:c,releaseDocument:function(t,i){return l(e.toPath(t,n,o),r(i))},releaseDocumentWithKey:l,getLanguageServiceRefCounts:function(t){return e.arrayFrom(a.entries(),(function(e){var r=e[0],n=e[1].get(t);return[r,n&&n.languageServiceRefCount]}))},reportStats:function(){var t=e.arrayFrom(a.keys()).filter((function(e){return e&&"_"===e.charAt(0)})).map((function(e){var t=a.get(e),r=[];return t.forEach((function(e,t){r.push({name:t,refCount:e.languageServiceRefCount})})),r.sort((function(e,t){return t.refCount-e.refCount})),{bucket:e,sourceFiles:r}}));return JSON.stringify(t,void 0,2)},getKeyForCompilationSettings:r}}function r(t){return e.sourceFileAffectingCompilerOptions.map((function(r){return e.getCompilerOptionValue(t,r)})).join("|")}e.createDocumentRegistry=function(e,r){return t(e,r)},e.createDocumentRegistryInternal=t}(ts||(ts={})),function(e){!function(t){function r(t,r){return e.forEach(297===t.kind?t.statements:t.body.statements,(function(t){return r(t)||s(t)&&e.forEach(t.body&&t.body.statements,r)}))}function n(t,n){if(t.externalModuleIndicator||void 0!==t.imports)for(var i=0,a=t.imports;i=0&&!(c>n.end);){var u=c+s;0!==c&&e.isIdentifierPart(a.charCodeAt(c-1),99)||u!==o&&e.isIdentifierPart(a.charCodeAt(u),99)||i.push(c),c=a.indexOf(r,c+s+1)}return i}function S(t,r){var i=t.getSourceFile(),a=r.text,o=e.mapDefined(x(i,a,t),(function(t){return t===r||e.isJumpStatementTarget(t)&&e.getTargetLabel(t,a)===r?n(t):void 0}));return[{definition:{type:1,node:r},references:o}]}function T(e,t,r,n){return void 0===n&&(n=!0),r.cancellationToken.throwIfCancellationRequested(),C(e,e,t,r,n)}function C(e,t,r,n,i){if(n.markSearchedSymbols(t,r.allSearchSymbols))for(var a=0,o=D(t,r.text,e);a0;o--){x(t,i=n[o])}return[n.length-1,n[0]]}function x(e,t){var r=y(e,t);f(a,r),c.push(a),u.push(o),o=void 0,a=r}function D(){a.children&&(E(a.children,a),w(a.children)),a=c.pop(),o=u.pop()}function S(e,t,r){x(e,r),C(t),D()}function T(t){t.initializer&&function(e){switch(e.kind){case 209:case 208:case 221:return!0;default:return!1}}(t.initializer)?(x(t),e.forEachChild(t.initializer,C),D()):S(t,t.initializer)}function C(t){var r;if(n.throwIfCancellationRequested(),t&&!e.isToken(t))switch(t.kind){case 166:var i=t;S(i,i.body);for(var a=0,s=i.parameters;a0&&(x(j,M),e.forEachChild(j.right,C),D()):e.isFunctionExpression(j.right)||e.isArrowFunction(j.right)?S(t,j.right,M):(x(j,M),S(t,j.right,w.name),D()),void h(O);case 7:case 9:var L=t,R=(M=7===P?L.arguments[0]:L.arguments[0].expression,L.arguments[1]),B=b(t,M);O=B[0];return x(t,B[1]),x(t,e.setTextRange(e.factory.createIdentifier(R.text),R)),C(t.arguments[2]),D(),D(),void h(O);case 5:var j,U=(w=(j=t).left).expression;if(e.isIdentifier(U)&&"prototype"!==e.getElementOrPropertyAccessName(w)&&o&&o.has(U.text))return void(e.isFunctionExpression(j.right)||e.isArrowFunction(j.right)?S(t,j.right,U):e.isBindableStaticAccessExpression(w)&&(x(j,U),S(j.left,j.right,e.getNameOrArgument(w)),D()));break;case 4:case 0:case 8:break;default:e.Debug.assertNever(P)}default:e.hasJSDocNodes(t)&&e.forEach(t.jsDoc,(function(t){e.forEach(t.tags,(function(t){e.isJSDocTypeAlias(t)&&m(t)}))})),e.forEachChild(t,C)}}function E(t,r){var n=new e.Map;e.filterMutate(t,(function(t,i){var a=t.name||e.getNameOfDeclaration(t.node),o=a&&d(a);if(!o)return!0;var s=n.get(o);if(!s)return n.set(o,t),!0;if(s instanceof Array){for(var c=0,u=s;c0)return W(n)}switch(t.kind){case 297:var i=t;return e.isExternalModule(i)?'"'+e.escapeString(e.getBaseFileName(e.removeFileExtension(e.normalizePath(i.fileName))))+'"':"";case 266:return e.isExportAssignment(t)&&t.isExportEquals?"export=":"default";case 209:case 251:case 208:case 252:case 221:return 512&e.getSyntacticModifierFlags(t)?"default":K(t);case 166:return"constructor";case 170:return"new()";case 169:return"()";case 171:return"[]";default:return""}}function L(t){return{text:M(t.node,t.name),kind:e.getNodeKind(t.node),kindModifiers:V(t.node),spans:B(t),nameSpan:t.name&&U(t.name),childItems:e.map(t.children,L)}}function R(t){return{text:M(t.node,t.name),kind:e.getNodeKind(t.node),kindModifiers:V(t.node),spans:B(t),childItems:e.map(t.children,(function(t){return{text:M(t.node,t.name),kind:e.getNodeKind(t.node),kindModifiers:e.getNodeModifiers(t.node),spans:B(t),childItems:l,indent:0,bolded:!1,grayed:!1}}))||l,indent:t.indent,bolded:!1,grayed:!1}}function B(e){var t=[U(e.node)];if(e.additionalNodes)for(var r=0,n=e.additionalNodes;r0)return W(e.declarationNameToString(t.name));if(e.isVariableDeclaration(r))return W(e.declarationNameToString(r.name));if(e.isBinaryExpression(r)&&62===r.operatorToken.kind)return d(r.left).replace(s,"");if(e.isPropertyAssignment(r))return d(r.name);if(512&e.getSyntacticModifierFlags(t))return"default";if(e.isClassLike(t))return"";if(e.isCallExpression(r)){var n=q(r.expression);if(void 0!==n)return(n=W(n)).length>150?n+" callback":n+"("+W(e.mapDefined(r.arguments,(function(t){return e.isStringLiteralLike(t)?t.getText(i):void 0})).join(", "))+") callback"}return""}function q(t){if(e.isIdentifier(t))return t.text;if(e.isPropertyAccessExpression(t)){var r=q(t.expression),n=t.name.text;return void 0===r?n:r+"."+n}}function W(e){return(e=e.length>150?e.substring(0,150)+"...":e).replace(/\\?(\r?\n|\r|\u2028|\u2029)/g,"")}}(e.NavigationBar||(e.NavigationBar={}))}(ts||(ts={})),function(e){!function(t){function r(t,r){var n=e.isStringLiteral(r)&&r.text;return e.isString(n)&&e.some(t.moduleAugmentations,(function(t){return e.isStringLiteral(t)&&t.text===n}))}function n(t){return void 0!==t&&e.isStringLiteralLike(t)?t.text:void 0}function i(t){var r;if(0===t.length)return t;var n=function(t){for(var r,n={defaultImports:[],namespaceImports:[],namedImports:[]},i={defaultImports:[],namespaceImports:[],namedImports:[]},a=0,o=t;a0?g[0]:y[0],k=0===C.length?x?void 0:e.factory.createNamedImports(e.emptyArray):0===y.length?e.factory.createNamedImports(C):e.factory.updateNamedImports(y[0].importClause.namedBindings,C);f&&x&&k?(u.push(o(E,x,void 0)),u.push(o(null!==(r=y[0])&&void 0!==r?r:E,void 0,k))):u.push(o(E,x,k))}}else{var N=g[0];u.push(o(N,N.importClause.name,m[0].importClause.namedBindings))}}return u}function a(t){if(0===t.length)return t;var r=function(e){for(var t,r=[],n=[],i=0,a=e;i...")}function _(t){var n=e.createTextSpanFromBounds(t.openingFragment.getStart(r),t.closingFragment.getEnd());return s(n,"code",n,!1,"<>...")}function d(e){if(0!==e.properties.length)return a(e.getStart(r),e.getEnd(),"code")}function p(e){if(14!==e.kind||0!==e.text.length)return a(e.getStart(r),e.getEnd(),"code")}function f(t,r){return void 0===r&&(r=18),g(t,!1,!e.isArrayLiteralExpression(t.parent)&&!e.isCallExpression(t.parent),r)}function g(n,i,a,s,c){void 0===i&&(i=!1),void 0===a&&(a=!0),void 0===s&&(s=18),void 0===c&&(c=18===s?19:23);var u=e.findChildOfKind(t,s,r),l=e.findChildOfKind(t,c,r);return u&&l&&o(u,l,n,r,i,a)}function m(t){return t.length?s(e.createTextSpanFromRange(t),"code"):void 0}}(u,t);_&&n.push(_),c--,e.isCallExpression(u)?(c++,f(u.expression),c--,u.arguments.forEach(f),null===(l=u.typeArguments)||void 0===l||l.forEach(f)):e.isIfStatement(u)&&u.elseStatement&&e.isIfStatement(u.elseStatement)?(f(u.expression),f(u.thenStatement),c++,f(u.elseStatement),c--):u.forEachChild(f),c++}}}(t,r,c),function(t,r){for(var i=[],a=t.getLineStarts(),o=0,c=a;o1&&o.push(a(c,u,"comment"))}}function a(t,r,n){return s(e.createTextSpanFromBounds(t,r),n)}function o(t,r,n,i,a,o){return void 0===a&&(a=!1),void 0===o&&(o=!0),s(e.createTextSpanFromBounds(o?t.getFullStart():t.getStart(i),r.getEnd()),"code",e.createTextSpanFromNode(n,i),a)}function s(e,t,r,n,i){return void 0===r&&(r=e),void 0===n&&(n=!1),void 0===i&&(i="..."),{textSpan:e,kind:t,hintSpan:r,bannerText:i,autoCollapse:n}}}(e.OutliningElementsCollector||(e.OutliningElementsCollector={}))}(ts||(ts={})),function(e){var t;function r(e,t){return{kind:e,isCaseSensitive:t}}function n(e,t){var r=t.get(e);return r||t.set(e,r=v(e)),r}function i(i,a,o){var s=function(e,t){for(var r=e.length-t.length,n=function(r){if(C(t,(function(t,n){return d(e.charCodeAt(n+r))===t})))return{value:r}},i=0;i<=r;i++){var a=n(i);if("object"==typeof a)return a.value}return-1}(i,a.textLowerCase);if(0===s)return r(a.text.length===i.length?t.exact:t.prefix,e.startsWith(i,a.text));if(a.isLowerCase){if(-1===s)return;for(var _=0,p=n(i,o);_0)return r(t.substring,!0);if(a.characterSpans.length>0){var g=n(i,o),m=!!u(i,g,a,!1)||!u(i,g,a,!0)&&void 0;if(void 0!==m)return r(t.camelCase,m)}}}function a(e,t,r){if(C(t.totalTextChunk.text,(function(e){return 32!==e&&42!==e}))){var n=i(e,t.totalTextChunk,r);if(n)return n}for(var a,s=0,c=t.subWordTextChunks;s=65&&t<=90)return!0;if(t<127||!e.isUnicodeIdentifierStart(t,99))return!1;var r=String.fromCharCode(t);return r===r.toUpperCase()}function _(t){if(t>=97&&t<=122)return!0;if(t<127||!e.isUnicodeIdentifierStart(t,99))return!1;var r=String.fromCharCode(t);return r===r.toLowerCase()}function d(e){return e>=65&&e<=90?e-65+97:e<127?e:String.fromCharCode(e).toLowerCase().charCodeAt(0)}function p(e){return e>=48&&e<=57}function f(e){return l(e)||_(e)||p(e)||95===e||36===e}function g(e){for(var t=[],r=0,n=0,i=0;i0&&(t.push(m(e.substr(r,n))),n=0)}return n>0&&t.push(m(e.substr(r,n))),t}function m(e){var t=e.toLowerCase();return{text:e,textLowerCase:t,isLowerCase:e===t,characterSpans:y(e)}}function y(e){return h(e,!1)}function v(e){return h(e,!0)}function h(t,r){for(var n=[],i=0,a=1;at.length)return;for(var c=n.length-2,u=t.length-1;c>=0;c-=1,u-=1)s=o(s,a(t[u],n[c],i));return s}(t,i,n,r)},getMatchForLastSegmentOfPattern:function(t){return a(t,e.last(n),r)},patternContainsDots:n.length>1}},e.breakIntoCharacterSpans=y,e.breakIntoWordSpans=v}(ts||(ts={})),function(e){e.preProcessFile=function(t,r,n){void 0===r&&(r=!0),void 0===n&&(n=!1);var i,a,o,s={languageVersion:1,pragmas:void 0,checkJsDirective:void 0,referencedFiles:[],typeReferenceDirectives:[],libReferenceDirectives:[],amdDependencies:[],hasNoDefaultLib:void 0,moduleName:void 0},c=[],u=0,l=!1;function _(){return a=o,18===(o=e.scanner.scan())?u++:19===o&&u--,o}function d(){var t=e.scanner.getTokenValue(),r=e.scanner.getTokenPos();return{fileName:t,pos:r,end:r+t.length}}function p(){c.push(d()),f()}function f(){0===u&&(l=!0)}function g(){var t=e.scanner.getToken();return 133===t&&(139===(t=_())&&10===(t=_())&&(i||(i=[]),i.push({ref:d(),depth:u})),!0)}function m(){if(24===a)return!1;var t=e.scanner.getToken();if(99===t){if(20===(t=_())){if(10===(t=_())||14===t)return p(),!0}else{if(10===t)return p(),!0;149===t&&e.scanner.lookAhead((function(){var t=e.scanner.scan();return 153!==t&&(41===t||18===t||78===t||e.isKeyword(t))}))&&(t=_());if(78===t||e.isKeyword(t))if(153===(t=_())){if(10===(t=_()))return p(),!0}else if(62===t){if(v(!0))return!0}else{if(27!==t)return!0;t=_()}if(18===t){for(t=_();19!==t&&1!==t;)t=_();19===t&&153===(t=_())&&10===(t=_())&&p()}else 41===t&&126===(t=_())&&(78===(t=_())||e.isKeyword(t))&&153===(t=_())&&10===(t=_())&&p()}return!0}return!1}function y(){var t=e.scanner.getToken();if(92===t){if(f(),149===(t=_()))e.scanner.lookAhead((function(){var t=e.scanner.scan();return 41===t||18===t}))&&(t=_());if(18===t){for(t=_();19!==t&&1!==t;)t=_();19===t&&153===(t=_())&&10===(t=_())&&p()}else if(41===t)153===(t=_())&&10===(t=_())&&p();else if(99===t){if(149===(t=_()))e.scanner.lookAhead((function(){var t=e.scanner.scan();return 78===t||e.isKeyword(t)}))&&(t=_());if((78===t||e.isKeyword(t))&&62===(t=_())&&v(!0))return!0}return!0}return!1}function v(t,r){void 0===r&&(r=!1);var n=t?_():e.scanner.getToken();return 143===n&&(20===(n=_())&&(10===(n=_())||r&&14===n)&&p(),!0)}function h(){var t=e.scanner.getToken();if(78===t&&"define"===e.scanner.getTokenValue()){if(20!==(t=_()))return!0;if(10===(t=_())||14===t){if(27!==(t=_()))return!0;t=_()}if(22!==t)return!0;for(t=_();23!==t&&1!==t;)10!==t&&14!==t||p(),t=_();return!0}return!1}if(r&&function(){for(e.scanner.setText(t),_();1!==e.scanner.getToken();)g()||m()||y()||n&&(v(!1,!0)||h())||_();e.scanner.setText(void 0)}(),e.processCommentPragmas(s,t),e.processPragmasIntoFields(s,e.noop),l){if(i)for(var b=0,x=i;bt)break e;if(r(n,t,g)){if(e.isBlock(g)||e.isTemplateSpan(g)||e.isTemplateHead(g)||e.isTemplateTail(g)||f&&e.isTemplateHead(f)||e.isVariableDeclarationList(g)&&e.isVariableStatement(_)||e.isSyntaxList(g)&&e.isVariableDeclarationList(_)||e.isVariableDeclaration(g)&&e.isSyntaxList(_)&&1===d.length||e.isJSDocTypeExpression(g)||e.isJSDocSignature(g)||e.isJSDocTypeLiteral(g)){_=g;break}if(e.isTemplateSpan(_)&&m&&e.isTemplateMiddleOrTemplateTail(m))b(g.getFullStart()-"${".length,m.getStart()+"}".length);var y=e.isSyntaxList(g)&&(s=void 0,18===(s=(o=f)&&o.kind)||22===s||20===s||275===s)&&c(m)&&!e.positionsAreOnSameLine(f.getStart(),m.getStart(),n),v=y?f.getEnd():g.getStart(),h=y?m.getStart():u(n,g);e.hasJSDocNodes(g)&&(null===(a=g.jsDoc)||void 0===a?void 0:a.length)&&b(e.first(g.jsDoc).getStart(),h),b(v,h),(e.isStringLiteral(g)||e.isTemplateLiteral(g))&&b(v+1,h-1),_=g;break}if(p===d.length-1)break e}}return l;function b(r,n){if(r!==n){var i=e.createTextSpanFromBounds(r,n);(!l||!e.textSpansEqual(i,l.textSpan)&&e.textSpanIntersectsWithPosition(i,t))&&(l=__assign({textSpan:i},l&&{parent:l}))}}};var n=e.or(e.isImportDeclaration,e.isImportEqualsDeclaration);function i(t){if(e.isSourceFile(t))return a(t.getChildAt(0).getChildren(),n);if(e.isMappedTypeNode(t)){var r=t.getChildren(),i=r[0],c=r.slice(1),u=e.Debug.checkDefined(c.pop());e.Debug.assertEqual(i.kind,18),e.Debug.assertEqual(u.kind,19);var l=a(c,(function(e){return e===t.readonlyToken||142===e.kind||e===t.questionToken||57===e.kind}));return[i,s(o(a(l,(function(e){var t=e.kind;return 22===t||159===t||23===t})),(function(e){return 58===e.kind}))),u]}if(e.isPropertySignature(t))return o(c=a(t.getChildren(),(function(r){return r===t.name||e.contains(t.modifiers,r)})),(function(e){return 58===e.kind}));if(e.isParameter(t)){var _=a(t.getChildren(),(function(e){return e===t.dotDotDotToken||e===t.name}));return o(a(_,(function(e){return e===_[0]||e===t.questionToken})),(function(e){return 62===e.kind}))}return e.isBindingElement(t)?o(t.getChildren(),(function(e){return 62===e.kind})):t.getChildren()}function a(e,t){for(var r,n=[],i=0,a=e;i0&&27===e.last(r).kind&&n++;return n}(i);return 0!==a&&e.Debug.assertLessThan(a,o),{list:i,argumentIndex:a,argumentCount:o,argumentsSpan:function(t,r){var n=t.getFullStart(),i=e.skipTrivia(r.text,t.getEnd(),!1);return e.createTextSpan(n,i-n)}(i,r)}}}function o(t,r,n){var i=t.parent;if(e.isCallOrNewExpression(i)){var o=i,s=a(t,n);if(!s)return;var c=s.list,u=s.argumentIndex,l=s.argumentCount,d=s.argumentsSpan;return{isTypeParameterList:!!i.typeArguments&&i.typeArguments.pos===c.pos,invocation:{kind:0,node:o},argumentsSpan:d,argumentIndex:u,argumentCount:l}}if(e.isNoSubstitutionTemplateLiteral(t)&&e.isTaggedTemplateExpression(i))return e.isInsideTemplateLiteral(t,r,n)?_(i,0,n):void 0;if(e.isTemplateHead(t)&&205===i.parent.kind){var p=i,f=p.parent;return e.Debug.assert(218===p.kind),_(f,u=e.isInsideTemplateLiteral(t,r,n)?0:1,n)}if(e.isTemplateSpan(i)&&e.isTaggedTemplateExpression(i.parent.parent)){var g=i;f=i.parent.parent;if(e.isTemplateTail(t)&&!e.isInsideTemplateLiteral(t,r,n))return;return _(f,u=function(t,r,n,i){if(e.Debug.assert(n>=r.getStart(),"Assumed 'position' could not occur before node."),e.isTemplateLiteralToken(r))return e.isInsideTemplateLiteral(r,n,i)?0:t+2;return t+1}(g.parent.templateSpans.indexOf(g),t,r,n),n)}if(e.isJsxOpeningLikeElement(i)){var m=i.attributes.pos,y=e.skipTrivia(n.text,i.attributes.end,!1);return{isTypeParameterList:!1,invocation:{kind:0,node:i},argumentsSpan:e.createTextSpan(m,y-m),argumentIndex:0,argumentCount:1}}var v=e.getPossibleTypeArgumentsInfo(t,n);if(v){var h=v.called,b=v.nTypeArguments;return{isTypeParameterList:!0,invocation:o={kind:1,called:h},argumentsSpan:d=e.createTextSpanFromBounds(h.getStart(n),t.end),argumentIndex:b,argumentCount:b+1}}}function s(t){return e.isBinaryExpression(t.parent)?s(t.parent):t}function c(t){return e.isBinaryExpression(t.left)?c(t.left)+1:2}function u(t){return"__type"===t.name&&e.firstDefined(t.declarations,(function(t){return e.isFunctionTypeNode(t)?t.parent.symbol:void 0}))||t}function l(e,t){for(var r=0,n=0,i=e.getChildren();n=0&&i.length>a+1),i[a+1]}function f(t){return 0===t.kind?e.getInvokedExpression(t.node):t.called}function g(e){return 0===e.kind?e.node:1===e.kind?e.called:e.node}!function(e){e[e.Call=0]="Call",e[e.TypeArgs=1]="TypeArgs",e[e.Contextual=2]="Contextual"}(r||(r={})),t.getSignatureHelpItems=function(t,r,n,l,_){var d=t.getTypeChecker(),p=e.findTokenOnLeftOfPosition(r,n);if(p){var m=!!l&&"characterTyped"===l.kind;if(!m||!e.isInString(r,n,p)&&!e.isInComment(r,n)){var h=!!l&&"invoked"===l.kind,b=function(t,r,n,i,l){for(var _=function(t){e.Debug.assert(e.rangeContainsRange(t.parent,t),"Not a subspan",(function(){return"Child: "+e.Debug.formatSyntaxKind(t.kind)+", parent: "+e.Debug.formatSyntaxKind(t.parent.kind)}));var l=function(t,r,n,i){return function(t,r,n,i){var o=function(t,r,n){if(20!==t.kind&&27!==t.kind)return;var i=t.parent;switch(i.kind){case 207:case 165:case 208:case 209:var o=a(t,r);if(!o)return;var u=o.argumentIndex,l=o.argumentCount,_=o.argumentsSpan,d=e.isMethodDeclaration(i)?n.getContextualTypeForObjectLiteralElement(i):n.getContextualType(i);return d&&{contextualType:d,argumentIndex:u,argumentCount:l,argumentsSpan:_};case 216:var p=s(i),f=n.getContextualType(p),g=20===t.kind?0:c(i)-1,m=c(p);return f&&{contextualType:f,argumentIndex:g,argumentCount:m,argumentsSpan:e.createTextSpanFromNode(i)};default:return}}(t,n,i);if(!o)return;var l=o.contextualType,_=o.argumentIndex,d=o.argumentCount,p=o.argumentsSpan,f=l.getNonNullableType(),g=f.getCallSignatures();return 1!==g.length?void 0:{isTypeParameterList:!1,invocation:{kind:2,signature:e.first(g),node:t,symbol:u(f.symbol)},argumentsSpan:p,argumentIndex:_,argumentCount:d}}(t,0,n,i)||o(t,r,n)}(t,r,n,i);if(l)return{value:l}},d=t;!e.isSourceFile(d)&&(l||!e.isBlock(d));d=d.parent){var p=_(d);if("object"==typeof p)return p.value}return}(p,n,r,d,h);if(b){_.throwIfCancellationRequested();var x=function(t,r,n,a,o){var s=t.invocation,c=t.argumentCount;switch(s.kind){case 0:if(o&&!function(t,r,n){if(!e.isCallOrNewExpression(r))return!1;var a=r.getChildren(n);switch(t.kind){case 20:return e.contains(a,t);case 27:var o=e.findContainingList(t);return!!o&&e.contains(a,o);case 29:return i(t,n,r.expression);default:return!1}}(a,s.node,n))return;var u=[],l=r.getResolvedSignatureForSignatureHelp(s.node,u,c);return 0===u.length?void 0:{kind:0,candidates:u,resolvedSignature:l};case 1:var _=s.called;if(o&&!i(a,n,e.isIdentifier(_)?_.parent:_))return;if(0!==(u=e.getPossibleGenericSignatures(_,c,r)).length)return{kind:0,candidates:u,resolvedSignature:e.first(u)};var d=r.getSymbolAtLocation(_);return d&&{kind:1,symbol:d};case 2:return{kind:0,candidates:[s.signature],resolvedSignature:s.signature};default:return e.Debug.assertNever(s)}}(b,d,r,p,m);return _.throwIfCancellationRequested(),x?d.runWithCancellationToken(_,(function(e){return 0===x.kind?y(x.candidates,x.resolvedSignature,b,r,e):function(e,t,r,n){var i=t.argumentCount,a=t.argumentsSpan,o=t.invocation,s=t.argumentIndex,c=n.getLocalTypeParametersOfClassOrInterfaceOrTypeAlias(e);return c?{items:[v(e,c,n,g(o),r)],applicableSpan:a,selectedItemIndex:0,argumentIndex:s,argumentCount:i}:void 0}(x.symbol,b,r,e)})):e.isSourceFileJS(r)?function(t,r,n){if(2===t.invocation.kind)return;var i=f(t.invocation),a=e.isPropertyAccessExpression(i)?i.name.text:void 0,o=r.getTypeChecker();return void 0===a?void 0:e.firstDefined(r.getSourceFiles(),(function(r){return e.firstDefined(r.getNamedDeclarations().get(a),(function(e){var i=e.symbol&&o.getTypeOfSymbolAtLocation(e.symbol,e),a=i&&i.getCallSignatures();if(a&&a.length)return o.runWithCancellationToken(n,(function(e){return y(a,a[0],t,r,e,!0)}))}))}))}(b,t,_):void 0}}}},function(e){e[e.Candidate=0]="Candidate",e[e.Type=1]="Type"}(n||(n={})),t.getArgumentInfoForCompletions=function(e,t,r){var n=o(e,t,r);return!n||n.isTypeParameterList||0!==n.invocation.kind?void 0:{invocation:n.invocation.node,argumentCount:n.argumentCount,argumentIndex:n.argumentIndex}};var m=70246400;function y(t,r,n,i,a,o){var s,c=n.isTypeParameterList,u=n.argumentCount,l=n.argumentsSpan,_=n.invocation,d=n.argumentIndex,p=g(_),m=2===_.kind?_.symbol:a.getSymbolAtLocation(f(_))||o&&(null===(s=r.declaration)||void 0===s?void 0:s.symbol),y=m?e.symbolToDisplayParts(a,m,o?i:void 0,void 0):e.emptyArray,v=e.map(t,(function(t){return function(t,r,n,i,a,o){var s=(n?b:x)(t,i,a,o);return e.map(s,(function(n){var o=n.isVariadic,s=n.parameters,c=n.prefix,u=n.suffix,l=__spreadArray(__spreadArray([],r),c),_=__spreadArray(__spreadArray([],u),function(t,r,n){return e.mapToDisplayParts((function(e){e.writePunctuation(":"),e.writeSpace(" ");var i=n.getTypePredicateOfSignature(t);i?n.writeTypePredicate(i,r,void 0,e):n.writeType(n.getReturnTypeOfSignature(t),r,void 0,e)}))}(t,a,i)),d=t.getDocumentationComment(i),p=t.getJsDocTags();return{isVariadic:o,prefixDisplayParts:l,suffixDisplayParts:_,separatorDisplayParts:h,parameters:s,documentation:d,tags:p}}))}(t,y,c,a,p,i)}));0!==d&&e.Debug.assertLessThan(d,u);for(var D=0,S=0,T=0;T1))for(var E=0,k=0,N=C;k=u){D=S+E;break}E++}S+=C.length}e.Debug.assert(-1!==D);var F={items:e.flatMapToMutable(v,e.identity),applicableSpan:l,selectedItemIndex:D,argumentIndex:d,argumentCount:u},P=F.items[D];if(P.isVariadic){var w=e.findIndex(P.parameters,(function(e){return!!e.isRest}));-12)&&(t.arguments.length<2||e.some(t.arguments,(function(t){return 103===t.kind||e.isIdentifier(t)&&"undefined"===t.text})))}(t)||e.hasPropertyAccessExpressionWithName(t,"catch"))}function s(r,n){switch(r.kind){case 251:case 208:case 209:t.set(c(r),!0);case 103:return!0;case 78:case 201:var i=n.getSymbolAtLocation(r);return!!i&&(n.isUndefinedSymbol(i)||e.some(e.skipAlias(i,n).declarations,(function(t){return e.isFunctionLike(t)||e.hasInitializer(t)&&!!t.initializer&&e.isFunctionLike(t.initializer)})));default:return!1}}function c(e){return e.pos.toString()+":"+e.end.toString()}e.computeSuggestionDiagnostics=function(a,o,s){o.getSemanticDiagnostics(a,s);var u,l=[],_=o.getTypeChecker();a.commonJsModuleIndicator&&(e.programContainsEs6Modules(o)||e.compilerOptionsIndicateEs6Modules(o.getCompilerOptions()))&&function(t){return t.statements.some((function(t){switch(t.kind){case 232:return t.declarationList.declarations.some((function(t){return!!t.initializer&&e.isRequireCall(r(t.initializer),!0)}));case 233:var n=t.expression;if(!e.isBinaryExpression(n))return e.isRequireCall(n,!0);var i=e.getAssignmentDeclarationKind(n);return 1===i||2===i;default:return!1}}))}(a)&&l.push(e.createDiagnosticForNode((u=a.commonJsModuleIndicator,e.isBinaryExpression(u)?u.left:u),e.Diagnostics.File_is_a_CommonJS_module_it_may_be_converted_to_an_ES6_module));var d=e.isSourceFileJS(a);if(t.clear(),function r(n){if(d)(function(t,r){var n,i,a,o;if(208===t.kind){if(e.isVariableDeclaration(t.parent)&&(null===(n=t.symbol.members)||void 0===n?void 0:n.size))return!0;var s=r.getSymbolOfExpando(t,!1);return!(!s||!(null===(i=s.exports)||void 0===i?void 0:i.size)&&!(null===(a=s.members)||void 0===a?void 0:a.size))}if(251===t.kind)return!!(null===(o=t.symbol.members)||void 0===o?void 0:o.size);return!1})(n,_)&&l.push(e.createDiagnosticForNode(e.isVariableDeclaration(n.parent)?n.parent.name:n,e.Diagnostics.This_constructor_function_may_be_converted_to_a_class_declaration));else{if(e.isVariableStatement(n)&&n.parent===a&&2&n.declarationList.flags&&1===n.declarationList.declarations.length){var o=n.declarationList.declarations[0].initializer;o&&e.isRequireCall(o,!0)&&l.push(e.createDiagnosticForNode(o,e.Diagnostics.require_call_may_be_converted_to_an_import))}e.codefix.parameterShouldGetTypeFromJSDoc(n)&&l.push(e.createDiagnosticForNode(n.name||n,e.Diagnostics.JSDoc_types_may_be_moved_to_TypeScript_types))}e.isFunctionLikeDeclaration(n)&&function(r,n,a){(function(t,r){return!e.isAsyncFunction(t)&&t.body&&e.isBlock(t.body)&&function(t,r){return!!e.forEachReturnStatement(t,(function(e){return i(e,r)}))}(t.body,r)&&function(e,t){var r=t.getTypeAtLocation(e),n=t.getSignaturesOfType(r,0),i=n.length?t.getReturnTypeOfSignature(n[0]):void 0;return!!i&&!!t.getPromisedTypeOfPromise(i)}(t,r)})(r,n)&&!t.has(c(r))&&a.push(e.createDiagnosticForNode(!r.name&&e.isVariableDeclaration(r.parent)&&e.isIdentifier(r.parent.name)?r.parent.name:r,e.Diagnostics.This_may_be_converted_to_an_async_function))}(n,_,l);n.forEachChild(r)}(a),e.getAllowSyntheticDefaultImports(o.getCompilerOptions()))for(var p=0,f=a.imports;p0?e.arrayFrom(n.values()).join(","):""},t.getSymbolDisplayPartsDocumentationAndSymbolKind=function t(a,o,s,c,u,l,_){void 0===l&&(l=e.getMeaningFromLocation(u));var d,p,f,g,m=[],y=[],v=[],h=e.getCombinedLocalAndExportSymbolFlags(o),b=1&l?i(a,o,u):"",x=!1,D=107===u.kind&&e.isInExpressionContext(u),S=!1;if(107===u.kind&&!D)return{displayParts:[e.keywordPart(107)],documentation:[],symbolKind:"primitive type",tags:void 0};if(""!==b||32&h||2097152&h){"getter"!==b&&"setter"!==b||(b="property");var T=void 0;if(d=D?a.getTypeAtLocation(u):a.getTypeOfSymbolAtLocation(o.exportSymbol||o,u),u.parent&&201===u.parent.kind){var C=u.parent.name;(C===u||C&&0===C.getFullWidth())&&(u=u.parent)}var E=void 0;if(e.isCallOrNewExpression(u)?E=u:(e.isCallExpressionTarget(u)||e.isNewExpressionTarget(u)||u.parent&&(e.isJsxOpeningLikeElement(u.parent)||e.isTaggedTemplateExpression(u.parent))&&e.isFunctionLike(o.valueDeclaration))&&(E=u.parent),E){T=a.getResolvedSignature(E);var k=204===E.kind||e.isCallExpression(E)&&105===E.expression.kind,N=k?d.getConstructSignatures():d.getCallSignatures();if(e.contains(N,T.target)||e.contains(N,T)||(T=N.length?N[0]:void 0),T){switch(k&&32&h?(b="constructor",Q(d.symbol,b)):2097152&h?(Y(b="alias"),m.push(e.spacePart()),k&&(4&T.flags&&(m.push(e.keywordPart(125)),m.push(e.spacePart())),m.push(e.keywordPart(102)),m.push(e.spacePart())),X(o)):Q(o,b),b){case"JSX attribute":case"property":case"var":case"const":case"let":case"parameter":case"local var":m.push(e.punctuationPart(58)),m.push(e.spacePart()),16&e.getObjectFlags(d)||!d.symbol||(e.addRange(m,e.symbolToDisplayParts(a,d.symbol,c,void 0,5)),m.push(e.lineBreakPart())),k&&(4&T.flags&&(m.push(e.keywordPart(125)),m.push(e.spacePart())),m.push(e.keywordPart(102)),m.push(e.spacePart())),Z(T,N,262144);break;default:Z(T,N)}x=!0,S=N.length>1}}else if(e.isNameOfFunctionDeclaration(u)&&!(98304&h)||132===u.kind&&166===u.parent.kind){var A=u.parent;if(o.declarations&&e.find(o.declarations,(function(e){return e===(132===u.kind?A.parent:A)}))){N=166===A.kind?d.getNonNullableType().getConstructSignatures():d.getNonNullableType().getCallSignatures();T=a.isImplementationOfOverload(A)?N[0]:a.getSignatureFromDeclaration(A),166===A.kind?(b="constructor",Q(d.symbol,b)):Q(169!==A.kind||2048&d.symbol.flags||4096&d.symbol.flags?o:d.symbol,b),Z(T,N),x=!0,S=N.length>1}}}if(32&h&&!x&&!D&&(H(),e.getDeclarationOfKind(o,221)?Y("local class"):m.push(e.keywordPart(83)),m.push(e.spacePart()),X(o),$(o,s)),64&h&&2&l&&(W(),m.push(e.keywordPart(117)),m.push(e.spacePart()),X(o),$(o,s)),524288&h&&2&l&&(W(),m.push(e.keywordPart(149)),m.push(e.spacePart()),X(o),$(o,s),m.push(e.spacePart()),m.push(e.operatorPart(62)),m.push(e.spacePart()),e.addRange(m,e.typeToDisplayParts(a,a.getDeclaredTypeOfSymbol(o),c,8388608))),384&h&&(W(),e.some(o.declarations,(function(t){return e.isEnumDeclaration(t)&&e.isEnumConst(t)}))&&(m.push(e.keywordPart(84)),m.push(e.spacePart())),m.push(e.keywordPart(91)),m.push(e.spacePart()),X(o)),1536&h&&!D){W();var F=(V=e.getDeclarationOfKind(o,256))&&V.name&&78===V.name.kind;m.push(e.keywordPart(F?140:139)),m.push(e.spacePart()),X(o)}if(262144&h&&2&l)if(W(),m.push(e.punctuationPart(20)),m.push(e.textPart("type parameter")),m.push(e.punctuationPart(21)),m.push(e.spacePart()),X(o),o.parent)G(),X(o.parent,c),$(o.parent,c);else{var P=e.getDeclarationOfKind(o,159);if(void 0===P)return e.Debug.fail();if(V=P.parent)if(e.isFunctionLikeKind(V.kind)){G();T=a.getSignatureFromDeclaration(V);170===V.kind?(m.push(e.keywordPart(102)),m.push(e.spacePart())):169!==V.kind&&V.name&&X(V.symbol),e.addRange(m,e.signatureToDisplayParts(a,T,s,32))}else 254===V.kind&&(G(),m.push(e.keywordPart(149)),m.push(e.spacePart()),X(V.symbol),$(V.symbol,s))}if(8&h&&(b="enum member",Q(o,"enum member"),291===(V=o.declarations[0]).kind)){var w=a.getConstantValue(V);void 0!==w&&(m.push(e.spacePart()),m.push(e.operatorPart(62)),m.push(e.spacePart()),m.push(e.displayPart(e.getTextOfConstantValue(w),"number"==typeof w?e.SymbolDisplayPartKind.numericLiteral:e.SymbolDisplayPartKind.stringLiteral)))}if(2097152&o.flags){if(W(),!x){var I=a.getAliasedSymbol(o);if(I!==o&&I.declarations&&I.declarations.length>0){var O=I.declarations[0],M=e.getNameOfDeclaration(O);if(M){var L=e.isModuleWithStringLiteralName(O)&&e.hasSyntacticModifier(O,2),R="default"!==o.name&&!L,B=t(a,I,e.getSourceFileOfNode(O),O,M,l,R?o:I);m.push.apply(m,B.displayParts),m.push(e.lineBreakPart()),f=B.documentation,g=B.tags}else f=I.getContextualDocumentationComment(O,a),g=I.getJsDocTags()}}switch(o.declarations[0].kind){case 259:m.push(e.keywordPart(92)),m.push(e.spacePart()),m.push(e.keywordPart(140));break;case 266:m.push(e.keywordPart(92)),m.push(e.spacePart()),m.push(e.keywordPart(o.declarations[0].isExportEquals?62:87));break;case 270:m.push(e.keywordPart(92));break;default:m.push(e.keywordPart(99))}m.push(e.spacePart()),X(o),e.forEach(o.declarations,(function(t){if(260===t.kind){var r=t;if(e.isExternalModuleImportEqualsDeclaration(r))m.push(e.spacePart()),m.push(e.operatorPart(62)),m.push(e.spacePart()),m.push(e.keywordPart(143)),m.push(e.punctuationPart(20)),m.push(e.displayPart(e.getTextOfNode(e.getExternalModuleImportEqualsDeclarationExpression(r)),e.SymbolDisplayPartKind.stringLiteral)),m.push(e.punctuationPart(21));else{var n=a.getSymbolAtLocation(r.moduleReference);n&&(m.push(e.spacePart()),m.push(e.operatorPart(62)),m.push(e.spacePart()),X(n,c))}return!0}}))}if(!x)if(""!==b){if(d)if(D?(W(),m.push(e.keywordPart(107))):Q(o,b),"property"===b||"JSX attribute"===b||3&h||"local var"===b||D){if(m.push(e.punctuationPart(58)),m.push(e.spacePart()),d.symbol&&262144&d.symbol.flags){var j=e.mapToDisplayParts((function(t){var n=a.typeParameterToDeclaration(d,c,r);q().writeNode(4,n,e.getSourceFileOfNode(e.getParseTreeNode(c)),t)}));e.addRange(m,j)}else e.addRange(m,e.typeToDisplayParts(a,d,c));if(o.target&&o.target.tupleLabelDeclaration){var J=o.target.tupleLabelDeclaration;e.Debug.assertNode(J.name,e.isIdentifier),m.push(e.spacePart()),m.push(e.punctuationPart(20)),m.push(e.textPart(e.idText(J.name))),m.push(e.punctuationPart(21))}}else if(16&h||8192&h||16384&h||131072&h||98304&h||"method"===b){(N=d.getNonNullableType().getCallSignatures()).length&&(Z(N[0],N),S=N.length>1)}}else b=n(a,o,u);if(0!==y.length||S||(y=o.getContextualDocumentationComment(c,a)),0===y.length&&4&h&&o.parent&&e.forEach(o.parent.declarations,(function(e){return 297===e.kind})))for(var z=0,U=o.declarations;z0))break}}return 0!==v.length||S||(v=o.getJsDocTags()),0===y.length&&f&&(y=f),0===v.length&&g&&(v=g),{displayParts:m,documentation:y,symbolKind:b,tags:0===v.length?void 0:v};function q(){return p||(p=e.createPrinter({removeComments:!0})),p}function W(){m.length&&m.push(e.lineBreakPart()),H()}function H(){_&&(Y("alias"),m.push(e.spacePart()))}function G(){m.push(e.spacePart()),m.push(e.keywordPart(100)),m.push(e.spacePart())}function X(t,r){_&&t===o&&(t=_);var n=e.symbolToDisplayParts(a,t,r||s,void 0,7);e.addRange(m,n),16777216&o.flags&&m.push(e.punctuationPart(57))}function Q(t,r){W(),r&&(Y(r),t&&!e.some(t.declarations,(function(t){return e.isArrowFunction(t)||(e.isFunctionExpression(t)||e.isClassExpression(t))&&!t.name}))&&(m.push(e.spacePart()),X(t)))}function Y(t){switch(t){case"var":case"function":case"let":case"const":case"constructor":return void m.push(e.textOrKeywordPart(t));default:return m.push(e.punctuationPart(20)),m.push(e.textOrKeywordPart(t)),void m.push(e.punctuationPart(21))}}function Z(t,r,n){void 0===n&&(n=0),e.addRange(m,e.signatureToDisplayParts(a,t,c,32|n)),r.length>1&&(m.push(e.spacePart()),m.push(e.punctuationPart(20)),m.push(e.operatorPart(39)),m.push(e.displayPart((r.length-1).toString(),e.SymbolDisplayPartKind.numericLiteral)),m.push(e.spacePart()),m.push(e.textPart(2===r.length?"overload":"overloads")),m.push(e.punctuationPart(21))),y=t.getDocumentationComment(a),v=t.getJsDocTags(),r.length>1&&0===y.length&&0===v.length&&(y=r[0].getDocumentationComment(a),v=r[0].getJsDocTags())}function $(t,n){var i=e.mapToDisplayParts((function(i){var o=a.symbolToTypeParameterDeclarations(t,n,r);q().writeList(53776,o,e.getSourceFileOfNode(e.getParseTreeNode(n)),i)}));e.addRange(m,i)}}}(e.SymbolDisplay||(e.SymbolDisplay={}))}(ts||(ts={})),function(e){function t(t,r){var i=[],a=r.compilerOptions?n(r.compilerOptions,i):{},o=e.getDefaultCompilerOptions();for(var s in o)e.hasProperty(o,s)&&void 0===a[s]&&(a[s]=o[s]);for(var c=0,u=e.transpileOptionValueCompilerOptions;c>=5;return r}(p,d),0,n),a[c]=(_=1+((u=p)>>(l=d)&s),e.Debug.assert((_&s)===_,"Adding more rules into the sub-bucket than allowed. Maximum allowed is 32 rules."),u&~(s<=r.pos?t.pos:a.end:t.pos}(o,r,n),r.end,(function(s){return d(r,o,t.SmartIndenter.getIndentationForNode(o,r,n,i.options),function(e,r,n){for(var i,a=-1;e;){var o=n.getLineAndCharacterOfPosition(e.getStart(n)).line;if(-1!==a&&o!==a)break;if(t.SmartIndenter.shouldIndentChildNode(r,e,i,n))return r.indentSize;a=o,i=e,e=e.parent}return 0}(o,i.options,n),s,i,a,function(t,r){if(!t.length)return a;var n=t.filter((function(t){return e.rangeOverlapsWithStartEnd(r,t.start,t.start+t.length)})).sort((function(e,t){return e.start-t.start}));if(!n.length)return a;var i=0;return function(t){for(;;){if(i>=n.length)return!1;var r=n[i];if(t.end<=r.start)return!1;if(e.startEndOverlapsWithStartEnd(t.pos,t.end,r.start,r.start+r.length))return!0;i++}};function a(){return!1}}(n.parseDiagnostics,r),n)}))}function d(r,n,i,a,o,s,c,u,l){var _,d,f,g,m=s.options,y=s.getRules,v=s.host,h=new t.FormattingContext(l,c,m),b=-1,x=[];if(o.advance(),o.isOnToken()){var D=l.getLineAndCharacterOfPosition(n.getStart(l)).line,S=D;n.decorators&&(S=l.getLineAndCharacterOfPosition(e.getNonDecoratorTokenPosOfNode(n,l)).line),function n(i,a,s,c,p,y){if(!e.rangeOverlapsWithStartEnd(r,i.getStart(l),i.getEnd()))return;var v=E(i,s,p,y),h=a;e.forEachChild(i,(function(e){S(e,-1,i,v,s,c,!1)}),(function(e){T(e,i,s,v)}));for(;o.isOnToken();){var x=o.readTokenInfo(i);if(x.token.end>i.end)break;11!==i.kind?C(x,i,v,i):o.advance()}if(!i.parent&&o.isOnEOF()){var D=o.readEOFTokenRange();D.end<=i.end&&_&&F(D,l.getLineAndCharacterOfPosition(D.pos).line,i,_,f,d,a,v)}function S(a,s,c,u,_,d,p,f){var y=a.getStart(l),v=l.getLineAndCharacterOfPosition(y).line,x=v;a.decorators&&(x=l.getLineAndCharacterOfPosition(e.getNonDecoratorTokenPosOfNode(a,l)).line);var D=-1;if(p&&e.rangeContainsRange(r,c)&&-1!==(D=function(r,n,i,a,o){if(e.rangeOverlapsWithStartEnd(a,r,n)||e.rangeContainsStartEnd(a,r,n)){if(-1!==o)return o}else{var s=l.getLineAndCharacterOfPosition(r).line,c=e.getLineStartPositionForPosition(r,l),u=t.SmartIndenter.findFirstNonWhitespaceColumn(c,r,l,m);if(s!==i||r===u){var _=t.SmartIndenter.getBaseIndentation(m);return _>u?_:u}}return-1}(y,a.end,_,r,s))&&(s=D),!e.rangeOverlapsWithStartEnd(r,a.pos,a.end))return a.endy){S.token.pos>y&&o.skipToStartOf(a);break}C(S,i,u,i)}if(!o.isOnToken())return s;if(e.isToken(a)){var S=o.readTokenInfo(a);if(11!==a.kind)return e.Debug.assert(S.token.end===a.end,"Token end is child end"),C(S,i,u,a),s}var T=161===a.kind?v:d,E=function(e,r,n,i,a,o){var s=t.SmartIndenter.shouldIndentChildNode(m,e)?m.indentSize:0;return o===r?{indentation:r===g?b:a.getIndentation(),delta:Math.min(m.indentSize,a.getDelta(e)+s)}:-1===n?20===e.kind&&r===g?{indentation:b,delta:a.getDelta(e)}:t.SmartIndenter.childStartsOnTheSameLineWithElseInIfStatement(i,e,r,l)||t.SmartIndenter.childIsUnindentedBranchOfConditionalExpression(i,e,r,l)||t.SmartIndenter.argumentStartsOnSameLineAsPreviousArgument(i,e,r,l)?{indentation:a.getIndentation(),delta:s}:{indentation:a.getIndentation()+a.getDelta(e),delta:s}:{indentation:n,delta:s}}(a,v,D,i,u,T);if(n(a,h,v,x,E.indentation,E.delta),11===a.kind){var k={pos:a.getStart(),end:a.getEnd()};if(k.pos!==k.end){var N=c.getChildren(l),A=N[e.findIndex(N,(function(e){return e.pos===a.pos}))-1];if(A&&l.getLineAndCharacterOfPosition(k.end).line!==l.getLineAndCharacterOfPosition(A.end).line){var F=l.getLineAndCharacterOfPosition(k.pos).line===l.getLineAndCharacterOfPosition(A.end).line;w(k,E.indentation,F,!1,!0)}}}return h=i,f&&199===c.kind&&-1===s&&(s=E.indentation),s}function T(r,n,a,s){e.Debug.assert(e.isNodeArray(r));var c=function(e,t){switch(e.kind){case 166:case 251:case 208:case 165:case 164:case 209:if(e.typeParameters===t)return 29;if(e.parameters===t)return 20;break;case 203:case 204:if(e.typeArguments===t)return 29;if(e.arguments===t)return 20;break;case 173:if(e.typeArguments===t)return 29;break;case 177:return 18}return 0}(n,r),u=s,_=a;if(0!==c)for(;o.isOnToken();){if((v=o.readTokenInfo(n)).token.end>r.pos)break;if(v.token.kind===c){_=l.getLineAndCharacterOfPosition(v.token.pos).line,C(v,n,s,n);var d=void 0;if(-1!==b)d=b;else{var p=e.getLineStartPositionForPosition(v.token.pos,l);d=t.SmartIndenter.findFirstNonWhitespaceColumn(p,v.token.pos,l,m)}u=E(n,a,d,m.indentSize)}else C(v,n,s,n)}for(var f=-1,g=0;g0){var T=p(S,m);L(x,D.character,T)}else M(x,D.character)}}}else i||P(r.pos,n,!1)}function I(t,r,n){for(var i=t;io)){var s=O(a,o);-1!==s&&(e.Debug.assert(s===a||!e.isWhiteSpaceSingleLine(l.text.charCodeAt(s-1))),M(s,o+1-s))}}}function O(t,r){for(var n=r;n>=t&&e.isWhiteSpaceSingleLine(l.text.charCodeAt(n));)n--;return n!==r?n+1:-1}function M(t,r){r&&x.push(e.createTextChangeFromStartLength(t,r,""))}function L(t,r,n){(r||n)&&x.push(e.createTextChangeFromStartLength(t,r,n))}}function p(t,r){if((!i||i.tabSize!==r.tabSize||i.indentSize!==r.indentSize)&&(i={tabSize:r.tabSize,indentSize:r.indentSize},a=o=void 0),r.convertTabsToSpaces){var n=void 0,s=Math.floor(t/r.indentSize),c=t%r.indentSize;return o||(o=[]),void 0===o[s]?(n=e.repeatString(" ",r.indentSize*s),o[s]=n):n=o[s],c?n+e.repeatString(" ",c):n}var u=Math.floor(t/r.tabSize),l=t-u*r.tabSize,_=void 0;return a||(a=[]),void 0===a[u]?a[u]=_=e.repeatString("\t",u):_=a[u],l?_+e.repeatString(" ",l):_}t.createTextRangeWithKind=function(t,r,n){var i={pos:t,end:r,kind:n};return e.Debug.isDebugging&&Object.defineProperty(i,"__debugKind",{get:function(){return e.Debug.formatSyntaxKind(n)}}),i},function(e){e[e.Unknown=-1]="Unknown"}(r||(r={})),t.formatOnEnter=function(t,r,n){var i=r.getLineAndCharacterOfPosition(t).line;if(0===i)return[];for(var a=e.getEndLinePosition(i,r);e.isWhiteSpaceSingleLine(r.text.charCodeAt(a));)a--;return e.isLineBreak(r.text.charCodeAt(a))&&a--,_({pos:e.getStartPositionOfLine(i-1,r),end:a+1},r,n,2)},t.formatOnSemicolon=function(e,t,r){return l(c(s(e,26,t)),t,r,3)},t.formatOnOpeningCurly=function(t,r,n){var i=s(t,18,r);if(!i)return[];var a=c(i.parent);return _({pos:e.getLineStartPositionForPosition(a.getStart(r),r),end:t},r,n,4)},t.formatOnClosingCurly=function(e,t,r){return l(c(s(e,19,t)),t,r,5)},t.formatDocument=function(e,t){return _({pos:0,end:e.text.length},e,t,0)},t.formatSelection=function(t,r,n,i){return _({pos:e.getLineStartPositionForPosition(t,n),end:r},n,i,1)},t.formatNodeGivenIndentation=function(e,r,n,i,a,o){var s={pos:0,end:r.text.length};return t.getFormattingScanner(r.text,n,s.pos,s.end,(function(t){return d(s,e,i,a,t,o,1,(function(e){return!1}),r)}))},function(e){e[e.None=0]="None",e[e.LineAdded=1]="LineAdded",e[e.LineRemoved=2]="LineRemoved"}(n||(n={})),t.getRangeOfEnclosingComment=function(t,r,n,i){void 0===i&&(i=e.getTokenAtPosition(t,r));var a=e.findAncestor(i,e.isJSDoc);if(a&&(i=a.parent),!(i.getStart(t)<=r&&rr.end}var h=s(g,e,i),b=h.line===t.line||d(g,e,t.line,i);if(y){var x=null===(f=p(e,i))||void 0===f?void 0:f[0],S=m(e,i,u,!!x&&l(x,i).line>h.line);if(-1!==S)return S+n;if(-1!==(S=c(e,g,t,b,i,u)))return S+n}D(u,g,e,i,o)&&!b&&(n+=u.indentSize);var T=_(g,e,t.line,i);g=(e=g).parent,t=T?i.getLineAndCharacterOfPosition(e.getStart(i)):h}return n+a(u)}function s(e,t,r){var n=p(t,r),i=n?n.pos:e.getStart(r);return r.getLineAndCharacterOfPosition(i)}function c(t,r,n,i,a,o){return(e.isDeclaration(t)||e.isStatementButNotDeclaration(t))&&(297===r.kind||!i)?v(n,a,o):-1}function u(t,r,n,i){var a=e.findNextToken(t,r,i);return a?18===a.kind?1:19===a.kind&&n===l(a,i).line?2:0:0}function l(e,t){return t.getLineAndCharacterOfPosition(e.getStart(t))}function _(t,r,n,i){if(!e.isCallExpression(t)||!e.contains(t.arguments,r))return!1;var a=t.expression.getEnd();return e.getLineAndCharacterOfPosition(i,a).line===n}function d(t,r,n,i){if(234===t.kind&&t.elseStatement===r){var a=e.findChildOfKind(t,90,i);return e.Debug.assert(void 0!==a),l(a,i).line===n}return!1}function p(e,t){return e.parent&&f(e.getStart(t),e.getEnd(),e.parent,t)}function f(t,r,n,i){switch(n.kind){case 173:return a(n.typeArguments);case 200:return a(n.properties);case 199:return a(n.elements);case 177:return a(n.members);case 251:case 208:case 209:case 165:case 164:case 169:case 166:case 175:case 170:return a(n.typeParameters)||a(n.parameters);case 252:case 221:case 253:case 254:case 330:return a(n.typeParameters);case 204:case 203:return a(n.typeArguments)||a(n.arguments);case 250:return a(n.declarations);case 264:case 268:return a(n.elements);case 196:case 197:return a(n.elements)}function a(a){return a&&e.rangeContainsStartEnd(function(e,t,r){for(var n=e.getChildren(r),i=1;i=0&&r=0;o--)if(27!==t[o].kind){if(n.getLineAndCharacterOfPosition(t[o].end).line!==a.line)return v(a,n,i);a=l(t[o],n)}return-1}function v(e,t,r){var n=t.getPositionOfLineAndCharacter(e.line,0);return b(n,n+e.character,t,r)}function h(t,r,n,i){for(var a=0,o=0,s=t;sn.text.length)return a(i);if(i.indentStyle===e.IndentStyle.None)return 0;var c=e.findPrecedingToken(r,n,void 0,!0),_=t.getRangeOfEnclosingComment(n,r,c||null);if(_&&3===_.kind)return function(t,r,n,i){var a=e.getLineAndCharacterOfPosition(t,r).line-1,o=e.getLineAndCharacterOfPosition(t,i.pos).line;if(e.Debug.assert(o>=0),a<=o)return b(e.getStartPositionOfLine(o,t),r,t,n);var s=e.getStartPositionOfLine(a,t),c=h(s,r,t,n),u=c.column,l=c.character;if(0===u)return u;return 42===t.text.charCodeAt(s+l)?u-1:u}(n,r,i,_);if(!c)return a(i);if(e.isStringOrRegularExpressionOrTemplateLiteral(c.kind)&&c.getStart(n)<=r&&r0;){var a=t.text.charCodeAt(i);if(!e.isWhiteSpaceLike(a))break;i--}return b(e.getLineStartPositionForPosition(i,t),i,t,n)}(n,r,i);if(27===c.kind&&216!==c.parent.kind){var p=function(t,r,n){var i=e.findListItemInfo(t);return i&&i.listItemIndex>0?y(i.list.getChildren(),i.listItemIndex-1,r,n):-1}(c,n,i);if(-1!==p)return p}var v=function(e,t,r){return t&&f(e,e,t,r)}(r,c.parent,n);return v&&!e.rangeContainsRange(v,c)?g(v,n,i)+i.indentSize:function(t,r,n,i,s,c){var _,d=n;for(;d;){if(e.positionBelongsToNode(d,r,t)&&D(c,d,_,t,!0)){var p=l(d,t),f=u(n,d,i,t);return o(d,p,void 0,0!==f?s&&2===f?c.indentSize:0:i!==p.line?c.indentSize:0,t,!0,c)}var g=m(d,t,c,!0);if(-1!==g)return g;_=d,d=d.parent}return a(c)}(n,r,c,d,s,i)},r.getIndentationForNode=function(e,t,r,n){var i=r.getLineAndCharacterOfPosition(e.getStart(r));return o(e,i,t,0,r,!1,n)},r.getBaseIndentation=a,function(e){e[e.Unknown=0]="Unknown",e[e.OpenBrace=1]="OpenBrace",e[e.CloseBrace=2]="CloseBrace"}(i||(i={})),r.isArgumentAndStartLineOverlapsExpressionBeingCalled=_,r.childStartsOnTheSameLineWithElseInIfStatement=d,r.childIsUnindentedBranchOfConditionalExpression=function(t,r,n,i){if(e.isConditionalExpression(t)&&(r===t.whenTrue||r===t.whenFalse)){var a=e.getLineAndCharacterOfPosition(i,t.condition.end).line;if(r===t.whenTrue)return n===a;var o=l(t.whenTrue,i).line,s=e.getLineAndCharacterOfPosition(i,t.whenTrue.end).line;return a===o&&s===n}return!1},r.argumentStartsOnSameLineAsPreviousArgument=function(t,r,n,i){if(e.isCallOrNewExpression(t)){if(!t.arguments)return!1;var a=e.find(t.arguments,(function(e){return e.pos===r.pos}));if(!a)return!1;var o=t.arguments.indexOf(a);if(0===o)return!1;var s=t.arguments[o-1];if(n===e.getLineAndCharacterOfPosition(i,s.getEnd()).line)return!0}return!1},r.getContainingList=p,r.findFirstNonWhitespaceCharacterAndColumn=h,r.findFirstNonWhitespaceColumn=b,r.nodeWillIndentChild=x,r.shouldIndentChildNode=D}(t.SmartIndenter||(t.SmartIndenter={}))}(e.formatting||(e.formatting={}))}(ts||(ts={})),function(e){!function(t){function r(t){var r=t.__pos;return e.Debug.assert("number"==typeof r),r}function n(t,r){e.Debug.assert("number"==typeof r),t.__pos=r}function i(t){var r=t.__end;return e.Debug.assert("number"==typeof r),r}function a(t,r){e.Debug.assert("number"==typeof r),t.__end=r}var o,s;function c(t,r){return e.skipTrivia(t,r,!1,!0)}!function(e){e[e.Exclude=0]="Exclude",e[e.IncludeAll=1]="IncludeAll",e[e.JSDoc=2]="JSDoc",e[e.StartLine=3]="StartLine"}(o=t.LeadingTriviaOption||(t.LeadingTriviaOption={})),function(e){e[e.Exclude=0]="Exclude",e[e.ExcludeWhitespace=1]="ExcludeWhitespace",e[e.Include=2]="Include"}(s=t.TrailingTriviaOption||(t.TrailingTriviaOption={}));var u,l={leadingTriviaOption:o.Exclude,trailingTriviaOption:s.Exclude};function _(e,t,r,n){return{pos:d(e,t,n),end:p(e,r,n)}}function d(t,r,n){var i=n.leadingTriviaOption;if(i===o.Exclude)return r.getStart(t);if(i===o.StartLine)return e.getLineStartPositionForPosition(r.getStart(t),t);if(i===o.JSDoc){var a=e.getJSDocCommentRanges(r,t.text);if(null==a?void 0:a.length)return e.getLineStartPositionForPosition(a[0].pos,t)}var s=r.getFullStart(),u=r.getStart(t);if(s===u)return u;var l=e.getLineStartPositionForPosition(s,t);if(e.getLineStartPositionForPosition(u,t)===l)return i===o.IncludeAll?s:u;var _=s>0?1:0,d=e.getStartPositionOfLine(e.getLineOfLocalPosition(t,l)+_,t);return d=c(t.text,d),e.getStartPositionOfLine(e.getLineOfLocalPosition(t,d),t)}function p(t,r,n){var i,a=r.end,o=n.trailingTriviaOption;if(o===s.Exclude)return a;if(o===s.ExcludeWhitespace){var c=e.concatenate(e.getTrailingCommentRanges(t.text,a),e.getLeadingCommentRanges(t.text,a)),u=null===(i=null==c?void 0:c[c.length-1])||void 0===i?void 0:i.end;return u||a}var l=e.skipTrivia(t.text,a,!0);return l===a||o!==s.Include&&!e.isLineBreak(t.text.charCodeAt(l-1))?a:l}function f(e,t){return!!t&&!!e.parent&&(27===t.kind||26===t.kind&&200===e.parent.kind)}!function(e){e[e.Remove=0]="Remove",e[e.ReplaceWithSingleNode=1]="ReplaceWithSingleNode",e[e.ReplaceWithMultipleNodes=2]="ReplaceWithMultipleNodes",e[e.Text=3]="Text"}(u||(u={})),t.isThisTypeAnnotatable=function(t){return e.isFunctionExpression(t)||e.isFunctionDeclaration(t)};var g,m,y=function(){function t(t,r){this.newLineCharacter=t,this.formatContext=r,this.changes=[],this.newFiles=[],this.classesWithNodesInsertedAtStart=new e.Map,this.deletedNodes=[]}return t.fromContext=function(r){return new t(e.getNewLineOrDefaultFromHost(r.host,r.formatContext.options),r.formatContext)},t.with=function(e,r){var n=t.fromContext(e);return r(n),n.getChanges()},t.prototype.pushRaw=function(t,r){e.Debug.assertEqual(t.fileName,r.fileName);for(var n=0,i=r.textChanges;n=t.getLineAndCharacterOfPosition(u.range.end).line+2)break}if(t.statements.length)if(void 0===l&&(l=t.getLineAndCharacterOfPosition(t.statements[0].getStart()).line),l",joiner:", "})},t.prototype.getOptionsForInsertNodeBefore=function(t,r,n){return e.isStatement(t)||e.isClassElement(t)?{suffix:n?this.newLineCharacter+this.newLineCharacter:this.newLineCharacter}:e.isVariableDeclaration(t)?{suffix:", "}:e.isParameter(t)?e.isParameter(r)?{suffix:", "}:{}:e.isStringLiteral(t)&&e.isImportDeclaration(t.parent)||e.isNamedImports(t)?{suffix:", "}:e.isImportSpecifier(t)?{suffix:","+(n?this.newLineCharacter:" ")}:e.Debug.failBadSyntaxKind(t)},t.prototype.insertNodeAtConstructorStart=function(t,r,n){var i=e.firstOrUndefined(r.body.statements);i&&r.body.multiLine?this.insertNodeBefore(t,i,n):this.replaceConstructorBody(t,r,__spreadArray([n],r.body.statements))},t.prototype.insertNodeAtConstructorEnd=function(t,r,n){var i=e.lastOrUndefined(r.body.statements);i&&r.body.multiLine?this.insertNodeAfter(t,i,n):this.replaceConstructorBody(t,r,__spreadArray(__spreadArray([],r.body.statements),[n]))},t.prototype.replaceConstructorBody=function(t,r,n){this.replaceNode(t,r.body,e.factory.createBlock(n,!0))},t.prototype.insertNodeAtEndOfScope=function(t,r,n){var i=d(t,r.getLastToken(),{});this.insertNodeAt(t,i,n,{prefix:e.isLineBreak(t.text.charCodeAt(r.getLastToken().pos))?this.newLineCharacter:this.newLineCharacter+this.newLineCharacter,suffix:this.newLineCharacter})},t.prototype.insertNodeAtClassStart=function(e,t,r){this.insertNodeAtStartWorker(e,t,r)},t.prototype.insertNodeAtObjectStart=function(e,t,r){this.insertNodeAtStartWorker(e,t,r)},t.prototype.insertNodeAtStartWorker=function(e,t,r){var n,i=null!==(n=this.guessIndentationFromExistingMembers(e,t))&&void 0!==n?n:this.computeIndentationForNewMember(e,t);this.insertNodeAt(e,h(t).pos,r,this.getInsertNodeAtStartInsertOptions(e,t,i))},t.prototype.guessIndentationFromExistingMembers=function(t,r){for(var n,i=r,a=0,o=h(r);a=0;n--){var i=r[n],a=i.span,o=i.newText;t=""+t.substring(0,a.start)+o+t.substring(e.textSpanEnd(a))}return t}function x(t){var n=e.visitEachChild(t,x,e.nullTransformationContext,D,x),a=e.nodeIsSynthesized(n)?n:Object.create(n);return e.setTextRangePosEnd(a,r(t),i(t)),a}function D(t,n,a,o,s){var c=e.visitNodes(t,n,a,o,s);if(!c)return c;var u=c===t?e.factory.createNodeArray(c.slice(0)):c;return e.setTextRangePosEnd(u,r(t),i(t)),u}function S(t,r){return!(e.isInComment(t,r)||e.isInString(t,r)||e.isInTemplateString(t,r)||e.isInJSXText(t,r))}function T(e,t,r,n){void 0===n&&(n={leadingTriviaOption:o.IncludeAll});var i=d(t,r,n),a=p(t,r,n);e.deleteRange(t,{pos:i,end:a})}function C(t,r,n,i){var a=e.Debug.checkDefined(e.formatting.SmartIndenter.getContainingList(i,n)),o=e.indexOfNode(a,i);e.Debug.assert(-1!==o),1!==a.length?(e.Debug.assert(!r.has(i),"Deleting a node twice"),r.add(i),t.deleteRange(n,{pos:v(n,i),end:o===a.length-1?p(n,i,{}):v(n,a[o+1])})):T(t,n,i)}t.ChangeTracker=y,t.getNewFileText=function(e,t,r,n){return g.newFileChangesWorker(void 0,t,e,r,n)},function(t){function r(t,r,n,a,o){var s=n.map((function(e){return 4===e?"":i(e,t,a).text})).join(a),c=e.createSourceFile("any file name",s,99,!0,r);return b(s,e.formatting.formatDocument(c,o))+a}function i(t,r,i){var o=function(t){var r=0,i=e.createTextWriter(t);function o(t,n){if(n||!function(t){return e.skipTrivia(t,0)===t.length}(t)){r=i.getTextPos();for(var a=0;e.isWhiteSpaceLike(t.charCodeAt(t.length-a-1));)a++;r-=a}}function s(e){i.write(e),o(e,!1)}function c(e){i.writeComment(e)}function u(e){i.writeKeyword(e),o(e,!1)}function l(e){i.writeOperator(e),o(e,!1)}function _(e){i.writePunctuation(e),o(e,!1)}function d(e){i.writeTrailingSemicolon(e),o(e,!1)}function p(e){i.writeParameter(e),o(e,!1)}function f(e){i.writeProperty(e),o(e,!1)}function g(e){i.writeSpace(e),o(e,!1)}function m(e){i.writeStringLiteral(e),o(e,!1)}function y(e,t){i.writeSymbol(e,t),o(e,!1)}function v(e){i.writeLine(e)}function h(){i.increaseIndent()}function b(){i.decreaseIndent()}function x(){return i.getText()}function D(e){i.rawWrite(e),o(e,!1)}function S(e){i.writeLiteral(e),o(e,!0)}function T(){return i.getTextPos()}function C(){return i.getLine()}function E(){return i.getColumn()}function k(){return i.getIndent()}function N(){return i.isAtStartOfLine()}function A(){i.clear(),r=0}return{onEmitNode:function(e,t,i){t&&n(t,r),i(e,t),t&&a(t,r)},onBeforeEmitNodeArray:function(e){e&&n(e,r)},onAfterEmitNodeArray:function(e){e&&a(e,r)},onBeforeEmitToken:function(e){e&&n(e,r)},onAfterEmitToken:function(e){e&&a(e,r)},write:s,writeComment:c,writeKeyword:u,writeOperator:l,writePunctuation:_,writeTrailingSemicolon:d,writeParameter:p,writeProperty:f,writeSpace:g,writeStringLiteral:m,writeSymbol:y,writeLine:v,increaseIndent:h,decreaseIndent:b,getText:x,rawWrite:D,writeLiteral:S,getTextPos:T,getLine:C,getColumn:E,getIndent:k,isAtStartOfLine:N,hasTrailingComment:function(){return i.hasTrailingComment()},hasTrailingWhitespace:function(){return i.hasTrailingWhitespace()},clear:A}}(i),s="\n"===i?1:0;return e.createPrinter({newLine:s,neverAsciiEscape:!0,preserveSourceNewlines:!0,terminateUnterminatedLiterals:!0},o).writeNode(4,t,r,o),{text:o.getText(),node:x(t)}}t.getTextChangesFromChanges=function(t,r,n,a){return e.mapDefined(e.group(t,(function(e){return e.sourceFile.path})),(function(t){for(var o=t[0].sourceFile,s=e.stableSort(t,(function(e,t){return e.range.pos-t.range.pos||e.range.end-t.range.end})),c=function(t){e.Debug.assert(s[t].range.end<=s[t+1].range.pos,"Changes overlap",(function(){return JSON.stringify(s[t].range)+" and "+JSON.stringify(s[t+1].range)}))},l=0;l0?{fileName:o.fileName,textChanges:_}:void 0}))},t.newFileChanges=function(t,n,i,a,o){var s=r(t,e.getScriptKindFromFileName(n),i,a,o);return{fileName:n,textChanges:[e.createTextChange(e.createTextSpan(0,0),s)],isNewFile:!0}},t.newFileChangesWorker=r,t.getNonformattedText=i}(g||(g={})),t.applyChanges=b,t.isValidLocationToAddComment=S,function(t){function r(t,r,n){if(n.parent.name){var i=e.Debug.checkDefined(e.getTokenAtPosition(r,n.pos-1));t.deleteRange(r,{pos:i.getStart(r),end:n.end})}else{T(t,r,e.getAncestor(n,261))}}t.deleteDeclaration=function(t,n,i,a){switch(a.kind){case 160:var c=a.parent;e.isArrowFunction(c)&&1===c.parameters.length&&!e.findChildOfKind(c,20,i)?t.replaceNodeWithText(i,a,"()"):C(t,n,i,a);break;case 261:case 260:T(t,i,a,{leadingTriviaOption:i.imports.length&&a===e.first(i.imports).parent||a===e.find(i.statements,e.isAnyImportSyntax)?o.Exclude:e.hasJSDocNodes(a)?o.JSDoc:o.StartLine});break;case 198:var u=a.parent;197===u.kind&&a!==e.last(u.elements)?T(t,i,a):C(t,n,i,a);break;case 249:!function(t,r,n,i){var a=i.parent;if(287===a.kind)return void t.deleteNodeRange(n,e.findChildOfKind(a,20,n),e.findChildOfKind(a,21,n));if(1!==a.declarations.length)return void C(t,r,n,i);var s=a.parent;switch(s.kind){case 239:case 238:t.replaceNode(n,i,e.factory.createObjectLiteralExpression());break;case 237:T(t,n,a);break;case 232:T(t,n,s,{leadingTriviaOption:e.hasJSDocNodes(s)?o.JSDoc:o.StartLine});break;default:e.Debug.assertNever(s)}}(t,n,i,a);break;case 159:C(t,n,i,a);break;case 265:var l=a.parent;1===l.elements.length?r(t,i,l):C(t,n,i,a);break;case 263:r(t,i,a);break;case 26:T(t,i,a,{trailingTriviaOption:s.Exclude});break;case 97:T(t,i,a,{leadingTriviaOption:o.Exclude});break;case 252:case 251:T(t,i,a,{leadingTriviaOption:e.hasJSDocNodes(a)?o.JSDoc:o.StartLine});break;default:e.isImportClause(a.parent)&&a.parent.name===a?function(t,r,n){if(n.namedBindings){var i=n.name.getStart(r),a=e.getTokenAtPosition(r,n.name.end);if(a&&27===a.kind){var o=e.skipTrivia(r.text,a.end,!1,!0);t.deleteRange(r,{pos:i,end:o})}else T(t,r,n.name)}else T(t,r,n.parent)}(t,i,a.parent):e.isCallExpression(a.parent)&&e.contains(a.parent.arguments,a)?C(t,n,i,a):T(t,i,a)}}}(m||(m={})),t.deleteNode=T}(e.textChanges||(e.textChanges={}))}(ts||(ts={})),function(e){!function(t){var r=e.createMultiMap(),n=new e.Map;function i(t){return e.isArray(t)?e.formatStringFromArgs(e.getLocaleSpecificMessage(t[0]),t.slice(1)):e.getLocaleSpecificMessage(t)}function a(e,t,r,n,i,a){return{fixName:e,description:t,changes:r,fixId:n,fixAllDescription:i,commands:a?[a]:void 0}}function o(e,t){return{changes:e,commands:t}}function s(t,r,n){for(var i=0,a=c(t);i1)break}var c=i<2;return function(e){var t=e.fixId,r=e.fixAllDescription,n=__rest(e,["fixId","fixAllDescription"]);return c?n:__assign(__assign({},n),{fixId:t,fixAllDescription:r})}}(r,n))}))},t.getAllFixes=function(t){return n.get(e.cast(t.fixId,e.isString)).getAllCodeActions(t)},t.createCombinedCodeActions=o,t.createFileTextChanges=function(e,t){return{fileName:e,textChanges:t}},t.codeFixAll=function(t,r,n){var i=[];return o(e.textChanges.ChangeTracker.with(t,(function(e){return s(t,r,(function(t){return n(e,t,i)}))})),0===i.length?void 0:i)},t.eachDiagnostic=s}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){var t,r;t=e.refactor||(e.refactor={}),r=new e.Map,t.registerRefactor=function(e,t){r.set(e,t)},t.getApplicableRefactors=function(n){return e.arrayFrom(e.flatMapIterator(r.values(),(function(e){var r;return n.cancellationToken&&n.cancellationToken.isCancellationRequested()||!(null===(r=e.kinds)||void 0===r?void 0:r.some((function(e){return t.refactorKindBeginsWith(e,n.kind)})))?void 0:e.getAvailableActions(n)})))},t.getEditsForRefactor=function(e,t,n){var i=r.get(t);return i&&i.getEditsForAction(e,n)}}(ts||(ts={})),function(e){!function(t){var r="addConvertToUnknownForNonOverlappingTypes",n=[e.Diagnostics.Conversion_of_type_0_to_type_1_may_be_a_mistake_because_neither_type_sufficiently_overlaps_with_the_other_If_this_was_intentional_convert_the_expression_to_unknown_first.code];function i(t,r,n){var i=e.getTokenAtPosition(r,n),a=e.Debug.checkDefined(e.findAncestor(i,(function(t){return e.isAsExpression(t)||e.isTypeAssertionExpression(t)})),"Expected to find an assertion expression"),o=e.isAsExpression(a)?e.factory.createAsExpression(a.expression,e.factory.createKeywordTypeNode(152)):e.factory.createTypeAssertion(e.factory.createKeywordTypeNode(152),a.expression);t.replaceNode(r,a.expression,o)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span.start)}));return[t.createCodeFixAction(r,a,e.Diagnostics.Add_unknown_conversion_for_non_overlapping_types,r,e.Diagnostics.Add_unknown_to_all_conversions_of_non_overlapping_types)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,t.start)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){t.registerCodeFix({errorCodes:[e.Diagnostics.await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module.code,e.Diagnostics.for_await_loops_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module.code],getCodeActions:function(r){var n=r.sourceFile,i=e.textChanges.ChangeTracker.with(r,(function(t){var r=e.factory.createExportDeclaration(void 0,void 0,!1,e.factory.createNamedExports([]),void 0);t.insertNodeAtEndOfScope(n,n,r)}));return[t.createCodeFixActionWithoutFixAll("addEmptyExportDeclaration",i,e.Diagnostics.Add_export_to_make_this_file_into_a_module)]}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addMissingAsync",n=[e.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code,e.Diagnostics.Type_0_is_not_assignable_to_type_1.code,e.Diagnostics.Type_0_is_not_comparable_to_type_1.code];function i(n,i,a,o){var s=a((function(t){return function(t,r,n,i){if(i&&i.has(e.getNodeId(n)))return;null==i||i.add(e.getNodeId(n));var a=e.factory.updateModifiers(e.getSynthesizedDeepClone(n,!0),e.factory.createNodeArray(e.factory.createModifiersFromModifierFlags(256|e.getSyntacticModifierFlags(n))));t.replaceNode(r,n,a)}(t,n.sourceFile,i,o)}));return t.createCodeFixAction(r,s,e.Diagnostics.Add_async_modifier_to_containing_function,r,e.Diagnostics.Add_all_missing_async_modifiers)}function a(t,r){if(r){var n=e.getTokenAtPosition(t,r.start);return e.findAncestor(n,(function(n){return n.getStart(t)e.textSpanEnd(r)?"quit":(e.isArrowFunction(n)||e.isMethodDeclaration(n)||e.isFunctionExpression(n)||e.isFunctionDeclaration(n))&&e.textSpansEqual(r,e.createTextSpanFromNode(n,t))}))}}t.registerCodeFix({fixIds:[r],errorCodes:n,getCodeActions:function(t){var r=t.sourceFile,n=t.errorCode,o=t.cancellationToken,s=t.program,c=t.span,u=e.find(s.getDiagnosticsProducingTypeChecker().getDiagnostics(r,o),function(t,r){return function(n){var i=n.start,a=n.length,o=n.relatedInformation,s=n.code;return e.isNumber(i)&&e.isNumber(a)&&e.textSpansEqual({start:i,length:a},t)&&s===r&&!!o&&e.some(o,(function(t){return t.code===e.Diagnostics.Did_you_mean_to_mark_this_function_as_async.code}))}}(c,n)),l=a(r,u&&u.relatedInformation&&e.find(u.relatedInformation,(function(t){return t.code===e.Diagnostics.Did_you_mean_to_mark_this_function_as_async.code})));if(l){return[i(t,l,(function(r){return e.textChanges.ChangeTracker.with(t,r)}))]}},getAllCodeActions:function(r){var o=r.sourceFile,s=new e.Set;return t.codeFixAll(r,n,(function(t,n){var c=n.relatedInformation&&e.find(n.relatedInformation,(function(t){return t.code===e.Diagnostics.Did_you_mean_to_mark_this_function_as_async.code})),u=a(o,c);if(u){return i(r,u,(function(e){return e(t),[]}),s)}}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addMissingAwait",n=e.Diagnostics.Property_0_does_not_exist_on_type_1.code,i=[e.Diagnostics.This_expression_is_not_callable.code,e.Diagnostics.This_expression_is_not_constructable.code],a=__spreadArray([e.Diagnostics.An_arithmetic_operand_must_be_of_type_any_number_bigint_or_an_enum_type.code,e.Diagnostics.The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type.code,e.Diagnostics.The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_bigint_or_an_enum_type.code,e.Diagnostics.Operator_0_cannot_be_applied_to_type_1.code,e.Diagnostics.Operator_0_cannot_be_applied_to_types_1_and_2.code,e.Diagnostics.This_condition_will_always_return_0_since_the_types_1_and_2_have_no_overlap.code,e.Diagnostics.Type_0_is_not_an_array_type.code,e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type.code,e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_Use_compiler_option_downlevelIteration_to_allow_iterating_of_iterators.code,e.Diagnostics.Type_0_is_not_an_array_type_or_a_string_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator.code,e.Diagnostics.Type_0_is_not_an_array_type_or_does_not_have_a_Symbol_iterator_method_that_returns_an_iterator.code,e.Diagnostics.Type_0_must_have_a_Symbol_iterator_method_that_returns_an_iterator.code,e.Diagnostics.Type_0_must_have_a_Symbol_asyncIterator_method_that_returns_an_async_iterator.code,e.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code,n],i);function o(r,n,i,o,s,c){var _=r.sourceFile,d=r.program,p=r.cancellationToken,f=function(t,r,n,i,o){var s=function(t,r){if(e.isPropertyAccessExpression(t.parent)&&e.isIdentifier(t.parent.expression))return{identifiers:[t.parent.expression],isCompleteFix:!0};if(e.isIdentifier(t))return{identifiers:[t],isCompleteFix:!0};if(e.isBinaryExpression(t)){for(var n=void 0,i=!0,a=0,o=[t.left,t.right];ae.textSpanEnd(n)?"quit":e.isExpression(r)&&e.textSpansEqual(n,e.createTextSpanFromNode(r,t))}));return s&&function(t,r,n,i,a){var o=a.getDiagnosticsProducingTypeChecker().getDiagnostics(t,i);return e.some(o,(function(t){var i=t.start,a=t.length,o=t.relatedInformation,s=t.code;return e.isNumber(i)&&e.isNumber(a)&&e.textSpansEqual({start:i,length:a},n)&&s===r&&!!o&&e.some(o,(function(t){return t.code===e.Diagnostics.Did_you_forget_to_use_await.code}))}))}(t,r,n,i,a)&&u(s)?s:void 0}function u(t){return 32768&t.kind||!!e.findAncestor(t,(function(t){return t.parent&&e.isArrowFunction(t.parent)&&t.parent.body===t||e.isBlock(t)&&(251===t.parent.kind||208===t.parent.kind||209===t.parent.kind||165===t.parent.kind)}))}function l(t,r,a,o,s,c){if(e.isBinaryExpression(s))for(var u=0,l=[s.left,s.right];u0)return[t.createCodeFixAction(r,a,e.Diagnostics.Add_const_to_unresolved_variable,r,e.Diagnostics.Add_const_to_all_unresolved_variables)]},fixIds:[r],getAllCodeActions:function(r){var a=new e.Set;return t.codeFixAll(r,n,(function(e,t){return i(e,t.file,t.start,r.program,a)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addMissingDeclareProperty",n=[e.Diagnostics.Property_0_will_overwrite_the_base_property_in_1_If_this_is_intentional_add_an_initializer_Otherwise_add_a_declare_modifier_or_remove_the_redundant_declaration.code];function i(t,r,n,i){var a=e.getTokenAtPosition(r,n);if(e.isIdentifier(a)){var o=a.parent;163!==o.kind||i&&!e.tryAddToSet(i,o)||t.insertModifierBefore(r,133,o)}}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span.start)}));if(a.length>0)return[t.createCodeFixAction(r,a,e.Diagnostics.Prefix_with_declare,r,e.Diagnostics.Prefix_all_incorrect_property_declarations_with_declare)]},fixIds:[r],getAllCodeActions:function(r){var a=new e.Set;return t.codeFixAll(r,n,(function(e,t){return i(e,t.file,t.start,a)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addMissingInvocationForDecorator",n=[e.Diagnostics._0_accepts_too_few_arguments_to_be_used_as_a_decorator_here_Did_you_mean_to_call_it_first_and_write_0.code];function i(t,r,n){var i=e.getTokenAtPosition(r,n),a=e.findAncestor(i,e.isDecorator);e.Debug.assert(!!a,"Expected position to be owned by a decorator.");var o=e.factory.createCallExpression(a.expression,void 0,void 0);t.replaceNode(r,a.expression,o)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span.start)}));return[t.createCodeFixAction(r,a,e.Diagnostics.Call_decorator_expression,r,e.Diagnostics.Add_to_all_uncalled_decorators)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,t.start)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addNameToNamelessParameter",n=[e.Diagnostics.Parameter_has_a_name_but_no_type_Did_you_mean_0_Colon_1.code];function i(t,r,n){var i=e.getTokenAtPosition(r,n);if(!e.isIdentifier(i))return e.Debug.fail("add-name-to-nameless-parameter operates on identifiers, but got a "+e.Debug.formatSyntaxKind(i.kind));var a=i.parent;if(!e.isParameter(a))return e.Debug.fail("Tried to add a parameter name to a non-parameter: "+e.Debug.formatSyntaxKind(i.kind));var o=a.parent.parameters.indexOf(a);e.Debug.assert(!a.type,"Tried to add a parameter name to a parameter that already had one."),e.Debug.assert(o>-1,"Parameter not found in parent parameter list.");var s=e.factory.createParameterDeclaration(void 0,a.modifiers,a.dotDotDotToken,"arg"+o,a.questionToken,e.factory.createTypeReferenceNode(i,void 0),a.initializer);t.replaceNode(r,i,s)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span.start)}));return[t.createCodeFixAction(r,a,e.Diagnostics.Add_parameter_name,r,e.Diagnostics.Add_names_to_all_parameters_without_names)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,t.start)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="annotateWithTypeFromJSDoc",n=[e.Diagnostics.JSDoc_types_may_be_moved_to_TypeScript_types.code];function i(t,r){var n=e.getTokenAtPosition(t,r);return e.tryCast(e.isParameter(n.parent)?n.parent.parent:n.parent,a)}function a(t){return function(t){return e.isFunctionLikeDeclaration(t)||249===t.kind||162===t.kind||163===t.kind}(t)&&o(t)}function o(t){return e.isFunctionLikeDeclaration(t)?t.parameters.some(o)||!t.type&&!!e.getJSDocReturnType(t):!t.type&&!!e.getJSDocType(t)}function s(t,r,n){if(e.isFunctionLikeDeclaration(n)&&(e.getJSDocReturnType(n)||n.parameters.some((function(t){return!!e.getJSDocType(t)})))){if(!n.typeParameters){var i=e.getJSDocTypeParameterDeclarations(n);i.length&&t.insertTypeParameters(r,n,i)}var a=e.isArrowFunction(n)&&!e.findChildOfKind(n,20,r);a&&t.insertNodeBefore(r,e.first(n.parameters),e.factory.createToken(20));for(var o=0,s=n.parameters;o1?(t.delete(r,l),t.insertNodeAfter(r,d,_)):t.replaceNode(r,d,_)}}function p(n){var i=[];return n.members&&n.members.forEach((function(e,n){if("constructor"!==n){var a=u(e,void 0);a&&i.push.apply(i,a)}else t.delete(r,e.valueDeclaration.parent)})),n.exports&&n.exports.forEach((function(t){if("prototype"===t.name){var r=t.declarations[0];if(1===t.declarations.length&&e.isPropertyAccessExpression(r)&&e.isBinaryExpression(r.parent)&&62===r.parent.operatorToken.kind&&e.isObjectLiteralExpression(r.parent.right))(n=u(r.parent.right.symbol,void 0))&&i.push.apply(i,n)}else{var n;(n=u(t,[e.factory.createToken(123)]))&&i.push.apply(i,n)}})),i;function u(n,i){var u=[];if(!(8192&n.flags||4096&n.flags))return u;var l,_,d=n.valueDeclaration,p=d.parent,f=p.right;if(l=d,_=f,!(e.isAccessExpression(l)?e.isPropertyAccessExpression(l)&&o(l)||e.isFunctionLike(_):e.every(l.properties,(function(t){return!!(e.isMethodDeclaration(t)||e.isGetOrSetAccessorDeclaration(t)||e.isPropertyAssignment(t)&&e.isFunctionExpression(t.initializer)&&t.name||o(t))}))))return u;var g=p.parent&&233===p.parent.kind?p.parent:p;if(t.delete(r,g),!f)return u.push(e.factory.createPropertyDeclaration([],i,n.name,void 0,void 0,void 0)),u;if(e.isAccessExpression(d)&&(e.isFunctionExpression(f)||e.isArrowFunction(f))){var m=e.getQuotePreference(r,s),y=function(t,r,n){if(e.isPropertyAccessExpression(t))return t.name;var i=t.argumentExpression;if(e.isNumericLiteral(i))return i;if(e.isStringLiteralLike(i))return e.isIdentifierText(i.text,r.target)?e.factory.createIdentifier(i.text):e.isNoSubstitutionTemplateLiteral(i)?e.factory.createStringLiteral(i.text,0===n):i;return}(d,c,m);return y?h(u,f,y):u}if(e.isObjectLiteralExpression(f))return e.flatMap(f.properties,(function(t){return e.isMethodDeclaration(t)||e.isGetOrSetAccessorDeclaration(t)?u.concat(t):e.isPropertyAssignment(t)&&e.isFunctionExpression(t.initializer)?h(u,t.initializer,t.name):o(t)?u:[]}));if(e.isSourceFileJS(r))return u;if(!e.isPropertyAccessExpression(d))return u;var v=e.factory.createPropertyDeclaration(void 0,i,d.name,void 0,void 0,f);return e.copyLeadingComments(p.parent,v,r),u.push(v),u;function h(t,n,o){return e.isFunctionExpression(n)?function(t,n,o){var s=e.concatenate(i,a(n,129)),c=e.factory.createMethodDeclaration(void 0,s,void 0,o,void 0,void 0,n.parameters,void 0,n.body);return e.copyLeadingComments(p,c,r),t.concat(c)}(t,n,o):function(t,n,o){var s,c=n.body;s=230===c.kind?c:e.factory.createBlock([e.factory.createReturnStatement(c)]);var u=e.concatenate(i,a(n,129)),l=e.factory.createMethodDeclaration(void 0,u,void 0,o,void 0,void 0,n.parameters,void 0,s);return e.copyLeadingComments(p,l,r),t.concat(l)}(t,n,o)}}}}function a(t,r){return e.filter(t.modifiers,(function(e){return e.kind===r}))}function o(t){return!!t.name&&!(!e.isIdentifier(t.name)||"constructor"!==t.name.text)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span.start,n.program.getTypeChecker(),n.preferences,n.program.getCompilerOptions())}));return[t.createCodeFixAction(r,a,e.Diagnostics.Convert_function_to_an_ES2015_class,r,e.Diagnostics.Convert_all_constructor_functions_to_classes)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){return i(t,r.file,r.start,e.program.getTypeChecker(),e.preferences,e.program.getCompilerOptions())}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r,n="convertToAsyncFunction",i=[e.Diagnostics.This_may_be_converted_to_an_async_function.code],a=!0;function o(t,r,n,i){var a,o=e.getTokenAtPosition(r,n);if(a=e.isIdentifier(o)&&e.isVariableDeclaration(o.parent)&&o.parent.initializer&&e.isFunctionLikeDeclaration(o.parent.initializer)?o.parent.initializer:e.tryCast(e.getContainingFunction(e.getTokenAtPosition(r,n)),e.isFunctionLikeDeclaration)){var l=new e.Map,d=e.isInJSFile(a),p=function(t,r){if(!t.body)return new e.Set;var n=new e.Set;return e.forEachChild(t.body,(function t(i){s(i,r,"then")?(n.add(e.getNodeId(i)),e.forEach(i.arguments,t)):s(i,r,"catch")?(n.add(e.getNodeId(i)),e.forEachChild(i,t)):c(i,r)?n.add(e.getNodeId(i)):e.forEachChild(i,t)})),n}(a,i),f=function(t,r,n){var i=new e.Map,a=e.createMultiMap();return e.forEachChild(t,(function t(o){if(e.isIdentifier(o)){var s=r.getSymbolAtLocation(o);if(s){var c=m(r.getTypeAtLocation(o),r),l=e.getSymbolId(s).toString();if(!c||e.isParameter(o.parent)||e.isFunctionLikeDeclaration(o.parent)||n.has(l)){if(o.parent&&(e.isParameter(o.parent)||e.isVariableDeclaration(o.parent)||e.isBindingElement(o.parent))){var _=o.text,d=a.get(_);if(d&&d.some((function(e){return e!==s}))){var p=u(o,a);i.set(l,p.identifier),n.set(l,p),a.add(_,s)}else{var f=e.getSynthesizedDeepClone(o);n.set(l,x(f)),a.add(_,s)}}}else{var g=e.firstOrUndefined(c.parameters),y=g&&e.isParameter(g.valueDeclaration)&&e.tryCast(g.valueDeclaration.name,e.isIdentifier)||e.factory.createUniqueName("result",16),v=u(y,a);n.set(l,v),a.add(y.text,s)}}}else e.forEachChild(o,t)})),e.getSynthesizedDeepCloneWithReplacements(t,!0,(function(t){if(e.isBindingElement(t)&&e.isIdentifier(t.name)&&e.isObjectBindingPattern(t.parent)){if((a=(n=r.getSymbolAtLocation(t.name))&&i.get(String(e.getSymbolId(n))))&&a.text!==(t.name||t.propertyName).getText())return e.factory.createBindingElement(t.dotDotDotToken,t.propertyName||t.name,a,t.initializer)}else if(e.isIdentifier(t)){var n,a;if(a=(n=r.getSymbolAtLocation(t))&&i.get(String(e.getSymbolId(n))))return e.factory.createIdentifier(a.text)}}))}(a,i,l),g=f.body&&e.isBlock(f.body)?function(t,r){var n=[];return e.forEachReturnStatement(t,(function(t){e.isReturnStatementWithFixablePromiseHandler(t,r)&&n.push(t)})),n}(f.body,i):e.emptyArray,y={checker:i,synthNamesMap:l,setOfExpressionsToReturn:p,isInJSFile:d};if(g.length){var v=a.modifiers?a.modifiers.end:a.decorators?e.skipTrivia(r.text,a.decorators.end):a.getStart(r),h=a.modifiers?{prefix:" "}:{suffix:" "};t.insertModifierAt(r,v,129,h);for(var b=function(n){e.forEachChild(n,(function i(a){if(e.isCallExpression(a)){var o=_(a,y);t.replaceNodeWithNodes(r,n,o)}else e.isFunctionLike(a)||e.forEachChild(a,i)}))},D=0,S=g;D0)return O;if(k){I=g(a.checker,k,E);if(S(i,a))return p(I,null===(f=i.typeArguments)||void 0===f?void 0:f[0]);var M=d(r,I,void 0);return r&&r.types.push(k),M}return l();default:return l()}return e.emptyArray}function g(t,r,n){var i=e.getSynthesizedDeepClone(n);return t.getPromisedTypeOfPromise(r)?e.factory.createAwaitExpression(i):i}function m(t,r){var n=r.getSignaturesOfType(t,0);return e.lastOrUndefined(n)}function y(t,r,n){for(var i=[],a=0,o=r;a0)return}else e.isFunctionLike(a)||e.forEachChild(a,r)}))}return i}function v(t,r){var n,i=[];e.isFunctionLikeDeclaration(t)?t.parameters.length>0&&(n=function t(r){if(e.isIdentifier(r))return a(r);var n=e.flatMap(r.elements,(function(r){return e.isOmittedExpression(r)?[]:[t(r.name)]}));return function(t,r,n){void 0===r&&(r=e.emptyArray);void 0===n&&(n=[]);return{kind:1,bindingPattern:t,elements:r,types:n}}(r,n)}(t.parameters[0].name)):e.isIdentifier(t)?n=a(t):e.isPropertyAccessExpression(t)&&e.isIdentifier(t.name)&&(n=a(t.name));if(n&&(!("identifier"in n)||"undefined"!==n.identifier.text))return n;function a(t){var n,a=function(e){return e.symbol?e.symbol:r.checker.getSymbolAtLocation(e)}((n=t).original?n.original:n);return a&&r.synthNamesMap.get(e.getSymbolId(a).toString())||x(t,i)}}function h(t){return!t||(D(t)?!t.identifier.text:e.every(t.elements,h))}function b(e){return D(e)?e.identifier:e.bindingPattern}function x(e,t){return void 0===t&&(t=[]),{kind:0,identifier:e,types:t,hasBeenDeclared:!1}}function D(e){return 0===e.kind}function S(t,r){return!!t.original&&r.setOfExpressionsToReturn.has(e.getNodeId(t.original))}t.registerCodeFix({errorCodes:i,getCodeActions:function(r){a=!0;var i=e.textChanges.ChangeTracker.with(r,(function(e){return o(e,r.sourceFile,r.span.start,r.program.getTypeChecker())}));return a?[t.createCodeFixAction(n,i,e.Diagnostics.Convert_to_async_function,n,e.Diagnostics.Convert_all_to_async_functions)]:[]},fixIds:[n],getAllCodeActions:function(e){return t.codeFixAll(e,i,(function(t,r){return o(t,r.file,r.start,e.program.getTypeChecker())}))}}),function(e){e[e.Identifier=0]="Identifier",e[e.BindingPattern=1]="BindingPattern"}(r||(r={}))}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){function r(t,r,n,i){for(var a=0,o=t.imports;a1?[[o(n),s(n)],!0]:[[s(n)],!0]:[[o(n)],!1]}(_.arguments[0],r):void 0;return p?(i.replaceNodeWithNodes(t,n.parent,p[0]),p[1]):(i.replaceRangeWithText(t,e.createRange(l.getStart(t),_.pos),"export default"),!0)}i.delete(t,n.parent)}else e.isExportsOrModuleExportsOrAlias(t,l.expression)&&function(t,r,n,i){var a=r.left.name.text,o=i.get(a);if(void 0!==o){var s=[g(void 0,o,r.right),m([e.factory.createExportSpecifier(o,a)])];n.replaceNodeWithNodes(t,r.parent,s)}else!function(t,r,n){var i=t.left,a=t.right,o=t.parent,s=i.name.text;if(!(e.isFunctionExpression(a)||e.isArrowFunction(a)||e.isClassExpression(a))||a.name&&a.name.text!==s)n.replaceNodeRangeWithNodes(r,i.expression,e.findChildOfKind(i,24,r),[e.factory.createToken(92),e.factory.createToken(84)],{joiner:" ",suffix:" "});else{n.replaceRange(r,{pos:i.getStart(r),end:a.getStart(r)},e.factory.createToken(92),{suffix:" "}),a.name||n.insertName(r,a,s);var c=e.findChildOfKind(o,26,r);c&&n.delete(r,c)}}(r,t,n)}(t,n,i,a);return!1}(t,n,y,i,_,p)}default:return!1}}function a(r,n,i,a,o,s,c){var l,_=n.declarationList,d=!1,m=e.map(_.declarations,(function(n){var i=n.name,l=n.initializer;if(l){if(e.isExportsOrModuleExportsOrAlias(r,l))return d=!0,y([]);if(e.isRequireCall(l,!0))return d=!0,function(r,n,i,a,o,s){switch(r.kind){case 196:var c=e.mapAllOrFail(r.elements,(function(t){return t.dotDotDotToken||t.initializer||t.propertyName&&!e.isIdentifier(t.propertyName)||!e.isIdentifier(t.name)?void 0:f(t.propertyName&&t.propertyName.text,t.name.text)}));if(c)return y([e.makeImport(void 0,c,n,s)]);case 197:var l=u(t.moduleSpecifierToValidIdentifier(n.text,o),a);return y([e.makeImport(e.factory.createIdentifier(l),void 0,n,s),g(void 0,e.getSynthesizedDeepClone(r),e.factory.createIdentifier(l))]);case 78:return function(t,r,n,i,a){for(var o,s=n.getSymbolAtLocation(t),c=new e.Map,l=!1,_=0,d=i.original.get(t.text);_=e.ModuleKind.ES2015)return n?1:2;if(e.isInJSFile(t))return e.isExternalModule(t)?1:3;for(var i=0,a=t.statements;i"),[e.Diagnostics.Convert_function_expression_0_to_arrow_function,c?c.text:e.ANONYMOUS]}return t.replaceNode(r,s,e.factory.createToken(84)),t.insertText(r,c.end," = "),t.insertText(r,u.pos," =>"),[e.Diagnostics.Convert_function_declaration_0_to_arrow_function,c.text]}}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a,o=n.sourceFile,s=n.program,c=n.span,u=e.textChanges.ChangeTracker.with(n,(function(e){a=i(e,o,c.start,s.getTypeChecker())}));return a?[t.createCodeFixAction(r,u,a,r,e.Diagnostics.Fix_all_implicit_this_errors)]:e.emptyArray},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){i(t,r.file,r.start,e.program.getTypeChecker())}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixIncorrectNamedTupleSyntax",n=[e.Diagnostics.A_labeled_tuple_element_is_declared_as_optional_with_a_question_mark_after_the_name_and_before_the_colon_rather_than_after_the_type.code,e.Diagnostics.A_labeled_tuple_element_is_declared_as_rest_with_a_before_the_name_rather_than_before_the_type.code];t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var i=n.sourceFile,a=n.span,o=function(t,r){var n=e.getTokenAtPosition(t,r);return e.findAncestor(n,(function(e){return 192===e.kind}))}(i,a.start),s=e.textChanges.ChangeTracker.with(n,(function(t){return function(t,r,n){if(!n)return;var i=n.type,a=!1,o=!1;for(;180===i.kind||181===i.kind||186===i.kind;)180===i.kind?a=!0:181===i.kind&&(o=!0),i=i.type;var s=e.factory.updateNamedTupleMember(n,n.dotDotDotToken||(o?e.factory.createToken(25):void 0),n.name,n.questionToken||(a?e.factory.createToken(57):void 0),i);if(s===n)return;t.replaceNode(r,n,s)}(t,i,o)}));return[t.createCodeFixAction(r,s,e.Diagnostics.Move_labeled_tuple_element_modifiers_to_labels,r,e.Diagnostics.Move_labeled_tuple_element_modifiers_to_labels)]},fixIds:[r]})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixSpelling",n=[e.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2.code,e.Diagnostics.Cannot_find_name_0_Did_you_mean_1.code,e.Diagnostics.Cannot_find_name_0_Did_you_mean_the_instance_member_this_0.code,e.Diagnostics.Cannot_find_name_0_Did_you_mean_the_static_member_1_0.code,e.Diagnostics._0_has_no_exported_member_named_1_Did_you_mean_2.code,e.Diagnostics.No_overload_matches_this_call.code,e.Diagnostics.Type_0_is_not_assignable_to_type_1.code];function i(t,r,n,i){var a=e.getTokenAtPosition(t,r),o=a.parent;if(i!==e.Diagnostics.No_overload_matches_this_call.code&&i!==e.Diagnostics.Type_0_is_not_assignable_to_type_1.code||e.isJsxAttribute(o)){var s,c=n.program.getTypeChecker();if(e.isPropertyAccessExpression(o)&&o.name===a){e.Debug.assert(e.isIdentifierOrPrivateIdentifier(a),"Expected an identifier for spelling (property access)");var u=c.getTypeAtLocation(o.expression);32&o.flags&&(u=c.getNonNullableType(u)),s=c.getSuggestedSymbolForNonexistentProperty(a,u)}else if(e.isQualifiedName(o)&&o.right===a){var l=c.getSymbolAtLocation(o.left);l&&1536&l.flags&&(s=c.getSuggestedSymbolForNonexistentModule(o.right,l))}else if(e.isImportSpecifier(o)&&o.name===a){e.Debug.assertNode(a,e.isIdentifier,"Expected an identifier for spelling (import)");var _=function(t,r,n){if(!n||!e.isStringLiteralLike(n.moduleSpecifier))return;var i=e.getResolvedModule(t,n.moduleSpecifier.text);return i?r.program.getSourceFile(i.resolvedFileName):void 0}(t,n,e.findAncestor(a,e.isImportDeclaration));_&&_.symbol&&(s=c.getSuggestedSymbolForNonexistentModule(a,_.symbol))}else if(e.isJsxAttribute(o)&&o.name===a){e.Debug.assertNode(a,e.isIdentifier,"Expected an identifier for JSX attribute");var d=e.findAncestor(a,e.isJsxOpeningLikeElement),p=c.getContextualTypeForArgumentAtIndex(d,0);s=c.getSuggestedSymbolForNonexistentJSXAttribute(a,p)}else{var f=e.getMeaningFromLocation(a),g=e.getTextOfNode(a);e.Debug.assert(void 0!==g,"name should be defined"),s=c.getSuggestedSymbolForNonexistentSymbol(a,g,function(e){var t=0;4&e&&(t|=1920);2&e&&(t|=788968);1&e&&(t|=111551);return t}(f))}return void 0===s?void 0:{node:a,suggestedSymbol:s}}}function a(t,r,n,i,a){var o=e.symbolName(i);if(!e.isIdentifierText(o,a)&&e.isPropertyAccessExpression(n.parent)){var s=i.valueDeclaration;e.isNamedDeclaration(s)&&e.isPrivateIdentifier(s.name)?t.replaceNode(r,n,e.factory.createIdentifier(o)):t.replaceNode(r,n.parent,e.factory.createElementAccessExpression(n.parent.expression,e.factory.createStringLiteral(o)))}else t.replaceNode(r,n,e.factory.createIdentifier(o))}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var o=n.sourceFile,s=n.errorCode,c=i(o,n.span.start,n,s);if(c){var u=c.node,l=c.suggestedSymbol,_=n.host.getCompilationSettings().target,d=e.textChanges.ChangeTracker.with(n,(function(e){return a(e,o,u,l,_)}));return[t.createCodeFixAction("spelling",d,[e.Diagnostics.Change_spelling_to_0,e.symbolName(l)],r,e.Diagnostics.Fix_all_detected_spelling_errors)]}},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){var n=i(r.file,r.start,e,r.code),o=e.host.getCompilationSettings().target;n&&a(t,e.sourceFile,n.node,n.suggestedSymbol,o)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r,n="returnValueCorrect",i="fixAddReturnStatement",a="fixRemoveBracesFromArrowFunctionBody",o="fixWrapTheBlockWithParen",s=[e.Diagnostics.A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value.code,e.Diagnostics.Type_0_is_not_assignable_to_type_1.code,e.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code];function c(t,r,n){var i=t.createSymbol(4,r.escapedText);i.type=t.getTypeAtLocation(n);var a=e.createSymbolTable([i]);return t.createAnonymousType(void 0,a,[],[],void 0,void 0)}function u(t,n,i,a){if(n.body&&e.isBlock(n.body)&&1===e.length(n.body.statements)){var o=e.first(n.body.statements);if(e.isExpressionStatement(o)&&l(t,n,t.getTypeAtLocation(o.expression),i,a))return{declaration:n,kind:r.MissingReturnStatement,expression:o.expression,statement:o,commentSource:o.expression};if(e.isLabeledStatement(o)&&e.isExpressionStatement(o.statement)){var s=e.factory.createObjectLiteralExpression([e.factory.createPropertyAssignment(o.label,o.statement.expression)]);if(l(t,n,c(t,o.label,o.statement.expression),i,a))return e.isArrowFunction(n)?{declaration:n,kind:r.MissingParentheses,expression:s,statement:o,commentSource:o.statement.expression}:{declaration:n,kind:r.MissingReturnStatement,expression:s,statement:o,commentSource:o.statement.expression}}else if(e.isBlock(o)&&1===e.length(o.statements)){var u=e.first(o.statements);if(e.isLabeledStatement(u)&&e.isExpressionStatement(u.statement)){s=e.factory.createObjectLiteralExpression([e.factory.createPropertyAssignment(u.label,u.statement.expression)]);if(l(t,n,c(t,u.label,u.statement.expression),i,a))return{declaration:n,kind:r.MissingReturnStatement,expression:s,statement:o,commentSource:u}}}}}function l(t,r,n,i,a){if(a){var o=t.getSignatureFromDeclaration(r);if(o){e.hasSyntacticModifier(r,256)&&(n=t.createPromiseType(n));var s=t.createSignature(r,o.typeParameters,o.thisParameter,o.parameters,n,void 0,o.minArgumentCount,o.flags);n=t.createAnonymousType(void 0,e.createSymbolTable(),[s],[],void 0,void 0)}else n=t.getAnyType()}return t.isTypeAssignableTo(n,i)}function _(t,r,n,i){var a=e.getTokenAtPosition(r,n);if(a.parent){var o=e.findAncestor(a.parent,e.isFunctionLikeDeclaration);switch(i){case e.Diagnostics.A_function_whose_declared_type_is_neither_void_nor_any_must_return_a_value.code:if(!(o&&o.body&&o.type&&e.rangeContainsRange(o.type,a)))return;return u(t,o,t.getTypeFromTypeNode(o.type),!1);case e.Diagnostics.Argument_of_type_0_is_not_assignable_to_parameter_of_type_1.code:if(!o||!e.isCallExpression(o.parent)||!o.body)return;var s=o.parent.arguments.indexOf(o),c=t.getContextualTypeForArgumentAtIndex(o.parent,s);if(!c)return;return u(t,o,c,!0);case e.Diagnostics.Type_0_is_not_assignable_to_type_1.code:if(!e.isDeclarationName(a)||!e.isVariableLike(a.parent)&&!e.isJsxAttribute(a.parent))return;var l=function(t){switch(t.kind){case 249:case 160:case 198:case 163:case 288:return t.initializer;case 280:return t.initializer&&(e.isJsxExpression(t.initializer)?t.initializer.expression:void 0);case 289:case 162:case 291:case 333:case 326:return}}(a.parent);if(!l||!e.isFunctionLikeDeclaration(l)||!l.body)return;return u(t,l,t.getTypeAtLocation(a.parent),!0)}}}function d(t,r,n,i){e.suppressLeadingAndTrailingTrivia(n);var a=e.probablyUsesSemicolons(r);t.replaceNode(r,i,e.factory.createReturnStatement(n),{leadingTriviaOption:e.textChanges.LeadingTriviaOption.Exclude,trailingTriviaOption:e.textChanges.TrailingTriviaOption.Exclude,suffix:a?";":void 0})}function p(t,r,n,i,a,o){var s=o||e.needsParentheses(i)?e.factory.createParenthesizedExpression(i):i;e.suppressLeadingAndTrailingTrivia(a),e.copyComments(a,s),t.replaceNode(r,n.body,s)}function f(t,r,n,i){t.replaceNode(r,n.body,e.factory.createParenthesizedExpression(i))}function g(r,a,o){var s=e.textChanges.ChangeTracker.with(r,(function(e){return d(e,r.sourceFile,a,o)}));return t.createCodeFixAction(n,s,e.Diagnostics.Add_a_return_statement,i,e.Diagnostics.Add_all_missing_return_statement)}function m(r,i,a){var s=e.textChanges.ChangeTracker.with(r,(function(e){return f(e,r.sourceFile,i,a)}));return t.createCodeFixAction(n,s,e.Diagnostics.Wrap_the_following_body_with_parentheses_which_should_be_an_object_literal,o,e.Diagnostics.Wrap_all_object_literal_with_parentheses)}!function(e){e[e.MissingReturnStatement=0]="MissingReturnStatement",e[e.MissingParentheses=1]="MissingParentheses"}(r||(r={})),t.registerCodeFix({errorCodes:s,fixIds:[i,a,o],getCodeActions:function(i){var o=i.program,s=i.sourceFile,c=i.span.start,u=i.errorCode,l=_(o.getTypeChecker(),s,c,u);if(l)return l.kind===r.MissingReturnStatement?e.append([g(i,l.expression,l.statement)],e.isArrowFunction(l.declaration)?function(r,i,o,s){var c=e.textChanges.ChangeTracker.with(r,(function(e){return p(e,r.sourceFile,i,o,s,!1)}));return t.createCodeFixAction(n,c,e.Diagnostics.Remove_braces_from_arrow_function_body,a,e.Diagnostics.Remove_braces_from_all_arrow_function_bodies_with_relevant_issues)}(i,l.declaration,l.expression,l.commentSource):void 0):[m(i,l.declaration,l.expression)]},getAllCodeActions:function(r){return t.codeFixAll(r,s,(function(t,n){var s=_(r.program.getTypeChecker(),n.file,n.start,n.code);if(s)switch(r.fixId){case i:d(t,n.file,s.expression,s.statement);break;case a:if(!e.isArrowFunction(s.declaration))return;p(t,n.file,s.declaration,s.expression,s.commentSource,!1);break;case o:if(!e.isArrowFunction(s.declaration))return;f(t,n.file,s.declaration,s.expression);break;default:e.Debug.fail(JSON.stringify(r.fixId))}}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r,n="fixMissingMember",i="fixMissingFunctionDeclaration",a=[e.Diagnostics.Property_0_does_not_exist_on_type_1.code,e.Diagnostics.Property_0_does_not_exist_on_type_1_Did_you_mean_2.code,e.Diagnostics.Property_0_is_missing_in_type_1_but_required_in_type_2.code,e.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2.code,e.Diagnostics.Type_0_is_missing_the_following_properties_from_type_1_Colon_2_and_3_more.code,e.Diagnostics.Cannot_find_name_0.code];function o(t,r,n,i){var a=e.getTokenAtPosition(t,r);if(e.isIdentifier(a)||e.isPrivateIdentifier(a)){var o=a.parent;if(e.isIdentifier(a)&&e.isCallExpression(o))return{kind:2,token:a,call:o,sourceFile:t,modifierFlags:0,parentDeclaration:t};if(e.isPropertyAccessExpression(o)){var s=e.skipConstraint(n.getTypeAtLocation(o.expression)),c=s.symbol;if(c&&c.declarations){if(e.isIdentifier(a)&&e.isCallExpression(o.parent)){var u=e.find(c.declarations,e.isModuleDeclaration),l=null==u?void 0:u.getSourceFile();if(u&&l&&!i.isSourceFileFromExternalLibrary(l))return{kind:2,token:a,call:o.parent,sourceFile:t,modifierFlags:1,parentDeclaration:u};var _=e.find(c.declarations,e.isSourceFile);if(t.commonJsModuleIndicator)return;if(_&&!i.isSourceFileFromExternalLibrary(_))return{kind:2,token:a,call:o.parent,sourceFile:_,modifierFlags:1,parentDeclaration:_}}var d=e.find(c.declarations,e.isClassLike);if(d||!e.isPrivateIdentifier(a)){var p=d||e.find(c.declarations,e.isInterfaceDeclaration);if(p&&!i.isSourceFileFromExternalLibrary(p.getSourceFile())){var f=(s.target||s)!==n.getDeclaredTypeOfSymbol(c);if(f&&(e.isPrivateIdentifier(a)||e.isInterfaceDeclaration(p)))return;var g=p.getSourceFile(),m=(f?32:0)|(e.startsWithUnderscore(a.text)?8:0),y=e.isSourceFileJS(g);return{kind:1,token:a,call:e.tryCast(o.parent,e.isCallExpression),modifierFlags:m,parentDeclaration:p,declSourceFile:g,isJSFile:y}}var v=e.find(c.declarations,e.isEnumDeclaration);return!v||e.isPrivateIdentifier(a)||i.isSourceFileFromExternalLibrary(v.getSourceFile())?void 0:{kind:0,token:a,parentDeclaration:v}}}}}}function s(t,r,n,i,a){var o=i.text;if(a){if(221===n.kind)return;var s=n.name.getText(),u=c(e.factory.createIdentifier(s),o);t.insertNodeAfter(r,n,u)}else if(e.isPrivateIdentifier(i)){var l=e.factory.createPropertyDeclaration(void 0,void 0,o,void 0,void 0,void 0),d=_(n);d?t.insertNodeAfter(r,d,l):t.insertNodeAtClassStart(r,n,l)}else{var p=e.getFirstConstructorWithBody(n);if(!p)return;var f=c(e.factory.createThis(),o);t.insertNodeAtConstructorEnd(r,p,f)}}function c(t,r){return e.factory.createExpressionStatement(e.factory.createAssignment(e.factory.createPropertyAccessExpression(t,r),e.factory.createIdentifier("undefined")))}function u(t,r,n){var i;if(216===n.parent.parent.kind){var a=n.parent.parent,o=n.parent===a.left?a.right:a.left,s=t.getWidenedType(t.getBaseTypeOfLiteralType(t.getTypeAtLocation(o)));i=t.typeToTypeNode(s,r,void 0)}else{var c=t.getContextualType(n.parent);i=c?t.typeToTypeNode(c,void 0,void 0):void 0}return i||e.factory.createKeywordTypeNode(128)}function l(t,r,n,i,a,o){var s=e.factory.createPropertyDeclaration(void 0,o?e.factory.createNodeArray(e.factory.createModifiersFromModifierFlags(o)):void 0,i,void 0,a,void 0),c=_(n);c?t.insertNodeAfter(r,c,s):t.insertNodeAtClassStart(r,n,s)}function _(t){for(var r,n=0,i=t.members;n=e.ModuleKind.ES2015&&o99){s=e.textChanges.ChangeTracker.with(r,(function(r){if(e.getTsConfigObjectLiteralExpression(i)){var n=[["target",e.factory.createStringLiteral("es2017")]];o===e.ModuleKind.CommonJS&&n.push(["module",e.factory.createStringLiteral("commonjs")]),t.setJsonCompilerOptionValues(r,i,n)}}));a.push(t.createCodeFixActionWithoutFixAll("fixTargetOption",s,[e.Diagnostics.Set_the_target_option_in_your_configuration_file_to_0,"es2017"]))}return a.length?a:void 0}}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixPropertyAssignment",n=[e.Diagnostics.Did_you_mean_to_use_a_Colon_An_can_only_follow_a_property_name_when_the_containing_object_literal_is_part_of_a_destructuring_pattern.code];function i(t,r,n){t.replaceNode(r,n,e.factory.createPropertyAssignment(n.name,n.objectAssignmentInitializer))}function a(t,r){return e.cast(e.getTokenAtPosition(t,r).parent,e.isShorthandPropertyAssignment)}t.registerCodeFix({errorCodes:n,fixIds:[r],getCodeActions:function(n){var o=a(n.sourceFile,n.span.start),s=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,o)}));return[t.createCodeFixAction(r,s,[e.Diagnostics.Change_0_to_1,"=",":"],r,[e.Diagnostics.Switch_each_misused_0_to_1,"=",":"])]},getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,a(t.file,t.start))}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="extendsInterfaceBecomesImplements",n=[e.Diagnostics.Cannot_extend_an_interface_0_Did_you_mean_implements.code];function i(t,r){var n=e.getTokenAtPosition(t,r),i=e.getContainingClass(n).heritageClauses,a=i[0].getFirstToken();return 93===a.kind?{extendsToken:a,heritageClauses:i}:void 0}function a(t,r,n,i){if(t.replaceNode(r,n,e.factory.createToken(116)),2===i.length&&93===i[0].token&&116===i[1].token){var a=i[1].getFirstToken(),o=a.getFullStart();t.replaceRange(r,{pos:o,end:o},e.factory.createToken(27));for(var s=r.text,c=a.end;c":">","}":"}"};function o(t,r,n,i,o){var s=n.getText()[i];if(function(t){return e.hasProperty(a,t)}(s)){var c=o?a[s]:"{"+e.quote(n,r,s)+"}";t.replaceRangeWithText(n,{pos:i,end:i+1},c)}}}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="unusedIdentifier",n="unusedIdentifier_prefix",i="unusedIdentifier_delete",a="unusedIdentifier_deleteImports",o="unusedIdentifier_infer",s=[e.Diagnostics._0_is_declared_but_its_value_is_never_read.code,e.Diagnostics._0_is_declared_but_never_used.code,e.Diagnostics.Property_0_is_declared_but_its_value_is_never_read.code,e.Diagnostics.All_imports_in_import_declaration_are_unused.code,e.Diagnostics.All_destructured_elements_are_unused.code,e.Diagnostics.All_variables_are_unused.code,e.Diagnostics.All_type_parameters_are_unused.code];function c(t,r,n){t.replaceNode(r,n.parent,e.factory.createKeywordTypeNode(152))}function u(n,a){return t.createCodeFixAction(r,n,a,i,e.Diagnostics.Delete_all_unused_declarations)}function l(t,r,n){t.delete(r,e.Debug.checkDefined(e.cast(n.parent,e.isDeclarationWithTypeParameterChildren).typeParameters,"The type parameter to delete should exist"))}function _(e){return 99===e.kind||78===e.kind&&(265===e.parent.kind||262===e.parent.kind)}function d(t){return 99===t.kind?e.tryCast(t.parent,e.isImportDeclaration):void 0}function p(t,r){return e.isVariableDeclarationList(r.parent)&&e.first(r.parent.getChildren(t))===r}function f(e,t,r){e.delete(t,232===r.parent.kind?r.parent:r)}function g(t,r,n,i){r!==e.Diagnostics.Property_0_is_declared_but_its_value_is_never_read.code&&(135===i.kind&&(i=e.cast(i.parent,e.isInferTypeNode).typeParameter.name),e.isIdentifier(i)&&function(e){switch(e.parent.kind){case 160:case 159:return!0;case 249:switch(e.parent.parent.parent.kind){case 239:case 238:return!0}}return!1}(i)&&(t.replaceNode(n,i,e.factory.createIdentifier("_"+i.text)),e.isParameter(i.parent)&&e.getJSDocParameterTags(i.parent).forEach((function(r){e.isIdentifier(r.name)&&t.replaceNode(n,r.name,e.factory.createIdentifier("_"+r.name.text))}))))}function m(t,r,n,i,a,o,s,c){!function(t,r,n,i,a,o,s,c){var u=t.parent;e.isParameter(u)?function(t,r,n,i,a,o,s,c){void 0===c&&(c=!1);(function(t,r,n,i,a,o,s){var c=n.parent;switch(c.kind){case 165:case 166:var u=c.parameters.indexOf(n),l=e.isMethodDeclaration(c)?c.name:c,_=e.FindAllReferences.Core.getReferencedSymbolsForNode(c.pos,l,a,i,o);if(_)for(var d=0,p=_;du,h=e.isPropertyAccessExpression(m.node.parent)&&e.isSuperKeyword(m.node.parent.expression)&&e.isCallExpression(m.node.parent.parent)&&m.node.parent.parent.arguments.length>u,b=(e.isMethodDeclaration(m.node.parent)||e.isMethodSignature(m.node.parent))&&m.node.parent!==n.parent&&m.node.parent.parameters.length>u;if(y||h||b)return!1}}return!0;case 251:return!c.name||!function(t,r,n){return!!e.FindAllReferences.Core.eachSymbolReferenceInFile(n,t,r,(function(t){return e.isIdentifier(t)&&e.isCallExpression(t.parent)&&t.parent.arguments.indexOf(t)>=0}))}(t,r,c.name)||v(c,n,s);case 208:case 209:return v(c,n,s);case 168:return!1;default:return e.Debug.failBadSyntaxKind(c)}})(i,r,n,a,o,s,c)&&(n.modifiers&&n.modifiers.length>0&&(!e.isIdentifier(n.name)||e.FindAllReferences.Core.isSymbolReferencedInFile(n.name,i,r))?n.modifiers.forEach((function(e){return t.deleteModifier(r,e)})):!n.initializer&&y(n,i,a)&&t.delete(r,n))}(r,n,u,i,a,o,s,c):c&&e.isIdentifier(t)&&e.FindAllReferences.Core.isSymbolReferencedInFile(t,i,n)||r.delete(n,e.isImportClause(u)?t:e.isComputedPropertyName(u)?u.parent:u)}(r,n,t,i,a,o,s,c),e.isIdentifier(r)&&e.FindAllReferences.Core.eachSymbolReferenceInFile(r,i,t,(function(r){var i;e.isPropertyAccessExpression(r.parent)&&r.parent.name===r&&(r=r.parent),!c&&(i=r,(e.isBinaryExpression(i.parent)&&i.parent.left===i||(e.isPostfixUnaryExpression(i.parent)||e.isPrefixUnaryExpression(i.parent))&&i.parent.operand===i)&&e.isExpressionStatement(i.parent.parent))&&n.delete(t,r.parent.parent)}))}function y(t,r,n){var i=t.parent.parameters.indexOf(t);return!e.FindAllReferences.Core.someSignatureUsage(t.parent,n,r,(function(e,t){return!t||t.arguments.length>i}))}function v(t,r,n){var i=t.parameters,a=i.indexOf(r);return e.Debug.assert(-1!==a,"The parameter should already be in the list"),n?i.slice(a+1).every((function(t){return e.isIdentifier(t.name)&&!t.symbol.isReferenced})):a===i.length-1}t.registerCodeFix({errorCodes:s,getCodeActions:function(i){var s=i.errorCode,y=i.sourceFile,v=i.program,h=i.cancellationToken,b=v.getTypeChecker(),x=v.getSourceFiles(),D=e.getTokenAtPosition(y,i.span.start);if(e.isJSDocTemplateTag(D))return[u(e.textChanges.ChangeTracker.with(i,(function(e){return e.delete(y,D)})),e.Diagnostics.Remove_template_tag)];if(29===D.kind)return[u(T=e.textChanges.ChangeTracker.with(i,(function(e){return l(e,y,D)})),e.Diagnostics.Remove_type_parameters)];var S=d(D);if(S){var T=e.textChanges.ChangeTracker.with(i,(function(e){return e.delete(y,S)}));return[t.createCodeFixAction(r,T,[e.Diagnostics.Remove_import_from_0,e.showModuleSpecifier(S)],a,e.Diagnostics.Delete_all_unused_imports)]}if(_(D)&&(A=e.textChanges.ChangeTracker.with(i,(function(e){return m(y,D,e,b,x,v,h,!1)}))).length)return[t.createCodeFixAction(r,A,[e.Diagnostics.Remove_unused_declaration_for_Colon_0,D.getText(y)],a,e.Diagnostics.Delete_all_unused_imports)];if(e.isObjectBindingPattern(D.parent)||e.isArrayBindingPattern(D.parent)){if(e.isParameter(D.parent.parent)){var C=D.parent.elements,E=[C.length>1?e.Diagnostics.Remove_unused_declarations_for_Colon_0:e.Diagnostics.Remove_unused_declaration_for_Colon_0,e.map(C,(function(e){return e.getText(y)})).join(", ")];return[u(e.textChanges.ChangeTracker.with(i,(function(t){return function(t,r,n){e.forEach(n.elements,(function(e){return t.delete(r,e)}))}(t,y,D.parent)})),E)]}return[u(e.textChanges.ChangeTracker.with(i,(function(e){return e.delete(y,D.parent.parent)})),e.Diagnostics.Remove_unused_destructuring_declaration)]}if(p(y,D))return[u(e.textChanges.ChangeTracker.with(i,(function(e){return f(e,y,D.parent)})),e.Diagnostics.Remove_variable_statement)];var k=[];if(135===D.kind){T=e.textChanges.ChangeTracker.with(i,(function(e){return c(e,y,D)}));var N=e.cast(D.parent,e.isInferTypeNode).typeParameter.name.text;k.push(t.createCodeFixAction(r,T,[e.Diagnostics.Replace_infer_0_with_unknown,N],o,e.Diagnostics.Replace_all_unused_infer_with_unknown))}else{var A;if((A=e.textChanges.ChangeTracker.with(i,(function(e){return m(y,D,e,b,x,v,h,!1)}))).length){N=e.isComputedPropertyName(D.parent)?D.parent:D;k.push(u(A,[e.Diagnostics.Remove_unused_declaration_for_Colon_0,N.getText(y)]))}}var F=e.textChanges.ChangeTracker.with(i,(function(e){return g(e,s,y,D)}));return F.length&&k.push(t.createCodeFixAction(r,F,[e.Diagnostics.Prefix_0_with_an_underscore,D.getText(y)],n,e.Diagnostics.Prefix_all_unused_declarations_with_where_possible)),k},fixIds:[n,i,a,o],getAllCodeActions:function(r){var u=r.sourceFile,v=r.program,h=r.cancellationToken,b=v.getTypeChecker(),x=v.getSourceFiles();return t.codeFixAll(r,s,(function(t,s){var D=e.getTokenAtPosition(u,s.start);switch(r.fixId){case n:g(t,s.code,u,D);break;case a:var S=d(D);S?t.delete(u,S):_(D)&&m(u,D,t,b,x,v,h,!0);break;case i:if(135===D.kind||_(D))break;if(e.isJSDocTemplateTag(D))t.delete(u,D);else if(29===D.kind)l(t,u,D);else if(e.isObjectBindingPattern(D.parent)){if(D.parent.parent.initializer)break;e.isParameter(D.parent.parent)&&!y(D.parent.parent,b,x)||t.delete(u,D.parent.parent)}else{if(e.isArrayBindingPattern(D.parent.parent)&&D.parent.parent.parent.initializer)break;p(u,D)?f(t,u,D.parent):m(u,D,t,b,x,v,h,!0)}break;case o:135===D.kind&&c(t,u,D);break;default:e.Debug.fail(JSON.stringify(r.fixId))}}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixUnreachableCode",n=[e.Diagnostics.Unreachable_code_detected.code];function i(t,r,n,i,a){var o=e.getTokenAtPosition(r,n),s=e.findAncestor(o,e.isStatement);if(s.getStart(r)!==o.getStart(r)){var c=JSON.stringify({statementKind:e.Debug.formatSyntaxKind(s.kind),tokenKind:e.Debug.formatSyntaxKind(o.kind),errorCode:a,start:n,length:i});e.Debug.fail("Token and statement should start at the same point. "+c)}var u=(e.isBlock(s.parent)?s.parent:s).parent;if(!e.isBlock(s.parent)||s===e.first(s.parent.statements))switch(u.kind){case 234:if(u.elseStatement){if(e.isBlock(s.parent))break;return void t.replaceNode(r,s,e.factory.createBlock(e.emptyArray))}case 236:case 237:return void t.delete(r,u)}if(e.isBlock(s.parent)){var l=n+i,_=e.Debug.checkDefined(function(e,t){for(var r,n=0,i=e;nM.length)B(S,f.getSignatureFromDeclaration(d[d.length-1]),h,y,o(S));else e.Debug.assert(d.length===M.length,"Declarations and signatures should match count"),l(function(t,r,n,i,s){for(var c=t[0],u=t[0].minArgumentCount,l=!1,_=0,d=t;_=c.parameters.length&&(!e.signatureHasRestParameter(p)||e.signatureHasRestParameter(c))&&(c=p)}var f=c.parameters.length-(e.signatureHasRestParameter(c)?1:0),g=c.parameters.map((function(e){return e.name})),m=a(f,g,void 0,u,!1);if(l){var y=e.factory.createArrayTypeNode(e.factory.createKeywordTypeNode(128)),v=e.factory.createParameterDeclaration(void 0,void 0,e.factory.createToken(25),g[f]||"rest",f>=u?e.factory.createToken(57):void 0,y,void 0);m.push(v)}return function(t,r,n,i,a,s,c){return e.factory.createMethodDeclaration(void 0,t,void 0,r,n?e.factory.createToken(57):void 0,i,a,s,o(c))}(i,r,n,void 0,m,void 0,s)}(M,y,x,h,S))}}function B(t,i,a,o,c){var d=function(t,n,i,a,o,s,c,u,l){var d=t.program,f=d.getTypeChecker(),g=e.getEmitScriptTarget(d.getCompilerOptions()),m=1073742081|(0===n?268435456:0),y=f.signatureToSignatureDeclaration(i,165,a,m,r(t));if(!y)return;var v=y.typeParameters,h=y.parameters,b=y.type;if(l){if(v){var x=e.sameMap(v,(function(t){var r,n=t.constraint,i=t.default;n&&((r=_(n,g))&&(n=r.typeNode,p(l,r.symbols)));i&&((r=_(i,g))&&(i=r.typeNode,p(l,r.symbols)));return e.factory.updateTypeParameterDeclaration(t,t.name,n,i)}));v!==x&&(v=e.setTextRange(e.factory.createNodeArray(x,v.hasTrailingComma),v))}var D=e.sameMap(h,(function(t){var r=_(t.type,g),n=t.type;return r&&(n=r.typeNode,p(l,r.symbols)),e.factory.updateParameterDeclaration(t,t.decorators,t.modifiers,t.dotDotDotToken,t.name,t.questionToken,n,t.initializer)}));if(h!==D&&(h=e.setTextRange(e.factory.createNodeArray(D,h.hasTrailingComma),h)),b){var S=_(b,g);S&&(b=S.typeNode,p(l,S.symbols))}}return e.factory.updateMethodDeclaration(y,void 0,o,y.asteriskToken,s,c?e.factory.createToken(57):void 0,v,h,b,u)}(s,t,i,n,a,o,x,c,u);d&&l(d)}}function i(t,r,n,i,a,o,s){var c=t.typeToTypeNode(n,i,o,s);if(c&&e.isImportTypeNode(c)){var u=_(c,a);if(u)return p(r,u.symbols),u.typeNode}return c}function a(t,r,n,i,a){for(var o=[],s=0;s=i?e.factory.createToken(57):void 0,a?void 0:n&&n[s]||e.factory.createKeywordTypeNode(128),void 0);o.push(c)}return o}function o(t){return s(e.Diagnostics.Method_not_implemented.message,t)}function s(t,r){return e.factory.createBlock([e.factory.createThrowStatement(e.factory.createNewExpression(e.factory.createIdentifier("Error"),void 0,[e.factory.createStringLiteral(t,0===r)]))],!0)}function c(t,r,n){var i=e.getTsConfigObjectLiteralExpression(r);if(i){var a=l(i,"compilerOptions");if(void 0!==a){var o=a.initializer;if(e.isObjectLiteralExpression(o))for(var s=0,c=n;s0)return[t.createCodeFixAction(r,a,e.Diagnostics.Convert_to_a_bigint_numeric_literal,r,e.Diagnostics.Convert_all_to_bigint_numeric_literals)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,t)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixAddModuleReferTypeMissingTypeof",n=[e.Diagnostics.Module_0_does_not_refer_to_a_type_but_is_used_as_a_type_here_Did_you_mean_typeof_import_0.code];function i(t,r){var n=e.getTokenAtPosition(t,r);return e.Debug.assert(99===n.kind,"This token should be an ImportKeyword"),e.Debug.assert(195===n.parent.kind,"Token parent should be an ImportType"),n.parent}function a(t,r,n){var i=e.factory.updateImportTypeNode(n,n.argument,n.qualifier,n.typeArguments,!0);t.replaceNode(r,n,i)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var o=n.sourceFile,s=n.span,c=i(o,s.start),u=e.textChanges.ChangeTracker.with(n,(function(e){return a(e,o,c)}));return[t.createCodeFixAction(r,u,e.Diagnostics.Add_missing_typeof,r,e.Diagnostics.Add_missing_typeof)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){return a(t,e.sourceFile,i(r.file,r.start))}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="wrapJsxInFragment",n=[e.Diagnostics.JSX_expressions_must_have_one_parent_element.code];function i(t,r){var n=e.getTokenAtPosition(t,r).parent.parent;if((e.isBinaryExpression(n)||(n=n.parent,e.isBinaryExpression(n)))&&e.nodeIsMissing(n.operatorToken))return n}function a(t,r,n){var i=function(t){var r=[],n=t;for(;;){if(e.isBinaryExpression(n)&&e.nodeIsMissing(n.operatorToken)&&27===n.operatorToken.kind){if(r.push(n.left),e.isJsxChild(n.right))return r.push(n.right),r;if(e.isBinaryExpression(n.right)){n=n.right;continue}return}return}}(n);i&&t.replaceNode(r,n,e.factory.createJsxFragment(e.factory.createJsxOpeningFragment(),i,e.factory.createJsxJsxClosingFragment()))}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var o=n.program.getCompilerOptions().jsx;if(2===o||3===o){var s=n.sourceFile,c=n.span,u=i(s,c.start);if(u){var l=e.textChanges.ChangeTracker.with(n,(function(e){return a(e,s,u)}));return[t.createCodeFixAction(r,l,e.Diagnostics.Wrap_in_JSX_fragment,r,e.Diagnostics.Wrap_all_unparented_JSX_in_JSX_fragment)]}}},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){var n=i(e.sourceFile,r.start);n&&a(t,e.sourceFile,n)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixConvertToMappedObjectType",n=[e.Diagnostics.An_index_signature_parameter_type_cannot_be_a_union_type_Consider_using_a_mapped_object_type_instead.code];function i(t,r){var n=e.getTokenAtPosition(t,r),i=e.cast(n.parent.parent,e.isIndexSignatureDeclaration);if(!e.isClassDeclaration(i.parent))return{indexSignature:i,container:e.isInterfaceDeclaration(i.parent)?i.parent:e.cast(i.parent.parent,e.isTypeAliasDeclaration)}}function a(t,r,n){var i,a,o=n.indexSignature,s=n.container,c=(e.isInterfaceDeclaration(s)?s.members:s.type.members).filter((function(t){return!e.isIndexSignatureDeclaration(t)})),u=e.first(o.parameters),l=e.factory.createTypeParameterDeclaration(e.cast(u.name,e.isIdentifier),u.type),_=e.factory.createMappedTypeNode(e.hasEffectiveReadonlyModifier(o)?e.factory.createModifier(142):void 0,l,void 0,o.questionToken,o.type),d=e.factory.createIntersectionTypeNode(__spreadArray(__spreadArray(__spreadArray([],e.getAllSuperTypeNodes(s)),[_]),c.length?[e.factory.createTypeLiteralNode(c)]:e.emptyArray));t.replaceNode(r,s,(i=s,a=d,e.factory.createTypeAliasDeclaration(i.decorators,i.modifiers,i.name,i.typeParameters,a)))}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var o=n.sourceFile,s=n.span,c=i(o,s.start);if(c){var u=e.textChanges.ChangeTracker.with(n,(function(e){return a(e,o,c)})),l=e.idText(c.container.name);return[t.createCodeFixAction(r,u,[e.Diagnostics.Convert_0_to_mapped_object_type,l],r,[e.Diagnostics.Convert_0_to_mapped_object_type,l])]}},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){var r=i(t.file,t.start);r&&a(e,t.file,r)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="removeAccidentalCallParentheses",n=[e.Diagnostics.This_expression_is_not_callable_because_it_is_a_get_accessor_Did_you_mean_to_use_it_without.code];t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var i=e.findAncestor(e.getTokenAtPosition(n.sourceFile,n.span.start),e.isCallExpression);if(i){var a=e.textChanges.ChangeTracker.with(n,(function(e){e.deleteRange(n.sourceFile,{pos:i.expression.end,end:i.end})}));return[t.createCodeFixActionWithoutFixAll(r,a,e.Diagnostics.Remove_parentheses)]}},fixIds:[r]})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="removeUnnecessaryAwait",n=[e.Diagnostics.await_has_no_effect_on_the_type_of_this_expression.code];function i(t,r,n){var i=e.tryCast(e.getTokenAtPosition(r,n.start),(function(e){return 130===e.kind})),a=i&&e.tryCast(i.parent,e.isAwaitExpression);if(a){var o=a;if(e.isParenthesizedExpression(a.parent)){var s=e.getLeftmostExpression(a.expression,!1);if(e.isIdentifier(s)){var c=e.findPrecedingToken(a.parent.pos,r);c&&102!==c.kind&&(o=a.parent)}}t.replaceNode(r,o,a.expression)}}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span)}));if(a.length>0)return[t.createCodeFixAction(r,a,e.Diagnostics.Remove_unnecessary_await,r,e.Diagnostics.Remove_all_unnecessary_uses_of_await)]},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(e,t){return i(e,t.file,t)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r=[e.Diagnostics.A_type_only_import_can_specify_a_default_import_or_named_bindings_but_not_both.code],n="splitTypeOnlyImport";function i(t,r){return e.findAncestor(e.getTokenAtPosition(t,r.start),e.isImportDeclaration)}function a(t,r,n){if(r){var i=e.Debug.checkDefined(r.importClause);t.replaceNode(n.sourceFile,r,e.factory.updateImportDeclaration(r,r.decorators,r.modifiers,e.factory.updateImportClause(i,i.isTypeOnly,i.name,void 0),r.moduleSpecifier)),t.insertNodeAfter(n.sourceFile,r,e.factory.createImportDeclaration(void 0,void 0,e.factory.updateImportClause(i,i.isTypeOnly,void 0,i.namedBindings),r.moduleSpecifier))}}t.registerCodeFix({errorCodes:r,fixIds:[n],getCodeActions:function(r){var o=e.textChanges.ChangeTracker.with(r,(function(e){return a(e,i(r.sourceFile,r.span),r)}));if(o.length)return[t.createCodeFixAction(n,o,e.Diagnostics.Split_into_two_separate_import_declarations,n,e.Diagnostics.Split_all_invalid_type_only_imports)]},getAllCodeActions:function(e){return t.codeFixAll(e,r,(function(t,r){a(t,i(e.sourceFile,r),e)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixConvertConstToLet",n=[e.Diagnostics.Cannot_assign_to_0_because_it_is_a_constant.code];t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var i=n.sourceFile,a=n.span,o=n.program,s=function(t,r,n){var i=e.getTokenAtPosition(t,r),a=n.getTypeChecker().getSymbolAtLocation(i);if(a)return a.valueDeclaration.parent.parent}(i,a.start,o),c=e.textChanges.ChangeTracker.with(n,(function(e){return function(e,t,r){if(!r)return;var n=r.getStart();e.replaceRangeWithText(t,{pos:n,end:n+5},"let")}(e,i,s)}));return[t.createCodeFixAction(r,c,e.Diagnostics.Convert_const_to_let,r,e.Diagnostics.Convert_const_to_let)]},fixIds:[r]})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="fixExpectedComma",n=[e.Diagnostics._0_expected.code];function i(t,r,n){var i=e.getTokenAtPosition(t,r);return 26===i.kind&&i.parent&&(e.isObjectLiteralExpression(i.parent)||e.isArrayLiteralExpression(i.parent))?{node:i}:void 0}function a(t,r,n){var i=n.node,a=e.factory.createToken(27);t.replaceNode(r,i,a)}t.registerCodeFix({errorCodes:n,getCodeActions:function(n){var o=n.sourceFile,s=i(o,n.span.start,n.errorCode);if(s){var c=e.textChanges.ChangeTracker.with(n,(function(e){return a(e,o,s)}));return[t.createCodeFixAction(r,c,[e.Diagnostics.Change_0_to_1,";",","],r,[e.Diagnostics.Change_0_to_1,";",","])]}},fixIds:[r],getAllCodeActions:function(e){return t.codeFixAll(e,n,(function(t,r){var n=i(r.file,r.start,r.code);n&&a(t,e.sourceFile,n)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="addVoidToPromise",n=[e.Diagnostics.Expected_0_arguments_but_got_1_Did_you_forget_to_include_void_in_your_type_argument_to_Promise.code];function i(t,r,n,i,a){var o=e.getTokenAtPosition(r,n.start);if(e.isIdentifier(o)&&e.isCallExpression(o.parent)&&o.parent.expression===o&&0===o.parent.arguments.length){var s=i.getTypeChecker(),c=s.getSymbolAtLocation(o),u=null==c?void 0:c.valueDeclaration;if(u&&e.isParameter(u)&&e.isNewExpression(u.parent.parent)&&!(null==a?void 0:a.has(u))){null==a||a.add(u);var l=function(t){var r;if(!e.isInJSFile(t))return t.typeArguments;if(e.isParenthesizedExpression(t.parent)){var n=null===(r=e.getJSDocTypeTag(t.parent))||void 0===r?void 0:r.typeExpression.type;if(n&&e.isTypeReferenceNode(n)&&e.isIdentifier(n.typeName)&&"Promise"===e.idText(n.typeName))return n.typeArguments}}(u.parent.parent);if(e.some(l)){var _=l[0],d=!e.isUnionTypeNode(_)&&!e.isParenthesizedTypeNode(_)&&e.isParenthesizedTypeNode(e.factory.createUnionTypeNode([_,e.factory.createKeywordTypeNode(113)]).types[0]);d&&t.insertText(r,_.pos,"("),t.insertText(r,_.end,d?") | void":" | void")}else{var p=s.getResolvedSignature(o.parent),f=null==p?void 0:p.parameters[0],g=f&&s.getTypeOfSymbolAtLocation(f,u.parent.parent);e.isInJSFile(u)?(!g||3&g.flags)&&(t.insertText(r,u.parent.parent.end,")"),t.insertText(r,e.skipTrivia(r.text,u.parent.parent.pos),"/** @type {Promise} */(")):(!g||2&g.flags)&&t.insertText(r,u.parent.parent.expression.end,"")}}}}t.registerCodeFix({errorCodes:n,fixIds:[r],getCodeActions:function(n){var a=e.textChanges.ChangeTracker.with(n,(function(e){return i(e,n.sourceFile,n.span,n.program)}));if(a.length>0)return[t.createCodeFixAction("addVoidToPromise",a,e.Diagnostics.Add_void_to_Promise_resolved_without_a_value,r,e.Diagnostics.Add_void_to_all_Promises_resolved_without_a_value)]},getAllCodeActions:function(r){return t.codeFixAll(r,n,(function(t,n){return i(t,n.file,n,r.program,new e.Set)}))}})}(e.codefix||(e.codefix={}))}(ts||(ts={})),function(e){!function(t){var r="Convert export",n={name:"Convert default export to named export",description:e.Diagnostics.Convert_default_export_to_named_export.message,kind:"refactor.rewrite.export.named"},i={name:"Convert named export to default export",description:e.Diagnostics.Convert_named_export_to_default_export.message,kind:"refactor.rewrite.export.default"};function a(t,r){void 0===r&&(r=!0);var n=t.file,i=e.getRefactorContextSpan(t),a=e.getTokenAtPosition(n,i.start),o=a.parent&&1&e.getSyntacticModifierFlags(a.parent)&&r?a.parent:e.getParentNodeInSpan(a,n,i);if(!(o&&(e.isSourceFile(o.parent)||e.isModuleBlock(o.parent)&&e.isAmbientModule(o.parent.parent))))return{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_export_statement)};var s=e.isSourceFile(o.parent)?o.parent.symbol:o.parent.parent.symbol,c=e.getSyntacticModifierFlags(o),u=!!(512&c);if(!(1&c)||!u&&s.exports.has("default"))return{error:e.getLocaleSpecificMessage(e.Diagnostics.This_file_already_has_a_default_export)};switch(o.kind){case 251:case 252:case 253:case 255:case 254:case 256:var l=o;return l.name&&e.isIdentifier(l.name)?{exportNode:l,exportName:l.name,wasDefault:u,exportingModuleSymbol:s}:void 0;case 232:var _=o;if(!(2&_.declarationList.flags)||1!==_.declarationList.declarations.length)return;var d=e.first(_.declarationList.declarations);if(!d.initializer)return;return e.Debug.assert(!u,"Can't have a default flag here"),e.isIdentifier(d.name)?{exportNode:_,exportName:d.name,wasDefault:u,exportingModuleSymbol:s}:void 0;default:return}}function o(t,r){return e.factory.createImportSpecifier(t===r?void 0:e.factory.createIdentifier(t),e.factory.createIdentifier(r))}t.registerRefactor(r,{kinds:[n.kind,i.kind],getAvailableActions:function(o){var s=a(o,"invoked"===o.triggerReason);if(!s)return e.emptyArray;if(!t.isRefactorErrorInfo(s)){var c=s.wasDefault?n:i;return[{name:r,description:c.description,actions:[c]}]}return o.preferences.provideRefactorNotApplicableReason?[{name:r,description:e.Diagnostics.Convert_default_export_to_named_export.message,actions:[__assign(__assign({},n),{notApplicableReason:s.error}),__assign(__assign({},i),{notApplicableReason:s.error})]}]:e.emptyArray},getEditsForAction:function(r,s){e.Debug.assert(s===n.name||s===i.name,"Unexpected action name");var c=a(r);return e.Debug.assert(c&&!t.isRefactorErrorInfo(c),"Expected applicable refactor info"),{edits:e.textChanges.ChangeTracker.with(r,(function(t){return function(t,r,n,i,a){(function(t,r,n,i){var a=r.wasDefault,o=r.exportNode,s=r.exportName;if(a)n.delete(t,e.Debug.checkDefined(e.findModifier(o,87),"Should find a default keyword in modifier list"));else{var c=e.Debug.checkDefined(e.findModifier(o,92),"Should find an export keyword in modifier list");switch(o.kind){case 251:case 252:case 253:n.insertNodeAfter(t,c,e.factory.createToken(87));break;case 232:var u=e.first(o.declarationList.declarations);if(!e.FindAllReferences.Core.isSymbolReferencedInFile(s,i,t)&&!u.type){n.replaceNode(t,o,e.factory.createExportDefault(e.Debug.checkDefined(u.initializer,"Initializer was previously known to be present")));break}case 255:case 254:case 256:n.deleteModifier(t,c),n.insertNodeAfter(t,o,e.factory.createExportDefault(e.factory.createIdentifier(s.text)));break;default:e.Debug.assertNever(o,"Unexpected exportNode kind "+o.kind)}}})(t,n,i,r.getTypeChecker()),function(t,r,n,i){var a=r.wasDefault,s=r.exportName,c=r.exportingModuleSymbol,u=t.getTypeChecker(),l=e.Debug.checkDefined(u.getSymbolAtLocation(s),"Export name should resolve to a symbol");e.FindAllReferences.Core.eachExportReference(t.getSourceFiles(),u,i,l,c,s.text,a,(function(t){var r=t.getSourceFile();a?function(t,r,n,i){var a=r.parent;switch(a.kind){case 201:n.replaceNode(t,r,e.factory.createIdentifier(i));break;case 265:case 270:var s=a;n.replaceNode(t,s,o(i,s.name.text));break;case 262:var c=a;e.Debug.assert(c.name===r,"Import clause name should match provided ref");s=o(i,r.text);var u=c.namedBindings;if(u)if(263===u.kind){n.deleteRange(t,{pos:r.getStart(t),end:u.getStart(t)});var l=e.isStringLiteral(c.parent.moduleSpecifier)?e.quotePreferenceFromString(c.parent.moduleSpecifier,t):1,_=e.makeImport(void 0,[o(i,r.text)],c.parent.moduleSpecifier,l);n.insertNodeAfter(t,c.parent,_)}else n.delete(t,r),n.insertNodeAtEndOfList(t,u.elements,s);else n.replaceNode(t,r,e.factory.createNamedImports([s]));break;default:e.Debug.failBadSyntaxKind(a)}}(r,t,n,s.text):function(t,r,n){var i=r.parent;switch(i.kind){case 201:n.replaceNode(t,r,e.factory.createIdentifier("default"));break;case 265:var a=e.factory.createIdentifier(i.name.text);1===i.parent.elements.length?n.replaceNode(t,i.parent,a):(n.delete(t,i),n.insertNodeBefore(t,i.parent,a));break;case 270:n.replaceNode(t,i,(o="default",s=i.name.text,e.factory.createExportSpecifier(o===s?void 0:e.factory.createIdentifier(o),e.factory.createIdentifier(s))));break;default:e.Debug.assertNever(i,"Unexpected parent kind "+i.kind)}var o,s}(r,t,n)}))}(r,n,i,a)}(r.file,r.program,c,t,r.cancellationToken)})),renameFilename:void 0,renameLocation:void 0}}})}(e.refactor||(e.refactor={}))}(ts||(ts={})),function(e){!function(t){var r="Convert import",n={name:"Convert namespace import to named imports",description:e.Diagnostics.Convert_namespace_import_to_named_imports.message,kind:"refactor.rewrite.import.named"},i={name:"Convert named imports to namespace import",description:e.Diagnostics.Convert_named_imports_to_namespace_import.message,kind:"refactor.rewrite.import.namespace"};function a(t,r){void 0===r&&(r=!0);var n=t.file,i=e.getRefactorContextSpan(t),a=e.getTokenAtPosition(n,i.start),o=r?e.findAncestor(a,e.isImportDeclaration):e.getParentNodeInSpan(a,n,i);if(!o||!e.isImportDeclaration(o))return{error:"Selection is not an import declaration."};if(!(o.getEnd()=_.pos?p.getEnd():_.getEnd()),g=c?function(e){for(;e.parent;){if(s(e)&&!s(e.parent))return e;e=e.parent}return}(_):function(e,t){for(;e.parent;){if(s(e)&&0!==t.length&&e.end>=t.start+t.length)return e;e=e.parent}return}(_,f),m=g&&s(g)?function(t){if(o(t))return t;if(e.isVariableStatement(t)){var r=e.getSingleVariableOfVariableStatement(t),n=null==r?void 0:r.initializer;return n&&o(n)?n:void 0}return t.expression&&o(t.expression)?t.expression:void 0}(g):void 0;if(!m)return{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_convertible_access_expression)};var y=i.getTypeChecker();return e.isConditionalExpression(m)?function(t,r){var n=t.condition,i=d(t.whenTrue);if(!i||r.isNullableType(r.getTypeAtLocation(i)))return{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_convertible_access_expression)};if((e.isPropertyAccessExpression(n)||e.isIdentifier(n))&&l(n,i.expression))return{finalExpression:i,occurrences:[n],expression:t};if(e.isBinaryExpression(n)){var a=u(i.expression,n);return a?{finalExpression:i,occurrences:a,expression:t}:{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_matching_access_expressions)}}}(m,y):function(t){if(55!==t.operatorToken.kind)return{error:e.getLocaleSpecificMessage(e.Diagnostics.Can_only_convert_logical_AND_access_chains)};var r=d(t.right);if(!r)return{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_convertible_access_expression)};var n=u(r.expression,t.left);return n?{finalExpression:r,occurrences:n,expression:t}:{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_find_matching_access_expressions)}}(m)}}function u(t,r){for(var n=[];e.isBinaryExpression(r)&&55===r.operatorToken.kind;){var i=l(e.skipParentheses(t),e.skipParentheses(r.right));if(!i)break;n.push(i),t=i,r=r.left}var a=l(t,r);return a&&n.push(a),n.length>0?n:void 0}function l(t,r){if(e.isIdentifier(r)||e.isPropertyAccessExpression(r)||e.isElementAccessExpression(r))return function(t,r){for(;(e.isCallExpression(t)||e.isPropertyAccessExpression(t)||e.isElementAccessExpression(t))&&_(t)!==_(r);)t=t.expression;for(;e.isPropertyAccessExpression(t)&&e.isPropertyAccessExpression(r)||e.isElementAccessExpression(t)&&e.isElementAccessExpression(r);){if(_(t)!==_(r))return!1;t=t.expression,r=r.expression}return e.isIdentifier(t)&&e.isIdentifier(r)&&t.getText()===r.getText()}(t,r)?r:void 0}function _(t){return e.isIdentifier(t)||e.isStringOrNumericLiteralLike(t)?t.getText():e.isPropertyAccessExpression(t)?_(t.name):e.isElementAccessExpression(t)?_(t.argumentExpression):void 0}function d(t){return t=e.skipParentheses(t),e.isBinaryExpression(t)?d(t.left):(e.isPropertyAccessExpression(t)||e.isElementAccessExpression(t)||e.isCallExpression(t))&&!e.isOptionalChain(t)?t:void 0}function p(t,r,n){if(e.isPropertyAccessExpression(r)||e.isElementAccessExpression(r)||e.isCallExpression(r)){var i=p(t,r.expression,n),a=n.length>0?n[n.length-1]:void 0,o=(null==a?void 0:a.getText())===r.expression.getText();if(o&&n.pop(),e.isCallExpression(r))return o?e.factory.createCallChain(i,e.factory.createToken(28),r.typeArguments,r.arguments):e.factory.createCallChain(i,r.questionDotToken,r.typeArguments,r.arguments);if(e.isPropertyAccessExpression(r))return o?e.factory.createPropertyAccessChain(i,e.factory.createToken(28),r.name):e.factory.createPropertyAccessChain(i,r.questionDotToken,r.name);if(e.isElementAccessExpression(r))return o?e.factory.createElementAccessChain(i,e.factory.createToken(28),r.argumentExpression):e.factory.createElementAccessChain(i,r.questionDotToken,r.argumentExpression)}return r}t.registerRefactor(n,{kinds:[a.kind],getAvailableActions:function(r){var o=c(r,"invoked"===r.triggerReason);if(!o)return e.emptyArray;if(!t.isRefactorErrorInfo(o))return[{name:n,description:i,actions:[a]}];if(r.preferences.provideRefactorNotApplicableReason)return[{name:n,description:i,actions:[__assign(__assign({},a),{notApplicableReason:o.error})]}];return e.emptyArray},getEditsForAction:function(r,n){var i=c(r);return e.Debug.assert(i&&!t.isRefactorErrorInfo(i),"Expected applicable refactor info"),{edits:e.textChanges.ChangeTracker.with(r,(function(t){return function(t,r,n,i,a){var o=i.finalExpression,s=i.occurrences,c=i.expression,u=s[s.length-1],l=p(r,o,s);l&&(e.isPropertyAccessExpression(l)||e.isElementAccessExpression(l)||e.isCallExpression(l))&&(e.isBinaryExpression(c)?n.replaceNodeRange(t,u,o,l):e.isConditionalExpression(c)&&n.replaceNode(t,c,e.factory.createBinaryExpression(l,e.factory.createToken(60),c.whenFalse)))}(r.file,r.program.getTypeChecker(),t,i)})),renameFilename:void 0,renameLocation:void 0}}})}(t.convertToOptionalChainExpression||(t.convertToOptionalChainExpression={}))}(e.refactor||(e.refactor={}))}(ts||(ts={})),function(e){!function(t){!function(r){var n="Convert overload list to single signature",i=e.Diagnostics.Convert_overload_list_to_single_signature.message,a={name:n,description:i,kind:"refactor.rewrite.function.overloadList"};function o(e){switch(e.kind){case 164:case 165:case 169:case 166:case 170:case 251:return!0}return!1}function s(t,r,n){var i=e.getTokenAtPosition(t,r),a=e.findAncestor(i,o);if(a){var s=n.getTypeChecker(),c=a.symbol;if(c){var u=c.declarations;if(!(e.length(u)<=1)&&e.every(u,(function(r){return e.getSourceFileOfNode(r)===t}))&&o(u[0])){var l=u[0].kind;if(e.every(u,(function(e){return e.kind===l}))){var _=u;if(!e.some(_,(function(t){return!!t.typeParameters||e.some(t.parameters,(function(t){return!!t.decorators||!!t.modifiers||!e.isIdentifier(t.name)}))}))){var d=e.mapDefined(_,(function(e){return s.getSignatureFromDeclaration(e)}));if(e.length(d)===e.length(u)){var p=s.getReturnTypeOfSignature(d[0]);if(e.every(d,(function(e){return s.getReturnTypeOfSignature(e)===p})))return _}}}}}}}t.registerRefactor(n,{kinds:[a.kind],getEditsForAction:function(t){var r=t.file,n=t.startPosition,i=t.program,a=s(r,n,i);if(!a)return;var o=i.getTypeChecker(),c=a[a.length-1],u=c;switch(c.kind){case 164:u=e.factory.updateMethodSignature(c,c.modifiers,c.name,c.questionToken,c.typeParameters,_(a),c.type);break;case 165:u=e.factory.updateMethodDeclaration(c,c.decorators,c.modifiers,c.asteriskToken,c.name,c.questionToken,c.typeParameters,_(a),c.type,c.body);break;case 169:u=e.factory.updateCallSignature(c,c.typeParameters,_(a),c.type);break;case 166:u=e.factory.updateConstructorDeclaration(c,c.decorators,c.modifiers,_(a),c.body);break;case 170:u=e.factory.updateConstructSignature(c,c.typeParameters,_(a),c.type);break;case 251:u=e.factory.updateFunctionDeclaration(c,c.decorators,c.modifiers,c.asteriskToken,c.name,c.typeParameters,_(a),c.type,c.body);break;default:return e.Debug.failBadSyntaxKind(c,"Unhandled signature kind in overload list conversion refactoring")}if(u===c)return;var l=e.textChanges.ChangeTracker.with(t,(function(e){e.replaceNodeRange(r,a[0],a[a.length-1],u)}));return{renameFilename:void 0,renameLocation:void 0,edits:l};function _(t){var r=t[t.length-1];return e.isFunctionLikeDeclaration(r)&&r.body&&(t=t.slice(0,t.length-1)),e.factory.createNodeArray([e.factory.createParameterDeclaration(void 0,void 0,e.factory.createToken(25),"args",void 0,e.factory.createUnionTypeNode(e.map(t,d)))])}function d(t){var r=e.map(t.parameters,p);return e.setEmitFlags(e.factory.createTupleTypeNode(r),e.some(r,(function(t){return!!e.length(e.getSyntheticLeadingComments(t))}))?0:1)}function p(t){e.Debug.assert(e.isIdentifier(t.name));var r=e.setTextRange(e.factory.createNamedTupleMember(t.dotDotDotToken,t.name,t.questionToken,t.type||e.factory.createKeywordTypeNode(128)),t),n=t.symbol&&t.symbol.getDocumentationComment(o);if(n){var i=e.displayPartsToString(n);i.length&&e.setSyntheticLeadingComments(r,[{text:"*\n"+i.split("\n").map((function(e){return" * "+e})).join("\n")+"\n ",kind:3,pos:-1,end:-1,hasTrailingNewLine:!0,hasLeadingNewline:!0}])}return r}},getAvailableActions:function(t){var r=t.file,o=t.startPosition,c=t.program;return s(r,o,c)?[{name:n,description:i,actions:[a]}]:e.emptyArray}})}(t.addOrRemoveBracesToArrowFunction||(t.addOrRemoveBracesToArrowFunction={}))}(e.refactor||(e.refactor={}))}(ts||(ts={})),function(e){!function(t){!function(r){var n,i,a,o,s="Extract Symbol",c={name:"Extract Constant",description:e.getLocaleSpecificMessage(e.Diagnostics.Extract_constant),kind:"refactor.extract.constant"},u={name:"Extract Function",description:e.getLocaleSpecificMessage(e.Diagnostics.Extract_function),kind:"refactor.extract.function"};function l(r){var n=r.kind,i=d(r.file,e.getRefactorContextSpan(r),"invoked"===r.triggerReason),a=i.targetRange;if(void 0===a){if(!i.errors||0===i.errors.length||!r.preferences.provideRefactorNotApplicableReason)return e.emptyArray;var o=[];return t.refactorKindBeginsWith(u.kind,n)&&o.push({name:s,description:u.description,actions:[__assign(__assign({},u),{notApplicableReason:N(i.errors)})]}),t.refactorKindBeginsWith(c.kind,n)&&o.push({name:s,description:c.description,actions:[__assign(__assign({},c),{notApplicableReason:N(i.errors)})]}),o}var l=function(t,r){var n=g(t,r),i=n.scopes,a=n.readsAndWrites,o=a.functionErrorsPerScope,s=a.constantErrorsPerScope;return i.map((function(t,r){var n,i,a=function(t){return e.isFunctionLikeDeclaration(t)?"inner function":e.isClassLike(t)?"method":"function"}(t),c=function(t){return e.isClassLike(t)?"readonly field":"constant"}(t),u=e.isFunctionLikeDeclaration(t)?function(t){switch(t.kind){case 166:return"constructor";case 208:case 251:return t.name?"function '"+t.name.text+"'":e.ANONYMOUS;case 209:return"arrow function";case 165:return"method '"+t.name.getText()+"'";case 167:return"'get "+t.name.getText()+"'";case 168:return"'set "+t.name.getText()+"'";default:throw e.Debug.assertNever(t,"Unexpected scope kind "+t.kind)}}(t):e.isClassLike(t)?function(e){return 252===e.kind?e.name?"class '"+e.name.text+"'":"anonymous class declaration":e.name?"class expression '"+e.name.text+"'":"anonymous class expression"}(t):function(e){return 257===e.kind?"namespace '"+e.parent.name.getText()+"'":e.externalModuleIndicator?0:1}(t);return 1===u?(n=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1_scope),[a,"global"]),i=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1_scope),[c,"global"])):0===u?(n=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1_scope),[a,"module"]),i=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1_scope),[c,"module"])):(n=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1),[a,u]),i=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_1),[c,u])),0!==r||e.isClassLike(t)||(i=e.formatStringFromArgs(e.getLocaleSpecificMessage(e.Diagnostics.Extract_to_0_in_enclosing_scope),[c])),{functionExtraction:{description:n,errors:o[r]},constantExtraction:{description:i,errors:s[r]}}}))}(a,r);if(void 0===l)return e.emptyArray;for(var _,p,f=[],m=new e.Map,y=[],v=new e.Map,h=0,b=0,x=l;b0;if(e.isBlock(t)&&!s&&0===i.size)return{body:e.factory.createBlock(t.statements,!0),returnValueProperty:void 0};var c=!1,u=e.factory.createNodeArray(e.isBlock(t)?t.statements.slice(0):[e.isStatement(t)?t:e.factory.createReturnStatement(t)]);if(s||i.size){var l=e.visitNodes(u,d).slice();if(s&&!a&&e.isStatement(t)){var _=v(r,n);1===_.length?l.push(e.factory.createReturnStatement(_[0].name)):l.push(e.factory.createReturnStatement(e.factory.createObjectLiteralExpression(_)))}return{body:e.factory.createBlock(l,!0),returnValueProperty:o}}return{body:e.factory.createBlock(u,!0),returnValueProperty:void 0};function d(t){if(!c&&e.isReturnStatement(t)&&s){var a=v(r,n);return t.expression&&(o||(o="__return"),a.unshift(e.factory.createPropertyAssignment(o,e.visitNode(t.expression,d)))),1===a.length?e.factory.createReturnStatement(a[0].name):e.factory.createReturnStatement(e.factory.createObjectLiteralExpression(a))}var u=c;c=c||e.isFunctionLikeDeclaration(t)||e.isClassLike(t);var l=i.get(e.getNodeId(t).toString()),_=l?e.getSynthesizedDeepClone(l):e.visitEachChild(t,d,e.nullTransformationContext);return c=u,_}}(t,a,u,d,!!(o.facts&i.HasReturn)),I=w.body,O=w.returnValueProperty;if(e.suppressLeadingAndTrailingTrivia(I),e.isClassLike(r)){var M=S?[]:[e.factory.createModifier(120)];o.facts&i.InStaticRegion&&M.push(e.factory.createModifier(123)),o.facts&i.IsAsyncFunction&&M.push(e.factory.createModifier(129)),P=e.factory.createMethodDeclaration(void 0,M.length?M:void 0,o.facts&i.IsGenerator?e.factory.createToken(41):void 0,T,void 0,N,C,c,I)}else P=e.factory.createFunctionDeclaration(void 0,o.facts&i.IsAsyncFunction?[e.factory.createToken(129)]:void 0,o.facts&i.IsGenerator?e.factory.createToken(41):void 0,T,N,C,c,I);var L=e.textChanges.ChangeTracker.fromContext(s),R=function(t,r){return e.find(function(t){if(e.isFunctionLikeDeclaration(t)){var r=t.body;if(e.isBlock(r))return r.statements}else{if(e.isModuleBlock(t)||e.isSourceFile(t))return t.statements;if(e.isClassLike(t))return t.members;e.assertType(t)}return e.emptyArray}(r),(function(r){return r.pos>=t&&e.isFunctionLikeDeclaration(r)&&!e.isConstructorDeclaration(r)}))}((h(o.range)?e.last(o.range):o.range).end,r);R?L.insertNodeBefore(s.file,R,P,!0):L.insertNodeAtEndOfScope(s.file,r,P);g.writeFixes(L);var B=[],j=function(t,r,n){var a=e.factory.createIdentifier(n);if(e.isClassLike(t)){var o=r.facts&i.InStaticRegion?e.factory.createIdentifier(t.name.text):e.factory.createThis();return e.factory.createPropertyAccessExpression(o,a)}return a}(r,o,x),J=e.factory.createCallExpression(j,A,E);o.facts&i.IsGenerator&&(J=e.factory.createYieldExpression(e.factory.createToken(41),J));o.facts&i.IsAsyncFunction&&(J=e.factory.createAwaitExpression(J));D(t)&&(J=e.factory.createJsxExpression(void 0,J));if(a.length&&!u)if(e.Debug.assert(!O,"Expected no returnValueProperty"),e.Debug.assert(!(o.facts&i.HasReturn),"Expected RangeFacts.HasReturn flag to be unset"),1===a.length){var z=a[0];B.push(e.factory.createVariableStatement(void 0,e.factory.createVariableDeclarationList([e.factory.createVariableDeclaration(e.getSynthesizedDeepClone(z.name),void 0,e.getSynthesizedDeepClone(z.type),J)],z.parent.flags)))}else{for(var U=[],V=[],K=a[0].parent.flags,q=!1,W=0,H=a;W0,"Found no members");for(var a=!0,o=0,s=i;ot)return n||i[0];if(a&&!e.isPropertyDeclaration(c)){if(void 0!==n)return c;a=!1}n=c}return void 0===n?e.Debug.fail():n}(t.pos,r);m.insertNodeBefore(o.file,b,v,!0),m.replaceNode(o.file,t,h)}else{var S=e.factory.createVariableDeclaration(_,void 0,p,g),T=function(t,r){var n;for(;void 0!==t&&t!==r;){if(e.isVariableDeclaration(t)&&t.initializer===n&&e.isVariableDeclarationList(t.parent)&&t.parent.declarations.length>1)return t;n=t,t=t.parent}}(t,r);if(T){m.insertNodeBefore(o.file,T,S);h=e.factory.createIdentifier(_);m.replaceNode(o.file,t,h)}else if(233===t.parent.kind&&r===e.findAncestor(t,f)){var C=e.factory.createVariableStatement(void 0,e.factory.createVariableDeclarationList([S],2));m.replaceNode(o.file,t.parent,C)}else{C=e.factory.createVariableStatement(void 0,e.factory.createVariableDeclarationList([S],2));if(0===(b=function(t,r){var n;e.Debug.assert(!e.isClassLike(r));for(var i=t;i!==r;i=i.parent)f(i)&&(n=i);for(i=(n||t).parent;;i=i.parent){if(x(i)){for(var a=void 0,o=0,s=i.statements;ot.pos)break;a=c}return!a&&e.isCaseClause(i)?(e.Debug.assert(e.isSwitchStatement(i.parent.parent),"Grandparent isn't a switch statement"),i.parent.parent):e.Debug.checkDefined(a,"prevStatement failed to get set")}e.Debug.assert(i!==r,"Didn't encounter a block-like before encountering scope")}}(t,r)).pos?m.insertNodeAtTopOfFile(o.file,C,!1):m.insertNodeBefore(o.file,b,C,!1),233===t.parent.kind)m.delete(o.file,t.parent);else{h=e.factory.createIdentifier(_);D(t)&&(h=e.factory.createJsxExpression(void 0,h)),m.replaceNode(o.file,t,h)}}}var E=m.getChanges(),k=t.getSourceFile().fileName,N=e.getRenameLocation(E,k,_,!0);return{renameFilename:k,renameLocation:N,edits:E};function A(n,i){if(void 0===n)return{variableType:n,initializer:i};if(!e.isFunctionExpression(i)&&!e.isArrowFunction(i)||i.typeParameters)return{variableType:n,initializer:i};var a=u.getTypeAtLocation(t),o=e.singleOrUndefined(u.getSignaturesOfType(a,0));if(!o)return{variableType:n,initializer:i};if(o.getTypeParameters())return{variableType:n,initializer:i};for(var s=[],c=!1,l=0,_=i.parameters;l<_.length;l++){var d=_[l];if(d.type)s.push(d);else{var p=u.getTypeAtLocation(d);p===u.getAnyType()&&(c=!0),s.push(e.factory.updateParameterDeclaration(d,d.decorators,d.modifiers,d.dotDotDotToken,d.name,d.questionToken,d.type||u.typeToTypeNode(p,r,1),d.initializer))}}if(c)return{variableType:n,initializer:i};if(n=void 0,e.isArrowFunction(i))i=e.factory.updateArrowFunction(i,t.modifiers,i.typeParameters,s,i.type||u.typeToTypeNode(o.getReturnType(),r,1),i.equalsGreaterThanToken,i.body);else{if(o&&o.thisParameter){var f=e.firstOrUndefined(s);if(!f||e.isIdentifier(f.name)&&"this"!==f.name.escapedText){var g=u.getTypeOfSymbolAtLocation(o.thisParameter,t);s.splice(0,0,e.factory.createParameterDeclaration(void 0,void 0,void 0,"this",void 0,u.typeToTypeNode(g,r,1)))}}i=e.factory.updateFunctionExpression(i,t.modifiers,i.asteriskToken,i.name,i.typeParameters,s,i.type||u.typeToTypeNode(o.getReturnType(),r,1),i.body)}return{variableType:n,initializer:i}}}(e.isExpression(c)?c:c.statements[0].expression,o[n],u[n],t.facts,r)}(n,t,o)}e.Debug.fail("Unrecognized action name")}function d(t,r,a){void 0===a&&(a=!0);var o=r.length;if(0===o&&!a)return{errors:[e.createFileDiagnostic(t,r.start,o,n.cannotExtractEmpty)]};var s=0===o&&a,c=e.getTokenAtPosition(t,r.start),u=s?function(t){return e.findAncestor(t,(function(t){return t.parent&&b(t)&&!e.isBinaryExpression(t.parent)}))}(c):e.getParentNodeInSpan(c,t,r),l=e.findTokenOnLeftOfPosition(t,e.textSpanEnd(r)),_=s?u:e.getParentNodeInSpan(l,t,r),d=[],f=i.None;if(!u||!_)return{errors:[e.createFileDiagnostic(t,r.start,o,n.cannotExtractRange)]};if(u.parent!==_.parent)return{errors:[e.createFileDiagnostic(t,r.start,o,n.cannotExtractRange)]};if(u!==_){if(!x(u.parent))return{errors:[e.createFileDiagnostic(t,r.start,o,n.cannotExtractRange)]};for(var g=[],m=0,y=u.parent.statements;m=r.start+r.length)return(o||(o=[])).push(e.createDiagnosticForNode(a,n.cannotExtractSuper)),!0}else f|=i.UsesThis;break;case 209:e.forEachChild(a,(function t(r){if(e.isThis(r))f|=i.UsesThis;else{if(e.isClassLike(r)||e.isFunctionLike(r)&&!e.isArrowFunction(r))return!1;e.forEachChild(r,t)}}));case 252:case 251:e.isSourceFile(a.parent)&&void 0===a.parent.externalModuleIndicator&&(o||(o=[])).push(e.createDiagnosticForNode(a,n.functionWillNotBeVisibleInTheNewScope));case 221:case 208:case 165:case 166:case 167:case 168:return!1}var _=u;switch(a.kind){case 234:case 247:u=0;break;case 230:a.parent&&247===a.parent.kind&&a.parent.finallyBlock===a&&(u=4);break;case 285:case 284:u|=1;break;default:e.isIterationStatement(a,!1)&&(u|=3)}switch(a.kind){case 187:case 107:f|=i.UsesThis;break;case 245:var p=a.label;(c||(c=[])).push(p.escapedText),e.forEachChild(a,t),c.pop();break;case 241:case 240:(p=a.label)?e.contains(c,p.escapedText)||(o||(o=[])).push(e.createDiagnosticForNode(a,n.cannotExtractRangeContainingLabeledBreakOrContinueStatementWithTargetOutsideOfTheRange)):u&(241===a.kind?1:2)||(o||(o=[])).push(e.createDiagnosticForNode(a,n.cannotExtractRangeContainingConditionalBreakOrContinueStatements));break;case 213:f|=i.IsAsyncFunction;break;case 219:f|=i.IsGenerator;break;case 242:4&u?f|=i.HasReturn:(o||(o=[])).push(e.createDiagnosticForNode(a,n.cannotExtractRangeContainingConditionalReturnStatement));break;default:e.forEachChild(a,t)}u=_}(t),o}}function p(t){return e.isStatement(t)?[t]:e.isExpressionNode(t)?e.isExpressionStatement(t.parent)?[t.parent]:t:void 0}function f(t){return e.isFunctionLikeDeclaration(t)||e.isSourceFile(t)||e.isModuleBlock(t)||e.isClassLike(t)}function g(t,r){var a=r.file,o=function(t){var r=h(t.range)?e.first(t.range):t.range;if(t.facts&i.UsesThis){var n=e.getContainingClass(r);if(n){var a=e.findAncestor(r,e.isFunctionLikeDeclaration);return a?[a,n]:[n]}}for(var o=[];;)if(160===(r=r.parent).kind&&(r=e.findAncestor(r,(function(t){return e.isFunctionLikeDeclaration(t)})).parent),f(r)&&(o.push(r),297===r.kind))return o}(t);return{scopes:o,readsAndWrites:function(t,r,a,o,s,c){var u,l,_=new e.Map,d=[],p=[],f=[],g=[],m=[],y=new e.Map,v=[],b=h(t.range)?1===t.range.length&&e.isExpressionStatement(t.range[0])?t.range[0].expression:void 0:t.range;if(void 0===b){var x=t.range,D=e.first(x).getStart(),S=e.last(x).end;l=e.createFileDiagnostic(o,D,S-D,n.expressionExpected)}else 147456&s.getTypeAtLocation(b).flags&&(l=e.createDiagnosticForNode(b,n.uselessConstantType));for(var T=0,C=r;T0){for(var w=new e.Map,I=0,O=F;void 0!==O&&I0&&(i.usages.size>0||i.typeParameterUsages.size>0)){var a=h(t.range)?t.range[0]:t.range;g[r].push(e.createDiagnosticForNode(a,n.cannotAccessVariablesFromNestedScopes))}var o,s=!1;if(d[r].usages.forEach((function(t){2===t.usage&&(s=!0,106500&t.symbol.flags&&t.symbol.valueDeclaration&&e.hasEffectiveModifier(t.symbol.valueDeclaration,64)&&(o=t.symbol.valueDeclaration))})),e.Debug.assert(h(t.range)||0===v.length,"No variable declarations expected if something was extracted"),s&&!h(t.range)){var c=e.createDiagnosticForNode(t.range,n.cannotWriteInExpression);f[r].push(c),g[r].push(c)}else if(o&&r>0){c=e.createDiagnosticForNode(o,n.cannotExtractReadonlyPropertyInitializerOutsideConstructor);f[r].push(c),g[r].push(c)}else if(u){c=e.createDiagnosticForNode(u,n.cannotExtractExportedEntity);f[r].push(c),g[r].push(c)}},z=0;z=u)return m;if(N.set(m,u),y){for(var v=0,h=d;v=0)){var n=e.isIdentifier(r)?G(r):s.getSymbolAtLocation(r);if(n){var i=e.find(m,(function(e){return e.symbol===n}));if(i)if(e.isVariableDeclaration(i)){var a=i.symbol.id.toString();y.has(a)||(v.push(i),y.set(a,!0))}else u=u||i}e.forEachChild(r,H)}}function G(t){return t.parent&&e.isShorthandPropertyAssignment(t.parent)&&t.parent.name===t?s.getShorthandAssignmentValueSymbol(t.parent):s.getSymbolAtLocation(t)}function X(t,r,n){if(t){var i=t.getDeclarations();if(i&&i.some((function(e){return e.parent===r})))return e.factory.createIdentifier(t.name);var a=X(t.parent,r,n);if(void 0!==a)return n?e.factory.createQualifiedName(a,e.factory.createIdentifier(t.name)):e.factory.createPropertyAccessExpression(a,t.name)}}}(t,o,function(t,r){return h(t.range)?{pos:e.first(t.range).getStart(r),end:e.last(t.range).getEnd()}:t.range}(t,a),a,r.program.getTypeChecker(),r.cancellationToken)}}function m(e){var t,r=e.symbol;if(r&&r.declarations)for(var n=0,i=r.declarations;nn.pos}));if(-1!==a){var o=i[a];if(e.isNamedDeclaration(o)&&o.name&&e.rangeContainsRange(o.name,n))return{toMove:[i[a]],afterLast:i[a+1]};if(!(n.pos>o.getStart(r))){var s=e.findIndex(i,(function(e){return e.end>n.end}),a);if(-1===s||!(0===s||i[s].getStart(r)=2&&e.every(t,(function(t){return function(t,r){if(e.isRestParameter(t)){var n=r.getTypeAtLocation(t);if(!r.isArrayType(n)&&!r.isTupleType(n))return!1}return!t.modifiers&&!t.decorators&&e.isIdentifier(t.name)}(t,r)}))}(t.parameters,r))return!1;switch(t.kind){case 251:return g(t)&&f(t,r);case 165:if(e.isObjectLiteralExpression(t.parent)){var n=o(t.name,r);return 1===(null==n?void 0:n.declarations.length)&&f(t,r)}return f(t,r);case 166:return e.isClassDeclaration(t.parent)?g(t.parent)&&f(t,r):m(t.parent.parent)&&f(t,r);case 208:case 209:return m(t.parent)}return!1}(a,n)&&e.rangeContainsRange(a,i))||a.body&&e.rangeContainsRange(a.body,i)?void 0:a}function p(t){return e.isMethodSignature(t)&&(e.isInterfaceDeclaration(t.parent)||e.isTypeLiteralNode(t.parent))}function f(e,t){return!!e.body&&!t.isImplementationOfOverload(e)}function g(t){return!!t.name||!!e.findModifier(t,87)}function m(t){return e.isVariableDeclaration(t)&&e.isVarConst(t)&&e.isIdentifier(t.name)&&!t.type}function y(t){return t.length>0&&e.isThis(t[0].name)}function v(t){return y(t)&&(t=e.factory.createNodeArray(t.slice(1),t.hasTrailingComma)),t}function h(t,r){var n=v(t.parameters),i=e.isRestParameter(e.last(n)),a=i?r.slice(0,n.length-1):r,o=e.map(a,(function(t,r){var i,a,o=x(n[r]),s=(i=o,a=t,e.isIdentifier(a)&&e.getTextOfIdentifierOrLiteral(a)===i?e.factory.createShorthandPropertyAssignment(i):e.factory.createPropertyAssignment(i,a));return e.suppressLeadingAndTrailingTrivia(s.name),e.isPropertyAssignment(s)&&e.suppressLeadingAndTrailingTrivia(s.initializer),e.copyComments(t,s),s}));if(i&&r.length>=n.length){var s=r.slice(n.length-1),c=e.factory.createPropertyAssignment(x(e.last(n)),e.factory.createArrayLiteralExpression(s));o.push(c)}return e.factory.createObjectLiteralExpression(o,!1)}function b(t,r,n){var i,a,o,s=r.getTypeChecker(),c=v(t.parameters),u=e.map(c,(function(t){var r=e.factory.createBindingElement(void 0,void 0,x(t),e.isRestParameter(t)&&m(t)?e.factory.createArrayLiteralExpression():t.initializer);e.suppressLeadingAndTrailingTrivia(r),t.initializer&&r.initializer&&e.copyComments(t.initializer,r.initializer);return r})),l=e.factory.createObjectBindingPattern(u),_=(i=c,a=e.map(i,g),e.addEmitFlags(e.factory.createTypeLiteralNode(a),1));e.every(c,m)&&(o=e.factory.createObjectLiteralExpression());var d=e.factory.createParameterDeclaration(void 0,void 0,void 0,l,void 0,_,o);if(y(t.parameters)){var p=t.parameters[0],f=e.factory.createParameterDeclaration(void 0,void 0,void 0,p.name,void 0,p.type);return e.suppressLeadingAndTrailingTrivia(f.name),e.copyComments(p.name,f.name),p.type&&(e.suppressLeadingAndTrailingTrivia(f.type),e.copyComments(p.type,f.type)),e.factory.createNodeArray([f,d])}return e.factory.createNodeArray([d]);function g(t){var i,a,o=t.type;o||!t.initializer&&!e.isRestParameter(t)||(i=t,a=s.getTypeAtLocation(i),o=e.getTypeNodeIfAccessible(a,i,r,n));var c=e.factory.createPropertySignature(void 0,x(t),m(t)?e.factory.createToken(57):t.questionToken,o);return e.suppressLeadingAndTrailingTrivia(c),e.copyComments(t.name,c.name),t.type&&c.type&&e.copyComments(t.type,c.type),c}function m(t){if(e.isRestParameter(t)){var r=s.getTypeAtLocation(t);return!s.isTupleType(r)}return s.isOptionalParameter(t)}}function x(t){return e.getTextOfIdentifierOrLiteral(t.name)}t.registerRefactor(n,{kinds:[a.kind],getEditsForAction:function(t,r){e.Debug.assert(r===n,"Unexpected action name");var i=t.file,a=t.startPosition,f=t.program,g=t.cancellationToken,m=t.host,y=d(i,a,f.getTypeChecker());if(!y||!g)return;var v=function(t,r,n){var i=function(t){switch(t.kind){case 251:return t.name?[t.name]:[e.Debug.checkDefined(e.findModifier(t,87),"Nameless function declaration should be a default export")];case 165:return[t.name];case 166:var r=e.Debug.checkDefined(e.findChildOfKind(t,132,t.getSourceFile()),"Constructor declaration should have constructor keyword");return 221===t.parent.kind?[t.parent.parent.name,r]:[r];case 209:return[t.parent.name];case 208:return t.name?[t.name,t.parent.name]:[t.parent.name];default:return e.Debug.assertNever(t,"Unexpected function declaration kind "+t.kind)}}(t),a=e.isConstructorDeclaration(t)?function(t){switch(t.parent.kind){case 252:var r=t.parent;return r.name?[r.name]:[e.Debug.checkDefined(e.findModifier(r,87),"Nameless class declaration should be a default export")];case 221:var n=t.parent,i=t.parent.parent,a=n.name;return a?[a,i.name]:[i.name]}}(t):[],d=e.deduplicate(__spreadArray(__spreadArray([],i),a),e.equateValues),f=r.getTypeChecker(),g=m(e.flatMap(d,(function(t){return e.FindAllReferences.getReferenceEntriesForNode(-1,t,r,r.getSourceFiles(),n)})));e.every(g.declarations,(function(t){return e.contains(d,t)}))||(g.valid=!1);return g;function m(r){for(var n={accessExpressions:[],typeUsages:[]},d={functionCalls:[],declarations:[],classReferences:n,valid:!0},g=e.map(i,y),m=e.map(a,y),v=e.isConstructorDeclaration(t),h=e.map(i,(function(e){return o(e,f)})),b=0,x=r;b0;){var o=i.shift();e.copyTrailingComments(t[o],a,r,3,!1),n(o,a)}}}(n,r,a),s=_(0,n),c=s[0],u=s[1],l=s[2];if(c===n.length){var p=e.factory.createNoSubstitutionTemplateLiteral(u);return o(l,p),p}var f=[],g=e.factory.createTemplateHead(u);o(l,g);for(var m,y=function(t){var r=function(t){e.isParenthesizedExpression(t)&&(d(t),t=t.expression);return t}(n[t]);a(t,r);var i=_(t+1,n),s=i[0],c=i[1],u=i[2],l=(t=s-1)===n.length-1;if(e.isTemplateExpression(r)){var p=e.map(r.templateSpans,(function(t,n){d(t);var i=r.templateSpans[n+1],a=t.literal.text+(i?"":c);return e.factory.createTemplateSpan(t.expression,l?e.factory.createTemplateTail(a):e.factory.createTemplateMiddle(a))}));f.push.apply(f,p)}else{var g=l?e.factory.createTemplateTail(c):e.factory.createTemplateMiddle(c);o(u,g),f.push(e.factory.createTemplateSpan(r,g))}m=t},v=c;v1)return t.getUnionType(e.mapDefined(n,(function(e){return e.getReturnType()})))}var i=t.getSignatureFromDeclaration(r);if(i)return t.getReturnTypeOfSignature(i)}(o,i);if(!c)return{error:e.getLocaleSpecificMessage(e.Diagnostics.Could_not_determine_function_return_type)};var u=o.typeToTypeNode(c,i,1);return u?{declaration:i,returnTypeNode:u}:void 0}}function s(e){switch(e.kind){case 251:case 208:case 209:case 165:return!0;default:return!1}}t.registerRefactor(n,{kinds:[a.kind],getEditsForAction:function(r){var n=o(r);if(n&&!t.isRefactorErrorInfo(n)){return{renameFilename:void 0,renameLocation:void 0,edits:e.textChanges.ChangeTracker.with(r,(function(e){return e.tryInsertTypeAnnotation(r.file,n.declaration,n.returnTypeNode)}))}}return},getAvailableActions:function(r){var s=o(r);if(!s)return e.emptyArray;if(!t.isRefactorErrorInfo(s))return[{name:n,description:i,actions:[a]}];if(r.preferences.provideRefactorNotApplicableReason)return[{name:n,description:i,actions:[__assign(__assign({},a),{notApplicableReason:s.error})]}];return e.emptyArray}})}(t.inferFunctionReturnType||(t.inferFunctionReturnType={}))}(e.refactor||(e.refactor={}))}(ts||(ts={})),function(e){function t(t,n,i,a){var u=e.isNodeKind(t)?new r(t,n,i):78===t?new s(78,n,i):79===t?new c(79,n,i):new o(t,n,i);return u.parent=a,u.flags=25358336&a.flags,u}e.servicesVersion="0.8";var r=function(){function r(e,t,r){this.pos=t,this.end=r,this.flags=0,this.modifierFlagsCache=0,this.transformFlags=0,this.parent=void 0,this.kind=e}return r.prototype.assertHasRealPosition=function(t){e.Debug.assert(!e.positionIsSynthesized(this.pos)&&!e.positionIsSynthesized(this.end),t||"Node must have a real position for this operation")},r.prototype.getSourceFile=function(){return e.getSourceFileOfNode(this)},r.prototype.getStart=function(t,r){return this.assertHasRealPosition(),e.getTokenPosOfNode(this,t,r)},r.prototype.getFullStart=function(){return this.assertHasRealPosition(),this.pos},r.prototype.getEnd=function(){return this.assertHasRealPosition(),this.end},r.prototype.getWidth=function(e){return this.assertHasRealPosition(),this.getEnd()-this.getStart(e)},r.prototype.getFullWidth=function(){return this.assertHasRealPosition(),this.end-this.pos},r.prototype.getLeadingTriviaWidth=function(e){return this.assertHasRealPosition(),this.getStart(e)-this.pos},r.prototype.getFullText=function(e){return this.assertHasRealPosition(),(e||this.getSourceFile()).text.substring(this.pos,this.end)},r.prototype.getText=function(e){return this.assertHasRealPosition(),e||(e=this.getSourceFile()),e.text.substring(this.getStart(e),this.getEnd())},r.prototype.getChildCount=function(e){return this.getChildren(e).length},r.prototype.getChildAt=function(e,t){return this.getChildren(t)[e]},r.prototype.getChildren=function(r){return this.assertHasRealPosition("Node without a real position cannot be scanned and thus has no token nodes - use forEachChild and collect the result if that's fine"),this._children||(this._children=function(r,i){if(!e.isNodeKind(r.kind))return e.emptyArray;var a=[];if(e.isJSDocCommentContainingNode(r))return r.forEachChild((function(e){a.push(e)})),a;e.scanner.setText((i||r.getSourceFile()).text);var o=r.pos,s=function(e){n(a,o,e.pos,r),a.push(e),o=e.end},c=function(e){n(a,o,e.pos,r),a.push(function(e,r){var i=t(334,e.pos,e.end,r);i._children=[];for(var a=e.pos,o=0,s=e;o333}));return n.kind<157?n:n.getFirstToken(t)}},r.prototype.getLastToken=function(t){this.assertHasRealPosition();var r=this.getChildren(t),n=e.lastOrUndefined(r);if(n)return n.kind<157?n:n.getLastToken(t)},r.prototype.forEachChild=function(t,r){return e.forEachChild(this,t,r)},r}();function n(r,n,i,a){for(e.scanner.setTextPos(n);n=n.length&&(t=this.getEnd()),t||(t=n[r+1]-1);var i=this.getFullText();return"\n"===i[t]&&"\r"===i[t-1]?t-1:t},r.prototype.getNamedDeclarations=function(){return this.namedDeclarations||(this.namedDeclarations=this.computeNamedDeclarations()),this.namedDeclarations},r.prototype.computeNamedDeclarations=function(){var t=e.createMultiMap();return this.forEachChild((function i(a){switch(a.kind){case 251:case 208:case 165:case 164:var o=a,s=n(o);if(s){var c=function(e){var r=t.get(e);r||t.set(e,r=[]);return r}(s),u=e.lastOrUndefined(c);u&&o.parent===u.parent&&o.symbol===u.symbol?o.body&&!u.body&&(c[c.length-1]=o):c.push(o)}e.forEachChild(a,i);break;case 252:case 221:case 253:case 254:case 255:case 256:case 260:case 270:case 265:case 262:case 263:case 167:case 168:case 177:r(a),e.forEachChild(a,i);break;case 160:if(!e.hasSyntacticModifier(a,92))break;case 249:case 198:var l=a;if(e.isBindingPattern(l.name)){e.forEachChild(l.name,i);break}l.initializer&&i(l.initializer);case 291:case 163:case 162:r(a);break;case 267:var _=a;_.exportClause&&(e.isNamedExports(_.exportClause)?e.forEach(_.exportClause.elements,i):i(_.exportClause.name));break;case 261:var d=a.importClause;d&&(d.name&&r(d.name),d.namedBindings&&(263===d.namedBindings.kind?r(d.namedBindings):e.forEach(d.namedBindings.elements,i)));break;case 216:0!==e.getAssignmentDeclarationKind(a)&&r(a);default:e.forEachChild(a,i)}})),t;function r(e){var r=n(e);r&&t.add(r,e)}function n(t){var r=e.getNonAssignedNameOfDeclaration(t);return r&&(e.isComputedPropertyName(r)&&e.isPropertyAccessExpression(r.expression)?r.expression.name.text:e.isPropertyName(r)?e.getNameFromPropertyName(r):void 0)}},r}(r),g=function(){function t(e,t,r){this.fileName=e,this.text=t,this.skipTrivia=r}return t.prototype.getLineAndCharacterOfPosition=function(t){return e.getLineAndCharacterOfPosition(this,t)},t}();function m(t){var r=!0;for(var n in t)if(e.hasProperty(t,n)&&!y(n)){r=!1;break}if(r)return t;var i={};for(var n in t){if(e.hasProperty(t,n))i[y(n)?n:n.charAt(0).toLowerCase()+n.substr(1)]=t[n]}return i}function y(e){return!e.length||e.charAt(0)===e.charAt(0).toLowerCase()}function v(){return{target:1,jsx:1}}e.toEditorSettings=m,e.displayPartsToString=function(t){return t?e.map(t,(function(e){return e.text})).join(""):""},e.getDefaultCompilerOptions=v,e.getSupportedCodeFixes=function(){return e.codefix.getSupportedErrorCodes()};var h=function(){function t(t,r){this.host=t,this.currentDirectory=t.getCurrentDirectory(),this.fileNameToEntry=new e.Map;for(var n=0,i=t.getScriptFileNames();n=this.throttleWaitMilliseconds&&(this.lastCancellationCheckTime=t,this.hostCancellationToken.isCancellationRequested())},t.prototype.throwIfCancellationRequested=function(){if(this.isCancellationRequested())throw null===e.tracing||void 0===e.tracing||e.tracing.instant("session","cancellationThrown",{kind:"ThrottledCancellationToken"}),new e.OperationCanceledException},t}();e.ThrottledCancellationToken=E;var k=["getSyntacticDiagnostics","getSemanticDiagnostics","getSuggestionDiagnostics","getCompilerOptionsDiagnostics","getSemanticClassifications","getEncodedSemanticClassifications","getCodeFixesAtPosition","getCombinedCodeFix","applyCodeActionCommand","organizeImports","getEditsForFileRename","getEmitOutput","getApplicableRefactors","getEditsForRefactor","prepareCallHierarchy","provideCallHierarchyIncomingCalls","provideCallHierarchyOutgoingCalls"],N=__spreadArray(__spreadArray([],k),["getCompletionsAtPosition","getCompletionEntryDetails","getCompletionEntrySymbol","getSignatureHelpItems","getQuickInfoAtPosition","getDefinitionAtPosition","getDefinitionAndBoundSpan","getImplementationAtPosition","getTypeDefinitionAtPosition","getReferencesAtPosition","findReferences","getOccurrencesAtPosition","getDocumentHighlights","getNavigateToItems","getRenameInfo","findRenameLocations","getApplicableRefactors"]);function A(t){var r=function(t){switch(t.kind){case 10:case 14:case 8:if(158===t.parent.kind)return e.isObjectLiteralElement(t.parent.parent)?t.parent.parent:void 0;case 78:return!e.isObjectLiteralElement(t.parent)||200!==t.parent.parent.kind&&281!==t.parent.parent.kind||t.parent.name!==t?void 0:t.parent}return}(t);return r&&(e.isObjectLiteralExpression(r.parent)||e.isJsxAttributes(r.parent))?r:void 0}function F(t,r,n,i){var a=e.getNameFromPropertyName(t.name);if(!a)return e.emptyArray;if(!n.isUnion())return(o=n.getProperty(a))?[o]:e.emptyArray;var o,s=e.mapDefined(n.types,(function(n){return(e.isObjectLiteralExpression(t.parent)||e.isJsxAttributes(t.parent))&&r.isTypeInvalidDueToUnionDiscriminant(n,t.parent)?void 0:n.getProperty(a)}));if(i&&(0===s.length||s.length===n.types.length)&&(o=n.getProperty(a)))return[o];return 0===s.length?e.mapDefined(n.types,(function(e){return e.getProperty(a)})):s}e.createLanguageService=function(t,r,n){var i,a;void 0===r&&(r=e.createDocumentRegistry(t.useCaseSensitiveFileNames&&t.useCaseSensitiveFileNames(),t.getCurrentDirectory())),a=void 0===n?e.LanguageServiceMode.Semantic:"boolean"==typeof n?n?e.LanguageServiceMode.Syntactic:e.LanguageServiceMode.Semantic:n;var o,s,c=new b(t),u=0,l=t.getCancellationToken?new C(t.getCancellationToken()):T,_=t.getCurrentDirectory();function d(e){t.log&&t.log(e)}!e.localizedDiagnosticMessages&&t.getLocalizedDiagnosticMessages&&e.setLocalizedDiagnosticMessages(t.getLocalizedDiagnosticMessages());var p=e.hostUsesCaseSensitiveFileNames(t),f=e.createGetCanonicalFileName(p),g=e.getSourceMapper({useCaseSensitiveFileNames:function(){return p},getCurrentDirectory:function(){return _},getProgram:x,fileExists:e.maybeBind(t,t.fileExists),readFile:e.maybeBind(t,t.readFile),getDocumentPositionMapper:e.maybeBind(t,t.getDocumentPositionMapper),getSourceFileLike:e.maybeBind(t,t.getSourceFileLike),log:d});function y(e){var t=o.getSourceFile(e);if(!t){var r=new Error("Could not find source file: '"+e+"'.");throw r.ProgramFiles=o.getSourceFiles().map((function(e){return e.fileName})),r}return t}function v(){var n,i;if(e.Debug.assert(a!==e.LanguageServiceMode.Syntactic),t.getProjectVersion){var c=t.getProjectVersion();if(c){if(s===c&&!(null===(n=t.hasChangedAutomaticTypeDirectiveNames)||void 0===n?void 0:n.call(t)))return;s=c}}var m=t.getTypeRootsVersion?t.getTypeRootsVersion():0;u!==m&&(d("TypeRoots version has changed; provide new program"),o=void 0,u=m);var y=new h(t,f),v=y.getRootFileNames(),b=t.hasInvalidatedResolution||e.returnFalse,x=e.maybeBind(t,t.hasChangedAutomaticTypeDirectiveNames),D=y.getProjectReferences();if(!e.isProgramUptoDate(o,v,y.compilationSettings(),(function(e,r){return t.getScriptVersion(r)}),k,b,x,D)){var S=y.compilationSettings(),T={getSourceFile:function(t,r,n,i){return N(t,e.toPath(t,_,f),r,n,i)},getSourceFileByPath:N,getCancellationToken:function(){return l},getCanonicalFileName:f,useCaseSensitiveFileNames:function(){return p},getNewLine:function(){return e.getNewLineCharacter(S,(function(){return e.getNewLineOrDefaultFromHost(t)}))},getDefaultLibFileName:function(e){return t.getDefaultLibFileName(e)},writeFile:e.noop,getCurrentDirectory:function(){return _},fileExists:k,readFile:function(r){var n=e.toPath(r,_,f),i=y&&y.getEntryByPath(n);if(i)return e.isString(i)?void 0:e.getSnapshotText(i.scriptSnapshot);return t.readFile&&t.readFile(r)},getSymlinkCache:e.maybeBind(t,t.getSymlinkCache),realpath:e.maybeBind(t,t.realpath),directoryExists:function(r){return e.directoryProbablyExists(r,t)},getDirectories:function(e){return t.getDirectories?t.getDirectories(e):[]},readDirectory:function(r,n,i,a,o){return e.Debug.checkDefined(t.readDirectory,"'LanguageServiceHost.readDirectory' must be implemented to correctly process 'projectReferences'"),t.readDirectory(r,n,i,a,o)},onReleaseOldSourceFile:function(e,t){var n=r.getKeyForCompilationSettings(t);r.releaseDocumentWithKey(e.resolvedPath,n)},hasInvalidatedResolution:b,hasChangedAutomaticTypeDirectiveNames:x,trace:e.maybeBind(t,t.trace),resolveModuleNames:e.maybeBind(t,t.resolveModuleNames),resolveTypeReferenceDirectives:e.maybeBind(t,t.resolveTypeReferenceDirectives),useSourceOfProjectReferenceRedirect:e.maybeBind(t,t.useSourceOfProjectReferenceRedirect)};null===(i=t.setCompilerHost)||void 0===i||i.call(t,T);var C=r.getKeyForCompilationSettings(S),E={rootNames:v,options:S,host:T,oldProgram:o,projectReferences:D};return o=e.createProgram(E),y=void 0,g.clearCache(),void o.getTypeChecker()}function k(r){var n=e.toPath(r,_,f),i=y&&y.getEntryByPath(n);return i?!e.isString(i):!!t.fileExists&&t.fileExists(r)}function N(t,n,i,a,s){e.Debug.assert(void 0!==y,"getOrCreateSourceFileByPath called after typical CompilerHost lifetime, check the callstack something with a reference to an old host.");var c=y&&y.getOrCreateEntryByPath(t,n);if(c){if(!s){var u=o&&o.getSourceFileByPath(n);if(u)return e.Debug.assertEqual(c.scriptKind,u.scriptKind,"Registered script kind should match new script kind."),r.updateDocumentWithKey(t,n,S,C,c.scriptSnapshot,c.version,c.scriptKind)}return r.acquireDocumentWithKey(t,n,S,C,c.scriptSnapshot,c.version,c.scriptKind)}}}function x(){if(a!==e.LanguageServiceMode.Syntactic)return v(),o;e.Debug.assert(void 0===o)}function D(t,r,n){var i=e.normalizePath(t);e.Debug.assert(n.some((function(t){return e.normalizePath(t)===i}))),v();var a=e.mapDefined(n,(function(e){return o.getSourceFile(e)})),s=y(t);return e.DocumentHighlights.getDocumentHighlights(o,l,s,r,a)}function S(t,r,n,i){v();var a=n&&2===n.use?o.getSourceFiles().filter((function(e){return!o.isSourceFileDefaultLibrary(e)})):o.getSourceFiles();return e.FindAllReferences.findReferenceOrRenameEntries(o,l,a,t,r,n,i)}function E(r){var n=e.getScriptKind(r,t);return 3===n||4===n}var P=new e.Map(e.getEntries(((i={})[18]=19,i[20]=21,i[22]=23,i[31]=29,i)));function w(r){var n;return e.Debug.assertEqual(r.type,"install package"),t.installPackage?t.installPackage({fileName:(n=r.file,e.toPath(n,_,f)),packageName:r.packageName}):Promise.reject("Host does not implement `installPackage`")}function I(e,t){return{lineStarts:e.getLineStarts(),firstLine:e.getLineAndCharacterOfPosition(t.pos).line,lastLine:e.getLineAndCharacterOfPosition(t.end).line}}function O(t,r,n){for(var i=c.getCurrentSourceFile(t),a=[],o=I(i,r),s=o.lineStarts,u=o.firstLine,l=o.lastLine,_=n||!1,d=Number.MAX_VALUE,p=new e.Map,f=new RegExp(/\S/),g=e.isInsideJsxElement(i,s[u]),m=g?"{/*":"//",y=u;y<=l;y++){var v=i.text.substring(s[y],i.getLineEndOfPosition(s[y])),h=f.exec(v);h&&(d=Math.min(d,h.index),p.set(y.toString(),h.index),v.substr(h.index,m.length)!==m&&(_=void 0===n||n))}for(y=u;y<=l;y++)if(u===l||s[y]!==r.end){var b=p.get(y.toString());void 0!==b&&(g?a.push.apply(a,M(t,{pos:s[y]+d,end:i.getLineEndOfPosition(s[y])},_,g)):_?a.push({newText:m,span:{length:0,start:s[y]+d}}):i.text.substr(s[y]+b,m.length)===m&&a.push({newText:"",span:{length:m.length,start:s[y]+b}}))}return a}function M(t,r,n,i){for(var a,o=c.getCurrentSourceFile(t),s=[],u=o.text,l=!1,_=n||!1,d=[],p=r.pos,f=void 0!==i?i:e.isInsideJsxElement(o,p),g=f?"{/*":"/*",m=f?"*/}":"*/",y=f?"\\{\\/\\*":"\\/\\*",v=f?"\\*\\/\\}":"\\*\\/";p<=r.end;){var h=u.substr(p,g.length)===g?g.length:0,b=e.isInComment(o,p+h);if(b)f&&(b.pos--,b.end++),d.push(b.pos),3===b.kind&&d.push(b.end),l=!0,p=b.end+1;else{var x=u.substring(p,r.end).search("("+y+")|("+v+")");_=void 0!==n?n:_||!e.isTextWhiteSpaceLike(u,p,-1===x?r.end:p+x),p=-1===x?r.end+1:p+x+m.length}}if(_||!l){2!==(null===(a=e.isInComment(o,r.pos))||void 0===a?void 0:a.kind)&&e.insertSorted(d,r.pos,e.compareValues),e.insertSorted(d,r.end,e.compareValues);var D=d[0];u.substr(D,g.length)!==g&&s.push({newText:g,span:{length:0,start:D}});for(var S=1;S0?E-m.length:0;h=u.substr(k,m.length)===m?m.length:0;s.push({newText:"",span:{length:g.length,start:E-h}})}return s}function L(t){var r=t.openingElement,n=t.closingElement,i=t.parent;return!e.tagNamesAreEquivalent(r.tagName,n.tagName)||e.isJsxElement(i)&&e.tagNamesAreEquivalent(r.tagName,i.openingElement.tagName)&&L(i)}function R(r,n,i,a,o,s){var c="number"==typeof n?[n,void 0]:[n.pos,n.end];return{file:r,startPosition:c[0],endPosition:c[1],program:x(),host:t,formatContext:e.formatting.getFormatContext(a,t),cancellationToken:l,preferences:i,triggerReason:o,kind:s}}P.forEach((function(e,t){return P.set(e.toString(),Number(t))}));var B={dispose:function(){if(o){var n=r.getKeyForCompilationSettings(o.getCompilerOptions());e.forEach(o.getSourceFiles(),(function(e){return r.releaseDocumentWithKey(e.resolvedPath,n)})),o=void 0}t=void 0},cleanupSemanticCache:function(){o=void 0},getSyntacticDiagnostics:function(e){return v(),o.getSyntacticDiagnostics(y(e),l).slice()},getSemanticDiagnostics:function(t){v();var r=y(t),n=o.getSemanticDiagnostics(r,l);if(!e.getEmitDeclarations(o.getCompilerOptions()))return n.slice();var i=o.getDeclarationDiagnostics(r,l);return __spreadArray(__spreadArray([],n),i)},getSuggestionDiagnostics:function(t){return v(),e.computeSuggestionDiagnostics(y(t),o,l)},getCompilerOptionsDiagnostics:function(){return v(),__spreadArray(__spreadArray([],o.getOptionsDiagnostics(l)),o.getGlobalDiagnostics(l))},getSyntacticClassifications:function(t,r){return e.getSyntacticClassifications(l,c.getCurrentSourceFile(t),r)},getSemanticClassifications:function(t,r,n){return E(t)?(v(),"2020"===(n||"original")?e.classifier.v2020.getSemanticClassifications(o,l,y(t),r):e.getSemanticClassifications(o.getTypeChecker(),l,y(t),o.getClassifiableNames(),r)):[]},getEncodedSyntacticClassifications:function(t,r){return e.getEncodedSyntacticClassifications(l,c.getCurrentSourceFile(t),r)},getEncodedSemanticClassifications:function(t,r,n){return E(t)?(v(),"original"===(n||"original")?e.getEncodedSemanticClassifications(o.getTypeChecker(),l,y(t),o.getClassifiableNames(),r):e.classifier.v2020.getEncodedSemanticClassifications(o,l,y(t),r)):{spans:[],endOfLineState:0}},getCompletionsAtPosition:function(r,n,i){void 0===i&&(i=e.emptyOptions);var a=__assign(__assign({},e.identity(i)),{includeCompletionsForModuleExports:i.includeCompletionsForModuleExports||i.includeExternalModuleExports,includeCompletionsWithInsertText:i.includeCompletionsWithInsertText||i.includeInsertTextCompletions});return v(),e.Completions.getCompletionsAtPosition(t,o,d,y(r),n,a,i.triggerCharacter)},getCompletionEntryDetails:function(r,n,i,a,s,c){return void 0===c&&(c=e.emptyOptions),v(),e.Completions.getCompletionEntryDetails(o,d,y(r),n,{name:i,source:s},t,a&&e.formatting.getFormatContext(a,t),c,l)},getCompletionEntrySymbol:function(r,n,i,a,s){return void 0===s&&(s=e.emptyOptions),v(),e.Completions.getCompletionEntrySymbol(o,d,y(r),n,{name:i,source:a},t,s)},getSignatureHelpItems:function(t,r,n){var i=(void 0===n?e.emptyOptions:n).triggerReason;v();var a=y(t);return e.SignatureHelp.getSignatureHelpItems(o,a,r,i,l)},getQuickInfoAtPosition:function(t,r){v();var n=y(t),i=e.getTouchingPropertyName(n,r);if(i!==n){var a=o.getTypeChecker(),s=function(t){if(e.isNewExpression(t.parent)&&t.pos===t.parent.pos)return t.parent.expression;return t}(i),c=function(t,r){var n=A(t);if(n){var i=r.getContextualType(n.parent),a=i&&F(n,r,i,!1);if(a&&1===a.length)return e.first(a)}return r.getSymbolAtLocation(t)}(s,a);if(!c||a.isUnknownSymbol(c)){var u=function(t,r,n){switch(r.kind){case 78:return!e.isLabelName(r)&&!e.isTagName(r);case 201:case 157:return!e.isInComment(t,n);case 107:case 187:case 105:return!0;default:return!1}}(n,s,r)?a.getTypeAtLocation(s):void 0;return u&&{kind:"",kindModifiers:"",textSpan:e.createTextSpanFromNode(s,n),displayParts:a.runWithCancellationToken(l,(function(t){return e.typeToDisplayParts(t,u,e.getContainerNode(s))})),documentation:u.symbol?u.symbol.getDocumentationComment(a):void 0,tags:u.symbol?u.symbol.getJsDocTags():void 0}}var _=a.runWithCancellationToken(l,(function(t){return e.SymbolDisplay.getSymbolDisplayPartsDocumentationAndSymbolKind(t,c,n,e.getContainerNode(s),s)})),d=_.symbolKind,p=_.displayParts,f=_.documentation,g=_.tags;return{kind:d,kindModifiers:e.SymbolDisplay.getSymbolModifiers(a,c),textSpan:e.createTextSpanFromNode(s,n),displayParts:p,documentation:f,tags:g}}},getDefinitionAtPosition:function(t,r){return v(),e.GoToDefinition.getDefinitionAtPosition(o,y(t),r)},getDefinitionAndBoundSpan:function(t,r){return v(),e.GoToDefinition.getDefinitionAndBoundSpan(o,y(t),r)},getImplementationAtPosition:function(t,r){return v(),e.FindAllReferences.getImplementationsAtPosition(o,l,o.getSourceFiles(),y(t),r)},getTypeDefinitionAtPosition:function(t,r){return v(),e.GoToDefinition.getTypeDefinitionAtPosition(o.getTypeChecker(),y(t),r)},getReferencesAtPosition:function(t,r){return v(),S(e.getTouchingPropertyName(y(t),r),r,{use:1},e.FindAllReferences.toReferenceEntry)},findReferences:function(t,r){return v(),e.FindAllReferences.findReferencedSymbols(o,l,o.getSourceFiles(),y(t),r)},getFileReferences:function(t){return v(),e.FindAllReferences.Core.getReferencesForFileName(t,o,o.getSourceFiles()).map(e.FindAllReferences.toReferenceEntry)},getOccurrencesAtPosition:function(t,r){return e.flatMap(D(t,r,[t]),(function(e){return e.highlightSpans.map((function(t){return __assign(__assign({fileName:e.fileName,textSpan:t.textSpan,isWriteAccess:"writtenReference"===t.kind,isDefinition:!1},t.isInString&&{isInString:!0}),t.contextSpan&&{contextSpan:t.contextSpan})}))}))},getDocumentHighlights:D,getNameOrDottedNameSpan:function(t,r,n){var i=c.getCurrentSourceFile(t),a=e.getTouchingPropertyName(i,r);if(a!==i){switch(a.kind){case 201:case 157:case 10:case 94:case 109:case 103:case 105:case 107:case 187:case 78:break;default:return}for(var o=a;;)if(e.isRightSideOfPropertyAccess(o)||e.isRightSideOfQualifiedName(o))o=o.parent;else{if(!e.isNameOfModuleDeclaration(o))break;if(256!==o.parent.parent.kind||o.parent.parent.body!==o.parent)break;o=o.parent.parent.name}return e.createTextSpanFromBounds(o.getStart(),a.getEnd())}},getBreakpointStatementAtPosition:function(t,r){var n=c.getCurrentSourceFile(t);return e.BreakpointResolver.spanInSourceFileAtLocation(n,r)},getNavigateToItems:function(t,r,n,i){void 0===i&&(i=!1),v();var a=n?[y(n)]:o.getSourceFiles();return e.NavigateTo.getNavigateToItems(a,o.getTypeChecker(),l,t,r,i)},getRenameInfo:function(t,r,n){return v(),e.Rename.getRenameInfo(o,y(t),r,n)},getSmartSelectionRange:function(t,r){return e.SmartSelectionRange.getSmartSelectionRange(r,c.getCurrentSourceFile(t))},findRenameLocations:function(t,r,n,i,a){v();var o=y(t),s=e.getAdjustedRenameLocation(e.getTouchingPropertyName(o,r));if(e.isIdentifier(s)&&(e.isJsxOpeningElement(s.parent)||e.isJsxClosingElement(s.parent))&&e.isIntrinsicJsxName(s.escapedText)){var c=s.parent.parent;return[c.openingElement,c.closingElement].map((function(t){var r=e.createTextSpanFromNode(t.tagName,o);return __assign({fileName:o.fileName,textSpan:r},e.FindAllReferences.toContextSpan(r,o,t.parent))}))}return S(s,r,{findInStrings:n,findInComments:i,providePrefixAndSuffixTextForRename:a,use:2},(function(t,r,n){return e.FindAllReferences.toRenameLocation(t,r,n,a||!1)}))},getNavigationBarItems:function(t){return e.NavigationBar.getNavigationBarItems(c.getCurrentSourceFile(t),l)},getNavigationTree:function(t){return e.NavigationBar.getNavigationTree(c.getCurrentSourceFile(t),l)},getOutliningSpans:function(t){var r=c.getCurrentSourceFile(t);return e.OutliningElementsCollector.collectElements(r,l)},getTodoComments:function(t,r){v();var n=y(t);l.throwIfCancellationRequested();var i,a,o=n.text,s=[];if(r.length>0&&(a=n.fileName,!e.stringContains(a,"/node_modules/")))for(var c=function(){var t="("+/(?:^(?:\s|\*)*)/.source+"|"+/(?:\/\/+\s*)/.source+"|"+/(?:\/\*+\s*)/.source+")",n="(?:"+e.map(r,(function(e){return"("+(e.text.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")+")")})).join("|")+")";return new RegExp(t+"("+n+/(?:.*?)/.source+")"+/(?:$|\*\/)/.source,"gim")}(),u=void 0;u=c.exec(o);){l.throwIfCancellationRequested();e.Debug.assert(u.length===r.length+3);var _=u[1],d=u.index+_.length;if(e.isInComment(n,d)){for(var p=void 0,f=0;f=97&&i<=122||i>=65&&i<=90||i>=48&&i<=57)){var g=u[2];s.push({descriptor:p,message:g,position:d})}}}return s},getBraceMatchingAtPosition:function(t,r){var n=c.getCurrentSourceFile(t),i=e.getTouchingToken(n,r),a=i.getStart(n)===r?P.get(i.kind.toString()):void 0,o=a&&e.findChildOfKind(i.parent,a,n);return o?[e.createTextSpanFromNode(i,n),e.createTextSpanFromNode(o,n)].sort((function(e,t){return e.start-t.start})):e.emptyArray},getIndentationAtPosition:function(t,r,n){var i=e.timestamp(),a=m(n),o=c.getCurrentSourceFile(t);d("getIndentationAtPosition: getCurrentSourceFile: "+(e.timestamp()-i)),i=e.timestamp();var s=e.formatting.SmartIndenter.getIndentation(r,o,a);return d("getIndentationAtPosition: computeIndentation : "+(e.timestamp()-i)),s},getFormattingEditsForRange:function(r,n,i,a){var o=c.getCurrentSourceFile(r);return e.formatting.formatSelection(n,i,o,e.formatting.getFormatContext(m(a),t))},getFormattingEditsForDocument:function(r,n){return e.formatting.formatDocument(c.getCurrentSourceFile(r),e.formatting.getFormatContext(m(n),t))},getFormattingEditsAfterKeystroke:function(r,n,i,a){var o=c.getCurrentSourceFile(r),s=e.formatting.getFormatContext(m(a),t);if(!e.isInComment(o,n))switch(i){case"{":return e.formatting.formatOnOpeningCurly(n,o,s);case"}":return e.formatting.formatOnClosingCurly(n,o,s);case";":return e.formatting.formatOnSemicolon(n,o,s);case"\n":return e.formatting.formatOnEnter(n,o,s)}return[]},getDocCommentTemplateAtPosition:function(r,n,i){return e.JsDoc.getDocCommentTemplateAtPosition(e.getNewLineOrDefaultFromHost(t),c.getCurrentSourceFile(r),n,i)},isValidBraceCompletionAtPosition:function(t,r,n){if(60===n)return!1;var i=c.getCurrentSourceFile(t);if(e.isInString(i,r))return!1;if(e.isInsideJsxElementOrAttribute(i,r))return 123===n;if(e.isInTemplateString(i,r))return!1;switch(n){case 39:case 34:case 96:return!e.isInComment(i,r)}return!0},getJsxClosingTagAtPosition:function(t,r){var n=c.getCurrentSourceFile(t),i=e.findPrecedingToken(r,n);if(i){var a=31===i.kind&&e.isJsxOpeningElement(i.parent)?i.parent.parent:e.isJsxText(i)?i.parent:void 0;return a&&L(a)?{newText:""}:void 0}},getSpanOfEnclosingComment:function(t,r,n){var i=c.getCurrentSourceFile(t),a=e.formatting.getRangeOfEnclosingComment(i,r);return!a||n&&3!==a.kind?void 0:e.createTextSpanFromRange(a)},getCodeFixesAtPosition:function(r,n,i,a,s,c){void 0===c&&(c=e.emptyOptions),v();var u=y(r),_=e.createTextSpanFromBounds(n,i),d=e.formatting.getFormatContext(s,t);return e.flatMap(e.deduplicate(a,e.equateValues,e.compareValues),(function(r){return l.throwIfCancellationRequested(),e.codefix.getFixes({errorCode:r,sourceFile:u,span:_,program:o,host:t,cancellationToken:l,formatContext:d,preferences:c})}))},getCombinedCodeFix:function(r,n,i,a){void 0===a&&(a=e.emptyOptions),v(),e.Debug.assert("file"===r.type);var s=y(r.fileName),c=e.formatting.getFormatContext(i,t);return e.codefix.getAllFixes({fixId:n,sourceFile:s,program:o,host:t,cancellationToken:l,formatContext:c,preferences:a})},applyCodeActionCommand:function(t,r){var n="string"==typeof t?r:t;return e.isArray(n)?Promise.all(n.map((function(e){return w(e)}))):w(n)},organizeImports:function(r,n,i){void 0===i&&(i=e.emptyOptions),v(),e.Debug.assert("file"===r.type);var a=y(r.fileName),s=e.formatting.getFormatContext(n,t);return e.OrganizeImports.organizeImports(a,s,t,o,i)},getEditsForFileRename:function(r,n,i,a){return void 0===a&&(a=e.emptyOptions),e.getEditsForFileRename(x(),r,n,t,e.formatting.getFormatContext(i,t),a,g)},getEmitOutput:function(r,n,i){v();var a=y(r),s=t.getCustomTransformers&&t.getCustomTransformers();return e.getFileEmitOutput(o,a,!!n,l,s,i)},getNonBoundSourceFile:function(e){return c.getCurrentSourceFile(e)},getProgram:x,getAutoImportProvider:function(){var e;return null===(e=t.getPackageJsonAutoImportProvider)||void 0===e?void 0:e.call(t)},getApplicableRefactors:function(t,r,n,i,a){void 0===n&&(n=e.emptyOptions),v();var o=y(t);return e.refactor.getApplicableRefactors(R(o,r,n,e.emptyOptions,i,a))},getEditsForRefactor:function(t,r,n,i,a,o){void 0===o&&(o=e.emptyOptions),v();var s=y(t);return e.refactor.getEditsForRefactor(R(s,n,o,r),i,a)},toLineColumnOffset:g.toLineColumnOffset,getSourceMapper:function(){return g},clearSourceMapperCache:function(){return g.clearCache()},prepareCallHierarchy:function(t,r){v();var n=e.CallHierarchy.resolveCallHierarchyDeclaration(o,e.getTouchingPropertyName(y(t),r));return n&&e.mapOneOrMany(n,(function(t){return e.CallHierarchy.createCallHierarchyItem(o,t)}))},provideCallHierarchyIncomingCalls:function(t,r){v();var n=y(t),i=e.firstOrOnly(e.CallHierarchy.resolveCallHierarchyDeclaration(o,0===r?n:e.getTouchingPropertyName(n,r)));return i?e.CallHierarchy.getIncomingCalls(o,i,l):[]},provideCallHierarchyOutgoingCalls:function(t,r){v();var n=y(t),i=e.firstOrOnly(e.CallHierarchy.resolveCallHierarchyDeclaration(o,0===r?n:e.getTouchingPropertyName(n,r)));return i?e.CallHierarchy.getOutgoingCalls(o,i):[]},toggleLineComment:O,toggleMultilineComment:M,commentSelection:function(e,t){var r=I(c.getCurrentSourceFile(e),t);return r.firstLine===r.lastLine&&t.pos!==t.end?M(e,t,!0):O(e,t,!0)},uncommentSelection:function(t,r){var n=c.getCurrentSourceFile(t),i=[],a=r.pos,o=r.end;a===o&&(o+=e.isInsideJsxElement(n,a)?2:1);for(var s=a;s<=o;s++){var u=e.isInComment(n,s);if(u){switch(u.kind){case 2:i.push.apply(i,O(t,{end:u.end,pos:u.pos+1},!1));break;case 3:i.push.apply(i,M(t,{end:u.end,pos:u.pos+1},!1))}s=u.end+1}}return i}};switch(a){case e.LanguageServiceMode.Semantic:break;case e.LanguageServiceMode.PartialSemantic:k.forEach((function(e){return B[e]=function(){throw new Error("LanguageService Operation: "+e+" not allowed in LanguageServiceMode.PartialSemantic")}}));break;case e.LanguageServiceMode.Syntactic:N.forEach((function(e){return B[e]=function(){throw new Error("LanguageService Operation: "+e+" not allowed in LanguageServiceMode.Syntactic")}}));break;default:e.Debug.assertNever(a)}return B},e.getNameTable=function(t){return t.nameTable||function(t){var r=t.nameTable=new e.Map;t.forEachChild((function t(n){if(e.isIdentifier(n)&&!e.isTagName(n)&&n.escapedText||e.isStringOrNumericLiteralLike(n)&&function(t){return e.isDeclarationName(t)||272===t.parent.kind||function(e){return e&&e.parent&&202===e.parent.kind&&e.parent.argumentExpression===e}(t)||e.isLiteralComputedPropertyDeclarationName(t)}(n)){var i=e.getEscapedTextOfIdentifierOrLiteral(n);r.set(i,void 0===r.get(i)?n.pos:-1)}else if(e.isPrivateIdentifier(n)){i=n.escapedText;r.set(i,void 0===r.get(i)?n.pos:-1)}if(e.forEachChild(n,t),e.hasJSDocNodes(n))for(var a=0,o=n.jsDoc;ai){var a=e.findPrecedingToken(n.pos,t);if(!a||t.getLineAndCharacterOfPosition(a.getEnd()).line!==i)return;n=a}if(!(8388608&n.flags))return _(n)}function o(r,n){var i=r.decorators?e.skipTrivia(t.text,r.decorators.end):r.getStart(t);return e.createTextSpanFromBounds(i,(n||r).getEnd())}function s(r,n){return o(r,e.findNextToken(n,n.parent,t))}function c(e,r){return e&&i===t.getLineAndCharacterOfPosition(e.getStart(t)).line?_(e):_(r)}function u(r){return _(e.findPrecedingToken(r.pos,t))}function l(r){return _(e.findNextToken(r,r.parent,t))}function _(r){if(r){var n=r.parent;switch(r.kind){case 232:return v(r.declarationList.declarations[0]);case 249:case 163:case 162:return v(r);case 160:return function t(r){if(e.isBindingPattern(r.name))return D(r.name);if(function(t){return!!t.initializer||void 0!==t.dotDotDotToken||e.hasSyntacticModifier(t,12)}(r))return o(r);var n=r.parent,i=n.parameters.indexOf(r);return e.Debug.assert(-1!==i),0!==i?t(n.parameters[i-1]):_(n.body)}(r);case 251:case 165:case 164:case 167:case 168:case 166:case 208:case 209:return function(e){if(!e.body)return;if(h(e))return o(e);return _(e.body)}(r);case 230:if(e.isFunctionBlock(r))return function(e){var t=e.statements.length?e.statements[0]:e.getLastToken();if(h(e.parent))return c(e.parent,t);return _(t)}(r);case 257:return b(r);case 287:return b(r.block);case 233:return o(r.expression);case 242:return o(r.getChildAt(0),r.expression);case 236:return s(r,r.expression);case 235:return _(r.statement);case 248:return o(r.getChildAt(0));case 234:return s(r,r.expression);case 245:return _(r.statement);case 241:case 240:return o(r.getChildAt(0),r.label);case 237:return function(e){if(e.initializer)return x(e);if(e.condition)return o(e.condition);if(e.incrementor)return o(e.incrementor)}(r);case 238:return s(r,r.expression);case 239:return x(r);case 244:return s(r,r.expression);case 284:case 285:return _(r.statements[0]);case 247:return b(r.tryBlock);case 246:case 266:return o(r,r.expression);case 260:return o(r,r.moduleReference);case 261:case 267:return o(r,r.moduleSpecifier);case 256:if(1!==e.getModuleInstanceState(r))return;case 252:case 255:case 291:case 198:return o(r);case 243:return _(r.statement);case 161:return m=n.decorators,e.createTextSpanFromBounds(e.skipTrivia(t.text,m.pos),m.end);case 196:case 197:return D(r);case 253:case 254:return;case 26:case 1:return c(e.findPrecedingToken(r.pos,t));case 27:return u(r);case 18:return function(r){switch(r.parent.kind){case 255:var n=r.parent;return c(e.findPrecedingToken(r.pos,t,r.parent),n.members.length?n.members[0]:n.getLastToken(t));case 252:var i=r.parent;return c(e.findPrecedingToken(r.pos,t,r.parent),i.members.length?i.members[0]:i.getLastToken(t));case 258:return c(r.parent.parent,r.parent.clauses[0])}return _(r.parent)}(r);case 19:return function(t){switch(t.parent.kind){case 257:if(1!==e.getModuleInstanceState(t.parent.parent))return;case 255:case 252:return o(t);case 230:if(e.isFunctionBlock(t.parent))return o(t);case 287:return _(e.lastOrUndefined(t.parent.statements));case 258:var r=t.parent,n=e.lastOrUndefined(r.clauses);return n?_(e.lastOrUndefined(n.statements)):void 0;case 196:var i=t.parent;return _(e.lastOrUndefined(i.elements)||i);default:if(e.isArrayLiteralOrObjectLiteralDestructuringPattern(t.parent)){var a=t.parent;return o(e.lastOrUndefined(a.properties)||a)}return _(t.parent)}}(r);case 23:return function(t){switch(t.parent.kind){case 197:var r=t.parent;return o(e.lastOrUndefined(r.elements)||r);default:if(e.isArrayLiteralOrObjectLiteralDestructuringPattern(t.parent)){var n=t.parent;return o(e.lastOrUndefined(n.elements)||n)}return _(t.parent)}}(r);case 20:return function(e){if(235===e.parent.kind||203===e.parent.kind||204===e.parent.kind)return u(e);if(207===e.parent.kind)return l(e);return _(e.parent)}(r);case 21:return function(e){switch(e.parent.kind){case 208:case 251:case 209:case 165:case 164:case 167:case 168:case 166:case 236:case 235:case 237:case 239:case 203:case 204:case 207:return u(e);default:return _(e.parent)}}(r);case 58:return function(t){if(e.isFunctionLike(t.parent)||288===t.parent.kind||160===t.parent.kind)return u(t);return _(t.parent)}(r);case 31:case 29:return function(e){if(206===e.parent.kind)return l(e);return _(e.parent)}(r);case 114:return function(e){if(235===e.parent.kind)return s(e,e.parent.expression);return _(e.parent)}(r);case 90:case 82:case 95:return l(r);case 156:return function(e){if(239===e.parent.kind)return l(e);return _(e.parent)}(r);default:if(e.isArrayLiteralOrObjectLiteralDestructuringPattern(r))return S(r);if((78===r.kind||220===r.kind||288===r.kind||289===r.kind)&&e.isArrayLiteralOrObjectLiteralDestructuringPattern(n))return o(r);if(216===r.kind){var i=r,a=i.left,d=i.operatorToken;if(e.isArrayLiteralOrObjectLiteralDestructuringPattern(a))return S(a);if(62===d.kind&&e.isArrayLiteralOrObjectLiteralDestructuringPattern(r.parent))return o(r);if(27===d.kind)return _(a)}if(e.isExpressionNode(r))switch(n.kind){case 235:return u(r);case 161:return _(r.parent);case 237:case 239:return o(r);case 216:if(27===r.parent.operatorToken.kind)return o(r);break;case 209:if(r.parent.body===r)return o(r)}switch(r.parent.kind){case 288:if(r.parent.name===r&&!e.isArrayLiteralOrObjectLiteralDestructuringPattern(r.parent.parent))return _(r.parent.initializer);break;case 206:if(r.parent.type===r)return l(r.parent.type);break;case 249:case 160:var p=r.parent,f=p.initializer,g=p.type;if(f===r||g===r||e.isAssignmentOperator(r.kind))return u(r);break;case 216:a=r.parent.left;if(e.isArrayLiteralOrObjectLiteralDestructuringPattern(a)&&r!==a)return u(r);break;default:if(e.isFunctionLike(r.parent)&&r.parent.type===r)return u(r)}return _(r.parent)}}var m;function y(r){return e.isVariableDeclarationList(r.parent)&&r.parent.declarations[0]===r?o(e.findPrecedingToken(r.pos,t,r.parent),r):o(r)}function v(r){if(238===r.parent.parent.kind)return _(r.parent.parent);var n=r.parent;return e.isBindingPattern(r.name)?D(r.name):r.initializer||e.hasSyntacticModifier(r,1)||239===n.parent.kind?y(r):e.isVariableDeclarationList(r.parent)&&r.parent.declarations[0]!==r?_(e.findPrecedingToken(r.pos,t,r.parent)):void 0}function h(t){return e.hasSyntacticModifier(t,1)||252===t.parent.kind&&166!==t.kind}function b(r){switch(r.parent.kind){case 256:if(1!==e.getModuleInstanceState(r.parent))return;case 236:case 234:case 238:return c(r.parent,r.statements[0]);case 237:case 239:return c(e.findPrecedingToken(r.pos,t,r.parent),r.statements[0])}return _(r.statements[0])}function x(e){if(250!==e.initializer.kind)return _(e.initializer);var t=e.initializer;return t.declarations.length>0?_(t.declarations[0]):void 0}function D(t){var r=e.forEach(t.elements,(function(e){return 222!==e.kind?e:void 0}));return r?_(r):198===t.parent.kind?o(t.parent):y(t.parent)}function S(t){e.Debug.assert(197!==t.kind&&196!==t.kind);var r=199===t.kind?t.elements:t.properties,n=e.forEach(r,(function(e){return 222!==e.kind?e:void 0}));return n?_(n):o(216===t.parent.kind?t.parent:t)}}}}(e.BreakpointResolver||(e.BreakpointResolver={}))}(ts||(ts={})),function(e){e.transform=function(t,r,n){var i=[];n=e.fixupCompilerOptions(n,i);var a=e.isArray(t)?t:[t],o=e.transformNodes(void 0,void 0,e.factory,n,a,r,!0);return o.diagnostics=e.concatenate(o.diagnostics,i),o}}(ts||(ts={}));var ts,debugObjectHost=function(){return this}();!function(e){function t(e,t){e&&e.log("*INTERNAL ERROR* - Exception in typescript services: "+t.message)}var r=function(){function t(e){this.scriptSnapshotShim=e}return t.prototype.getText=function(e,t){return this.scriptSnapshotShim.getText(e,t)},t.prototype.getLength=function(){return this.scriptSnapshotShim.getLength()},t.prototype.getChangeRange=function(t){var r=t,n=this.scriptSnapshotShim.getChangeRange(r.scriptSnapshotShim);if(null===n)return null;var i=JSON.parse(n);return e.createTextChangeRange(e.createTextSpan(i.span.start,i.span.length),i.newLength)},t.prototype.dispose=function(){"dispose"in this.scriptSnapshotShim&&this.scriptSnapshotShim.dispose()},t}(),n=function(){function t(t){var r=this;this.shimHost=t,this.loggingEnabled=!1,this.tracingEnabled=!1,"getModuleResolutionsForFile"in this.shimHost&&(this.resolveModuleNames=function(t,n){var i=JSON.parse(r.shimHost.getModuleResolutionsForFile(n));return e.map(t,(function(t){var r=e.getProperty(i,t);return r?{resolvedFileName:r,extension:e.extensionFromPath(r),isExternalLibraryImport:!1}:void 0}))}),"directoryExists"in this.shimHost&&(this.directoryExists=function(e){return r.shimHost.directoryExists(e)}),"getTypeReferenceDirectiveResolutionsForFile"in this.shimHost&&(this.resolveTypeReferenceDirectives=function(t,n){var i=JSON.parse(r.shimHost.getTypeReferenceDirectiveResolutionsForFile(n));return e.map(t,(function(t){return e.getProperty(i,t)}))})}return t.prototype.log=function(e){this.loggingEnabled&&this.shimHost.log(e)},t.prototype.trace=function(e){this.tracingEnabled&&this.shimHost.trace(e)},t.prototype.error=function(e){this.shimHost.error(e)},t.prototype.getProjectVersion=function(){if(this.shimHost.getProjectVersion)return this.shimHost.getProjectVersion()},t.prototype.getTypeRootsVersion=function(){return this.shimHost.getTypeRootsVersion?this.shimHost.getTypeRootsVersion():0},t.prototype.useCaseSensitiveFileNames=function(){return!!this.shimHost.useCaseSensitiveFileNames&&this.shimHost.useCaseSensitiveFileNames()},t.prototype.getCompilationSettings=function(){var e=this.shimHost.getCompilationSettings();if(null===e||""===e)throw Error("LanguageServiceShimHostAdapter.getCompilationSettings: empty compilationSettings");var t=JSON.parse(e);return t.allowNonTsExtensions=!0,t},t.prototype.getScriptFileNames=function(){var e=this.shimHost.getScriptFileNames();return JSON.parse(e)},t.prototype.getScriptSnapshot=function(e){var t=this.shimHost.getScriptSnapshot(e);return t&&new r(t)},t.prototype.getScriptKind=function(e){return"getScriptKind"in this.shimHost?this.shimHost.getScriptKind(e):0},t.prototype.getScriptVersion=function(e){return this.shimHost.getScriptVersion(e)},t.prototype.getLocalizedDiagnosticMessages=function(){var e=this.shimHost.getLocalizedDiagnosticMessages();if(null===e||""===e)return null;try{return JSON.parse(e)}catch(e){return this.log(e.description||"diagnosticMessages.generated.json has invalid JSON format"),null}},t.prototype.getCancellationToken=function(){var t=this.shimHost.getCancellationToken();return new e.ThrottledCancellationToken(t)},t.prototype.getCurrentDirectory=function(){return this.shimHost.getCurrentDirectory()},t.prototype.getDirectories=function(e){return JSON.parse(this.shimHost.getDirectories(e))},t.prototype.getDefaultLibFileName=function(e){return this.shimHost.getDefaultLibFileName(JSON.stringify(e))},t.prototype.readDirectory=function(t,r,n,i,a){var o=e.getFileMatcherPatterns(t,n,i,this.shimHost.useCaseSensitiveFileNames(),this.shimHost.getCurrentDirectory());return JSON.parse(this.shimHost.readDirectory(t,JSON.stringify(r),JSON.stringify(o.basePaths),o.excludePattern,o.includeFilePattern,o.includeDirectoryPattern,a))},t.prototype.readFile=function(e,t){return this.shimHost.readFile(e,t)},t.prototype.fileExists=function(e){return this.shimHost.fileExists(e)},t}();e.LanguageServiceShimHostAdapter=n;var i=function(){function t(e){var t=this;this.shimHost=e,this.useCaseSensitiveFileNames=!!this.shimHost.useCaseSensitiveFileNames&&this.shimHost.useCaseSensitiveFileNames(),"directoryExists"in this.shimHost?this.directoryExists=function(e){return t.shimHost.directoryExists(e)}:this.directoryExists=void 0,"realpath"in this.shimHost?this.realpath=function(e){return t.shimHost.realpath(e)}:this.realpath=void 0}return t.prototype.readDirectory=function(t,r,n,i,a){var o=e.getFileMatcherPatterns(t,n,i,this.shimHost.useCaseSensitiveFileNames(),this.shimHost.getCurrentDirectory());return JSON.parse(this.shimHost.readDirectory(t,JSON.stringify(r),JSON.stringify(o.basePaths),o.excludePattern,o.includeFilePattern,o.includeDirectoryPattern,a))},t.prototype.fileExists=function(e){return this.shimHost.fileExists(e)},t.prototype.readFile=function(e){return this.shimHost.readFile(e)},t.prototype.getDirectories=function(e){return JSON.parse(this.shimHost.getDirectories(e))},t}();function a(e,t,r,n){return o(e,t,!0,r,n)}function o(r,n,i,a,o){try{var s=function(t,r,n,i){var a;i&&(t.log(r),a=e.timestamp());var o=n();if(i){var s=e.timestamp();if(t.log(r+" completed in "+(s-a)+" msec"),e.isString(o)){var c=o;c.length>128&&(c=c.substring(0,128)+"..."),t.log(" result.length="+c.length+", result='"+JSON.stringify(c)+"'")}}return o}(r,n,a,o);return i?JSON.stringify({result:s}):s}catch(i){return i instanceof e.OperationCanceledException?JSON.stringify({canceled:!0}):(t(r,i),i.description=n,JSON.stringify({error:i}))}}e.CoreServicesShimHostAdapter=i;var s=function(){function e(e){this.factory=e,e.registerShim(this)}return e.prototype.dispose=function(e){this.factory.unregisterShim(this)},e}();function c(t,r){return t.map((function(t){return function(t,r){return{message:e.flattenDiagnosticMessageText(t.messageText,r),start:t.start,length:t.length,category:e.diagnosticCategoryName(t),code:t.code,reportsUnnecessary:t.reportsUnnecessary,reportsDeprecated:t.reportsDeprecated}}(t,r)}))}e.realizeDiagnostics=c;var u=function(t){function r(e,r,n){var i=t.call(this,e)||this;return i.host=r,i.languageService=n,i.logPerformance=!1,i.logger=i.host,i}return __extends(r,t),r.prototype.forwardJSONCall=function(e,t){return a(this.logger,e,t,this.logPerformance)},r.prototype.dispose=function(e){this.logger.log("dispose()"),this.languageService.dispose(),this.languageService=null,debugObjectHost&&debugObjectHost.CollectGarbage&&(debugObjectHost.CollectGarbage(),this.logger.log("CollectGarbage()")),this.logger=null,t.prototype.dispose.call(this,e)},r.prototype.refresh=function(e){this.forwardJSONCall("refresh("+e+")",(function(){return null}))},r.prototype.cleanupSemanticCache=function(){var e=this;this.forwardJSONCall("cleanupSemanticCache()",(function(){return e.languageService.cleanupSemanticCache(),null}))},r.prototype.realizeDiagnostics=function(t){return c(t,e.getNewLineOrDefaultFromHost(this.host))},r.prototype.getSyntacticClassifications=function(t,r,n){var i=this;return this.forwardJSONCall("getSyntacticClassifications('"+t+"', "+r+", "+n+")",(function(){return i.languageService.getSyntacticClassifications(t,e.createTextSpan(r,n))}))},r.prototype.getSemanticClassifications=function(t,r,n){var i=this;return this.forwardJSONCall("getSemanticClassifications('"+t+"', "+r+", "+n+")",(function(){return i.languageService.getSemanticClassifications(t,e.createTextSpan(r,n))}))},r.prototype.getEncodedSyntacticClassifications=function(t,r,n){var i=this;return this.forwardJSONCall("getEncodedSyntacticClassifications('"+t+"', "+r+", "+n+")",(function(){return l(i.languageService.getEncodedSyntacticClassifications(t,e.createTextSpan(r,n)))}))},r.prototype.getEncodedSemanticClassifications=function(t,r,n){var i=this;return this.forwardJSONCall("getEncodedSemanticClassifications('"+t+"', "+r+", "+n+")",(function(){return l(i.languageService.getEncodedSemanticClassifications(t,e.createTextSpan(r,n)))}))},r.prototype.getSyntacticDiagnostics=function(e){var t=this;return this.forwardJSONCall("getSyntacticDiagnostics('"+e+"')",(function(){var r=t.languageService.getSyntacticDiagnostics(e);return t.realizeDiagnostics(r)}))},r.prototype.getSemanticDiagnostics=function(e){var t=this;return this.forwardJSONCall("getSemanticDiagnostics('"+e+"')",(function(){var r=t.languageService.getSemanticDiagnostics(e);return t.realizeDiagnostics(r)}))},r.prototype.getSuggestionDiagnostics=function(e){var t=this;return this.forwardJSONCall("getSuggestionDiagnostics('"+e+"')",(function(){return t.realizeDiagnostics(t.languageService.getSuggestionDiagnostics(e))}))},r.prototype.getCompilerOptionsDiagnostics=function(){var e=this;return this.forwardJSONCall("getCompilerOptionsDiagnostics()",(function(){var t=e.languageService.getCompilerOptionsDiagnostics();return e.realizeDiagnostics(t)}))},r.prototype.getQuickInfoAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getQuickInfoAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getQuickInfoAtPosition(e,t)}))},r.prototype.getNameOrDottedNameSpan=function(e,t,r){var n=this;return this.forwardJSONCall("getNameOrDottedNameSpan('"+e+"', "+t+", "+r+")",(function(){return n.languageService.getNameOrDottedNameSpan(e,t,r)}))},r.prototype.getBreakpointStatementAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getBreakpointStatementAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getBreakpointStatementAtPosition(e,t)}))},r.prototype.getSignatureHelpItems=function(e,t,r){var n=this;return this.forwardJSONCall("getSignatureHelpItems('"+e+"', "+t+")",(function(){return n.languageService.getSignatureHelpItems(e,t,r)}))},r.prototype.getDefinitionAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getDefinitionAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getDefinitionAtPosition(e,t)}))},r.prototype.getDefinitionAndBoundSpan=function(e,t){var r=this;return this.forwardJSONCall("getDefinitionAndBoundSpan('"+e+"', "+t+")",(function(){return r.languageService.getDefinitionAndBoundSpan(e,t)}))},r.prototype.getTypeDefinitionAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getTypeDefinitionAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getTypeDefinitionAtPosition(e,t)}))},r.prototype.getImplementationAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getImplementationAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getImplementationAtPosition(e,t)}))},r.prototype.getRenameInfo=function(e,t,r){var n=this;return this.forwardJSONCall("getRenameInfo('"+e+"', "+t+")",(function(){return n.languageService.getRenameInfo(e,t,r)}))},r.prototype.getSmartSelectionRange=function(e,t){var r=this;return this.forwardJSONCall("getSmartSelectionRange('"+e+"', "+t+")",(function(){return r.languageService.getSmartSelectionRange(e,t)}))},r.prototype.findRenameLocations=function(e,t,r,n,i){var a=this;return this.forwardJSONCall("findRenameLocations('"+e+"', "+t+", "+r+", "+n+", "+i+")",(function(){return a.languageService.findRenameLocations(e,t,r,n,i)}))},r.prototype.getBraceMatchingAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getBraceMatchingAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getBraceMatchingAtPosition(e,t)}))},r.prototype.isValidBraceCompletionAtPosition=function(e,t,r){var n=this;return this.forwardJSONCall("isValidBraceCompletionAtPosition('"+e+"', "+t+", "+r+")",(function(){return n.languageService.isValidBraceCompletionAtPosition(e,t,r)}))},r.prototype.getSpanOfEnclosingComment=function(e,t,r){var n=this;return this.forwardJSONCall("getSpanOfEnclosingComment('"+e+"', "+t+")",(function(){return n.languageService.getSpanOfEnclosingComment(e,t,r)}))},r.prototype.getIndentationAtPosition=function(e,t,r){var n=this;return this.forwardJSONCall("getIndentationAtPosition('"+e+"', "+t+")",(function(){var i=JSON.parse(r);return n.languageService.getIndentationAtPosition(e,t,i)}))},r.prototype.getReferencesAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getReferencesAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getReferencesAtPosition(e,t)}))},r.prototype.findReferences=function(e,t){var r=this;return this.forwardJSONCall("findReferences('"+e+"', "+t+")",(function(){return r.languageService.findReferences(e,t)}))},r.prototype.getFileReferences=function(e){var t=this;return this.forwardJSONCall("getFileReferences('"+e+")",(function(){return t.languageService.getFileReferences(e)}))},r.prototype.getOccurrencesAtPosition=function(e,t){var r=this;return this.forwardJSONCall("getOccurrencesAtPosition('"+e+"', "+t+")",(function(){return r.languageService.getOccurrencesAtPosition(e,t)}))},r.prototype.getDocumentHighlights=function(t,r,n){var i=this;return this.forwardJSONCall("getDocumentHighlights('"+t+"', "+r+")",(function(){var a=i.languageService.getDocumentHighlights(t,r,JSON.parse(n)),o=e.toFileNameLowerCase(e.normalizeSlashes(t));return e.filter(a,(function(t){return e.toFileNameLowerCase(e.normalizeSlashes(t.fileName))===o}))}))},r.prototype.getCompletionsAtPosition=function(e,t,r){var n=this;return this.forwardJSONCall("getCompletionsAtPosition('"+e+"', "+t+", "+r+")",(function(){return n.languageService.getCompletionsAtPosition(e,t,r)}))},r.prototype.getCompletionEntryDetails=function(e,t,r,n,i,a){var o=this;return this.forwardJSONCall("getCompletionEntryDetails('"+e+"', "+t+", '"+r+"')",(function(){var s=void 0===n?void 0:JSON.parse(n);return o.languageService.getCompletionEntryDetails(e,t,r,s,i,a)}))},r.prototype.getFormattingEditsForRange=function(e,t,r,n){var i=this;return this.forwardJSONCall("getFormattingEditsForRange('"+e+"', "+t+", "+r+")",(function(){var a=JSON.parse(n);return i.languageService.getFormattingEditsForRange(e,t,r,a)}))},r.prototype.getFormattingEditsForDocument=function(e,t){var r=this;return this.forwardJSONCall("getFormattingEditsForDocument('"+e+"')",(function(){var n=JSON.parse(t);return r.languageService.getFormattingEditsForDocument(e,n)}))},r.prototype.getFormattingEditsAfterKeystroke=function(e,t,r,n){var i=this;return this.forwardJSONCall("getFormattingEditsAfterKeystroke('"+e+"', "+t+", '"+r+"')",(function(){var a=JSON.parse(n);return i.languageService.getFormattingEditsAfterKeystroke(e,t,r,a)}))},r.prototype.getDocCommentTemplateAtPosition=function(e,t,r){var n=this;return this.forwardJSONCall("getDocCommentTemplateAtPosition('"+e+"', "+t+")",(function(){return n.languageService.getDocCommentTemplateAtPosition(e,t,r)}))},r.prototype.getNavigateToItems=function(e,t,r){var n=this;return this.forwardJSONCall("getNavigateToItems('"+e+"', "+t+", "+r+")",(function(){return n.languageService.getNavigateToItems(e,t,r)}))},r.prototype.getNavigationBarItems=function(e){var t=this;return this.forwardJSONCall("getNavigationBarItems('"+e+"')",(function(){return t.languageService.getNavigationBarItems(e)}))},r.prototype.getNavigationTree=function(e){var t=this;return this.forwardJSONCall("getNavigationTree('"+e+"')",(function(){return t.languageService.getNavigationTree(e)}))},r.prototype.getOutliningSpans=function(e){var t=this;return this.forwardJSONCall("getOutliningSpans('"+e+"')",(function(){return t.languageService.getOutliningSpans(e)}))},r.prototype.getTodoComments=function(e,t){var r=this;return this.forwardJSONCall("getTodoComments('"+e+"')",(function(){return r.languageService.getTodoComments(e,JSON.parse(t))}))},r.prototype.prepareCallHierarchy=function(e,t){var r=this;return this.forwardJSONCall("prepareCallHierarchy('"+e+"', "+t+")",(function(){return r.languageService.prepareCallHierarchy(e,t)}))},r.prototype.provideCallHierarchyIncomingCalls=function(e,t){var r=this;return this.forwardJSONCall("provideCallHierarchyIncomingCalls('"+e+"', "+t+")",(function(){return r.languageService.provideCallHierarchyIncomingCalls(e,t)}))},r.prototype.provideCallHierarchyOutgoingCalls=function(e,t){var r=this;return this.forwardJSONCall("provideCallHierarchyOutgoingCalls('"+e+"', "+t+")",(function(){return r.languageService.provideCallHierarchyOutgoingCalls(e,t)}))},r.prototype.getEmitOutput=function(e){var t=this;return this.forwardJSONCall("getEmitOutput('"+e+"')",(function(){var r=t.languageService.getEmitOutput(e),n=r.diagnostics,i=__rest(r,["diagnostics"]);return __assign(__assign({},i),{diagnostics:t.realizeDiagnostics(n)})}))},r.prototype.getEmitOutputObject=function(e){var t=this;return o(this.logger,"getEmitOutput('"+e+"')",!1,(function(){return t.languageService.getEmitOutput(e)}),this.logPerformance)},r.prototype.toggleLineComment=function(e,t){var r=this;return this.forwardJSONCall("toggleLineComment('"+e+"', '"+JSON.stringify(t)+"')",(function(){return r.languageService.toggleLineComment(e,t)}))},r.prototype.toggleMultilineComment=function(e,t){var r=this;return this.forwardJSONCall("toggleMultilineComment('"+e+"', '"+JSON.stringify(t)+"')",(function(){return r.languageService.toggleMultilineComment(e,t)}))},r.prototype.commentSelection=function(e,t){var r=this;return this.forwardJSONCall("commentSelection('"+e+"', '"+JSON.stringify(t)+"')",(function(){return r.languageService.commentSelection(e,t)}))},r.prototype.uncommentSelection=function(e,t){var r=this;return this.forwardJSONCall("uncommentSelection('"+e+"', '"+JSON.stringify(t)+"')",(function(){return r.languageService.uncommentSelection(e,t)}))},r}(s);function l(e){return{spans:e.spans.join(","),endOfLineState:e.endOfLineState}}var _=function(t){function r(r,n){var i=t.call(this,r)||this;return i.logger=n,i.logPerformance=!1,i.classifier=e.createClassifier(),i}return __extends(r,t),r.prototype.getEncodedLexicalClassifications=function(e,t,r){var n=this;return void 0===r&&(r=!1),a(this.logger,"getEncodedLexicalClassifications",(function(){return l(n.classifier.getEncodedLexicalClassifications(e,t,r))}),this.logPerformance)},r.prototype.getClassificationsForLine=function(e,t,r){void 0===r&&(r=!1);for(var n=this.classifier.getClassificationsForLine(e,t,r),i="",a=0,o=n.entries;a=1&&arguments.length<=3?e.factory.createVariableDeclaration(t,void 0,r,n):e.Debug.fail("Argument count mismatch")}),t),e.updateVariableDeclaration=e.Debug.deprecate((function(t,r,n,i,a){return 5===arguments.length?e.factory.updateVariableDeclaration(t,r,n,i,a):4===arguments.length?e.factory.updateVariableDeclaration(t,r,t.exclamationToken,n,i):e.Debug.fail("Argument count mismatch")}),t),e.createImportClause=e.Debug.deprecate((function(t,r,n){return void 0===n&&(n=!1),e.factory.createImportClause(n,t,r)}),t),e.updateImportClause=e.Debug.deprecate((function(t,r,n,i){return e.factory.updateImportClause(t,i,r,n)}),t),e.createExportDeclaration=e.Debug.deprecate((function(t,r,n,i,a){return void 0===a&&(a=!1),e.factory.createExportDeclaration(t,r,a,n,i)}),t),e.updateExportDeclaration=e.Debug.deprecate((function(t,r,n,i,a,o){return e.factory.updateExportDeclaration(t,r,n,o,i,a)}),t),e.createJSDocParamTag=e.Debug.deprecate((function(t,r,n,i){return e.factory.createJSDocParameterTag(void 0,t,r,n,!1,i)}),t),e.createComma=e.Debug.deprecate((function(t,r){return e.factory.createComma(t,r)}),t),e.createLessThan=e.Debug.deprecate((function(t,r){return e.factory.createLessThan(t,r)}),t),e.createAssignment=e.Debug.deprecate((function(t,r){return e.factory.createAssignment(t,r)}),t),e.createStrictEquality=e.Debug.deprecate((function(t,r){return e.factory.createStrictEquality(t,r)}),t),e.createStrictInequality=e.Debug.deprecate((function(t,r){return e.factory.createStrictInequality(t,r)}),t),e.createAdd=e.Debug.deprecate((function(t,r){return e.factory.createAdd(t,r)}),t),e.createSubtract=e.Debug.deprecate((function(t,r){return e.factory.createSubtract(t,r)}),t),e.createLogicalAnd=e.Debug.deprecate((function(t,r){return e.factory.createLogicalAnd(t,r)}),t),e.createLogicalOr=e.Debug.deprecate((function(t,r){return e.factory.createLogicalOr(t,r)}),t),e.createPostfixIncrement=e.Debug.deprecate((function(t){return e.factory.createPostfixIncrement(t)}),t),e.createLogicalNot=e.Debug.deprecate((function(t){return e.factory.createLogicalNot(t)}),t),e.createNode=e.Debug.deprecate((function(t,r,n){return void 0===r&&(r=0),void 0===n&&(n=0),e.setTextRangePosEnd(297===t?e.parseBaseNodeFactory.createBaseSourceFileNode(t):78===t?e.parseBaseNodeFactory.createBaseIdentifierNode(t):79===t?e.parseBaseNodeFactory.createBasePrivateIdentifierNode(t):e.isNodeKind(t)?e.parseBaseNodeFactory.createBaseNode(t):e.parseBaseNodeFactory.createBaseTokenNode(t),r,n)}),{since:"4.0",warnAfter:"4.1",message:"Use an appropriate `factory` method instead."}),e.getMutableClone=e.Debug.deprecate((function(t){var r=e.factory.cloneNode(t);return e.setTextRange(r,t),e.setParent(r,t.parent),r}),{since:"4.0",warnAfter:"4.1",message:"Use an appropriate `factory.update...` method instead, use `setCommentRange` or `setSourceMapRange`, and avoid setting `parent`."}),e.isTypeAssertion=e.Debug.deprecate((function(e){return 206===e.kind}),{since:"4.0",warnAfter:"4.1",message:"Use `isTypeAssertionExpression` instead."})}(ts||(ts={})); \ No newline at end of file diff --git a/src/packages/CodePad/main.ts b/src/packages/CodePad/main.ts index 8e70c80..bca85d1 100644 --- a/src/packages/CodePad/main.ts +++ b/src/packages/CodePad/main.ts @@ -1381,7 +1381,8 @@ namespace OS { "os://scripts/ace/ace.js", "os://scripts/ace/ext-language_tools.js", "os://scripts/ace/ext-modelist.js", - "os://scripts/ace/ext-themelist.js" + "os://scripts/ace/ext-themelist.js", + "pkg://libantosdk/main.js" ]; /**