@markuplint/i18n 1.2.0 → 2.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/$schema.json CHANGED
@@ -3,74 +3,130 @@
3
3
  "additionalProperties": false,
4
4
  "properties": {
5
5
  "$schema": { "type": "string" },
6
+ "listFormat": {
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "required": ["quoteStart", "quoteEnd", "separator"],
10
+ "properties": {
11
+ "quoteStart": { "type": "string" },
12
+ "quoteEnd": { "type": "string" },
13
+ "separator": { "type": "string" }
14
+ }
15
+ },
6
16
  "keywords": {
7
17
  "type": "object",
8
18
  "additionalProperties": false,
9
19
  "properties": {
10
20
  "tag": { "type": "string" },
11
21
  "tag name": { "type": "string" },
22
+ "tag names": { "type": "string" },
23
+ "element": { "type": "string" },
24
+ "html elements": { "type": "string" },
12
25
  "attribute": { "type": "string" },
13
26
  "attributes": { "type": "string" },
14
27
  "attribute name": { "type": "string" },
28
+ "attribute names": { "type": "string" },
15
29
  "attribute value": { "type": "string" },
16
- "attribute id value": { "type": "string" },
17
- "element": { "type": "string" },
18
- "html elements": { "type": "string" },
19
30
  "class name": { "type": "string" },
20
- "quote": { "type": "string" },
21
- "double quotation mark": { "type": "string" },
22
- "single quotation mark": { "type": "string" },
31
+ "role": { "type": "string" },
32
+ "the abstract role": { "type": "string" },
33
+ "the implicit role": { "type": "string" },
34
+ "aria state/property": { "type": "string" },
35
+ "global state/property": { "type": "string" },
36
+ "value": { "type": "string" },
37
+ "default value": { "type": "string" },
38
+ "content": { "type": "string" },
39
+ "contents": { "type": "string" },
40
+ "descendant": { "type": "string" },
41
+ "semantics": { "type": "string" },
42
+ "accessible name": { "type": "string" },
23
43
  "lowercase": { "type": "string" },
24
44
  "uppercase": { "type": "string" },
25
45
  "illegal characters": { "type": "string" },
26
- "escape in character reference": { "type": "string" },
27
- "declarate": { "type": "string" },
28
- "deprecated": { "type": "string" },
29
- "obsolete": { "type": "string" },
30
- "indentation": { "type": "string" },
31
- "tab": { "type": "string" },
32
- "space": { "type": "string" },
33
- "break line": { "type": "string" },
34
- "line break": { "type": "string" },
35
- "equal sign": { "type": "string" },
46
+ "empty string": { "type": "string" },
47
+ "zero": { "type": "string" },
48
+ "one": { "type": "string" },
49
+ "integer": { "type": "string" },
50
+ "non-negative integer": { "type": "string" },
51
+ "floating-point number": { "type": "string" },
52
+ "angle": { "type": "string" },
53
+ "alpha channel value": { "type": "string" },
36
54
  "doctype": { "type": "string" },
37
55
  "obsolete doctype": { "type": "string" },
56
+ "hash-name reference": { "type": "string" },
38
57
  "top level": { "type": "string" },
58
+ "declarate": { "type": "string" },
39
59
  "the html specification": { "type": "string" },
40
- "settings": { "type": "string" }
60
+ "the svg specification": { "type": "string" },
61
+ "the wai-aria specification": { "type": "string" },
62
+ "aria in html specification": { "type": "string" },
63
+ "deprecated": { "type": "string" },
64
+ "c:deprecated": { "type": "string" },
65
+ "obsolete": { "type": "string" },
66
+ "c:obsolete": { "type": "string" },
67
+ "non-standard": { "type": "string" },
68
+ "c:non-standard": { "type": "string" },
69
+ "duplicated": { "type": "string" },
70
+ "c:duplicated": { "type": "string" },
71
+ "disallowed": { "type": "string" },
72
+ "c:disallowed": { "type": "string" },
73
+ "invalid": { "type": "string" },
74
+ "c:invalid": { "type": "string" },
75
+ "escape in character reference": { "type": "string" },
76
+ ". ": { "type": "string" }
41
77
  }
42
78
  },
43
- "{0} is {1}": { "type": "string" },
44
- "The {0} {1} is {2}": { "type": "string" },
45
- "Required {0}": { "type": "string" },
46
- "Required {0} on {1}": { "type": "string" },
47
- "Not required {0}": { "type": "string" },
48
- "Not required {0} on {1}": { "type": "string" },
49
- "Duplicate {0}": { "type": "string" },
50
- "Missing the {0} {1}": { "type": "string" },
51
- "Duplicate the {0} {1}": { "type": "string" },
52
- "{0} is must {1} on {2}": { "type": "string" },
53
- "{0} must {1}": { "type": "string" },
54
- "{0} should {1}": { "type": "string" },
55
- "{0} must be {1}": { "type": "string" },
56
- "{0} should be {1}": { "type": "string" },
57
- "{0} of {1} must be {2}": { "type": "string" },
58
- "{0} of {1} should be {2}": { "type": "string" },
59
- "Never {0}": { "type": "string" },
60
- "Insert {0}": { "type": "string" },
61
- "Never {0} {1}": { "type": "string" },
62
- "Values allowed for {0} attributes are {$}": { "type": "string" },
63
- "{0} width spaces": { "type": "string" },
64
- "Always insert {0} before {1} of {2}": { "type": "string" },
65
- "Never insert {0} before {1} of {2}": { "type": "string" },
66
- "Always insert {0} after {1} of {2}": { "type": "string" },
67
- "Never insert {0} after {1} of {2}": { "type": "string" },
68
- "{0} {1} is unmatched patterns ({2})": { "type": "string" },
69
- "Should increase indentation": { "type": "string" },
70
- "Should decrease indentation": { "type": "string" },
71
- "Start tag and end tag indentation should align": { "type": "string" },
72
- "Should have a unique label because {0} landmarks were markup more than once on a page": { "type": "string" },
73
- "The {0} element must be descendant of the {1} element": { "type": "string" },
74
- "Invalid content of the {0} element in {1}": { "type": "string" }
79
+ "sentences": {
80
+ "type": "object",
81
+ "additionalProperties": false,
82
+ "properties": {
83
+ "the {0}": { "type": "string" },
84
+ "the \"{0}\"": { "type": "string" },
85
+ "the \"{0}\" {1}": { "type": "string" },
86
+ "the current \"{0}\" {1}": { "type": "string" },
87
+ "the implicit \"{0}\" {1}": { "type": "string" },
88
+ "{0} of {1}": { "type": "string" },
89
+ "{0:c} and {1:c}": { "type": "string" },
90
+ "either {0}": { "type": "string" },
91
+ "{0} greater than {1}": { "type": "string" },
92
+ "less than {0}": { "type": "string" },
93
+ "less than or equal to {0}": { "type": "string" },
94
+ "in the range between {0} and {1}": { "type": "string" },
95
+ "valid {0}": { "type": "string" },
96
+ "unique {0}": { "type": "string" },
97
+ "{0} as {1}": { "type": "string" },
98
+ "the same {0} as {1}": { "type": "string" },
99
+ "{0} to {1}": { "type": "string" },
100
+ "{0} or {1}": { "type": "string" },
101
+ "{0} is {1}": { "type": "string" },
102
+ "{0} is {1:c}": { "type": "string" },
103
+ "{0} is not {1}": { "type": "string" },
104
+ "It is {0}": { "type": "string" },
105
+ "It is {0:c}": { "type": "string" },
106
+ "{0} must {1}": { "type": "string" },
107
+ "{0} should {1}": { "type": "string" },
108
+ "{0} must be {1}": { "type": "string" },
109
+ "{0} should be {1}": { "type": "string" },
110
+ "{0} must not {1}": { "type": "string" },
111
+ "{0} should not {1}": { "type": "string" },
112
+ "{0} must not be {1}": { "type": "string" },
113
+ "{0} should not be {1}": { "type": "string" },
114
+ "{0} expects {1}": { "type": "string" },
115
+ "{0} expects {1:c}": { "type": "string" },
116
+ "{0} has {1}": { "type": "string" },
117
+ "{0} behaves the same as {1} if {2}": { "type": "string" },
118
+ "{0} does not exist": { "type": "string" },
119
+ "{0} contradicts {1}": { "type": "string" },
120
+ "Require {0}": { "type": "string" },
121
+ "Never {0} {1}": { "type": "string" },
122
+ "Cannot overwrite {0}": { "type": "string" },
123
+ "Cannot overwrite {0} to {1}": { "type": "string" },
124
+ "{0:c} on {1}": { "type": "string" },
125
+ "{0} according to {1}": { "type": "string" },
126
+ "{0} is unmatched with the below patterns: {1}": { "type": "string" },
127
+ "Arrowed values are: {0}": { "type": "string" },
128
+ "Did you mean \"{0}\"?": { "type": "string" }
129
+ }
130
+ }
75
131
  }
76
132
  }
package/lib/index.d.ts CHANGED
@@ -1,16 +1,2 @@
1
- export declare type Primitive = string | number | boolean;
2
- export declare type Translator = (messageTmpl: string, ...keywords: Primitive[]) => string;
3
- export interface LocaleSet {
4
- keywords: LocalesKeywords;
5
- [messageId: string]: string | void | LocalesKeywords;
6
- }
7
- export interface LocalesKeywords {
8
- [messageId: string]: string | void;
9
- }
10
- export declare class I18n {
11
- private static _singleton;
12
- static create(localeSet: LocaleSet | null): I18n;
13
- localeSet: LocaleSet | null;
14
- private constructor();
15
- translator(): Translator;
16
- }
1
+ export { translator } from './translator';
2
+ export { Translator, LocaleSet } from './types';
package/lib/index.js CHANGED
@@ -1,39 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.I18n = void 0;
4
- class I18n {
5
- constructor(localeSet) {
6
- this.localeSet = localeSet;
7
- }
8
- static create(localeSet) {
9
- if (!I18n._singleton) {
10
- I18n._singleton = new I18n(localeSet);
11
- }
12
- else {
13
- I18n._singleton.localeSet = localeSet;
14
- }
15
- return I18n._singleton;
16
- }
17
- translator() {
18
- const localeSet = this.localeSet;
19
- return (messageTmpl, ...keywords) => {
20
- let message = messageTmpl;
21
- if (localeSet) {
22
- const t = localeSet[messageTmpl];
23
- if (typeof t === 'string') {
24
- messageTmpl = t;
25
- }
26
- }
27
- message = messageTmpl.replace(/\{([0-9]+)\}/g, ($0, $1) => {
28
- const keyword = `${keywords[+$1]}` || '';
29
- if (localeSet) {
30
- return localeSet.keywords[keyword.toLowerCase()] || keyword;
31
- }
32
- return keyword;
33
- });
34
- return message;
35
- };
36
- }
37
- }
38
- exports.I18n = I18n;
39
- I18n._singleton = null;
3
+ exports.translator = void 0;
4
+ var translator_1 = require("./translator");
5
+ Object.defineProperty(exports, "translator", { enumerable: true, get: function () { return translator_1.translator; } });
@@ -0,0 +1,2 @@
1
+ import type { LocaleSet, Translator } from './types';
2
+ export declare function translator(localeSet?: LocaleSet): Translator;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.translator = void 0;
4
+ const defaultListFormat = {
5
+ quoteStart: '"',
6
+ quoteEnd: '"',
7
+ separator: ', ',
8
+ };
9
+ function translator(localeSet) {
10
+ return (messageTmpl, ...keywords) => {
11
+ var _a, _b;
12
+ let message = messageTmpl;
13
+ if (Array.isArray(messageTmpl)) {
14
+ const format = (localeSet === null || localeSet === void 0 ? void 0 : localeSet.listFormat) || defaultListFormat;
15
+ return `${format.quoteStart}${messageTmpl.join(`${format.quoteEnd}${format.separator}${format.quoteStart}`)}${format.quoteEnd}`;
16
+ }
17
+ if (keywords.length === 0) {
18
+ const keyword = (_a = localeSet === null || localeSet === void 0 ? void 0 : localeSet.keywords) === null || _a === void 0 ? void 0 : _a[messageTmpl];
19
+ return keyword || messageTmpl;
20
+ }
21
+ const sentence = (_b = localeSet === null || localeSet === void 0 ? void 0 : localeSet.sentences) === null || _b === void 0 ? void 0 : _b[messageTmpl];
22
+ if (sentence) {
23
+ messageTmpl = sentence;
24
+ }
25
+ message = messageTmpl.replace(/\{([0-9]+)(?::([c]))?\}/g, ($0, number, flag) => {
26
+ var _a, _b;
27
+ const num = parseInt(number);
28
+ if (isNaN(num)) {
29
+ return $0;
30
+ }
31
+ const keyword = keywords[num] != null ? toString(keywords[num], localeSet === null || localeSet === void 0 ? void 0 : localeSet.locale) : '';
32
+ const key = flag ? `${flag}:${keyword}` : keyword;
33
+ const replacedWord =
34
+ // finding with flag
35
+ ((_a = localeSet === null || localeSet === void 0 ? void 0 : localeSet.keywords) === null || _a === void 0 ? void 0 : _a[key.toLowerCase()]) ||
36
+ (
37
+ // finding without flag
38
+ (_b = localeSet === null || localeSet === void 0 ? void 0 : localeSet.keywords) === null || _b === void 0 ? void 0 : _b[keyword.toLowerCase()]);
39
+ return replacedWord || keyword;
40
+ });
41
+ return message;
42
+ };
43
+ }
44
+ exports.translator = translator;
45
+ function toString(value, locale = 'en') {
46
+ switch (typeof value) {
47
+ case 'string':
48
+ return value;
49
+ case 'number':
50
+ return value.toLocaleString(locale);
51
+ case 'boolean':
52
+ return `${value}`;
53
+ }
54
+ }
package/lib/types.d.ts ADDED
@@ -0,0 +1,16 @@
1
+ export declare type Translator = (messageTmpl: string | string[], ...keywords: Primitive[]) => string;
2
+ export declare type LocaleSet = {
3
+ locale: string;
4
+ listFormat?: ListFormat;
5
+ keywords?: LocalesKeywords;
6
+ sentences?: LocalesKeywords;
7
+ };
8
+ export declare type ListFormat = {
9
+ quoteStart: string;
10
+ quoteEnd: string;
11
+ separator: string;
12
+ };
13
+ export declare type Primitive = string | number | boolean;
14
+ export declare type LocalesKeywords = {
15
+ [messageId: string]: string | void;
16
+ };
package/lib/types.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/locales/en.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
- "$schema": "../$schema.json#",
3
2
  "keywords": {
4
3
  "html elements": "HTML elements",
5
- "the html specification": "the HTML specification"
4
+ "the html specification": "the HTML specification",
5
+ "the svg specification": "the SVG specification",
6
+ "the wai-aria specification": "the WAI-ARIA specification",
7
+ "aria in html specification": "ARIA in HTML specification"
6
8
  }
7
9
  }
package/locales/ja.json CHANGED
@@ -1,68 +1,114 @@
1
1
  {
2
- "$schema": "../$schema.json#",
2
+ "listFormat": {
3
+ "quoteStart": "「",
4
+ "quoteEnd": "」",
5
+ "separator": ""
6
+ },
3
7
  "keywords": {
4
8
  "tag": "タグ",
5
9
  "tag name": "タグ名",
10
+ "tag names": "タグ名",
11
+ "element": "要素",
12
+ "html elements": "HTML要素",
6
13
  "attribute": "属性",
7
14
  "attributes": "属性",
8
15
  "attribute name": "属性名",
16
+ "attribute names": "属性名",
9
17
  "attribute value": "属性値",
10
- "attribute id value": "id属性の値",
11
- "element": "要素",
12
- "html elements": "HTML要素",
13
18
  "class name": "クラス名",
14
- "quote": "囲う",
15
- "double quotation mark": "ダブルクオーテーション",
16
- "single quotation mark": "シングルクォーテーション",
19
+ "role": "ロール",
20
+ "the abstract role": "抽象ロール",
21
+ "the implicit role": "暗黙のロール",
22
+ "aria state/property": "ARIAステート/プロパティ",
23
+ "global state/property": "グローバルステート/プロパティ",
24
+ "value": "値",
25
+ "default value": "デフォルト値",
26
+ "content": "内容",
27
+ "contents": "内容",
28
+ "descendant": "子孫",
29
+ "semantics": "セマンティクス",
30
+ "accessible name": "アクセシブルな名前",
17
31
  "lowercase": "小文字",
18
32
  "uppercase": "大文字",
19
33
  "illegal characters": "不正な文字",
20
- "escape in character reference": "参照文字でエスケープ",
21
- "declarate": "宣言",
22
- "deprecated": "非推奨",
23
- "obsolete": "廃止ずみ",
24
- "indentation": "インデント",
25
- "tab": "タブ",
26
- "space": "スペース",
27
- "break line": "改行",
28
- "line break": "改行",
29
- "equal sign": "等号",
34
+ "empty string": "空文字",
35
+ "zero": "ゼロ",
36
+ "one": "1",
37
+ "integer": "整数",
38
+ "non-negative integer": "正の整数",
39
+ "floating-point number": "浮動小数点数",
40
+ "angle": "角度",
41
+ "alpha channel value": "不透明度",
30
42
  "doctype": "文書型",
31
43
  "obsolete doctype": "廃止された文書型",
44
+ "hash-name reference": "ハッシュ名参照",
32
45
  "top level": "トップレベル",
46
+ "declarate": "宣言",
33
47
  "the html specification": "HTMLの仕様",
34
- "settings": "設定"
48
+ "the svg specification": "SVGの仕様",
49
+ "the wai-aria specification": "WAI-ARIAの仕様",
50
+ "aria in html specification": "ARIA in HTMLの仕様",
51
+ "deprecated": "非推奨",
52
+ "c:deprecated": "は非推奨です",
53
+ "obsolete": "廃止ずみ",
54
+ "c:obsolete": "は廃止されています",
55
+ "non-standard": "非標準",
56
+ "c:non-standard": "は非標準です",
57
+ "duplicated": "重複",
58
+ "c:duplicated": "が重複しています",
59
+ "disallowed": "未許可",
60
+ "c:disallowed": "は許可されていません",
61
+ "invalid": "不正",
62
+ "c:invalid": "は妥当ではありません",
63
+ "escape in character reference": "文字参照でエスケープ",
64
+ ". ": "。"
35
65
  },
36
- "{0} is {1}": "{0}は{1}です",
37
- "The {0} {1} is {2}": "{0}{1}は{2}です",
38
- "Required {0}": "{0}が必要です",
39
- "Required {0} on {1}": "{1}には{0}が必要です",
40
- "Not required {0}": "{0}は不要です",
41
- "Not required {0} on {1}": "{1}には{0}は不要です",
42
- "Duplicate {0}": "{0}が重複しています",
43
- "Missing the {0} {1}": "{0}{1}が見つかりません",
44
- "Duplicate the {0} {1}": "{0}{1}が重複しています",
45
- "{0} is must {1} on {2}": "{0}{2}で{1}べきです",
46
- "{0} must {1}": "{0}は{1}するべきです",
47
- "{0} should {1}": "{0}は{1}してください",
48
- "{0} must be {1}": "{0}{1}にするべきです",
49
- "{0} should be {1}": "{0}は{1}にしてください",
50
- "{0} of {1} must be {2}": "{1}の{0}は{2}にするべきです",
51
- "{0} of {1} should be {2}": "{1}{0}は{2}にしてください",
52
- "Never {0}": "{0}しないでください",
53
- "Insert {0}": "{0}を入れてください",
54
- "Never {0} {1}": "{1}{0}しないでください",
55
- "Values allowed for {0} attributes are {$}": "{0}属性に許可される値は{$}です",
56
- "{0} width spaces": "{0}幅スペース",
57
- "Always insert {0} before {1} of {2}": "{2}{1}の前には{0}を入れてください",
58
- "Never insert {0} before {1} of {2}": "{2}の{1}の前には{0}を入れないでください",
59
- "Always insert {0} after {1} of {2}": "{2}の{1}の後には{0}を入れてください",
60
- "Never insert {0} after {1} of {2}": "{2}{1}の後には{0}を入れないでください",
61
- "{0} {1} is unmatched patterns ({2})": "{1}{0}は次のパターンにマッチしませんでした {2}",
62
- "Should increase indentation": "インデントを深くしてください",
63
- "Should decrease indentation": "インデントを浅くしてください",
64
- "Start tag and end tag indentation should align": "開始タグと終了タグのインデントを揃えてください",
65
- "Should have a unique label because {0} landmarks were markup more than once on a page": "{0}ランドマークが複数回マークアップされているため一意のラベルが必要です",
66
- "The {0} element must be descendant of the {1} element": "{0}要素は{1}要素の子孫でなければなりません",
67
- "Invalid content of the {0} element in {1}": "{1}において{0}要素の内容が不正です"
66
+ "sentences": {
67
+ "the {0}": "その{0}",
68
+ "the \"{0}\"": "{0}",
69
+ "the \"{0}\" {1}": "{1}{0}",
70
+ "the current \"{0}\" {1}": "現在の{1}「{0}",
71
+ "the implicit \"{0}\" {1}": "暗黙の{1}{0}",
72
+ "{0} of {1}": "{1}の{0}",
73
+ "{0:c} and {1:c}": "{0}且つ、{1}",
74
+ "either {0}": "{0}のいずれか",
75
+ "{0} greater than {1}": "{1}より大きい{0}",
76
+ "less than {0}": "{0}未満",
77
+ "less than or equal to {0}": "{0}以下",
78
+ "in the range between {0} and {1}": "{0}から{1}の範囲",
79
+ "valid {0}": "妥当な{0}",
80
+ "unique {0}": "一意の{0}",
81
+ "{0} as {1}": "{1}として{0}",
82
+ "the same {0} as {1}": "{1}と同等の{0}",
83
+ "{0} to {1}": "{0}から{1}",
84
+ "{0} or {1}": "{0}もしくは{1}",
85
+ "{0} is {1}": "{0}{1}です",
86
+ "{0} is {1:c}": "{0}{1:c}",
87
+ "{0} is not {1}": "{0}{1}ではありません",
88
+ "It is {0}": "{0}です",
89
+ "It is {0:c}": "{0:c}",
90
+ "{0} must {1}": "{0}{1}するべきです",
91
+ "{0} should {1}": "{0}{1}したほうがよいです",
92
+ "{0} must be {1}": "{0}は{1}にするべきです",
93
+ "{0} should be {1}": "{0}は{1}にしたほうがよいです",
94
+ "{0} must not {1}": "{0}は{1}するべきではありません",
95
+ "{0} should not {1}": "{0}は{1}しないほうがよいです",
96
+ "{0} must not be {1}": "{0}{1}にするべきではありません",
97
+ "{0} should not be {1}": "{0}{1}にしないほうがよいです",
98
+ "{0} expects {1}": "{0}には{1}が必要です",
99
+ "{0} expects {1:c}": "{0}は{1}である必要があります",
100
+ "{0} has {1}": "{0}は{1}を持っています",
101
+ "{0} behaves the same as {1} if {2}": "{0}は{2}の場合、{1}と同じ振る舞いをします",
102
+ "{0} does not exist": "{0}は存在しません",
103
+ "{0} contradicts {1}": "{0}は{1}と矛盾しています",
104
+ "Require {0}": "{0}が必要です",
105
+ "Never {0} {1}": "{1}を{0}しないでください",
106
+ "Cannot overwrite {0}": "{0}を上書きすることはできません",
107
+ "Cannot overwrite {0} to {1}": "{0}を{1}に上書きすることはできません",
108
+ "{0:c} on {1}": "{1}では、{0:c}",
109
+ "{0} according to {1}": "{1}において、{0}",
110
+ "{0} is unmatched with the below patterns: {1}": "{0}は次のパターンにマッチしませんでした {1}",
111
+ "Arrowed values are: {0}": "許可されている値は次のとおりです {0}",
112
+ "Did you mean \"{0}\"?": "「{0}」ですか?"
113
+ }
68
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/i18n",
3
- "version": "1.2.0",
3
+ "version": "2.0.0-alpha.0",
4
4
  "description": "HTML parser for markuplint",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -15,5 +15,5 @@
15
15
  "build": "tsc",
16
16
  "clean": "tsc --build --clean"
17
17
  },
18
- "gitHead": "94955520e9fad6a45e8831c47f6b8b342b77efdc"
18
+ "gitHead": "2e5b7e616411588b01c098deb35c6aa0470dfadb"
19
19
  }
@@ -1,13 +1,3 @@
1
1
  {
2
- "extends": "../../../tsconfig.json",
3
- "compilerOptions": {
4
- "composite": true
5
- },
6
- "references": [
7
- {
8
- "path": "../ml-ast"
9
- }
10
- ],
11
- "include": ["./src/**/*"],
12
- "exclude": ["node_modules"]
2
+ "extends": "../../../tsconfig.json"
13
3
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/index.ts","../../../node_modules/@types/anymatch/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/ts3.6/base.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/mdx-js__react/node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/minimist-options/index.d.ts","../../../node_modules/@types/meow/index.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/mini-css-extract-plugin/node_modules/webpack/types.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist-options/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/types.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/handlers/response-interceptor.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/handlers/fix-request-body.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/handlers/public.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/handlers/index.d.ts","../../../node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware/dist/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"ac3a8c4040e183ce38da69d23b96939112457d1936198e6542672b7963cf0fce","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"1dad4fe1561d99dfd6709127608b99a76e5c2643626c800434f99c48038567ee","affectsGlobalScope":true},{"version":"cce43d02223f8049864f8568bed322c39424013275cd3bcc3f51492d8b546cb3","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"8dff1b4c2df638fcd976cbb0e636f23ab5968e836cd45084cc31d47d1ab19c49","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"8f4c9f651c8294a2eb1cbd12581fe25bfb901ab1d474bb93cd38c7e2f4be7a30","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"60761e6ea886034af0f294f025a7199360ce4e2c8ba4ec6408bc049cf9b89799","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","7d7f84de75f0fcc1269cb5d218bb3f318b40cad8ca746c18797e39ae351db609","48b52264fa193879a074197839dbb4796fa07e86350ff888e5361e06aa46df76","4606c6d854002b409744140a996a49c4a607c1eb0396855529836161892abef5","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","3e6297bcddf37e373d40ddb4c2b9e6fc98901b2a44c01b2d96af142874973c43","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","691aea9772797ca98334eb743e7686e29325b02c6931391bcee4cc7bf27a9f3b","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"5402314c88d0127f63f94a0272f79e04ea0fc010ff6da6613807504c4163a1ad","affectsGlobalScope":true},"c9e8a340da877b05a52525554aa255b3f44958c7f6748ebf5cbe0bfbe6766878","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","a668dfae917097b30fc29bbebeeb869cee22529f2aa9976cea03c7e834a1b841","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","51a77d65fbadc93dcdf454ea1d94bd9f1f146008d890bea4f168dd397192b9fb","797a9d37eb1f76143311c3f0a186ce5c0d8735e94c0ca08ff8712a876c9b4f9e","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"36ba0e764ace4fb55e6165c5f33f2826f88b1d3767f7ec658fe2f6c85ac5e776","affectsGlobalScope":true},"d3315298050252531e7db9046296ca2162fa5218a85b10a62ed79140e3822e3c","bdaf554ae2d9d09e2a42f58a29ef7f80e5b5c1d7b96bfb717243dc91a477216e","bd311ff12ac011f5531edd217189606e7a697376d6109e8a18361358f6249b46","a870e564e578dccc7b34018d6919f9466bae462b4bafc3449ca63a2331ac27c5","13257840c0850d4ebd7c2b17604a9e006f752de76c2400ebc752bc465c330452","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","1eaf8fecdae37cc4c85f496d2bdb9e8d46c21b3643b7e27d3646a330585515a5","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","21e64a125f65dff99cc3ed366c96e922b90daed343eb52ecdace5f220401dcda","4982d94cb6427263c8839d8d6324a8bbe129e931deb61a7380f8fad17ba2cfc0",{"version":"61977e8f4c042abd392645828c90afd1b551a6fd32c51b93717c68003ce7c983","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","3b790d08129aca55fd5ae1672d1d26594147ac0d5f2eedc30c7575eb18daef7e","64535caf208a02420d2d04eb2029269efedd11eb8597ada0d5e6f3d54ec663ae","3b02b1e3c3a6730d79e2c8652f3be6a7caef1a604b9c5103abbbcea921694be1","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","f49709e8c096b05aca0674d39f471aa05261de7c756df9abdf4a53ed0fa98901","baca27d1de400e027cdc70217ca73e414002baef5798aa24a921097c20066fa1","f89a6d56f0267f6e73c707f8a89d2f38e9928e10bfa505f39a4f4bf954093aee","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","e649840284bab8c4d09cadc125cd7fbde7529690cc1a0881872b6a9cd202819b","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","1aa7dbace2b7b2ef60897dcd4f66252ee6ba85e594ded8918c9acdcecda1896c","1535aeef6e803bc8c784b14c99bd214dba9223df4914f3dee616af351ab46042","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3","210ef68f34baca2a4499c07a51f05d51b4f0ef01d64efea3017cb3bc31c37e33","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","6c9c7e459e013ddf52c70b90f88bbdd925e483ef984d80f9bffb501029974e82","81c14b89fa607b86dd726e2e3e91360cf8155ce97468404324d404a5bd65b2eb","ebddbd167c2fabd0151f50e5df94ca6d845149c47521280d8867afe3429dd078",{"version":"496086e48c978c6410a7dd1fee3c2c8f7abf297ed9f32e92672358c5ff9d1035","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","07364b16996825df3cde36570f4c2a157f6f916c845ce0b590c78c821edf6e5d","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","b76fdd0e1eed5d7879e20634183c79e7c4e9eb7435b6a244663029c0d6bcd24e","4e88b833be14c7f384e0dcd57bb30acd799e8e34d212635d693e41a75a71164b","98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",{"version":"e41a1ce538d71d5a3389b7fc2e39c15a4972f0d4cb14bf2fe8cda8c361150028","affectsGlobalScope":true},"a9ef188a807dfa67e80eb100aeac1036f61d01f64d8b51ce68e78ee40cdef415",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","f1e8ecd1d960d12e57316fd2889b0a57635f38f8c4c976d8deafa29650bbf320","7f4366cd82a5391c7a1a196908c624c9415f731a57400ea1c3661041cab398a8","274bda283ef15f4205603ca9967313fc013aa77ae89f2cbeab5fbd51439e96ed","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","3b02517f9be71f255eadab9892406055d069167891f1e1ea16c96c4ff1ddda01","3b05c396564e51753e921e1cc4aae1cf7cd9be53c891cf2e81fa29f11c0bd373","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","6767cce098e1e6369c26258b7a1f9e569c5467d501a47a090136d5ea6e80ae6d","62245a56a6df2b5fbe569bee7d8a95e662477e38317262070dd3e82eaa8eecb6","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"bbc19287f48d4b3c753bd2c82dd9326af19cccbfa1506f859029dfcedc7c5522","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"881ea8e225320dd9b436999d82998e1d7699e512e0597f0015e5abd59d95974a","affectsGlobalScope":true},"78304aa37ad2d5ec160697bce2ae5de8f56096ae63d0e499797fb83f9096ffea","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","c65157a42bfe2e8cc9b397a36721b44d83fb326d2349ecc1356a79f613267055","36c3e542cb94fc5d3d826a40923ef63bd92bbe03021bc692834af7934d9003ea","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","327f42ab31ff4539ba868d0374f8825af328b104b5f78d26b2e3ce9cc17b43a0","62a05210201c793349ec28254f06a01814c5b4f5591f6d1921941286db78ea2a","8f877178233f74095130e129ce86128a6a15afcfc6171d714e154863b6a65fe8","b395ec0779c66de885f97974534e95ee2c8bbf9acaf5857a6782ddc32972b6d8","938cfe3df10c48b87ce33e1e9cbc7ead3fa3889816896cfefa382efa2021503a","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","7acd15551d9cbce36f211dfead4fd5fdd14f68e22a95ab7f34849b33060cb946","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8fe9135b86994075c4192f3358a4350389e80d3abec712db2a82061962d9d21c","e0014889f31fee76a572b6b15e74b2174cbcf6346ae8ab5c69eb553a10e5c944","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","a7dbf3a9c06327c5329cd020982b0649e8369200cdf8ec4571b93a1ba074a5d2","08b428a44bc98005536a12456518797e9afe2a08e8b5d9785641713a54475881","e5c0472e87e18dfe9d2d2d2c3be9f4a5fbec27a74e37bd0e7dd8ab304ea66689","f9a2dd6a6084665f093ed0e9664b8e673be2a45e342a59dd4e0e4e552e68a9ad",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},{"version":"ca1f4045ec1a501a114d63e2f3f24e2dba00c0cb9030b3109f579d54c1e95d63","affectsGlobalScope":true},"b1071c8eeb8da55bfac2666551ac923320b0c8a76a292ff55de0190ea59e691c","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bee79f5862fe1278d2ba275298862bce3f7abf1e59d9c669c4b9a4b2bba96956","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","8ef5aad624890acfe0fa48230edce255f00934016d16acb8de0edac0ea5b21bb","9af6248ff4baf0c1ddc62bb0bc43197437bd5fb2c95ff8e10e4cf2e699ea45c1","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","89b42f8ee5d387a39db85ee2c7123a391c3ede266a2bcd502c85ad55626c3b2b","99c7f3bbc03f6eb3e663c26c104d639617620c2925e76fc284f7bedf1877fa2b","2e253605e2d884f2db694a9d7b9272df5a153a281cca0d94ea440e8cd7644a8e","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","96b49a9de749afcf92b5bce1d8cc42cfae6816cdf5ea36584fd9256b8b2e5292","59115d08fbd0d93bbb2af3fe5b914194fea2906945f2ee08e264b96c7e8601fe","f90d85d4cb38445499bdb7e7b013e4f64d99d157a6fa0843e998495ceb27b520","94ae892ab0c0b2800dbd817ffd0a5bd6cfb60a0cc4ce6860a9f965712cc3eb5d","901becb8779e1089442378fda5623e607ee4588762a32e7692436f1ea81cf848","8286d84d2567b713fd6a1fdfbb1a0abc8cfa668ee1e0e83d7dd4ade5761f2750","f28dffc6bf9bbd8b9dc156aadb74d11de7faabf547eb9f0aebb8cd03e8750a6c","b2bcfd1c457bf7845a5e5f81d1b34785de14f07dc97a27571d7f54c8f4873b65","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","5a2a25feca554a8f289ed62114771b8c63d89f2b58325e2f8b7043e4e0160d11"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":4},"fileIdsList":[[48],[48,49,50,51,52],[48,50],[70,103,104],[103],[107,108,109,110,111,112,113,114,115,116,117,118],[67,103],[92,103,123],[70,103],[128,129],[125,126,127,128],[129],[67,70,103,121,122],[105,122,123,132],[67,103,134],[68,103],[137],[67,70,72,75,84,92,103],[141],[142],[148,150],[153,155,156,157,158,159,160,161,162,163,164,165],[153,154,156,157,158,159,160,161,162,163,164,165],[154,155,156,157,158,159,160,161,162,163,164,165],[153,154,155,157,158,159,160,161,162,163,164,165],[153,154,155,156,158,159,160,161,162,163,164,165],[153,154,155,156,157,159,160,161,162,163,164,165],[153,154,155,156,157,158,160,161,162,163,164,165],[153,154,155,156,157,158,159,161,162,163,164,165],[153,154,155,156,157,158,159,160,162,163,164,165],[153,154,155,156,157,158,159,160,161,163,164,165],[153,154,155,156,157,158,159,160,161,162,164,165],[153,154,155,156,157,158,159,160,161,162,163,165],[153,154,155,156,157,158,159,160,161,162,163,164],[171],[167,168,169,170],[174],[181],[177,178],[127,176,177],[127,176,178],[128,178,179,180],[173],[70,92,103,184,185],[101],[100,101],[67,68,75,84],[58,67,75],[93],[62,68,76],[84],[64,67,75],[65],[64],[67],[67,69,84,92],[68],[75,84,92],[67,68,70,75,84,89,92],[70,89,92],[102],[92],[64,67,84],[56],[91],[82,93,95],[67,85],[87],[75],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[81],[67,69,84,92,95],[189],[190],[168,169,170,194],[215],[70,103,131],[199],[70,72,124,132,133,215,224],[70,103,219],[222],[220,221],[219,223],[70,75,103,133,140],[103,202,203,205,206,207,208,209,210,211,212,213],[201,202,212],[202,212],[201,202,204,212],[201,202,203,205,206,207,208,209,210,211,213],[202],[62,201,212],[47,62,103,198,199,200,214],[226],[70,84,103],[144,145],[144,145,146,147],[149],[45]],"referencedMap":[[50,1],[53,2],[49,1],[51,3],[52,1],[105,4],[106,5],[119,6],[120,7],[124,8],[104,9],[130,10],[129,11],[126,12],[123,13],[133,14],[135,15],[136,16],[138,17],[140,18],[142,19],[143,20],[151,21],[154,22],[155,23],[153,24],[156,25],[157,26],[158,27],[159,28],[160,29],[161,30],[162,31],[163,32],[164,33],[165,34],[166,17],[172,35],[171,36],[175,37],[182,38],[179,39],[178,40],[177,41],[181,42],[183,43],[186,44],[54,45],[102,46],[58,47],[59,48],[60,49],[61,50],[62,51],[63,52],[64,53],[65,54],[66,55],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[103,61],[73,55],[74,62],[75,63],[78,64],[79,65],[82,55],[83,66],[84,67],[85,51],[88,68],[89,69],[100,70],[91,69],[92,71],[94,51],[96,72],[97,51],[190,73],[189,74],[195,75],[196,5],[216,76],[132,77],[200,78],[225,79],[221,80],[223,81],[222,82],[220,9],[224,83],[219,84],[214,85],[213,86],[203,87],[205,88],[212,89],[206,88],[207,87],[208,87],[209,87],[210,90],[202,91],[211,86],[215,92],[227,93],[184,94],[146,95],[148,96],[147,95],[174,43],[150,97],[46,98]],"exportedModulesMap":[[50,1],[53,2],[49,1],[51,3],[52,1],[105,4],[106,5],[119,6],[120,7],[124,8],[104,9],[130,10],[129,11],[126,12],[123,13],[133,14],[135,15],[136,16],[138,17],[140,18],[142,19],[143,20],[151,21],[154,22],[155,23],[153,24],[156,25],[157,26],[158,27],[159,28],[160,29],[161,30],[162,31],[163,32],[164,33],[165,34],[166,17],[172,35],[171,36],[175,37],[182,38],[179,39],[178,40],[177,41],[181,42],[183,43],[186,44],[54,45],[102,46],[58,47],[59,48],[60,49],[61,50],[62,51],[63,52],[64,53],[65,54],[66,55],[67,55],[68,56],[69,57],[70,58],[71,59],[72,60],[103,61],[73,55],[74,62],[75,63],[78,64],[79,65],[82,55],[83,66],[84,67],[85,51],[88,68],[89,69],[100,70],[91,69],[92,71],[94,51],[96,72],[97,51],[190,73],[189,74],[195,75],[196,5],[216,76],[132,77],[200,78],[225,79],[221,80],[223,81],[222,82],[220,9],[224,83],[219,84],[214,85],[213,86],[203,87],[205,88],[212,89],[206,88],[207,87],[208,87],[209,87],[210,90],[202,91],[211,86],[215,92],[227,93],[184,94],[146,95],[148,96],[147,95],[174,43],[150,97],[46,98]],"semanticDiagnosticsPerFile":[50,48,47,53,49,51,52,105,106,107,108,109,110,111,113,119,112,117,114,115,116,118,120,124,104,130,125,129,126,128,123,133,135,136,138,139,140,141,142,143,151,127,152,154,155,153,156,157,158,159,160,161,162,163,164,165,166,172,167,171,175,131,182,179,178,177,180,181,134,183,173,185,186,101,54,56,102,57,58,59,60,61,62,63,64,65,66,67,68,69,55,98,70,71,72,103,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,100,91,92,93,94,95,99,96,97,187,188,190,189,191,169,192,193,122,121,194,195,196,197,170,216,132,204,217,198,200,137,218,225,221,223,222,220,224,219,214,213,203,205,212,206,207,208,209,210,202,211,201,215,226,227,176,168,184,144,146,148,147,145,174,150,149,199,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,46]},"version":"4.3.4"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","./src/types.ts","./src/translator.ts","./src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/cli-color/art.d.ts","../../../node_modules/@types/cli-color/bare.d.ts","../../../node_modules/@types/cli-color/beep.d.ts","../../../node_modules/@types/cli-color/columns.d.ts","../../../node_modules/@types/cli-color/erase.d.ts","../../../node_modules/@types/cli-color/move.d.ts","../../../node_modules/@types/cli-color/get-stripped-length.d.ts","../../../node_modules/@types/cli-color/slice.d.ts","../../../node_modules/@types/cli-color/strip.d.ts","../../../node_modules/@types/cli-color/throbber.d.ts","../../../node_modules/@types/cli-color/reset.d.ts","../../../node_modules/@types/cli-color/window-size.d.ts","../../../node_modules/@types/cli-color/index.d.ts","../../../node_modules/@types/cli-progress/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/mdx-js__react/index.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/@types/webpack/node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/@types/webpack/node_modules/tapable/tapable.d.ts","../../../node_modules/@types/webpack/node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/mini-css-extract-plugin/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mustache/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/pug/index.d.ts","../../../node_modules/@types/q/index.d.ts","../../../node_modules/@types/sass/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/script-ext-html-webpack-plugin/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/webpack-dev-server/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","bc10fb6c944a15922b110272a9011146297de8e305697f2d7e970f0d42d092b2","3f06dcc956f5ff8d2ab1c67a527f704412b98d18d65e7a0d73a43083b0a251cf","86ae37fbd9fce5f0f7a4ec0c2aee97f504d99624c913463586abc5e642818216","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","65cfd1c0bc729fbc2b49fe66bc5ebddba5aa3a978c748e1d2e0d07f502238ce2",{"version":"42c1b00421aa4d5f03b85a2639c1573d32bd82533f34423bbf1f5fb2b0ddc4d8","affectsGlobalScope":true},"a7b9533447378e7f34fa432e26be9102173e79bceb65b20d258d61c4042e90ad","d71ffe64592c4e61c6b431d8fbaff58735cd659738d788a4c8423a27f78f01b7","b869f848bec826c9d3645d10a183b905672a4675747f41700fd30e1b7e0d0308","62cc84c2971b16cc82e1f7cb1dac7d8c70b589d492fbc2f6efbcbfc53b61d514","67729b7b26e1ecf2afeb2f4a0a8c3ba16712918ef22d23bb615f033169ebe0f3","903da09dbdfea0af66cb6b7b25950e42e350f1f3cc87f3516baa553cc4de882f","e237aa7b157ebfb2699d2e3bbf07c65a8cea0382201dc44c9da006f0f730de67","05e8a403b04248dbe9eebd2025d58e95495de303f37b39f13e7562f5f414087a","a56bf5dce7c05192e4c2d95eb1527feda15f9225afea8c5ad67034a79992ebb6","fcb510be50b0756cb770f8caf321dba38ae074665efbea090584f8a8d3e6b8f4","d4c9c56a2f4ecedcc224a495dfbaee88072c8e99679504fb32ef1d0629f843a1","5ec537948044f7c0280d6175729bf7aa13deae28fe0f6346628a8cf15569aefa","a356dbb234a629456ea426c8eef1d8296a2fa4266afb6defb3691ad07140c84e","1cc502622a7f773e7cd75ecacd64d0bc83a2a6442dc16a7081f968702edf5051","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d168ca1638b27c95909b68805c84b8018dba87630bb1e4cc99be4ccdf119f39d","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"e4be0ff844c90e9112c7cde181f9f76c72272b7b137485f6fa7d1c66a2cc84bd","affectsGlobalScope":true},"1a4f6207fac7bf7e94957a5c7cac0c33d07499bab60a197dabea4f452a544cd8","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","71b4b77aaa2abca926f7195cca82367ca384f40e126201cf07a22b5efd5617e5","d7e12d9634587982b53654f1c9a96e1f9a911fbd5e69fc5c593565c691fd4a12","8537945141892b0e4af62744f8b9ca6e5b67ad65929267dcb0866b33745769a8","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","56dd85019d2374449708458f4acf4712d4c6f7b19ae597e910bab6ae75bc9e05","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","7a514f06ed8263440e9b50047f2532b9188c9c68422b4607f9d23affaebb3e63","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","711596a8f7e8a84ea3985bb2d03f1a6681ac7ecd132d48141d6d6a1287513d27","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10","630ca25a5f50f64b0eacc40ba4c95f4469ec9dedb76ce522ee34806cbac63883","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","4045f108d41deca56fa341093feeb16252ccf1fc4d5233bd54dbba022b976477","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","320dfb6b91f1ede1216fe57eb0a608c49b71e61ba5b1f16b2629254db563476e","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":1,"noImplicitAny":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"fileIdsList":[[49,98],[98],[49,50,51,52,53,98],[49,51,98],[73,98,105,106],[98,105],[98,109,110,111,112,113,114,115,116,117,118,119,120],[70,98,105],[97,98,105,125],[73,98,105],[98,127],[98,132,133],[98,129,130,131,132],[98,133],[70,73,98,105,123,124],[98,107,124,125,136],[70,71,98,105,138],[71,98,105],[98,141],[70,73,75,78,87,97,98,105],[98,145],[98,146],[98,152,154],[98,157,159,160,161,162,163,164,165,166,167,168,169],[98,157,158,160,161,162,163,164,165,166,167,168,169],[98,158,159,160,161,162,163,164,165,166,167,168,169],[98,157,158,159,161,162,163,164,165,166,167,168,169],[98,157,158,159,160,162,163,164,165,166,167,168,169],[98,157,158,159,160,161,163,164,165,166,167,168,169],[98,157,158,159,160,161,162,164,165,166,167,168,169],[98,157,158,159,160,161,162,163,165,166,167,168,169],[98,157,158,159,160,161,162,163,164,166,167,168,169],[98,157,158,159,160,161,162,163,164,165,167,168,169],[98,157,158,159,160,161,162,163,164,165,166,168,169],[98,157,158,159,160,161,162,163,164,165,166,167,169],[98,157,158,159,160,161,162,163,164,165,166,167,168],[98,175],[98,183],[73,97,98,105,187,188],[55,98],[58,98],[59,64,98],[60,70,71,78,87,97,98],[60,61,70,78,98],[62,98],[63,64,71,79,98],[64,87,94,98],[65,67,70,78,98],[66,98],[67,68,98],[69,70,98],[70,98],[70,71,72,87,97,98],[70,71,72,87,98],[73,78,87,97,98],[70,71,73,74,78,87,94,97,98],[73,75,87,94,97,98],[55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],[70,76,98],[77,97,98],[67,70,78,87,98],[79,98],[80,98],[58,81,98],[82,96,98,102],[83,98],[84,98],[70,85,98],[85,86,98,100],[70,87,88,89,98],[87,89,98],[87,88,98],[90,98],[91,98],[70,92,93,98],[92,93,98],[64,78,94,98],[95,98],[78,96,98],[59,73,84,97,98],[64,98],[87,98,99],[98,100],[98,101],[59,64,70,72,81,87,97,98,100,102],[87,98,103],[98,192],[98,193],[98,171,172,173,174],[97,98,105],[73,98,105,135],[98,203],[73,75,98,126,136,137,182,183],[98,105,208,209,210,211,212,213,214,215,216,217,218],[98,207,208,217],[98,208,217],[98,200,207,208,217],[98,207,208,209,210,211,212,213,214,215,216,218],[98,208],[64,98,207,217],[98,105,182],[98,179],[98,131,177,178],[98,131,179],[73,78,94,98,132,177,179,180,181],[98,220],[73,87,98,105],[98,148,149],[98,148,149,150,151],[98,153],[45,46,47,98],[45,46,98],[45,98]],"referencedMap":[[51,1],[49,2],[54,3],[50,1],[52,4],[53,1],[107,5],[108,6],[109,2],[110,2],[111,2],[112,2],[113,2],[115,2],[121,7],[114,2],[119,2],[116,2],[117,2],[118,2],[120,2],[122,8],[126,9],[106,10],[128,11],[134,12],[129,2],[133,13],[130,14],[132,2],[125,15],[137,16],[139,17],[140,18],[142,19],[143,2],[144,20],[145,2],[146,21],[147,22],[155,23],[131,2],[156,2],[158,24],[159,25],[157,26],[160,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,33],[167,34],[168,35],[169,36],[170,19],[176,37],[135,2],[184,38],[138,2],[185,2],[127,2],[186,2],[188,2],[189,39],[55,40],[56,40],[58,41],[59,42],[60,43],[61,44],[62,45],[63,46],[64,47],[65,48],[66,49],[67,50],[68,50],[69,51],[70,52],[71,53],[72,54],[57,2],[104,2],[73,55],[74,56],[75,57],[105,58],[76,59],[77,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,69],[87,70],[89,71],[88,72],[90,73],[91,74],[92,75],[93,76],[94,77],[95,78],[96,79],[97,80],[98,81],[99,82],[100,83],[101,84],[102,85],[103,86],[190,2],[191,2],[193,87],[192,88],[194,2],[173,2],[195,2],[196,2],[124,2],[123,2],[171,2],[175,89],[197,90],[198,2],[174,2],[199,38],[136,91],[200,2],[201,2],[202,2],[204,92],[141,2],[205,2],[206,93],[219,94],[218,95],[209,96],[210,97],[217,98],[211,97],[212,96],[213,96],[214,96],[215,99],[208,100],[216,95],[207,2],[183,101],[180,102],[179,103],[177,104],[181,2],[182,105],[220,2],[221,106],[178,2],[172,2],[187,107],[148,2],[150,108],[152,109],[151,108],[149,2],[154,110],[153,2],[203,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[48,111],[47,112],[46,113]],"exportedModulesMap":[[51,1],[49,2],[54,3],[50,1],[52,4],[53,1],[107,5],[108,6],[109,2],[110,2],[111,2],[112,2],[113,2],[115,2],[121,7],[114,2],[119,2],[116,2],[117,2],[118,2],[120,2],[122,8],[126,9],[106,10],[128,11],[134,12],[129,2],[133,13],[130,14],[132,2],[125,15],[137,16],[139,17],[140,18],[142,19],[143,2],[144,20],[145,2],[146,21],[147,22],[155,23],[131,2],[156,2],[158,24],[159,25],[157,26],[160,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,33],[167,34],[168,35],[169,36],[170,19],[176,37],[135,2],[184,38],[138,2],[185,2],[127,2],[186,2],[188,2],[189,39],[55,40],[56,40],[58,41],[59,42],[60,43],[61,44],[62,45],[63,46],[64,47],[65,48],[66,49],[67,50],[68,50],[69,51],[70,52],[71,53],[72,54],[57,2],[104,2],[73,55],[74,56],[75,57],[105,58],[76,59],[77,60],[78,61],[79,62],[80,63],[81,64],[82,65],[83,66],[84,67],[85,68],[86,69],[87,70],[89,71],[88,72],[90,73],[91,74],[92,75],[93,76],[94,77],[95,78],[96,79],[97,80],[98,81],[99,82],[100,83],[101,84],[102,85],[103,86],[190,2],[191,2],[193,87],[192,88],[194,2],[173,2],[195,2],[196,2],[124,2],[123,2],[171,2],[175,89],[197,90],[198,2],[174,2],[199,38],[136,91],[200,2],[201,2],[202,2],[204,92],[141,2],[205,2],[206,93],[219,94],[218,95],[209,96],[210,97],[217,98],[211,97],[212,96],[213,96],[214,96],[215,99],[208,100],[216,95],[207,2],[183,101],[180,102],[179,103],[177,104],[181,2],[182,105],[220,2],[221,106],[178,2],[172,2],[187,107],[148,2],[150,108],[152,109],[151,108],[149,2],[154,110],[153,2],[203,2],[45,2],[10,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[4,2],[24,2],[21,2],[22,2],[23,2],[25,2],[26,2],[27,2],[5,2],[28,2],[29,2],[30,2],[31,2],[6,2],[32,2],[33,2],[34,2],[35,2],[7,2],[40,2],[36,2],[37,2],[38,2],[39,2],[8,2],[41,2],[42,2],[43,2],[1,2],[9,2],[44,2],[48,111],[47,112],[46,113]],"semanticDiagnosticsPerFile":[51,49,54,50,52,53,107,108,109,110,111,112,113,115,121,114,119,116,117,118,120,122,126,106,128,134,129,133,130,132,125,137,139,140,142,143,144,145,146,147,155,131,156,158,159,157,160,161,162,163,164,165,166,167,168,169,170,176,135,184,138,185,127,186,188,189,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,57,104,73,74,75,105,76,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,93,94,95,96,97,98,99,100,101,102,103,190,191,193,192,194,173,195,196,124,123,171,175,197,198,174,199,136,200,201,202,204,141,205,206,219,218,209,210,217,211,212,213,214,215,208,216,207,183,180,179,177,181,182,220,221,178,172,187,148,150,152,151,149,154,153,203,45,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,48,47,46]},"version":"4.4.4"}