@refinitiv-ui/phrasebook 5.5.0-alpha.0 → 6.0.0-next.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/lib/locale/de/appstate-bar.d.ts +7 -0
  3. package/lib/locale/de/appstate-bar.js +7 -0
  4. package/lib/locale/de/color-dialog.js +7 -3
  5. package/lib/locale/de/datetime-field.d.ts +14 -0
  6. package/lib/locale/de/datetime-field.js +16 -0
  7. package/lib/locale/de/notification.d.ts +7 -0
  8. package/lib/locale/de/notification.js +7 -0
  9. package/lib/locale/de/tree-select.js +10 -4
  10. package/lib/locale/en/appstate-bar.d.ts +7 -0
  11. package/lib/locale/en/appstate-bar.js +7 -0
  12. package/lib/locale/en/color-dialog.js +7 -3
  13. package/lib/locale/en/datetime-field.d.ts +14 -0
  14. package/lib/locale/en/datetime-field.js +16 -0
  15. package/lib/locale/en/notification.d.ts +7 -0
  16. package/lib/locale/en/notification.js +7 -0
  17. package/lib/locale/en/tree-select.js +10 -4
  18. package/lib/locale/ja/appstate-bar.d.ts +7 -0
  19. package/lib/locale/ja/appstate-bar.js +7 -0
  20. package/lib/locale/ja/color-dialog.js +7 -3
  21. package/lib/locale/ja/datetime-field.d.ts +14 -0
  22. package/lib/locale/ja/datetime-field.js +16 -0
  23. package/lib/locale/ja/notification.d.ts +7 -0
  24. package/lib/locale/ja/notification.js +7 -0
  25. package/lib/locale/ja/tree-select.js +10 -4
  26. package/lib/locale/zh/appstate-bar.d.ts +7 -0
  27. package/lib/locale/zh/appstate-bar.js +7 -0
  28. package/lib/locale/zh/color-dialog.js +7 -3
  29. package/lib/locale/zh/datetime-field.d.ts +14 -0
  30. package/lib/locale/zh/datetime-field.js +16 -0
  31. package/lib/locale/zh/notification.d.ts +7 -0
  32. package/lib/locale/zh/notification.js +7 -0
  33. package/lib/locale/zh/tree-select.js +10 -4
  34. package/lib/locale/zh-hant/appstate-bar.d.ts +7 -0
  35. package/lib/locale/zh-hant/appstate-bar.js +7 -0
  36. package/lib/locale/zh-hant/color-dialog.js +7 -3
  37. package/lib/locale/zh-hant/datetime-field.d.ts +14 -0
  38. package/lib/locale/zh-hant/datetime-field.js +16 -0
  39. package/lib/locale/zh-hant/notification.d.ts +7 -0
  40. package/lib/locale/zh-hant/notification.js +7 -0
  41. package/lib/locale/zh-hant/tree-select.js +10 -4
  42. package/package.json +28 -54
  43. package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.4.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.4.0...@refinitiv-ui/phrasebook@5.4.1) (2022-01-12)
7
+
8
+ **Note:** Version bump only for package @refinitiv-ui/phrasebook
9
+
10
+
11
+
12
+
13
+
6
14
  # [5.4.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/phrasebook@5.3.0...@refinitiv-ui/phrasebook@5.4.0) (2021-12-21)
7
15
 
8
16
 
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('de', 'ef-appstate-bar', translations);
7
+ export default translations;
@@ -2,10 +2,14 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import dialogTranslations from './dialog';
5
- const translations = Object.assign(Object.assign({}, dialogTranslations), {
5
+ const translations = {
6
+ ...dialogTranslations,
6
7
  // Dialog title
7
- HEADER: 'Farbauswahl',
8
+ HEADER: 'Farbauswahl',
8
9
  // Color values for color mixer, has space for a single character
9
- RED: 'R', GREEN: 'G', BLUE: 'B' });
10
+ RED: 'R',
11
+ GREEN: 'G',
12
+ BLUE: 'B'
13
+ };
10
14
  Phrasebook.define('de', 'ef-color-dialog', translations);
11
15
  export default translations;
@@ -0,0 +1,14 @@
1
+ declare const translations: {
2
+ PICK_YEAR: string;
3
+ PICK_MONTH: string;
4
+ PICK_DAY: string;
5
+ PICK_HOUR: string;
6
+ PICK_MINUTE: string;
7
+ PICK_SECOND: string;
8
+ PICK_WEEKDAY: string;
9
+ PICK_FRACTIONALSECOND: string;
10
+ PICK_DAYPERIOD: string;
11
+ VALUE: string;
12
+ NO_VALUE: string;
13
+ };
14
+ export default translations;
@@ -0,0 +1,16 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ PICK_YEAR: 'Pick Year',
4
+ PICK_MONTH: 'Pick Month',
5
+ PICK_DAY: 'Pick Day',
6
+ PICK_HOUR: 'Pick Hours',
7
+ PICK_MINUTE: 'Pick Minutes',
8
+ PICK_SECOND: 'Pick Seconds',
9
+ PICK_WEEKDAY: 'Pick Weekday',
10
+ PICK_FRACTIONALSECOND: 'Pick Milliseconds',
11
+ PICK_DAYPERIOD: 'Pick Day Period',
12
+ VALUE: 'Current value is {value}',
13
+ NO_VALUE: 'No value'
14
+ };
15
+ Phrasebook.define('de', 'ef-datetime-field', translations);
16
+ export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('de', 'ef-notification', translations);
7
+ export default translations;
@@ -2,12 +2,18 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import comboboxTranslations from './combo-box';
5
- const translations = Object.assign(Object.assign({}, comboboxTranslations), {
5
+ const translations = {
6
+ ...comboboxTranslations,
6
7
  // used as a toggle control
7
- FULL_LIST: 'Vollständige Liste', SELECTED: 'Ausgewählt', EXPAND_COLLAPSE: '{expansion, select, true {Alle einklappen} other {Alle ausklappen}}', SELECT_CONTROL: '{selected, select, true {Auswahl aufheben} other {Alle auswählen}}',
8
+ FULL_LIST: 'Vollständige Liste',
9
+ SELECTED: 'Ausgewählt',
10
+ EXPAND_COLLAPSE: '{expansion, select, true {Alle einklappen} other {Alle ausklappen}}',
11
+ SELECT_CONTROL: '{selected, select, true {Auswahl aufheben} other {Alle auswählen}}',
8
12
  // button control
9
- DONE: 'Fertig',
13
+ DONE: 'Fertig',
10
14
  // selection/filter feedback
11
- SELECTED_NUM: '{numSelected, plural, =0 {} =1 {Eine Auswahl.} other {# ausgewählt.}}', MATCHES_NUM: '{numMatched, plural, =0 {Keine Ergebnisse} =1 {1 Ergebnis} other {# Ergebnisse}}' });
15
+ SELECTED_NUM: '{numSelected, plural, =0 {} =1 {Eine Auswahl.} other {# ausgewählt.}}',
16
+ MATCHES_NUM: '{numMatched, plural, =0 {Keine Ergebnisse} =1 {1 Ergebnis} other {# Ergebnisse}}'
17
+ };
12
18
  Phrasebook.define('de', 'ef-tree-select', translations);
13
19
  export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('en', 'ef-appstate-bar', translations);
7
+ export default translations;
@@ -2,10 +2,14 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import dialogTranslations from './dialog';
5
- const translations = Object.assign(Object.assign({}, dialogTranslations), {
5
+ const translations = {
6
+ ...dialogTranslations,
6
7
  // Dialog title
7
- HEADER: 'Color Picker',
8
+ HEADER: 'Color Picker',
8
9
  // Color values for color mixer, has space for a single character
9
- RED: 'R', GREEN: 'G', BLUE: 'B' });
10
+ RED: 'R',
11
+ GREEN: 'G',
12
+ BLUE: 'B'
13
+ };
10
14
  Phrasebook.define('en', 'ef-color-dialog', translations);
11
15
  export default translations;
@@ -0,0 +1,14 @@
1
+ declare const translations: {
2
+ PICK_YEAR: string;
3
+ PICK_MONTH: string;
4
+ PICK_DAY: string;
5
+ PICK_HOUR: string;
6
+ PICK_MINUTE: string;
7
+ PICK_SECOND: string;
8
+ PICK_WEEKDAY: string;
9
+ PICK_FRACTIONALSECOND: string;
10
+ PICK_DAYPERIOD: string;
11
+ VALUE: string;
12
+ NO_VALUE: string;
13
+ };
14
+ export default translations;
@@ -0,0 +1,16 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ PICK_YEAR: 'Pick Year',
4
+ PICK_MONTH: 'Pick Month',
5
+ PICK_DAY: 'Pick Day',
6
+ PICK_HOUR: 'Pick Hours',
7
+ PICK_MINUTE: 'Pick Minutes',
8
+ PICK_SECOND: 'Pick Seconds',
9
+ PICK_WEEKDAY: 'Pick Weekday',
10
+ PICK_FRACTIONALSECOND: 'Pick Milliseconds',
11
+ PICK_DAYPERIOD: 'Pick Day Period',
12
+ VALUE: 'Current value is {value}',
13
+ NO_VALUE: 'No value'
14
+ };
15
+ Phrasebook.define('en', 'ef-datetime-field', translations);
16
+ export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('en', 'ef-notification', translations);
7
+ export default translations;
@@ -2,12 +2,18 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import comboboxTranslations from './combo-box';
5
- const translations = Object.assign(Object.assign({}, comboboxTranslations), {
5
+ const translations = {
6
+ ...comboboxTranslations,
6
7
  // used as a toggle control
7
- FULL_LIST: 'Full List', SELECTED: 'Selected', EXPAND_COLLAPSE: '{expansion, select, true {Collapse All} other {Expand All}}', SELECT_CONTROL: '{selected, select, true {Deselect All} other {Select All}}',
8
+ FULL_LIST: 'Full List',
9
+ SELECTED: 'Selected',
10
+ EXPAND_COLLAPSE: '{expansion, select, true {Collapse All} other {Expand All}}',
11
+ SELECT_CONTROL: '{selected, select, true {Deselect All} other {Select All}}',
8
12
  // button control
9
- DONE: 'Done',
13
+ DONE: 'Done',
10
14
  // selection/filter feedback
11
- SELECTED_NUM: '{numSelected, plural, =0 {} =1 {One Selected.} other {# Selected.}}', MATCHES_NUM: '{numMatched, plural, =0 {No results found.} =1 {1 result found.} other {# results found.}}' });
15
+ SELECTED_NUM: '{numSelected, plural, =0 {} =1 {One Selected.} other {# Selected.}}',
16
+ MATCHES_NUM: '{numMatched, plural, =0 {No results found.} =1 {1 result found.} other {# results found.}}'
17
+ };
12
18
  Phrasebook.define('en', 'ef-tree-select', translations);
13
19
  export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('ja', 'ef-appstate-bar', translations);
7
+ export default translations;
@@ -2,10 +2,14 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import dialogTranslations from './dialog';
5
- const translations = Object.assign(Object.assign({}, dialogTranslations), {
5
+ const translations = {
6
+ ...dialogTranslations,
6
7
  // Dialog title
7
- HEADER: '色を選択',
8
+ HEADER: '色を選択',
8
9
  // Color values for color mixer, has space for a single character
9
- RED: 'R', GREEN: 'G', BLUE: 'B' });
10
+ RED: 'R',
11
+ GREEN: 'G',
12
+ BLUE: 'B'
13
+ };
10
14
  Phrasebook.define('ja', 'ef-color-dialog', translations);
11
15
  export default translations;
@@ -0,0 +1,14 @@
1
+ declare const translations: {
2
+ PICK_YEAR: string;
3
+ PICK_MONTH: string;
4
+ PICK_DAY: string;
5
+ PICK_HOUR: string;
6
+ PICK_MINUTE: string;
7
+ PICK_SECOND: string;
8
+ PICK_WEEKDAY: string;
9
+ PICK_FRACTIONALSECOND: string;
10
+ PICK_DAYPERIOD: string;
11
+ VALUE: string;
12
+ NO_VALUE: string;
13
+ };
14
+ export default translations;
@@ -0,0 +1,16 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ PICK_YEAR: 'Pick Year',
4
+ PICK_MONTH: 'Pick Month',
5
+ PICK_DAY: 'Pick Day',
6
+ PICK_HOUR: 'Pick Hours',
7
+ PICK_MINUTE: 'Pick Minutes',
8
+ PICK_SECOND: 'Pick Seconds',
9
+ PICK_WEEKDAY: 'Pick Weekday',
10
+ PICK_FRACTIONALSECOND: 'Pick Milliseconds',
11
+ PICK_DAYPERIOD: 'Pick Day Period',
12
+ VALUE: 'Current value is {value}',
13
+ NO_VALUE: 'No value'
14
+ };
15
+ Phrasebook.define('ja', 'ef-datetime-field', translations);
16
+ export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('ja', 'ef-notification', translations);
7
+ export default translations;
@@ -2,12 +2,18 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import comboboxTranslations from './combo-box';
5
- const translations = Object.assign(Object.assign({}, comboboxTranslations), {
5
+ const translations = {
6
+ ...comboboxTranslations,
6
7
  // used as a toggle control
7
- FULL_LIST: 'すべて', SELECTED: '選択項目のみ', EXPAND_COLLAPSE: '{expansion, select, false {すべてを展開} other {すべてを折りたたむ}}', SELECT_CONTROL: '{selected, select, false {すべて選択} other {選択をすべて解除}}',
8
+ FULL_LIST: 'すべて',
9
+ SELECTED: '選択項目のみ',
10
+ EXPAND_COLLAPSE: '{expansion, select, false {すべてを展開} other {すべてを折りたたむ}}',
11
+ SELECT_CONTROL: '{selected, select, false {すべて選択} other {選択をすべて解除}}',
8
12
  // button control
9
- DONE: '完了',
13
+ DONE: '完了',
10
14
  // selection/filter feedback
11
- SELECTED_NUM: '{numSelected, plural, =0 {} =1 {1 件選択済み} other {# 件選択済み}}', MATCHES_NUM: '{numMatched, plural, =0 {該当項目はありません} =1 {検索結果 – 1件} other {検索結果 – #件}}' });
15
+ SELECTED_NUM: '{numSelected, plural, =0 {} =1 {1 件選択済み} other {# 件選択済み}}',
16
+ MATCHES_NUM: '{numMatched, plural, =0 {該当項目はありません} =1 {検索結果 – 1件} other {検索結果 – #件}}'
17
+ };
12
18
  Phrasebook.define('ja', 'ef-tree-select', translations);
13
19
  export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('zh', 'ef-appstate-bar', translations);
7
+ export default translations;
@@ -2,10 +2,14 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import dialogTranslations from './dialog';
5
- const translations = Object.assign(Object.assign({}, dialogTranslations), {
5
+ const translations = {
6
+ ...dialogTranslations,
6
7
  // Dialog title
7
- HEADER: '颜色选择',
8
+ HEADER: '颜色选择',
8
9
  // Color values for color mixer, has space for a single character
9
- RED: 'R', GREEN: 'G', BLUE: 'B' });
10
+ RED: 'R',
11
+ GREEN: 'G',
12
+ BLUE: 'B'
13
+ };
10
14
  Phrasebook.define('zh', 'ef-color-dialog', translations);
11
15
  export default translations;
@@ -0,0 +1,14 @@
1
+ declare const translations: {
2
+ PICK_YEAR: string;
3
+ PICK_MONTH: string;
4
+ PICK_DAY: string;
5
+ PICK_HOUR: string;
6
+ PICK_MINUTE: string;
7
+ PICK_SECOND: string;
8
+ PICK_WEEKDAY: string;
9
+ PICK_FRACTIONALSECOND: string;
10
+ PICK_DAYPERIOD: string;
11
+ VALUE: string;
12
+ NO_VALUE: string;
13
+ };
14
+ export default translations;
@@ -0,0 +1,16 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ PICK_YEAR: 'Pick Year',
4
+ PICK_MONTH: 'Pick Month',
5
+ PICK_DAY: 'Pick Day',
6
+ PICK_HOUR: 'Pick Hours',
7
+ PICK_MINUTE: 'Pick Minutes',
8
+ PICK_SECOND: 'Pick Seconds',
9
+ PICK_WEEKDAY: 'Pick Weekday',
10
+ PICK_FRACTIONALSECOND: 'Pick Milliseconds',
11
+ PICK_DAYPERIOD: 'Pick Day Period',
12
+ VALUE: 'Current value is {value}',
13
+ NO_VALUE: 'No value'
14
+ };
15
+ Phrasebook.define('zh', 'ef-datetime-field', translations);
16
+ export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('zh', 'ef-notification', translations);
7
+ export default translations;
@@ -2,12 +2,18 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import comboboxTranslations from './combo-box';
5
- const translations = Object.assign(Object.assign({}, comboboxTranslations), {
5
+ const translations = {
6
+ ...comboboxTranslations,
6
7
  // used as a toggle control
7
- FULL_LIST: '全部列表', SELECTED: '已选项列表', EXPAND_COLLAPSE: '{expansion, select, true {全部收起} other {全部展开}}', SELECT_CONTROL: '{selected, select, true {取消全选} other {全选}}',
8
+ FULL_LIST: '全部列表',
9
+ SELECTED: '已选项列表',
10
+ EXPAND_COLLAPSE: '{expansion, select, true {全部收起} other {全部展开}}',
11
+ SELECT_CONTROL: '{selected, select, true {取消全选} other {全选}}',
8
12
  // button control
9
- DONE: '完成',
13
+ DONE: '完成',
10
14
  // selection/filter feedback
11
- SELECTED_NUM: '{numSelected, plural, =0 {} =1 {已选 1 项。} other {已选 # 项。}}', MATCHES_NUM: '{numMatched, plural, =0 {未找到结果。} =1 {找到了 1 个结果。} other {找到了 # 个结果。}}' });
15
+ SELECTED_NUM: '{numSelected, plural, =0 {} =1 {已选 1 项。} other {已选 # 项。}}',
16
+ MATCHES_NUM: '{numMatched, plural, =0 {未找到结果。} =1 {找到了 1 个结果。} other {找到了 # 个结果。}}'
17
+ };
12
18
  Phrasebook.define('zh', 'ef-tree-select', translations);
13
19
  export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('zh-Hant', 'ef-appstate-bar', translations);
7
+ export default translations;
@@ -2,10 +2,14 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import dialogTranslations from './dialog';
5
- const translations = Object.assign(Object.assign({}, dialogTranslations), {
5
+ const translations = {
6
+ ...dialogTranslations,
6
7
  // Dialog title
7
- HEADER: '顏色選擇',
8
+ HEADER: '顏色選擇',
8
9
  // Color values for color mixer, has space for a single character
9
- RED: 'R', GREEN: 'G', BLUE: 'B' });
10
+ RED: 'R',
11
+ GREEN: 'G',
12
+ BLUE: 'B'
13
+ };
10
14
  Phrasebook.define('zh-Hant', 'ef-color-dialog', translations);
11
15
  export default translations;
@@ -0,0 +1,14 @@
1
+ declare const translations: {
2
+ PICK_YEAR: string;
3
+ PICK_MONTH: string;
4
+ PICK_DAY: string;
5
+ PICK_HOUR: string;
6
+ PICK_MINUTE: string;
7
+ PICK_SECOND: string;
8
+ PICK_WEEKDAY: string;
9
+ PICK_FRACTIONALSECOND: string;
10
+ PICK_DAYPERIOD: string;
11
+ VALUE: string;
12
+ NO_VALUE: string;
13
+ };
14
+ export default translations;
@@ -0,0 +1,16 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ const translations = {
3
+ PICK_YEAR: 'Pick Year',
4
+ PICK_MONTH: 'Pick Month',
5
+ PICK_DAY: 'Pick Day',
6
+ PICK_HOUR: 'Pick Hours',
7
+ PICK_MINUTE: 'Pick Minutes',
8
+ PICK_SECOND: 'Pick Seconds',
9
+ PICK_WEEKDAY: 'Pick Weekday',
10
+ PICK_FRACTIONALSECOND: 'Pick Milliseconds',
11
+ PICK_DAYPERIOD: 'Pick Day Period',
12
+ VALUE: 'Current value is {value}',
13
+ NO_VALUE: 'No value'
14
+ };
15
+ Phrasebook.define('zh-Hant', 'ef-datetime-field', translations);
16
+ export default translations;
@@ -0,0 +1,7 @@
1
+ declare const translations: {
2
+ CANCEL: string;
3
+ OK: string;
4
+ CLOSE: string;
5
+ APPLY: string;
6
+ };
7
+ export default translations;
@@ -0,0 +1,7 @@
1
+ import { Phrasebook } from '../../translation.js';
2
+ import shareTranslate from './shared.js';
3
+ const translations = {
4
+ ...shareTranslate
5
+ };
6
+ Phrasebook.define('zh-Hant', 'ef-notification', translations);
7
+ export default translations;
@@ -2,12 +2,18 @@
2
2
  import { Phrasebook } from '../../translation.js';
3
3
  import './shared.js';
4
4
  import comboboxTranslations from './combo-box';
5
- const translations = Object.assign(Object.assign({}, comboboxTranslations), {
5
+ const translations = {
6
+ ...comboboxTranslations,
6
7
  // used as a toggle control
7
- FULL_LIST: '完整列表', SELECTED: '已選項列表', EXPAND_COLLAPSE: '{expansion, select, true {全部收起} other {全部展開}}', SELECT_CONTROL: '{selected, select, true {取消全選} other {全選}}',
8
+ FULL_LIST: '完整列表',
9
+ SELECTED: '已選項列表',
10
+ EXPAND_COLLAPSE: '{expansion, select, true {全部收起} other {全部展開}}',
11
+ SELECT_CONTROL: '{selected, select, true {取消全選} other {全選}}',
8
12
  // button control
9
- DONE: '完成',
13
+ DONE: '完成',
10
14
  // selection/filter feedback
11
- SELECTED_NUM: '{numSelected, plural, =0 {} =1 {已選 1 項。} other {已選 # 項。}}', MATCHES_NUM: '{numMatched, plural, =0 {未找到結果。} =1 {找到了 1 個結果。} other {找到了 # 個結果。}}' });
15
+ SELECTED_NUM: '{numSelected, plural, =0 {} =1 {已選 1 項。} other {已選 # 項。}}',
16
+ MATCHES_NUM: '{numMatched, plural, =0 {未找到結果。} =1 {找到了 1 個結果。} other {找到了 # 個結果。}}'
17
+ };
12
18
  Phrasebook.define('zh-Hant', 'ef-tree-select', translations);
13
19
  export default translations;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/phrasebook",
3
- "version": "5.5.0-alpha.0",
3
+ "version": "6.0.0-next.0",
4
4
  "description": "Collection of messages in EF components for translation",
5
5
  "author": "Refinitiv",
6
6
  "license": "Apache-2.0",
@@ -12,11 +12,20 @@
12
12
  "url": "git@github.com:Refinitiv/refinitiv-ui.git",
13
13
  "directory": "packages/phrasebook"
14
14
  },
15
+ "typesVersions": {
16
+ "*": {
17
+ "*.js": [
18
+ "lib/*.d.ts"
19
+ ]
20
+ }
21
+ },
15
22
  "exports": {
16
23
  ".": "./lib/index.js",
24
+ "./locale/de/appstate-bar.js": "./lib/locale/de/appstate-bar.js",
17
25
  "./locale/de/calendar.js": "./lib/locale/de/calendar.js",
18
26
  "./locale/de/color-dialog.js": "./lib/locale/de/color-dialog.js",
19
27
  "./locale/de/combo-box.js": "./lib/locale/de/combo-box.js",
28
+ "./locale/de/datetime-field.js": "./lib/locale/de/datetime-field.js",
20
29
  "./locale/de/dialog.js": "./lib/locale/de/dialog.js",
21
30
  "./locale/de/pagination.js": "./lib/locale/de/pagination.js",
22
31
  "./locale/de/password-field.js": "./lib/locale/de/password-field.js",
@@ -24,9 +33,12 @@
24
33
  "./locale/de/shared.js": "./lib/locale/de/shared.js",
25
34
  "./locale/de/time-picker.js": "./lib/locale/de/time-picker.js",
26
35
  "./locale/de/tree-select.js": "./lib/locale/de/tree-select.js",
36
+ "./locale/de/notification.js": "./lib/locale/de/notification.js",
37
+ "./locale/en/appstate-bar.js": "./lib/locale/en/appstate-bar.js",
27
38
  "./locale/en/calendar.js": "./lib/locale/en/calendar.js",
28
39
  "./locale/en/color-dialog.js": "./lib/locale/en/color-dialog.js",
29
40
  "./locale/en/combo-box.js": "./lib/locale/en/combo-box.js",
41
+ "./locale/en/datetime-field.js": "./lib/locale/en/datetime-field.js",
30
42
  "./locale/en/dialog.js": "./lib/locale/en/dialog.js",
31
43
  "./locale/en/pagination.js": "./lib/locale/en/pagination.js",
32
44
  "./locale/en/password-field.js": "./lib/locale/en/password-field.js",
@@ -34,9 +46,12 @@
34
46
  "./locale/en/shared.js": "./lib/locale/en/shared.js",
35
47
  "./locale/en/time-picker.js": "./lib/locale/en/time-picker.js",
36
48
  "./locale/en/tree-select.js": "./lib/locale/en/tree-select.js",
49
+ "./locale/en/notification.js": "./lib/locale/en/notification.js",
50
+ "./locale/ja/appstate-bar.js": "./lib/locale/ja/appstate-bar.js",
37
51
  "./locale/ja/calendar.js": "./lib/locale/ja/calendar.js",
38
52
  "./locale/ja/color-dialog.js": "./lib/locale/ja/color-dialog.js",
39
53
  "./locale/ja/combo-box.js": "./lib/locale/ja/combo-box.js",
54
+ "./locale/ja/datetime-field.js": "./lib/locale/ja/datetime-field.js",
40
55
  "./locale/ja/dialog.js": "./lib/locale/ja/dialog.js",
41
56
  "./locale/ja/pagination.js": "./lib/locale/ja/pagination.js",
42
57
  "./locale/ja/password-field.js": "./lib/locale/ja/password-field.js",
@@ -44,9 +59,12 @@
44
59
  "./locale/ja/shared.js": "./lib/locale/ja/shared.js",
45
60
  "./locale/ja/time-picker.js": "./lib/locale/ja/time-picker.js",
46
61
  "./locale/ja/tree-select.js": "./lib/locale/ja/tree-select.js",
62
+ "./locale/ja/notification.js": "./lib/locale/ja/notification.js",
63
+ "./locale/zh/appstate-bar.js": "./lib/locale/zh/appstate-bar.js",
47
64
  "./locale/zh/calendar.js": "./lib/locale/zh/calendar.js",
48
65
  "./locale/zh/color-dialog.js": "./lib/locale/zh/color-dialog.js",
49
66
  "./locale/zh/combo-box.js": "./lib/locale/zh/combo-box.js",
67
+ "./locale/zh/datetime-field.js": "./lib/locale/zh/datetime-field.js",
50
68
  "./locale/zh/dialog.js": "./lib/locale/zh/dialog.js",
51
69
  "./locale/zh/pagination.js": "./lib/locale/zh/pagination.js",
52
70
  "./locale/zh/password-field.js": "./lib/locale/zh/password-field.js",
@@ -54,9 +72,12 @@
54
72
  "./locale/zh/shared.js": "./lib/locale/zh/shared.js",
55
73
  "./locale/zh/time-picker.js": "./lib/locale/zh/time-picker.js",
56
74
  "./locale/zh/tree-select.js": "./lib/locale/zh/tree-select.js",
75
+ "./locale/zh/notification.js": "./lib/locale/zh/notification.js",
76
+ "./locale/zh-hant/appstate-bar.js": "./lib/locale/zh-hant/appstate-bar.js",
57
77
  "./locale/zh-hant/calendar.js": "./lib/locale/zh-hant/calendar.js",
58
78
  "./locale/zh-hant/color-dialog.js": "./lib/locale/zh-hant/color-dialog.js",
59
79
  "./locale/zh-hant/combo-box.js": "./lib/locale/zh-hant/combo-box.js",
80
+ "./locale/zh-hant/datetime-field.js": "./lib/locale/zh-hant/datetime-field.js",
60
81
  "./locale/zh-hant/dialog.js": "./lib/locale/zh-hant/dialog.js",
61
82
  "./locale/zh-hant/pagination.js": "./lib/locale/zh-hant/pagination.js",
62
83
  "./locale/zh-hant/password-field.js": "./lib/locale/zh-hant/password-field.js",
@@ -64,56 +85,7 @@
64
85
  "./locale/zh-hant/shared.js": "./lib/locale/zh-hant/shared.js",
65
86
  "./locale/zh-hant/time-picker.js": "./lib/locale/zh-hant/time-picker.js",
66
87
  "./locale/zh-hant/tree-select.js": "./lib/locale/zh-hant/tree-select.js",
67
- "./lib/locale/de/calendar.js": "./lib/locale/de/calendar.js",
68
- "./lib/locale/de/color-dialog.js": "./lib/locale/de/color-dialog.js",
69
- "./lib/locale/de/combo-box.js": "./lib/locale/de/combo-box.js",
70
- "./lib/locale/de/dialog.js": "./lib/locale/de/dialog.js",
71
- "./lib/locale/de/pagination.js": "./lib/locale/de/pagination.js",
72
- "./lib/locale/de/password-field.js": "./lib/locale/de/password-field.js",
73
- "./lib/locale/de/search-field.js": "./lib/locale/de/search-field.js",
74
- "./lib/locale/de/shared.js": "./lib/locale/de/shared.js",
75
- "./lib/locale/de/time-picker.js": "./lib/locale/de/time-picker.js",
76
- "./lib/locale/de/tree-select.js": "./lib/locale/de/tree-select.js",
77
- "./lib/locale/en/calendar.js": "./lib/locale/en/calendar.js",
78
- "./lib/locale/en/color-dialog.js": "./lib/locale/en/color-dialog.js",
79
- "./lib/locale/en/combo-box.js": "./lib/locale/en/combo-box.js",
80
- "./lib/locale/en/dialog.js": "./lib/locale/en/dialog.js",
81
- "./lib/locale/en/pagination.js": "./lib/locale/en/pagination.js",
82
- "./lib/locale/en/password-field.js": "./lib/locale/en/password-field.js",
83
- "./lib/locale/en/search-field.js": "./lib/locale/en/search-field.js",
84
- "./lib/locale/en/shared.js": "./lib/locale/en/shared.js",
85
- "./lib/locale/en/time-picker.js": "./lib/locale/en/time-picker.js",
86
- "./lib/locale/en/tree-select.js": "./lib/locale/en/tree-select.js",
87
- "./lib/locale/ja/calendar.js": "./lib/locale/ja/calendar.js",
88
- "./lib/locale/ja/color-dialog.js": "./lib/locale/ja/color-dialog.js",
89
- "./lib/locale/ja/combo-box.js": "./lib/locale/ja/combo-box.js",
90
- "./lib/locale/ja/dialog.js": "./lib/locale/ja/dialog.js",
91
- "./lib/locale/ja/pagination.js": "./lib/locale/ja/pagination.js",
92
- "./lib/locale/ja/password-field.js": "./lib/locale/ja/password-field.js",
93
- "./lib/locale/ja/search-field.js": "./lib/locale/ja/search-field.js",
94
- "./lib/locale/ja/shared.js": "./lib/locale/ja/shared.js",
95
- "./lib/locale/ja/time-picker.js": "./lib/locale/ja/time-picker.js",
96
- "./lib/locale/ja/tree-select.js": "./lib/locale/ja/tree-select.js",
97
- "./lib/locale/zh/calendar.js": "./lib/locale/zh/calendar.js",
98
- "./lib/locale/zh/color-dialog.js": "./lib/locale/zh/color-dialog.js",
99
- "./lib/locale/zh/combo-box.js": "./lib/locale/zh/combo-box.js",
100
- "./lib/locale/zh/dialog.js": "./lib/locale/zh/dialog.js",
101
- "./lib/locale/zh/pagination.js": "./lib/locale/zh/pagination.js",
102
- "./lib/locale/zh/password-field.js": "./lib/locale/zh/password-field.js",
103
- "./lib/locale/zh/search-field.js": "./lib/locale/zh/search-field.js",
104
- "./lib/locale/zh/shared.js": "./lib/locale/zh/shared.js",
105
- "./lib/locale/zh/time-picker.js": "./lib/locale/zh/time-picker.js",
106
- "./lib/locale/zh/tree-select.js": "./lib/locale/zh/tree-select.js",
107
- "./lib/locale/zh-hant/calendar.js": "./lib/locale/zh-hant/calendar.js",
108
- "./lib/locale/zh-hant/color-dialog.js": "./lib/locale/zh-hant/color-dialog.js",
109
- "./lib/locale/zh-hant/combo-box.js": "./lib/locale/zh-hant/combo-box.js",
110
- "./lib/locale/zh-hant/dialog.js": "./lib/locale/zh-hant/dialog.js",
111
- "./lib/locale/zh-hant/pagination.js": "./lib/locale/zh-hant/pagination.js",
112
- "./lib/locale/zh-hant/password-field.js": "./lib/locale/zh-hant/password-field.js",
113
- "./lib/locale/zh-hant/search-field.js": "./lib/locale/zh-hant/search-field.js",
114
- "./lib/locale/zh-hant/shared.js": "./lib/locale/zh-hant/shared.js",
115
- "./lib/locale/zh-hant/time-picker.js": "./lib/locale/zh-hant/time-picker.js",
116
- "./lib/locale/zh-hant/tree-select.js": "./lib/locale/zh-hant/tree-select.js"
88
+ "./locale/zh-hant/notification.js": "./lib/locale/zh-hant/notification.js"
117
89
  },
118
90
  "scripts": {
119
91
  "build": "tsc --sourceMap --declarationMap",
@@ -121,7 +93,9 @@
121
93
  "build:prod": "tsc",
122
94
  "lint": "eslint .",
123
95
  "lint:fix": "eslint . --fix",
124
- "test": "npm run build && mocha __test__/**/*.js --require esm"
96
+ "test": "npm run build && mocha __test__/**/*.js --require esm",
97
+ "prepack": "npm run version",
98
+ "version": "node ../../scripts/version"
125
99
  },
126
100
  "devDependencies": {
127
101
  "chai": "^4.3.4",
@@ -134,5 +108,5 @@
134
108
  "dependencies": {
135
109
  "tslib": "^2.3.1"
136
110
  },
137
- "gitHead": "41ad2a9927526e4beaccc6d519bc16b0c20e5864"
138
- }
111
+ "gitHead": "bcf7e781bfe92f3450e916730ba87c050d8744af"
112
+ }
@@ -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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.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.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","./src/types.ts","./src/translation.ts","./src/index.ts","./src/locale/de/calendar.ts","./src/locale/de/shared.ts","./src/locale/de/dialog.ts","./src/locale/de/color-dialog.ts","./src/locale/de/combo-box.ts","./src/locale/de/pagination.ts","./src/locale/de/password-field.ts","./src/locale/de/search-field.ts","./src/locale/de/time-picker.ts","./src/locale/de/tree-select.ts","./src/locale/en/calendar.ts","./src/locale/en/shared.ts","./src/locale/en/dialog.ts","./src/locale/en/color-dialog.ts","./src/locale/en/combo-box.ts","./src/locale/en/pagination.ts","./src/locale/en/password-field.ts","./src/locale/en/search-field.ts","./src/locale/en/time-picker.ts","./src/locale/en/tree-select.ts","./src/locale/ja/calendar.ts","./src/locale/ja/shared.ts","./src/locale/ja/dialog.ts","./src/locale/ja/color-dialog.ts","./src/locale/ja/combo-box.ts","./src/locale/ja/pagination.ts","./src/locale/ja/password-field.ts","./src/locale/ja/search-field.ts","./src/locale/ja/time-picker.ts","./src/locale/ja/tree-select.ts","./src/locale/zh/calendar.ts","./src/locale/zh/shared.ts","./src/locale/zh/dialog.ts","./src/locale/zh/color-dialog.ts","./src/locale/zh/combo-box.ts","./src/locale/zh/pagination.ts","./src/locale/zh/password-field.ts","./src/locale/zh/search-field.ts","./src/locale/zh/time-picker.ts","./src/locale/zh/tree-select.ts","./src/locale/zh-hant/calendar.ts","./src/locale/zh-hant/shared.ts","./src/locale/zh-hant/dialog.ts","./src/locale/zh-hant/color-dialog.ts","./src/locale/zh-hant/combo-box.ts","./src/locale/zh-hant/pagination.ts","./src/locale/zh-hant/password-field.ts","./src/locale/zh-hant/search-field.ts","./src/locale/zh-hant/time-picker.ts","./src/locale/zh-hant/tree-select.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/accepts/index.d.ts","../../node_modules/@types/babel__code-frame/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/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/browserslist-useragent/index.d.ts","../../node_modules/@types/caniuse-api/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-dom/index.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/@types/chart.js/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/co-body/index.d.ts","../../node_modules/@types/command-line-args/index.d.ts","../../node_modules/@types/command-line-usage/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/content-disposition/index.d.ts","../../node_modules/@types/convert-source-map/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/keygrip/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/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/cookies/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/debounce/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/etag/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/http-assert/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/koa-compose/index.d.ts","../../node_modules/@types/koa/index.d.ts","../../node_modules/@types/koa-compress/index.d.ts","../../node_modules/@types/koa-etag/index.d.ts","../../node_modules/@types/koa-send/index.d.ts","../../node_modules/@types/koa-static/index.d.ts","../../node_modules/@types/koa__cors/index.d.ts","../../node_modules/@types/lru-cache/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/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/path-is-inside/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/whatwg-url/index.d.ts","../../node_modules/@types/ws/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","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":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","8669f194b7f88f994d6b78a7686874c5b26dd6628f748f2e21d046d5684281fc","28c5b6eb2fd8a2f693425bdafd02fa0e73a1ff8352beaefac21cdae8b6b96085","96026375693d97b5220b7910dcf2d96ce2c7a3d29bd4e317ce8c1b87c46343b1","a8ef9ce69a712ddbc74a48cd504ba526844831545df5d947e66f532e45f9f4ff","5933cc2500f4e5abbbafb0b9aebc7e72efdabc04a1215cdb683c17d914bca2b2","38d94f3e3bc421b5156807af15e6c68ae73e92ecfaf96eabc1d9838902527ede","20b197d99216796838e4fb2d5ccaba154e840b80fef6e5110f6cf9eae430bf4e","39a9762192092835ce31c414e519527d2535f37bbd3714eb7dc7c5f3938c02a8","3326001a9fe6636f0e780a960b1024f0ca41e264468c1abda13fe1099775b4a2","295b13e37bf55a94e1ce88f1fb6d10cefe547d4780c37b280d6ae99581b1ee05","11cace5385417a326b24c7b21ca01fff9c78dbf7755bfb652ec0830c8eafe044","2628030c7b49402a54e9c698555e3833d972233edc1a1340b53cd0d3cf4b6533","c75f36224e1b609a5d5cbbb65af0a309498a427bb913c0c35963b639f1137c31","9516e7be5002d54a7000c8d8f4963be0d0beb1793a6f351f6aa52dce5ee362ed","be83d519cd7a35c42ce5fee2463cc25b1ac6afa0ae401697703410b3bce129e1","ccbe825c4df17c617ada28b21762cee2bf8babcde0fd5a00937840440d7c0955","3dd3af5858865b2ea71247e57db5addda88b04624485dffd22524bc646cc00bd","f7029257f80f7ca80f2142d6e6dd17d46965a5e136f40583b79469df3fae5d17","6bd91e78b53202850eb536dd696bd8ddef1ec9754af1159fe06ca3946a533122","5ebb5dba6751ee640efc6d4e303555ca08d55a5cc7f789b664c8055e87acb86c","55fe35b2bf0ea43fc0a05cebe2ee32282b8a66f7ab06e5057778c2297ab26cf1","3f60b2bf18fa3e9d8dea3c3ad49393c286c47fc50fa937dd8d6e2b8cd056d258","5bbde0e1d403aa133652e92ba2aae27b216055e42409cfe92e9068fb5d7352a8","d9929a72fedf5a22da51d7222d6782a84ba015a33430463934bdd2f7e7b24428","532f8096c6f6323d48d828cdadff2db8376627f32780db532e3b8f92cc106e46","1f286103f5df6770cb43c4828d92b9faa368d1ede7279db64eb39dd6e18eefe6","36d3eb61c90cfbca414504f4a04a23304eb0cc57514a42ae67a9927db398ab90","cb63e6909c49aa04b39495163b065c172b025e6c4ab9a46aa665d59ac5282f97","16814c79cd735a7ad17412f09e20ef78e22f0b5f5438cc234fea0721d5f24c36","779638852ca79be3d257aa4745364eadb01248d6196c7883ef8ad0dcf31a868d","357d831773d740b7b8a6cb2d4ba2dffdad04a8a09bac65986eb8f19b155a18e2","71c27e46934bf05e31955177c3485b57ef2d84466c57e7d71ff1463233e358fa","6d66ca7c4e85800825915a6426018bc7320885cdb73deb0c4eeb4ba24e5bed26","664bddbed52fc3cea14dd1250a1199ce006c598ce34a768dbbd9ab439bd30410","56c7ceb116542e571083a816d5dacb2d8cb0228f8176c9168217202dfb01f7e0","1c7706954055af680a78a3337238c53e501d8339237cbe19c811ad6be36cd3eb","2e3d0700927f9f6dec224d9b48f19a66e6945f02e69e551175e96c19f4d3e216","7b18e9bebf522b3be3729df229c674bcdb6eec2d11715baf8ffb1ef40107a339","26d51fe6a3e897979f2602dcda040e2fa29c29f1d84b8f7e9aaefdd8ef2ad18c","3c91fa389832237e7198be11d400c56ebc739f4b7a4aed4c28efcc594ca12069","1ecf4194fc57b77a8ca77718a86424de84b4842bf60c50dadb22484e27a22d7c","2b53346a1657919a0773017befcaf557655914555ff5d71016ab27aeb20c47a9","12d4235aa4ea583918091c04a6a904cdcb6b4aa17898693dac0c580933148af6","a1f55a98fdfd3c95e6d554aef93c2bda89ab49bb07db95c4f64d484c19d664ad","6f82af4cf3e5bb13f6a9ea9929378d2ed767fa9ac9271ce9654cc6092d0b68cd","3f189720cd3b742c9f6dc27b5d7f231a55448aca12fdae545b514598dedcc99f","508b8d1873dd069cdcb4677f8ba609da923cf9d17a4810dde3929f44c8642ce3","ff198175c7a905c74ad0497ed5d76aa7b4b68c879bc269f7fbee64b3c599a5dd","206066b2f6d1e3d6a0bcd59de63287c29f6817ed5bb00cb294d2a8042bb01198","7f532440a2a9114b47c6e1fa029515be0ba037586df448c3a8aee1e032f3e883","8885fec5434e8979fdf9c0c44a1e41dc7612b30ddc9657047aed5dfc2648409a","d0c23b3a850d8a3067e2ec063fd2fd16387c2bd4b7b2099633c34e6fa1165424","add5cd975cabefa3089e93fc7b4c3fec098c258dd440ed422ce0c48b850bb25e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","fce6a1a1553ff7d54ffb8bb3ae488c9cb5f2f4f4e52212c1abe40f544819ef35","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","b95f751a58d283cb5e32f2655361f6e2a27f0368f69edc463a3472aae21d1303","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","9eb49645576740f4fb4cca25cadbc0d7e61a218c215e8578dd899b01d5db89d4","d59cea1102bba38053ca19260e37bda2715df10d147c40db92035c0420489358",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"d95d76d79a0351572ec5b1a6cc1e5c4bce1be82eedeed7278d6f31ea1059fa69","affectsGlobalScope":true},"f97edc4d3b4dd0b32766e9633086497565c37657fb591cc84a35864db4bc2fc5","9f47decc2af980bb05b5c76464c08d23d28363ddf8d5352120f4026b083af8ac","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","495da6628b9474e31d0636d66c54448bb8d84dbce902e8f70539ef6a525a2d7b","629766229f541d92210f30a92b6038568ec165fab14b7ee53bdf13667da37ca3","29193c018378ca9c8033eaa974c02c1f503e8fcd8a2bf406057c53f7d3fa17a8","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","e4dfe0e169e1cb3c8dd0713972e94e2141595c840ed7387623ac8b29fc6c35b8","c1ea344dc311b2c539ed1e3b4e17e9f4853dc7f348366b51f1d8a09a40fb223f","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",{"version":"548311a7ece846e4b9c70c3cb5ac0776559957ff6fcedfde938ebe2774439509","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","c168e28f723898f77b8140887b06baced58aa902327aea3746571756f7a721b5","c24944ff5879b91478b153cf16802b9c6a10cfa3b7d85855813a08431ec2d36a","68c559681a043ca6d622debcce75c4d82446fec08e06bf1066f71d6c325f224e","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","7e510fb0ca02da05976eb0dbfeb42bdb0dc64b78acbb3b5ecf77ddd57ce08cda","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","ee736349ccbd61aa257ef9811668109d57ab9e9dea654b6ccd7bb274e5584a20","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","0c52f5366c9146ad79b546e70162c659972a2798522806e8283f3137feab3965","d1494c6dbbe5fca590ca73ccd21d013e6617e9ea19773c9ca7c0f3214df86628","97395602cea957af0cf517d84b651a07e010192db667ba379d36bec40cdbef52","f88d8a4ba9ad0270309cf46121d3dc9fb055bea08ac3e699d2b4673b1e6a25ea","b6360d5b5a52a1d6fc6b9838135f766b638e7c7a03b227974344200be603c150","c2076e1fa255efd41a6f0b6b3b83d4340d88122073e98f9b223dcea8437ee46f","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"c4c03cf65951d980ba618ae9601d10438730803fc9c8a1f7b34af8739981e205","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","a0b27b55228349ea85cecd9479ace1009697af44b66527f30526a1539d4e78ea","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"0f048a7e91a4c764f08be48e156c9d274a038cb454d312427214ab4d34a9a5ab","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31"],"options":{"declaration":true,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":5,"noEmitHelpers":true,"outDir":"./lib","rootDir":"./src","sourceMap":false,"strict":true,"target":4},"fileIdsList":[[138,148],[138],[113,138,145],[138,148,149,150,151,152],[138,148,150],[113,138,145,154],[138,158],[138,160],[113,138,145,162],[113,138,145,154,170,175],[113,138],[138,178],[138,145],[110,113,138,145,162,171],[138,155,162,172,174],[110,111,138,145,183],[138,187],[138,188],[138,192],[138,143,145,192],[138,182,192],[111,138,192],[138,192,195],[110,113,114,118,124,137,138,145,146,167,170,176,185,186,191],[95,138],[98,138],[99,104,138],[100,110,111,118,127,137,138],[100,101,110,118,138],[102,138],[103,104,111,119,138],[104,127,134,138],[105,107,110,118,138],[106,138],[107,108,138],[109,110,138],[110,138],[110,111,112,127,137,138],[110,111,112,127,138],[113,118,127,137,138],[110,111,113,114,118,127,134,137,138],[113,115,127,134,137,138],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[110,116,138],[117,137,138],[107,110,118,127,138],[119,138],[120,138],[98,121,138],[122,136,138,142],[123,138],[124,138],[110,125,138],[125,126,138,140],[110,127,128,129,138],[127,129,138],[127,128,138],[130,138],[131,138],[110,132,133,138],[132,133,138],[104,118,127,134,138],[135,138],[118,136,138],[99,113,124,137,138],[104,138],[127,138,139],[138,140],[138,141],[99,104,110,112,121,127,137,138,140,142],[127,138,143],[138,204],[138,205],[113,138,145,173],[138,158,209],[138,208],[138,211],[110,113,115,118,127,134,137,138,143,145],[41,42,43,138],[41,43,138],[41,43,46,47,138],[41,43,46,138],[41,43,46,49,138],[41,43,56,57,138],[41,43,56,138],[41,43,56,59,138],[41,43,66,67,138],[41,43,66,138],[41,43,66,69,138],[41,43,86,87,138],[41,43,86,138],[41,43,86,89,138],[41,43,76,77,138],[41,43,76,138],[41,43,76,79,138],[41,42,138],[41,138]],"referencedMap":[[150,1],[148,2],[146,3],[147,2],[153,4],[149,1],[151,5],[152,1],[155,6],[156,2],[157,2],[159,7],[158,2],[161,8],[163,9],[164,2],[165,2],[166,2],[154,3],[167,2],[168,2],[169,2],[176,10],[177,11],[178,2],[179,12],[180,2],[181,2],[182,13],[172,14],[175,15],[184,16],[185,2],[186,2],[187,2],[188,17],[189,18],[190,2],[170,2],[191,19],[193,20],[194,21],[195,22],[196,23],[192,24],[197,19],[198,2],[199,2],[173,2],[183,2],[200,2],[201,2],[95,25],[96,25],[98,26],[99,27],[100,28],[101,29],[102,30],[103,31],[104,32],[105,33],[106,34],[107,35],[108,35],[109,36],[110,37],[111,38],[112,39],[97,2],[144,2],[113,40],[114,41],[115,42],[145,43],[116,44],[117,45],[118,46],[119,47],[120,48],[121,49],[122,50],[123,51],[124,52],[125,53],[126,54],[127,55],[129,56],[128,57],[130,58],[131,59],[132,60],[133,61],[134,62],[135,63],[136,64],[137,65],[138,66],[139,67],[140,68],[141,69],[142,70],[143,71],[202,2],[203,2],[205,72],[204,73],[206,2],[162,2],[171,2],[207,13],[174,74],[210,75],[209,76],[208,2],[212,77],[211,2],[213,13],[214,78],[160,2],[41,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[1,2],[40,2],[44,79],[45,80],[48,81],[49,82],[47,82],[50,82],[51,80],[52,80],[46,80],[53,80],[54,83],[55,80],[58,84],[59,85],[57,85],[60,85],[61,80],[62,80],[56,80],[63,80],[64,86],[65,80],[68,87],[69,88],[67,88],[70,88],[71,80],[72,80],[66,80],[73,80],[74,89],[85,80],[88,90],[89,91],[87,91],[90,91],[91,80],[92,80],[86,80],[93,80],[94,92],[75,80],[78,93],[79,94],[77,94],[80,94],[81,80],[82,80],[76,80],[83,80],[84,95],[43,96],[42,97]],"exportedModulesMap":[[150,1],[148,2],[146,3],[147,2],[153,4],[149,1],[151,5],[152,1],[155,6],[156,2],[157,2],[159,7],[158,2],[161,8],[163,9],[164,2],[165,2],[166,2],[154,3],[167,2],[168,2],[169,2],[176,10],[177,11],[178,2],[179,12],[180,2],[181,2],[182,13],[172,14],[175,15],[184,16],[185,2],[186,2],[187,2],[188,17],[189,18],[190,2],[170,2],[191,19],[193,20],[194,21],[195,22],[196,23],[192,24],[197,19],[198,2],[199,2],[173,2],[183,2],[200,2],[201,2],[95,25],[96,25],[98,26],[99,27],[100,28],[101,29],[102,30],[103,31],[104,32],[105,33],[106,34],[107,35],[108,35],[109,36],[110,37],[111,38],[112,39],[97,2],[144,2],[113,40],[114,41],[115,42],[145,43],[116,44],[117,45],[118,46],[119,47],[120,48],[121,49],[122,50],[123,51],[124,52],[125,53],[126,54],[127,55],[129,56],[128,57],[130,58],[131,59],[132,60],[133,61],[134,62],[135,63],[136,64],[137,65],[138,66],[139,67],[140,68],[141,69],[142,70],[143,71],[202,2],[203,2],[205,72],[204,73],[206,2],[162,2],[171,2],[207,13],[174,74],[210,75],[209,76],[208,2],[212,77],[211,2],[213,13],[214,78],[160,2],[41,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[1,2],[40,2],[44,79],[45,80],[48,81],[49,82],[47,82],[50,82],[51,80],[52,80],[46,80],[53,80],[54,83],[55,80],[58,84],[59,85],[57,85],[60,85],[61,80],[62,80],[56,80],[63,80],[64,86],[65,80],[68,87],[69,88],[67,88],[70,88],[71,80],[72,80],[66,80],[73,80],[74,89],[85,80],[88,90],[89,91],[87,91],[90,91],[91,80],[92,80],[86,80],[93,80],[94,92],[75,80],[78,93],[79,94],[77,94],[80,94],[81,80],[82,80],[76,80],[83,80],[84,95],[43,96],[42,97]],"semanticDiagnosticsPerFile":[150,148,146,147,153,149,151,152,155,156,157,159,158,161,163,164,165,166,154,167,168,169,176,177,178,179,180,181,182,172,175,184,185,186,187,188,189,190,170,191,193,194,195,196,192,197,198,199,173,183,200,201,95,96,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,144,113,114,115,145,116,117,118,119,120,121,122,123,124,125,126,127,129,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,202,203,205,204,206,162,171,207,174,210,209,208,212,211,213,214,160,41,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,1,40,44,45,48,49,47,50,51,52,46,53,54,55,58,59,57,60,61,62,56,63,64,65,68,69,67,70,71,72,66,73,74,85,88,89,87,90,91,92,86,93,94,75,78,79,77,80,81,82,76,83,84,43,42]},"version":"4.5.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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.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.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","./src/types.ts","./src/translation.ts","./src/index.ts","./src/locale/de/shared.ts","./src/locale/de/appstate-bar.ts","./src/locale/de/calendar.ts","./src/locale/de/dialog.ts","./src/locale/de/color-dialog.ts","./src/locale/de/combo-box.ts","./src/locale/de/datetime-field.ts","./src/locale/de/notification.ts","./src/locale/de/pagination.ts","./src/locale/de/password-field.ts","./src/locale/de/search-field.ts","./src/locale/de/time-picker.ts","./src/locale/de/tree-select.ts","./src/locale/en/shared.ts","./src/locale/en/appstate-bar.ts","./src/locale/en/calendar.ts","./src/locale/en/dialog.ts","./src/locale/en/color-dialog.ts","./src/locale/en/combo-box.ts","./src/locale/en/datetime-field.ts","./src/locale/en/notification.ts","./src/locale/en/pagination.ts","./src/locale/en/password-field.ts","./src/locale/en/search-field.ts","./src/locale/en/time-picker.ts","./src/locale/en/tree-select.ts","./src/locale/ja/shared.ts","./src/locale/ja/appstate-bar.ts","./src/locale/ja/calendar.ts","./src/locale/ja/dialog.ts","./src/locale/ja/color-dialog.ts","./src/locale/ja/combo-box.ts","./src/locale/ja/datetime-field.ts","./src/locale/ja/notification.ts","./src/locale/ja/pagination.ts","./src/locale/ja/password-field.ts","./src/locale/ja/search-field.ts","./src/locale/ja/time-picker.ts","./src/locale/ja/tree-select.ts","./src/locale/zh/shared.ts","./src/locale/zh/appstate-bar.ts","./src/locale/zh/calendar.ts","./src/locale/zh/dialog.ts","./src/locale/zh/color-dialog.ts","./src/locale/zh/combo-box.ts","./src/locale/zh/datetime-field.ts","./src/locale/zh/notification.ts","./src/locale/zh/pagination.ts","./src/locale/zh/password-field.ts","./src/locale/zh/search-field.ts","./src/locale/zh/time-picker.ts","./src/locale/zh/tree-select.ts","./src/locale/zh-hant/shared.ts","./src/locale/zh-hant/appstate-bar.ts","./src/locale/zh-hant/calendar.ts","./src/locale/zh-hant/dialog.ts","./src/locale/zh-hant/color-dialog.ts","./src/locale/zh-hant/combo-box.ts","./src/locale/zh-hant/datetime-field.ts","./src/locale/zh-hant/notification.ts","./src/locale/zh-hant/pagination.ts","./src/locale/zh-hant/password-field.ts","./src/locale/zh-hant/search-field.ts","./src/locale/zh-hant/time-picker.ts","./src/locale/zh-hant/tree-select.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/accepts/index.d.ts","../../node_modules/@types/babel__code-frame/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/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/browserslist-useragent/index.d.ts","../../node_modules/@types/caniuse-api/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-dom/index.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/@types/chart.js/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/co-body/index.d.ts","../../node_modules/@types/command-line-args/index.d.ts","../../node_modules/@types/command-line-usage/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/content-disposition/index.d.ts","../../node_modules/@types/convert-source-map/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/keygrip/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/express-serve-static-core/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/cookies/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/d3-color/index.d.ts","../../node_modules/@types/d3-interpolate/index.d.ts","../../node_modules/@types/debounce/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/etag/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/http-assert/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/koa-compose/index.d.ts","../../node_modules/@types/koa/index.d.ts","../../node_modules/@types/koa-compress/index.d.ts","../../node_modules/@types/koa-etag/index.d.ts","../../node_modules/@types/koa-send/index.d.ts","../../node_modules/@types/koa-static/index.d.ts","../../node_modules/@types/koa__cors/index.d.ts","../../node_modules/@types/lru-cache/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/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/path-is-inside/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/whatwg-url/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","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":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","8669f194b7f88f994d6b78a7686874c5b26dd6628f748f2e21d046d5684281fc","28c5b6eb2fd8a2f693425bdafd02fa0e73a1ff8352beaefac21cdae8b6b96085","96026375693d97b5220b7910dcf2d96ce2c7a3d29bd4e317ce8c1b87c46343b1","5933cc2500f4e5abbbafb0b9aebc7e72efdabc04a1215cdb683c17d914bca2b2","63d8530d631fe76d48882e15fe580e831695fd9eca8a4388d27cf29cac73112a","a8ef9ce69a712ddbc74a48cd504ba526844831545df5d947e66f532e45f9f4ff","38d94f3e3bc421b5156807af15e6c68ae73e92ecfaf96eabc1d9838902527ede","20b197d99216796838e4fb2d5ccaba154e840b80fef6e5110f6cf9eae430bf4e","39a9762192092835ce31c414e519527d2535f37bbd3714eb7dc7c5f3938c02a8","6c49d287d191e2082392208fd33ac521087867d81b36c0ef304b0d0d7c57aaee","14294aa2ddded437d4f29696d91fb718bea2361f5de2ef25893ff4ca76a5827b","3326001a9fe6636f0e780a960b1024f0ca41e264468c1abda13fe1099775b4a2","295b13e37bf55a94e1ce88f1fb6d10cefe547d4780c37b280d6ae99581b1ee05","11cace5385417a326b24c7b21ca01fff9c78dbf7755bfb652ec0830c8eafe044","2628030c7b49402a54e9c698555e3833d972233edc1a1340b53cd0d3cf4b6533","c75f36224e1b609a5d5cbbb65af0a309498a427bb913c0c35963b639f1137c31","be83d519cd7a35c42ce5fee2463cc25b1ac6afa0ae401697703410b3bce129e1","52a2be1982f15aa5f9b43cb42ff734bdcb0c937b973f9c1251c6324761c60077","9516e7be5002d54a7000c8d8f4963be0d0beb1793a6f351f6aa52dce5ee362ed","ccbe825c4df17c617ada28b21762cee2bf8babcde0fd5a00937840440d7c0955","3dd3af5858865b2ea71247e57db5addda88b04624485dffd22524bc646cc00bd","f7029257f80f7ca80f2142d6e6dd17d46965a5e136f40583b79469df3fae5d17","231b85f5e6f8d54bf7f2db5692bb36d7e4d0eaba76150e66e81bc124e0a1228c","1982e04e60967813dea2803800c9ba86104b15b11cd2adfbba506112b3fa5dd7","6bd91e78b53202850eb536dd696bd8ddef1ec9754af1159fe06ca3946a533122","5ebb5dba6751ee640efc6d4e303555ca08d55a5cc7f789b664c8055e87acb86c","55fe35b2bf0ea43fc0a05cebe2ee32282b8a66f7ab06e5057778c2297ab26cf1","3f60b2bf18fa3e9d8dea3c3ad49393c286c47fc50fa937dd8d6e2b8cd056d258","5bbde0e1d403aa133652e92ba2aae27b216055e42409cfe92e9068fb5d7352a8","532f8096c6f6323d48d828cdadff2db8376627f32780db532e3b8f92cc106e46","951e591d1773b9536653a0aa7ede7bdd751a1b5ce905be9c4d29f60febbfa1c1","d9929a72fedf5a22da51d7222d6782a84ba015a33430463934bdd2f7e7b24428","1f286103f5df6770cb43c4828d92b9faa368d1ede7279db64eb39dd6e18eefe6","36d3eb61c90cfbca414504f4a04a23304eb0cc57514a42ae67a9927db398ab90","cb63e6909c49aa04b39495163b065c172b025e6c4ab9a46aa665d59ac5282f97","b238384621a252d97c556386c65652053816c38a6fefcad149c2063712ae1b50","095e09aba9f67a0e84a4d8686f221052e1a44e137b1f645493b68e31e819cdb9","16814c79cd735a7ad17412f09e20ef78e22f0b5f5438cc234fea0721d5f24c36","779638852ca79be3d257aa4745364eadb01248d6196c7883ef8ad0dcf31a868d","357d831773d740b7b8a6cb2d4ba2dffdad04a8a09bac65986eb8f19b155a18e2","71c27e46934bf05e31955177c3485b57ef2d84466c57e7d71ff1463233e358fa","6d66ca7c4e85800825915a6426018bc7320885cdb73deb0c4eeb4ba24e5bed26","56c7ceb116542e571083a816d5dacb2d8cb0228f8176c9168217202dfb01f7e0","988a11483214d02811298e972c00453826f54eaddc0ca44d6a497adab5281f1b","664bddbed52fc3cea14dd1250a1199ce006c598ce34a768dbbd9ab439bd30410","1c7706954055af680a78a3337238c53e501d8339237cbe19c811ad6be36cd3eb","2e3d0700927f9f6dec224d9b48f19a66e6945f02e69e551175e96c19f4d3e216","7b18e9bebf522b3be3729df229c674bcdb6eec2d11715baf8ffb1ef40107a339","7ecbcdf0c064facb568ec75da5b42a3bea10093539a8cc20b02148561c0ccbb6","7b67fd699e22397129dd633627386b15ba69421a1d536226555f17c21f863bd8","26d51fe6a3e897979f2602dcda040e2fa29c29f1d84b8f7e9aaefdd8ef2ad18c","3c91fa389832237e7198be11d400c56ebc739f4b7a4aed4c28efcc594ca12069","1ecf4194fc57b77a8ca77718a86424de84b4842bf60c50dadb22484e27a22d7c","2b53346a1657919a0773017befcaf557655914555ff5d71016ab27aeb20c47a9","12d4235aa4ea583918091c04a6a904cdcb6b4aa17898693dac0c580933148af6","6f82af4cf3e5bb13f6a9ea9929378d2ed767fa9ac9271ce9654cc6092d0b68cd","1f87c901166e1e310b64663360fcb3c1f642cd1413cf3a84034cb76adc066538","a1f55a98fdfd3c95e6d554aef93c2bda89ab49bb07db95c4f64d484c19d664ad","3f189720cd3b742c9f6dc27b5d7f231a55448aca12fdae545b514598dedcc99f","508b8d1873dd069cdcb4677f8ba609da923cf9d17a4810dde3929f44c8642ce3","ff198175c7a905c74ad0497ed5d76aa7b4b68c879bc269f7fbee64b3c599a5dd","0d3fd6450b06fa31d7176b1c5c46af0ad9429bddd8d667a60160e37f698ad6d5","0d3995123b04187ca1ee4c8b70cc4ca92b7040303e8eb4ee53db395e8c76bd51","206066b2f6d1e3d6a0bcd59de63287c29f6817ed5bb00cb294d2a8042bb01198","7f532440a2a9114b47c6e1fa029515be0ba037586df448c3a8aee1e032f3e883","8885fec5434e8979fdf9c0c44a1e41dc7612b30ddc9657047aed5dfc2648409a","d0c23b3a850d8a3067e2ec063fd2fd16387c2bd4b7b2099633c34e6fa1165424","add5cd975cabefa3089e93fc7b4c3fec098c258dd440ed422ce0c48b850bb25e","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","b95f751a58d283cb5e32f2655361f6e2a27f0368f69edc463a3472aae21d1303","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","9eb49645576740f4fb4cca25cadbc0d7e61a218c215e8578dd899b01d5db89d4","d59cea1102bba38053ca19260e37bda2715df10d147c40db92035c0420489358",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},{"version":"d95d76d79a0351572ec5b1a6cc1e5c4bce1be82eedeed7278d6f31ea1059fa69","affectsGlobalScope":true},"f97edc4d3b4dd0b32766e9633086497565c37657fb591cc84a35864db4bc2fc5","9f47decc2af980bb05b5c76464c08d23d28363ddf8d5352120f4026b083af8ac","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","495da6628b9474e31d0636d66c54448bb8d84dbce902e8f70539ef6a525a2d7b","629766229f541d92210f30a92b6038568ec165fab14b7ee53bdf13667da37ca3","29193c018378ca9c8033eaa974c02c1f503e8fcd8a2bf406057c53f7d3fa17a8","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","e4dfe0e169e1cb3c8dd0713972e94e2141595c840ed7387623ac8b29fc6c35b8","c1ea344dc311b2c539ed1e3b4e17e9f4853dc7f348366b51f1d8a09a40fb223f","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","c168e28f723898f77b8140887b06baced58aa902327aea3746571756f7a721b5","c24944ff5879b91478b153cf16802b9c6a10cfa3b7d85855813a08431ec2d36a","68c559681a043ca6d622debcce75c4d82446fec08e06bf1066f71d6c325f224e","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","7e510fb0ca02da05976eb0dbfeb42bdb0dc64b78acbb3b5ecf77ddd57ce08cda","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","6168414aa12d33d0fcfac4f9870aa81ce27e136db6faf182001a5f3792e1d720","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","0c52f5366c9146ad79b546e70162c659972a2798522806e8283f3137feab3965","d1494c6dbbe5fca590ca73ccd21d013e6617e9ea19773c9ca7c0f3214df86628","97395602cea957af0cf517d84b651a07e010192db667ba379d36bec40cdbef52","f88d8a4ba9ad0270309cf46121d3dc9fb055bea08ac3e699d2b4673b1e6a25ea","b6360d5b5a52a1d6fc6b9838135f766b638e7c7a03b227974344200be603c150","c2076e1fa255efd41a6f0b6b3b83d4340d88122073e98f9b223dcea8437ee46f","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"c4c03cf65951d980ba618ae9601d10438730803fc9c8a1f7b34af8739981e205","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","a0b27b55228349ea85cecd9479ace1009697af44b66527f30526a1539d4e78ea","6209c901f30cc321f4b86800d11fad3d67e73a3308f19946b1bc642af0280298","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","24a09dc3e07d69b0a224dbd14b2994c40d1efd0954e759004b61b9e683dabe5f",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"0f048a7e91a4c764f08be48e156c9d274a038cb454d312427214ab4d34a9a5ab","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"declarationMap":false,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":5,"noEmitHelpers":true,"outDir":"./lib","rootDir":"./src","sourceMap":false,"strict":true,"target":7},"fileIdsList":[[154,164],[154],[129,154,161],[154,164,165,166,167,168],[154,164,166],[129,154,161,170],[154,174],[154,176],[129,154,161,178],[129,154,161,170,186,191],[129,154],[154,194],[154,161],[126,129,154,161,178,187],[154,171,178,188,190],[126,127,154,161,199],[127,154,161],[154,204],[154,205],[154,210],[154,159,161,210],[154,198,210],[127,154,210],[154,210,213],[126,129,130,134,140,153,154,161,162,183,186,192,202,203,209],[111,154],[114,154],[115,120,154],[116,126,127,134,143,153,154],[116,117,126,134,154],[118,154],[119,120,127,135,154],[120,143,150,154],[121,123,126,134,154],[122,154],[123,124,154],[125,126,154],[126,154],[126,127,128,143,153,154],[126,127,128,143,154],[129,134,143,153,154],[126,127,129,130,134,143,150,153,154],[129,131,143,150,153,154],[111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[126,132,154],[133,153,154],[123,126,134,143,154],[135,154],[136,154],[114,137,154],[138,152,154,158],[139,154],[140,154],[126,141,154],[141,142,154,156],[126,143,144,145,154],[143,145,154],[143,144,154],[146,154],[147,154],[126,148,149,154],[148,149,154],[120,134,143,150,154],[151,154],[134,152,154],[115,129,140,153,154],[120,154],[143,154,155],[154,156],[154,157],[115,120,126,128,137,143,153,154,156,158],[143,154,159],[154,222],[154,223],[129,154,161,189],[154,174,228],[154,227],[154,231],[126,129,131,134,143,150,153,154,159,161],[154,235],[42,43,44,154],[42,44,46,154],[42,44,154],[42,44,46,49,154],[42,44,46,51,154],[42,44,59,154],[42,44,59,62,154],[42,44,59,64,154],[42,44,72,154],[42,44,72,75,154],[42,44,72,77,154],[42,44,98,154],[42,44,98,101,154],[42,44,98,103,154],[42,44,85,154],[42,44,85,88,154],[42,44,85,90,154],[42,43,154],[42,154]],"referencedMap":[[166,1],[164,2],[162,3],[163,2],[169,4],[165,1],[167,5],[168,1],[171,6],[172,2],[173,2],[175,7],[174,2],[177,8],[179,9],[180,2],[181,2],[182,2],[170,3],[183,2],[184,2],[185,2],[192,10],[193,11],[194,2],[195,12],[196,2],[197,2],[198,13],[188,14],[191,15],[200,16],[201,17],[202,2],[203,2],[204,2],[205,18],[206,19],[207,2],[208,2],[186,2],[209,20],[211,21],[212,22],[213,23],[214,24],[210,25],[215,20],[216,2],[217,2],[189,2],[199,2],[218,2],[219,2],[111,26],[112,26],[114,27],[115,28],[116,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,36],[125,37],[126,38],[127,39],[128,40],[113,2],[160,2],[129,41],[130,42],[131,43],[161,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[145,57],[144,58],[146,59],[147,60],[148,61],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,68],[156,69],[157,70],[158,71],[159,72],[220,2],[221,2],[223,73],[222,74],[224,2],[225,2],[178,2],[187,2],[226,13],[190,75],[229,76],[228,77],[227,2],[230,2],[232,78],[231,2],[233,13],[234,79],[235,2],[236,80],[176,2],[42,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[40,2],[1,2],[41,2],[45,81],[47,82],[48,83],[50,84],[51,82],[52,83],[49,82],[53,82],[54,82],[55,83],[56,83],[46,83],[57,83],[58,85],[60,86],[61,83],[63,87],[64,86],[65,83],[62,86],[66,86],[67,86],[68,83],[69,83],[59,83],[70,83],[71,88],[73,89],[74,83],[76,90],[77,89],[78,83],[75,89],[79,89],[80,89],[81,83],[82,83],[72,83],[83,83],[84,91],[99,92],[100,83],[102,93],[103,92],[104,83],[101,92],[105,92],[106,92],[107,83],[108,83],[98,83],[109,83],[110,94],[86,95],[87,83],[89,96],[90,95],[91,83],[88,95],[92,95],[93,95],[94,83],[95,83],[85,83],[96,83],[97,97],[44,98],[43,99]],"exportedModulesMap":[[166,1],[164,2],[162,3],[163,2],[169,4],[165,1],[167,5],[168,1],[171,6],[172,2],[173,2],[175,7],[174,2],[177,8],[179,9],[180,2],[181,2],[182,2],[170,3],[183,2],[184,2],[185,2],[192,10],[193,11],[194,2],[195,12],[196,2],[197,2],[198,13],[188,14],[191,15],[200,16],[201,17],[202,2],[203,2],[204,2],[205,18],[206,19],[207,2],[208,2],[186,2],[209,20],[211,21],[212,22],[213,23],[214,24],[210,25],[215,20],[216,2],[217,2],[189,2],[199,2],[218,2],[219,2],[111,26],[112,26],[114,27],[115,28],[116,29],[117,30],[118,31],[119,32],[120,33],[121,34],[122,35],[123,36],[124,36],[125,37],[126,38],[127,39],[128,40],[113,2],[160,2],[129,41],[130,42],[131,43],[161,44],[132,45],[133,46],[134,47],[135,48],[136,49],[137,50],[138,51],[139,52],[140,53],[141,54],[142,55],[143,56],[145,57],[144,58],[146,59],[147,60],[148,61],[149,62],[150,63],[151,64],[152,65],[153,66],[154,67],[155,68],[156,69],[157,70],[158,71],[159,72],[220,2],[221,2],[223,73],[222,74],[224,2],[225,2],[178,2],[187,2],[226,13],[190,75],[229,76],[228,77],[227,2],[230,2],[232,78],[231,2],[233,13],[234,79],[235,2],[236,80],[176,2],[42,2],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[40,2],[1,2],[41,2],[45,81],[47,82],[48,83],[50,84],[51,82],[52,83],[49,82],[53,82],[54,82],[55,83],[56,83],[46,83],[57,83],[58,85],[60,86],[61,83],[63,87],[64,86],[65,83],[62,86],[66,86],[67,86],[68,83],[69,83],[59,83],[70,83],[71,88],[73,89],[74,83],[76,90],[77,89],[78,83],[75,89],[79,89],[80,89],[81,83],[82,83],[72,83],[83,83],[84,91],[99,92],[100,83],[102,93],[103,92],[104,83],[101,92],[105,92],[106,92],[107,83],[108,83],[98,83],[109,83],[110,94],[86,95],[87,83],[89,96],[90,95],[91,83],[88,95],[92,95],[93,95],[94,83],[95,83],[85,83],[96,83],[97,97],[44,98],[43,99]],"semanticDiagnosticsPerFile":[166,164,162,163,169,165,167,168,171,172,173,175,174,177,179,180,181,182,170,183,184,185,192,193,194,195,196,197,198,188,191,200,201,202,203,204,205,206,207,208,186,209,211,212,213,214,210,215,216,217,189,199,218,219,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,160,129,130,131,161,132,133,134,135,136,137,138,139,140,141,142,143,145,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,220,221,223,222,224,225,178,187,226,190,229,228,227,230,232,231,233,234,235,236,176,42,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,40,1,41,45,47,48,50,51,52,49,53,54,55,56,46,57,58,60,61,63,64,65,62,66,67,68,69,59,70,71,73,74,76,77,78,75,79,80,81,82,72,83,84,99,100,102,103,104,101,105,106,107,108,98,109,110,86,87,89,90,91,88,92,93,94,95,85,96,97,44,43]},"version":"4.6.2"}