@rslint/core 0.5.3 → 0.6.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 (74) hide show
  1. package/bin/rslint.cjs +21 -4
  2. package/dist/0~engine.js +406 -0
  3. package/dist/34.js +33 -0
  4. package/dist/browser.d.ts +52 -39
  5. package/dist/browser.js +42 -74
  6. package/dist/cli.d.ts +3 -2
  7. package/dist/cli.js +1051 -93
  8. package/dist/config-loader.d.ts +45 -14
  9. package/dist/config-loader.js +95 -59
  10. package/dist/eslint-plugin/612.js +43 -0
  11. package/dist/eslint-plugin/index.d.ts +892 -0
  12. package/dist/eslint-plugin/index.js +26692 -0
  13. package/dist/eslint-plugin/lint-worker.js +26225 -0
  14. package/dist/eslint-plugin/types.d.ts +23 -0
  15. package/dist/eslint-plugin/types.js +1 -0
  16. package/dist/index.d.ts +626 -19
  17. package/dist/index.js +598 -15
  18. package/dist/service.d.ts +360 -30
  19. package/dist/service.js +19 -34
  20. package/package.json +27 -11
  21. package/dist/browser.d.ts.map +0 -1
  22. package/dist/cli.d.ts.map +0 -1
  23. package/dist/config-loader.d.ts.map +0 -1
  24. package/dist/configs/import.d.ts +0 -6
  25. package/dist/configs/import.d.ts.map +0 -1
  26. package/dist/configs/import.js +0 -7
  27. package/dist/configs/index.d.ts +0 -47
  28. package/dist/configs/index.d.ts.map +0 -1
  29. package/dist/configs/index.js +0 -36
  30. package/dist/configs/javascript.d.ts +0 -6
  31. package/dist/configs/javascript.d.ts.map +0 -1
  32. package/dist/configs/javascript.js +0 -72
  33. package/dist/configs/jest.d.ts +0 -7
  34. package/dist/configs/jest.d.ts.map +0 -1
  35. package/dist/configs/jest.js +0 -35
  36. package/dist/configs/jsx-a11y.d.ts +0 -6
  37. package/dist/configs/jsx-a11y.d.ts.map +0 -1
  38. package/dist/configs/jsx-a11y.js +0 -135
  39. package/dist/configs/promise.d.ts +0 -6
  40. package/dist/configs/promise.d.ts.map +0 -1
  41. package/dist/configs/promise.js +0 -20
  42. package/dist/configs/react-hooks.d.ts +0 -6
  43. package/dist/configs/react-hooks.d.ts.map +0 -1
  44. package/dist/configs/react-hooks.js +0 -24
  45. package/dist/configs/react.d.ts +0 -6
  46. package/dist/configs/react.d.ts.map +0 -1
  47. package/dist/configs/react.js +0 -31
  48. package/dist/configs/typescript.d.ts +0 -9
  49. package/dist/configs/typescript.d.ts.map +0 -1
  50. package/dist/configs/typescript.js +0 -122
  51. package/dist/configs/unicorn.d.ts +0 -8
  52. package/dist/configs/unicorn.d.ts.map +0 -1
  53. package/dist/configs/unicorn.js +0 -161
  54. package/dist/define-config.d.ts +0 -110
  55. package/dist/define-config.d.ts.map +0 -1
  56. package/dist/define-config.js +0 -6
  57. package/dist/index.d.ts.map +0 -1
  58. package/dist/node.d.ts +0 -31
  59. package/dist/node.d.ts.map +0 -1
  60. package/dist/node.js +0 -116
  61. package/dist/service.d.ts.map +0 -1
  62. package/dist/tsconfig.build.tsbuildinfo +0 -1
  63. package/dist/types.d.ts +0 -342
  64. package/dist/types.d.ts.map +0 -1
  65. package/dist/types.js +0 -1
  66. package/dist/utils/args.d.ts +0 -19
  67. package/dist/utils/args.d.ts.map +0 -1
  68. package/dist/utils/args.js +0 -101
  69. package/dist/utils/config-discovery.d.ts +0 -47
  70. package/dist/utils/config-discovery.d.ts.map +0 -1
  71. package/dist/utils/config-discovery.js +0 -238
  72. package/dist/worker.d.ts +0 -2
  73. package/dist/worker.d.ts.map +0 -1
  74. package/dist/worker.js +0 -114
@@ -1,161 +0,0 @@
1
- // Aligned with official eslint-plugin-unicorn@64.x recommended.
2
- // Rules commented out with "not implemented" are in the official preset but not yet available.
3
- // The official preset also injects `languageOptions.globals` (Array, Promise, Map, …);
4
- // rslint's config entry doesn't expose a `globals` field, so that part is omitted.
5
- const recommended = {
6
- plugins: ['unicorn'],
7
- rules: {
8
- // Core ESLint rules disabled by upstream once their unicorn equivalents take over.
9
- // Keep them enabled (i.e. don't override) until the unicorn replacements are implemented,
10
- // otherwise users would lose all coverage for these patterns.
11
- // 'no-negated-condition': 'off',
12
- // 'no-nested-ternary': 'off',
13
- // 'unicorn/better-regex': 'off', // not implemented
14
- // 'unicorn/catch-error-name': 'error', // not implemented
15
- // 'unicorn/consistent-assert': 'error', // not implemented
16
- // 'unicorn/consistent-date-clone': 'error', // not implemented
17
- // 'unicorn/consistent-destructuring': 'off', // not implemented
18
- // 'unicorn/consistent-empty-array-spread': 'error', // not implemented
19
- // 'unicorn/consistent-existence-index-check': 'error', // not implemented
20
- // 'unicorn/consistent-function-scoping': 'error', // not implemented
21
- // 'unicorn/consistent-template-literal-escape': 'error', // not implemented
22
- // 'unicorn/custom-error-definition': 'off', // not implemented
23
- // 'unicorn/empty-brace-spaces': 'error', // not implemented
24
- // 'unicorn/error-message': 'error', // not implemented
25
- // 'unicorn/escape-case': 'error', // not implemented
26
- // 'unicorn/expiring-todo-comments': 'error', // not implemented
27
- // 'unicorn/explicit-length-check': 'error', // not implemented
28
- 'unicorn/filename-case': 'error',
29
- // 'unicorn/import-style': 'error', // not implemented
30
- // 'unicorn/isolated-functions': 'error', // not implemented
31
- // 'unicorn/new-for-builtins': 'error', // not implemented
32
- // 'unicorn/no-abusive-eslint-disable': 'error', // not implemented
33
- // 'unicorn/no-accessor-recursion': 'error', // not implemented
34
- // 'unicorn/no-anonymous-default-export': 'error', // not implemented
35
- // 'unicorn/no-array-callback-reference': 'error', // not implemented
36
- // 'unicorn/no-array-for-each': 'error', // not implemented
37
- // 'unicorn/no-array-method-this-argument': 'error', // not implemented
38
- // 'unicorn/no-array-reduce': 'error', // not implemented
39
- // 'unicorn/no-array-reverse': 'error', // not implemented
40
- // 'unicorn/no-array-sort': 'error', // not implemented
41
- // 'unicorn/no-await-expression-member': 'error', // not implemented
42
- // 'unicorn/no-await-in-promise-methods': 'error', // not implemented
43
- // 'unicorn/no-console-spaces': 'error', // not implemented
44
- // 'unicorn/no-document-cookie': 'error', // not implemented
45
- // 'unicorn/no-empty-file': 'error', // not implemented
46
- // 'unicorn/no-for-loop': 'error', // not implemented
47
- // 'unicorn/no-hex-escape': 'error', // not implemented
48
- // 'unicorn/no-immediate-mutation': 'error', // not implemented
49
- // 'unicorn/no-instanceof-builtins': 'error', // not implemented
50
- // 'unicorn/no-invalid-fetch-options': 'error', // not implemented
51
- // 'unicorn/no-invalid-remove-event-listener': 'error', // not implemented
52
- // 'unicorn/no-keyword-prefix': 'off', // not implemented
53
- // 'unicorn/no-lonely-if': 'error', // not implemented
54
- // 'unicorn/no-magic-array-flat-depth': 'error', // not implemented
55
- // 'unicorn/no-named-default': 'error', // not implemented
56
- // 'unicorn/no-negated-condition': 'error', // not implemented
57
- // 'unicorn/no-negation-in-equality-check': 'error', // not implemented
58
- // 'unicorn/no-nested-ternary': 'error', // not implemented
59
- // 'unicorn/no-new-array': 'error', // not implemented
60
- // 'unicorn/no-new-buffer': 'error', // not implemented
61
- // 'unicorn/no-null': 'error', // not implemented
62
- // 'unicorn/no-object-as-default-parameter': 'error', // not implemented
63
- // 'unicorn/no-process-exit': 'error', // not implemented
64
- // 'unicorn/no-single-promise-in-promise-methods': 'error', // not implemented
65
- 'unicorn/no-static-only-class': 'error',
66
- // 'unicorn/no-thenable': 'error', // not implemented
67
- // 'unicorn/no-this-assignment': 'error', // not implemented
68
- // 'unicorn/no-typeof-undefined': 'error', // not implemented
69
- // 'unicorn/no-unnecessary-array-flat-depth': 'error', // not implemented
70
- // 'unicorn/no-unnecessary-array-splice-count': 'error', // not implemented
71
- // 'unicorn/no-unnecessary-await': 'error', // not implemented
72
- // 'unicorn/no-unnecessary-polyfills': 'error', // not implemented
73
- // 'unicorn/no-unnecessary-slice-end': 'error', // not implemented
74
- // 'unicorn/no-unreadable-array-destructuring': 'error', // not implemented
75
- // 'unicorn/no-unreadable-iife': 'error', // not implemented
76
- // 'unicorn/no-unused-properties': 'off', // not implemented
77
- // 'unicorn/no-useless-collection-argument': 'error', // not implemented
78
- // 'unicorn/no-useless-error-capture-stack-trace': 'error', // not implemented
79
- // 'unicorn/no-useless-fallback-in-spread': 'error', // not implemented
80
- // 'unicorn/no-useless-iterator-to-array': 'error', // not implemented
81
- // 'unicorn/no-useless-length-check': 'error', // not implemented
82
- // 'unicorn/no-useless-promise-resolve-reject': 'error', // not implemented
83
- // 'unicorn/no-useless-spread': 'error', // not implemented
84
- // 'unicorn/no-useless-switch-case': 'error', // not implemented
85
- // 'unicorn/no-useless-undefined': 'error', // not implemented
86
- // 'unicorn/no-zero-fractions': 'error', // not implemented
87
- // 'unicorn/number-literal-case': 'error', // not implemented
88
- // 'unicorn/numeric-separators-style': 'error', // not implemented
89
- // 'unicorn/prefer-add-event-listener': 'error', // not implemented
90
- // 'unicorn/prefer-array-find': 'error', // not implemented
91
- // 'unicorn/prefer-array-flat': 'error', // not implemented
92
- // 'unicorn/prefer-array-flat-map': 'error', // not implemented
93
- // 'unicorn/prefer-array-index-of': 'error', // not implemented
94
- // 'unicorn/prefer-array-some': 'error', // not implemented
95
- // 'unicorn/prefer-at': 'error', // not implemented
96
- // 'unicorn/prefer-bigint-literals': 'error', // not implemented
97
- // 'unicorn/prefer-blob-reading-methods': 'error', // not implemented
98
- // 'unicorn/prefer-class-fields': 'error', // not implemented
99
- // 'unicorn/prefer-classlist-toggle': 'error', // not implemented
100
- // 'unicorn/prefer-code-point': 'error', // not implemented
101
- // 'unicorn/prefer-date-now': 'error', // not implemented
102
- // 'unicorn/prefer-default-parameters': 'error', // not implemented
103
- // 'unicorn/prefer-dom-node-append': 'error', // not implemented
104
- // 'unicorn/prefer-dom-node-dataset': 'error', // not implemented
105
- // 'unicorn/prefer-dom-node-remove': 'error', // not implemented
106
- // 'unicorn/prefer-dom-node-text-content': 'error', // not implemented
107
- // 'unicorn/prefer-event-target': 'error', // not implemented
108
- // 'unicorn/prefer-export-from': 'error', // not implemented
109
- // 'unicorn/prefer-global-this': 'error', // not implemented
110
- // 'unicorn/prefer-import-meta-properties': 'off', // not implemented
111
- // 'unicorn/prefer-includes': 'error', // not implemented
112
- // 'unicorn/prefer-json-parse-buffer': 'off', // not implemented
113
- // 'unicorn/prefer-keyboard-event-key': 'error', // not implemented
114
- // 'unicorn/prefer-logical-operator-over-ternary': 'error', // not implemented
115
- // 'unicorn/prefer-math-min-max': 'error', // not implemented
116
- // 'unicorn/prefer-math-trunc': 'error', // not implemented
117
- // 'unicorn/prefer-modern-dom-apis': 'error', // not implemented
118
- // 'unicorn/prefer-modern-math-apis': 'error', // not implemented
119
- // 'unicorn/prefer-module': 'error', // not implemented
120
- // 'unicorn/prefer-native-coercion-functions': 'error', // not implemented
121
- // 'unicorn/prefer-negative-index': 'error', // not implemented
122
- // 'unicorn/prefer-node-protocol': 'error', // not implemented
123
- // 'unicorn/prefer-number-properties': 'error', // not implemented
124
- // 'unicorn/prefer-object-from-entries': 'error', // not implemented
125
- // 'unicorn/prefer-optional-catch-binding': 'error', // not implemented
126
- // 'unicorn/prefer-prototype-methods': 'error', // not implemented
127
- // 'unicorn/prefer-query-selector': 'error', // not implemented
128
- // 'unicorn/prefer-reflect-apply': 'error', // not implemented
129
- // 'unicorn/prefer-regexp-test': 'error', // not implemented
130
- // 'unicorn/prefer-response-static-json': 'error', // not implemented
131
- // 'unicorn/prefer-set-has': 'error', // not implemented
132
- // 'unicorn/prefer-set-size': 'error', // not implemented
133
- // 'unicorn/prefer-simple-condition-first': 'error', // not implemented
134
- // 'unicorn/prefer-single-call': 'error', // not implemented
135
- // 'unicorn/prefer-spread': 'error', // not implemented
136
- // 'unicorn/prefer-string-raw': 'error', // not implemented
137
- // 'unicorn/prefer-string-replace-all': 'error', // not implemented
138
- // 'unicorn/prefer-string-slice': 'error', // not implemented
139
- // 'unicorn/prefer-string-starts-ends-with': 'error', // not implemented
140
- // 'unicorn/prefer-string-trim-start-end': 'error', // not implemented
141
- // 'unicorn/prefer-structured-clone': 'error', // not implemented
142
- // 'unicorn/prefer-switch': 'error', // not implemented
143
- // 'unicorn/prefer-ternary': 'error', // not implemented
144
- // 'unicorn/prefer-top-level-await': 'error', // not implemented
145
- // 'unicorn/prefer-type-error': 'error', // not implemented
146
- // 'unicorn/prevent-abbreviations': 'error', // not implemented
147
- // 'unicorn/relative-url-style': 'error', // not implemented
148
- // 'unicorn/require-array-join-separator': 'error', // not implemented
149
- // 'unicorn/require-module-attributes': 'error', // not implemented
150
- // 'unicorn/require-module-specifiers': 'error', // not implemented
151
- // 'unicorn/require-number-to-fixed-digits-argument': 'error', // not implemented
152
- // 'unicorn/require-post-message-target-origin': 'off', // not implemented
153
- // 'unicorn/string-content': 'off', // not implemented
154
- // 'unicorn/switch-case-braces': 'error', // not implemented
155
- // 'unicorn/switch-case-break-position': 'error', // not implemented
156
- // 'unicorn/template-indent': 'error', // not implemented
157
- // 'unicorn/text-encoding-identifier-case': 'error', // not implemented
158
- // 'unicorn/throw-new-error': 'error', // not implemented
159
- },
160
- };
161
- export { recommended };
@@ -1,110 +0,0 @@
1
- /* rslint-disable @typescript-eslint/no-explicit-any */
2
- /**
3
- * Severity level for a rule.
4
- */
5
- export type RuleSeverity = 'off' | 'warn' | 'error';
6
- /**
7
- * Plugin declaration names recognized by rslint's loader.
8
- */
9
- export type KnownPlugin = '@typescript-eslint' | 'import' | 'jest' | 'jsx-a11y' | 'promise' | 'react' | 'react-hooks' | 'unicorn';
10
- /**
11
- * Rule-specific options object. Each rule defines its own shape; until per-rule
12
- * types are generated, options are accepted as an open record.
13
- */
14
- export type RuleOptions = Record<string, any>;
15
- /**
16
- * Configuration value accepted for a single rule.
17
- *
18
- * - `RuleSeverity` — just toggle the rule.
19
- * - `[RuleSeverity, ...args]` — ESLint-style array form. Most rules take a
20
- * single options object (`[severity, { ... }]`); some accept positional
21
- * string/object args (`[severity, "always", { ... }]`).
22
- * - `{ level, options }` — object form supported by the loader.
23
- */
24
- export type RuleEntry = RuleSeverity | readonly [RuleSeverity, ...any[]] | {
25
- level: RuleSeverity;
26
- options?: RuleOptions;
27
- };
28
- /**
29
- * Map of rule name → rule configuration. Rule names are `string` (no
30
- * enumeration of known rules yet); the value shape is what gives editors
31
- * hints when typing the array or object form.
32
- */
33
- export type RulesRecord = Record<string, RuleEntry>;
34
- /**
35
- * TypeScript parser options. `project` may be a single tsconfig path or a list.
36
- */
37
- export interface ParserOptions {
38
- /**
39
- * Enable project service for typed linting (runs the TypeScript language
40
- * service behind the scenes).
41
- */
42
- projectService?: boolean;
43
- /**
44
- * tsconfig.json path(s) used for typed linting. Glob patterns are supported.
45
- *
46
- * @example
47
- * project: './tsconfig.json'
48
- * @example
49
- * project: ['./tsconfig.app.json', './tsconfig.node.json']
50
- * @example
51
- * project: ['./tsconfig.*.json']
52
- */
53
- project?: string | string[];
54
- }
55
- /**
56
- * Language-specific configuration.
57
- */
58
- export interface LanguageOptions {
59
- parserOptions?: ParserOptions;
60
- }
61
- /**
62
- * A single entry in an rslint config array. Multiple entries may target
63
- * different file globs and are merged at lint time.
64
- */
65
- export interface RslintConfigEntry {
66
- /**
67
- * Glob patterns for files this entry applies to.
68
- *
69
- * @example
70
- * files: ['src/**', 'tests/**']
71
- */
72
- files?: string[];
73
- /**
74
- * Glob patterns excluded from this entry.
75
- *
76
- * @example
77
- * ignores: ['node_modules/**', 'dist/**']
78
- */
79
- ignores?: string[];
80
- /** Language-level configuration (parser, etc.). */
81
- languageOptions?: LanguageOptions;
82
- /**
83
- * Plugin names to enable for this entry. Built-in plugins are listed for
84
- * autocomplete; arbitrary strings are still accepted so future/third-party
85
- * plugins don't trip the type checker.
86
- *
87
- * Each built-in value maps to the original ESLint plugin it ports rules from:
88
- *
89
- * - `'@typescript-eslint'` → `@typescript-eslint/eslint-plugin`
90
- * - `'import'` → `eslint-plugin-import`
91
- * - `'jest'` → `eslint-plugin-jest`
92
- * - `'jsx-a11y'` → `eslint-plugin-jsx-a11y`
93
- * - `'promise'` → `eslint-plugin-promise`
94
- * - `'react'` → `eslint-plugin-react`
95
- * - `'react-hooks'` → `eslint-plugin-react-hooks`
96
- * - `'unicorn'` → `eslint-plugin-unicorn`
97
- */
98
- plugins?: (KnownPlugin | (string & {}))[];
99
- /** Shared settings accessible to rules. */
100
- settings?: Record<string, any>;
101
- /** Rule configuration map. */
102
- rules?: RulesRecord;
103
- }
104
- /** Top-level rslint config: an array of entries. */
105
- export type RslintConfig = RslintConfigEntry[];
106
- /**
107
- * Type-safe config helper. Returns the config array as-is (identity function).
108
- */
109
- export declare function defineConfig(config: RslintConfig): RslintConfig;
110
- //# sourceMappingURL=define-config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"define-config.d.ts","sourceRoot":"","sources":["../src/define-config.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAEpD;;GAEG;AACH,MAAM,MAAM,WAAW,GACnB,oBAAoB,GACpB,QAAQ,GACR,MAAM,GACN,UAAU,GACV,SAAS,GACT,OAAO,GACP,aAAa,GACb,SAAS,CAAC;AAEd;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAE9C;;;;;;;;GAQG;AACH,MAAM,MAAM,SAAS,GACjB,YAAY,GACZ,SAAS,CAAC,YAAY,EAAE,GAAG,GAAG,EAAE,CAAC,GACjC;IAAE,KAAK,EAAE,YAAY,CAAC;IAAC,OAAO,CAAC,EAAE,WAAW,CAAA;CAAE,CAAC;AAEnD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;AAEpD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;;;;;;OASG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,aAAa,CAAC,EAAE,aAAa,CAAC;CAC/B;AAED;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,mDAAmD;IACnD,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC;;;;;;;;;;;;;;;OAeG;IACH,OAAO,CAAC,EAAE,CAAC,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC;IAC1C,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,8BAA8B;IAC9B,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,oDAAoD;AACpD,MAAM,MAAM,YAAY,GAAG,iBAAiB,EAAE,CAAC;AAE/C;;GAEG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,YAAY,GAAG,YAAY,CAE/D"}
@@ -1,6 +0,0 @@
1
- /**
2
- * Type-safe config helper. Returns the config array as-is (identity function).
3
- */
4
- export function defineConfig(config) {
5
- return config;
6
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,WAAW,EACX,YAAY,EAEZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EACL,EAAE,EACF,EAAE,EACF,WAAW,EACX,gBAAgB,EAChB,YAAY,EACZ,aAAa,EACb,UAAU,EACV,aAAa,EACb,aAAa,GACd,MAAM,oBAAoB,CAAC;AAE5B,uDAAuD;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE7C,qDAAqD;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,6CAA6C;AAC7C,wBAAsB,IAAI,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAStE;AAED,0CAA0C;AAC1C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,4CAA4C;AAC5C,wBAAsB,UAAU,CAC9B,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAAC,kBAAkB,CAAC,CAK7B;AAED,mBAAmB;AACnB,OAAO,EACL,KAAK,UAAU,EACf,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,sBAAsB;AAC3B,iBAAiB;AACjB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,QAAQ,EACb,KAAK,QAAQ,EACb,KAAK,UAAU,EACf,KAAK,aAAa,EAClB,KAAK,QAAQ,EACb,KAAK,aAAa,EAClB,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,iBAAiB,GACvB,MAAM,YAAY,CAAC"}
package/dist/node.d.ts DELETED
@@ -1,31 +0,0 @@
1
- import type { RslintServiceInterface, RSlintOptions } from './types.js';
2
- /**
3
- * Node.js implementation of RslintService using child processes
4
- */
5
- export declare class NodeRslintService implements RslintServiceInterface {
6
- private nextMessageId;
7
- private readonly pendingMessages;
8
- private readonly rslintPath;
9
- private readonly process;
10
- private chunks;
11
- private chunkSize;
12
- private expectedSize;
13
- constructor(options?: RSlintOptions);
14
- /**
15
- * Send a message to the rslint process
16
- */
17
- sendMessage(kind: string, data: any): Promise<any>;
18
- /**
19
- * Handle incoming binary data chunks
20
- */
21
- private handleChunk;
22
- /**
23
- * Handle a complete message from rslint
24
- */
25
- private handleMessage;
26
- /**
27
- * Terminate the rslint process
28
- */
29
- terminate(): void;
30
- }
31
- //# sourceMappingURL=node.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,sBAAsB,EACtB,aAAa,EAGd,MAAM,YAAY,CAAC;AAEpB;;GAEG;AACH,qBAAa,iBAAkB,YAAW,sBAAsB;IAC9D,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,QAAQ,CAAC,eAAe,CAA8B;IAC9D,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAS;IACpC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAe;IACvC,OAAO,CAAC,MAAM,CAAW;IACzB,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,YAAY,CAAgB;IAEpC,YAAY,OAAO,GAAE,aAAkB,EAqBtC;IAED;;OAEG;IACG,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CAiBvD;IAED;;OAEG;IACH,OAAO,CAAC,WAAW;IAyCnB;;OAEG;IACH,OAAO,CAAC,aAAa;IAcrB;;OAEG;IACH,SAAS,IAAI,IAAI,CAKhB;CACF"}
package/dist/node.js DELETED
@@ -1,116 +0,0 @@
1
- import { spawn } from 'child_process';
2
- import path from 'path';
3
- /**
4
- * Node.js implementation of RslintService using child processes
5
- */
6
- export class NodeRslintService {
7
- nextMessageId;
8
- pendingMessages;
9
- rslintPath;
10
- process;
11
- chunks;
12
- chunkSize;
13
- expectedSize;
14
- constructor(options = {}) {
15
- this.nextMessageId = 1;
16
- this.pendingMessages = new Map();
17
- this.rslintPath =
18
- options.rslintPath || path.join(import.meta.dirname, '../bin/rslint');
19
- this.process = spawn(this.rslintPath, ['--api'], {
20
- stdio: ['pipe', 'pipe', 'inherit'],
21
- cwd: options.workingDirectory || process.cwd(),
22
- env: {
23
- ...process.env,
24
- },
25
- });
26
- // Set up binary message reading
27
- this.process.stdout.on('data', (data) => {
28
- this.handleChunk(data);
29
- });
30
- this.chunks = [];
31
- this.chunkSize = 0;
32
- this.expectedSize = null;
33
- }
34
- /**
35
- * Send a message to the rslint process
36
- */
37
- async sendMessage(kind, data) {
38
- return new Promise((resolve, reject) => {
39
- const id = this.nextMessageId++;
40
- const message = { id, kind, data };
41
- // Register promise callbacks
42
- this.pendingMessages.set(id, { resolve, reject });
43
- // Write message length as 4 bytes in little endian
44
- const json = JSON.stringify(message);
45
- const jsonBuffer = Buffer.from(json, 'utf8');
46
- const length = Buffer.alloc(4);
47
- length.writeUInt32LE(jsonBuffer.length, 0);
48
- // Send message
49
- this.process.stdin.write(Buffer.concat([length, jsonBuffer]));
50
- });
51
- }
52
- /**
53
- * Handle incoming binary data chunks
54
- */
55
- handleChunk(chunk) {
56
- this.chunks.push(chunk);
57
- this.chunkSize += chunk.length;
58
- // Process complete messages
59
- while (true) {
60
- // Read message length if we don't have it yet
61
- if (this.expectedSize === null) {
62
- if (this.chunkSize < 4)
63
- return;
64
- // Combine chunks to read the message length
65
- const combined = Buffer.concat(this.chunks);
66
- this.expectedSize = combined.readUInt32LE(0);
67
- // Remove length bytes from buffer
68
- this.chunks = [combined.slice(4)];
69
- this.chunkSize -= 4;
70
- }
71
- // Check if we have the full message
72
- if (this.chunkSize < this.expectedSize)
73
- return;
74
- // Read the message content
75
- const combined = Buffer.concat(this.chunks);
76
- const message = combined.slice(0, this.expectedSize).toString('utf8');
77
- // Handle the message
78
- try {
79
- const parsed = JSON.parse(message);
80
- this.handleMessage(parsed);
81
- }
82
- catch (err) {
83
- console.error('Error parsing message:', err);
84
- }
85
- // Reset for next message
86
- this.chunks = [combined.slice(this.expectedSize)];
87
- this.chunkSize = this.chunks[0].length;
88
- this.expectedSize = null;
89
- }
90
- }
91
- /**
92
- * Handle a complete message from rslint
93
- */
94
- handleMessage(message) {
95
- const { id, kind, data } = message;
96
- const pending = this.pendingMessages.get(id);
97
- if (!pending)
98
- return;
99
- this.pendingMessages.delete(id);
100
- if (kind === 'error') {
101
- pending.reject(new Error(data.message));
102
- }
103
- else {
104
- pending.resolve(data);
105
- }
106
- }
107
- /**
108
- * Terminate the rslint process
109
- */
110
- terminate() {
111
- if (this.process && !this.process.killed) {
112
- this.process.stdin.end();
113
- this.process.kill();
114
- }
115
- }
116
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"service.d.ts","sourceRoot":"","sources":["../src/service.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,sBAAsB,IAAI,oBAAoB,EAC9C,WAAW,EACX,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,YAAY,CAAC;AAEpB;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAuB;IAE/C,YAAY,OAAO,EAAE,oBAAoB,EAExC;IAED;;OAEG;IACG,IAAI,CAAC,OAAO,GAAE,WAAgB,GAAG,OAAO,CAAC,YAAY,CAAC,CAyB3D;IAED;;OAEG;IACG,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAWxE;IAED;;;OAGG;IACG,UAAU,CAAC,OAAO,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAwBxE;IAED;;OAEG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAO3B;CACF;AAED,kCAAkC;AAClC,YAAY,EACV,UAAU,EACV,WAAW,EACX,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,aAAa,EACb,aAAa,EACb,sBAAsB;AACtB,iBAAiB;AACjB,iBAAiB,EACjB,kBAAkB,EAClB,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,aAAa,EACb,QAAQ,EACR,aAAa,EACb,aAAa,EACb,SAAS,EACT,iBAAiB,GAClB,MAAM,YAAY,CAAC"}
@@ -1 +0,0 @@
1
- {"version":"7.0.0-dev.20250904.1","root":[[61,62],[168,169],[172,188]],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.es2022.d.ts","lib.webworker.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2022.array.d.ts","lib.es2022.error.d.ts","lib.es2022.intl.d.ts","lib.es2022.object.d.ts","lib.es2022.string.d.ts","lib.es2022.regexp.d.ts","lib.esnext.disposable.d.ts","lib.esnext.float16.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","../src/types.ts","../src/browser.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/constants.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/parse.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/scan.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/lib/picomatch.d.ts","../../../node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.8.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@24.0.14/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.4/node_modules/fdir/dist/index.d.mts","../../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.d.mts","../src/define-config.ts","../src/utils/config-discovery.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/types.d.ts","../../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.d.mts","../src/config-loader.ts","../src/utils/args.ts","../src/cli.ts","../src/node.ts","../src/service.ts","../src/configs/typescript.ts","../src/configs/javascript.ts","../src/configs/react.ts","../src/configs/react-hooks.ts","../src/configs/import.ts","../src/configs/promise.ts","../src/configs/jest.ts","../src/configs/unicorn.ts","../src/configs/jsx-a11y.ts","../src/configs/index.ts","../src/index.ts","../src/worker.ts"],"fileInfos":[{"version":"58b8dc4da260b41be8de1be2d876a1e6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"24660545bd04f64286946ca58f9461fc","impliedNodeFormat":99},{"version":"006807822602069b83b496ad7e25e6ca","impliedNodeFormat":99},{"version":"4d9b146f28d6be2c3542b08b595febfe","impliedNodeFormat":99},{"version":"455ea9b314b4d327c535fb65bd954959","impliedNodeFormat":99},{"version":"c079fccc6ede08aa4f8ca702c3ba328e","impliedNodeFormat":99},{"version":"c349310240662575d10e855fb8cff0b9","impliedNodeFormat":99},{"version":"4ccba7d48aa8b5a54b56f9a48b076496","impliedNodeFormat":99},{"version":"92ef9b8df31d3a08512928a3066d8fa9","impliedNodeFormat":99},{"version":"73d4a4cb6c1409e4d75f0d308704b7f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"751a26973b059fed1d0ecc4b02a0aa43","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"be28f9bf546cb528601aaa04d7034fc8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3bc4e9a53ee556f3dc15abc1179278dd","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2c63fa39e2cdd849306f21679fdac8b1","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e1a9f024b1a69565194afcdb4b57ef1d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9fa1fffd5b2b67d8d8c33e295cb91a9f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4d8ab857b044eaa0661bd0aebebc038b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"748df784ad0b12a20c5f5ce011418c3c","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"62abf648b001aa05585b5d0e71cd96d7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d901677b09e934598f913e2c05f827b0","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"ab7a40e3c7854c54c6f329376cf3f9b6","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"00ece0060faf280c5873f3cfe62d7d19","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cf5a418e3fbdb27a784c5fc37be6797a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a73a6f599fda19ffee929d4386bab691","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c043f4221acd9d8470d6bc087cd455ba","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"fbae9331a88fa1a8a336fe90253cbbc7","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"d4124f01474cfa693099d8be321979e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e3e80cf65ee855fd4a5813ea19701f93","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"cd8650f4caf8166f19fd93217907da21","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c39604220a24016cb90fe3094a6b4b56","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2652c52b1c748791681ca0a4d751b09b","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9540816cf2a3418a9254e43f1055e767","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"f9616d828e6afe0f8146e9ac3b33fa59","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4f00a6f131995907fe9b0faf4dbabc18","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"47f85dd672027fda65064cbfee6b2d71","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8adddec358b9acfa3d65fd4d2013ac84","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"8170fe225cf3b8b74c06f1fe8913924f","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"c9dbd0e301b2bd8fc6d5dcb75dc61ec4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"3a64170086e7ddb980f07478f95f7c49","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"a804e69080dc542b8de4079fdde7ebef","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"783d6e41b4c30cc983d131b2f413044a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"11b11ae792c173835b03d064a0853462","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"4cdc220ae24b55dcc69d30252c36ce9d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"36fd93eca51199e9dfee76d7dbbf2719","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7fc46463d5c6871146e3aac105f21a2d","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"21ed16210f33f30f1e2df6dd5bc584d9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"b2d1055a33f1612669aed4b1c06ab438","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6779bb060769fcc1b3063d7d6dacca83","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5de91aed11cf11bbf79c2323600f2a28","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"2843d76b135201d1ba75d56f45238760","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"98afe632d712655c371691bc02dd15f8","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"e33a3b1212a9f61f3d7229e068573681","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"79a0167d7b98b654dbb97ec62ff1fca9","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"045bc80bcb8ba75cf56e2c9af4636a06","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5c327c3a580ef35777e7f2b97b6b23e4","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"9965653fed0cc40aff9f23e6250e449a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"6ff13a1f4d84ba0dfb73813250150f0a","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"5562f148cf1dda444e2284f3a3d39eeb","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"45c91c5f844a9ee1df11d1b71c484b0e","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"39e009135c77d60baa790854b51d2195","affectsGlobalScope":true,"impliedNodeFormat":99},{"version":"7d376e054f2b7d36aa0f0917c4214bb6","signature":"31a6509be21121ef7ed470a1f1b9d7ca","impliedNodeFormat":99},{"version":"c99a5601391cf7e68323e392adab539e","signature":"e12e7d2db2db6cf4e2e8c86719eeaec9","impliedNodeFormat":99},"9d7a1c0676307f82773dc48ee003c51f","75214e168dea49822a6ff7a19d095f3e","1ce064041f9c19243430811d939818cf","8503cb1a6f13fe32dd8c86ecb8addd4e","ba2d157ec950064af6837b0c9b5ca75b",{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f652e5dd19482f44f9387406574bdd0a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ecdcb80604ca736ed275e4330a3acd50","affectsGlobalScope":true,"impliedNodeFormat":1},"8e91e7228778516936913f666d057c19","49133c0dfbc32ab95668c3443dea49e5","85c2cf74d24d4069fac4686501a2d7e3","83f416ded62bb31c035580c3b5a8d334","88a476e1b17b513ec388c48b5303e010","60c67c092ae78d2e7858ca0a88f54659","9508c917bd7e458745e222a82dd24ef0","51ce48cc1d85b4b7ee13109b40c46114","a86a959071e855285f470f2e08ec2dde","fc4e8bd86f6f1ae68685f44445eff81d","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","992c18b758ab50d188485348a313e8fd","f7b846e3f5d3a1678a27a534636e598d","16f740a706028e841b09fb8b1aa8faaf","bf260ba87c1928b60b6117029e99d559","07badf3415d0d61eb51e65c2c1d249ab","0aecf0586f33c1d2ea2e05c358afca16","c2364011a80b6a9e3cc0e77895bad577","f018ff75d70f3ff81fd5023da7d4ad2e","72524fc4b9ab31a174530a065dff4b92","ccfd1f92db55955e84384676feef9ffb","69c7bb9c3befe9ae37eed0e6a6310fee","31341fcd52f68f78c0c340480c086c98","2f4f6e701620e6564bb5c438f964578e","064761901f4de9ed88371873855b170d","b438b08b2f0ed94a95a75c8990d9021b","771a77c9bec862600c95f7a563871b5e","c665284a9cb3dd886b14663cd04742e0","4b7366a70853ae20881a6b4b893d93d3","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","3070cd51aa46e2f00275e034f80f6b59","865aea1c3209e31b076cb6fe780e769e","63eec4dc4789376da114ec591bd56923","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","26d101efae9b618449dd3da6aebd45d4",{"version":"568750d32ee42158f0ac66c5672ed609","affectsGlobalScope":true,"impliedNodeFormat":1},"910ef6148943e1ad967fc9f4d0ef5ca0","7deced3ef46e082f97d49bb71622526a","f81aa09811fa65ac6f354ab0018d3c38",{"version":"cfc105b6759d0b72e9ac9a0abe059527","affectsGlobalScope":true,"impliedNodeFormat":1},"4106e18ac4fb5b98fba76cdff9204262","1c1f3f0469723ebc30f86bfe21521c8d",{"version":"a3a2391a0ca69d8577a52d3884d90530","affectsGlobalScope":true,"impliedNodeFormat":1},"b2b472cd0bf0f8d5f022e00ca1c401f4",{"version":"afed1ada3f247602f1f29e5762a10e0a","affectsGlobalScope":true,"impliedNodeFormat":1},"bd1865e459f8177364554d1f3176f5ed","1c66af6e8e63eae9cce90083d361d33f","e36efb6c9794e0b9f8e23392ecccd577","fbe31979333ec391d8b59e8f42236e8e","6f97553fd1690f568365155d4c51a3b5",{"version":"cb0b77b9a8e6edb694cd6c637486ffef","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9edcdd7198740984c99907c129978973","affectsGlobalScope":true,"impliedNodeFormat":1},"d717441a3debece5417ad2e73aed07cc","a5dbfd17f706283f910baa96366eb920","4be5f10797f9ebb28f7721cfd8e8da34","912f20b1d68b38b9acf57e0849ec5469","629beb9ea955f1997cf64adf439c6133","32683d58e587fd4c25b8bc30682f6241",{"version":"8e6dc5ac3fcff4495b0625c591514b1e","affectsGlobalScope":true,"impliedNodeFormat":1},"9ea7cd0d0018e0421207b0970b559b8f","873f0ec733a52118af83f3a1239dfd7f","bf912705027b3eabad67f9d8ce7d89be",{"version":"c9036cfa0a4d2d7f1ae99178866fdb70","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bc34984f238f2130864bd1049109f77b","affectsGlobalScope":true,"impliedNodeFormat":1},"6b26581aa2587701d570206a0db8c9ee","88a29e2aac8082c0910733950159e1ca","609d3ac6ba921e6e83c5da182c204fb8","ce949e2c34044d515bf85beb4192d138","a1238e436cba0b0db07f1555ef0df5fa","99a1d15196a239e65bf993ce6e128427","8dee16e0f918e98afc0fec4f8a15e189","3efc335bc8a8f6887d58767e1662717a","c8206d568b54e5ea06131963eecd576a","141101b35aa85ab5ae3d1836f602d9c2",{"version":"2ed70491374f27b7d4ff5db624057a07","affectsGlobalScope":true,"impliedNodeFormat":1},"743c944bc937ca1c8bf2b1a8ba09970d","8f029b5de1a7b5a20352d323c965cd81",{"version":"51c771bc7fc6bbfbaffba6c393b8fc14","affectsGlobalScope":true,"impliedNodeFormat":1},"4bc8f13c472858fb74f77388c0c5d885","36f02bde868b36543678fc59bf849ea7","c72d2516d1e8910caca33c4dff75fcd4","f0231f36cb7117fbe9271ff19ef0f5f4",{"version":"9d3c373f38f202a3a5cf984fa41309ee","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a4f60f1f5d6d26c39233e18e7e4c40e2","affectsGlobalScope":true,"impliedNodeFormat":1},"ae6587532652a398ed932c2658ac3d4e","8c173387961bce1166d3e05b129fb108","010116401a82e1f466c580307f045f71",{"version":"3a4d7c89c2f2f9af5b2ea4b28ed492fc","affectsGlobalScope":true,"impliedNodeFormat":1},"422542e3616e997a247dfae35b486617","92ac071eabd0a4c11d987698355e5dfe",{"version":"84ee10666cdaf03dacb2b2872a7b57f5","impliedNodeFormat":99},{"version":"a52d60a33619ebf41549579675218844","impliedNodeFormat":99},{"version":"03fac7ac1c39fd5cd885e9e445024900","signature":"d2bbe10c991ccede4d0bc0c206971298","impliedNodeFormat":99},{"version":"1734e960bfba2c015b48b9eda90c4824","signature":"5cd3eca713ebb358bbdee9ebd86c5c39","impliedNodeFormat":99},{"version":"2cb26cf8b77feeaaaea39a5ded665113","impliedNodeFormat":99},{"version":"d12f934b02b80930fae26957ad4738b6","impliedNodeFormat":99},{"version":"a0bfc511a737d8bd0bc86399299ce465","signature":"73d7ca12ec64e36b7d852bb682e49b6c","impliedNodeFormat":99},{"version":"bae2ea5cab0f79bc8f037c1c3afa8c6d","signature":"2a9257f19d6270a4654e60011346c7f2","impliedNodeFormat":99},{"version":"a70b1f108c62b87581067b6602a3c12d","signature":"407e5c2bc8aeeb90d36e1066c32c207a","impliedNodeFormat":99},{"version":"30265e1516d1dcf4c3a1e11c386afe26","signature":"e301ab977d4289eff4cde4a7413ef61a","impliedNodeFormat":99},{"version":"4f0b3daa0f1e301e5fc408c316cb179d","signature":"1c0aee6b41851e9a45a3eb49f83f240c","impliedNodeFormat":99},{"version":"446b2551b593f8ad5c987fb089fc4a88","signature":"b35dbb75d8b146b5c2a20d63b6cf7e3c","impliedNodeFormat":99},{"version":"1c302ecd0bae8621b933c0807e762815","signature":"55430910f8ec9a81c21f7e757654c3f6","impliedNodeFormat":99},{"version":"6eebc6aaec3cbaf65c9676fcdc7b71f1","signature":"d89784645c747e5a67bc1363a038d4a0","impliedNodeFormat":99},{"version":"3b25a4b294c31d2c9fc5746b461a6f2b","signature":"54394cd37f7557241cac01666da6ebd1","impliedNodeFormat":99},{"version":"f19aa610319291e92f1e009825f85399","signature":"3bc9387c52d40323151c43848934a5d8","impliedNodeFormat":99},{"version":"1faedb1271cb5c1c9ef6f5cce80d7b53","signature":"5859429d968736ac8382634391724b74","impliedNodeFormat":99},{"version":"e883ec784cd2b7dff4cc715063c1ce0b","signature":"d6fc57bef27415a4f6482d44675fadd1","impliedNodeFormat":99},{"version":"25a5d09dbb00128be3b76d2ffb0e7bee","signature":"0b69de8e2d2de4cce9fc358e333803da","impliedNodeFormat":99},{"version":"c39408b7b78dc74aa39b0ba7ed8ddd8d","signature":"21b022a3d358b1663caeba2ffb249550","impliedNodeFormat":99},{"version":"33147633a03053c51dcfc9fe5acefced","signature":"b0983ea10dab987443dcf0dd0d75bb4d","impliedNodeFormat":99},{"version":"0efe90828c1c5f31bb38191c1643ff54","signature":"de138075b8240acf62a7ae50cb961198","impliedNodeFormat":99},{"version":"5d1aba6af7a268e786176b8ef97d42ee","signature":"abe7d9981d6018efb6b2b794f40a1607","impliedNodeFormat":99}],"fileIdsList":[[70,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,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,161,162,163,164],[70,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,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,161,162,163,164],[68,69,70,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,153,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,154,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,155,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,156,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,157,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,158,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,159,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,160,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163],[66,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[63,64,65,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[67,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,165],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,170],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,166],[70,80,84,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,75,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,77,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,165],[70,75,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,165],[70,72,73,74,76,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,88,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,73,78,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,104,105,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,73,76,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,165],[70,72,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,97,100,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,88,89,90,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,78,80,89,91,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,79,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,73,75,80,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,84,89,91,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,84,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,78,80,83,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,73,77,80,88,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,80,97,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,75,80,104,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,165],[61,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,169,172,173],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,169,171],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,168],[70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,177,178,179,180,181,182,183,184,185],[61,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,168,175,176,186],[67,70,112,113,114,115,116,117,118,119,120,121,122,123,124,125,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,161,162,163,164,167,168]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowImportingTsExtensions":true,"composite":true,"emitDeclarationOnly":false,"emitDecoratorMetadata":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":false,"importHelpers":false,"module":199,"noImplicitReturns":true,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","removeComments":false,"rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"skipDefaultLibCheck":false,"sourceMap":false,"target":9,"tsBuildInfoFile":"./tsconfig.build.tsbuildinfo","verbatimModuleSyntax":false},"referencedMap":[[112,1],[113,2],[114,3],[70,4],[115,5],[116,6],[117,7],[68,8],[118,9],[119,10],[120,11],[121,12],[122,13],[123,14],[124,15],[126,8],[125,16],[127,17],[128,18],[129,19],[111,20],[69,8],[130,21],[131,22],[132,23],[165,24],[133,25],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,32],[141,33],[142,34],[143,35],[144,36],[145,37],[146,38],[147,39],[149,40],[148,41],[150,42],[151,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[159,51],[160,52],[161,53],[162,54],[163,55],[164,56],[67,57],[63,8],[64,8],[66,58],[65,8],[59,8],[60,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[10,8],[71,8],[166,59],[171,60],[170,8],[167,61],[88,62],[99,63],[86,62],[100,8],[109,64],[78,65],[77,8],[108,66],[103,67],[107,65],[80,68],[96,69],[79,70],[106,71],[75,72],[76,67],[81,63],[82,8],[87,65],[85,63],[73,73],[110,74],[101,75],[91,76],[90,63],[92,77],[94,78],[89,79],[93,80],[104,66],[83,81],[84,82],[95,83],[74,8],[98,84],[97,63],[102,8],[72,8],[105,85],[62,86],[174,87],[172,88],[181,89],[186,90],[178,89],[183,89],[185,89],[182,89],[180,89],[179,89],[177,89],[184,89],[168,8],[187,91],[175,86],[176,86],[61,8],[173,8],[169,92],[188,8]],"latestChangedDtsFile":"./worker.d.ts"}