@step-wise/value-types 0.1.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 (49) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +152 -0
  3. package/dist/definitions/guards.d.ts +4 -0
  4. package/dist/definitions/guards.d.ts.map +1 -0
  5. package/dist/definitions/guards.js +13 -0
  6. package/dist/definitions/index.d.ts +4 -0
  7. package/dist/definitions/index.d.ts.map +1 -0
  8. package/dist/definitions/index.js +3 -0
  9. package/dist/definitions/registries.d.ts +4 -0
  10. package/dist/definitions/registries.d.ts.map +1 -0
  11. package/dist/definitions/registries.js +41 -0
  12. package/dist/definitions/types.d.ts +15 -0
  13. package/dist/definitions/types.d.ts.map +1 -0
  14. package/dist/definitions/types.js +1 -0
  15. package/dist/fundamentalTypes/index.d.ts +30 -0
  16. package/dist/fundamentalTypes/index.d.ts.map +1 -0
  17. package/dist/fundamentalTypes/index.js +8 -0
  18. package/dist/fundamentalTypes/integer/equality.d.ts +8 -0
  19. package/dist/fundamentalTypes/integer/equality.d.ts.map +1 -0
  20. package/dist/fundamentalTypes/integer/equality.js +12 -0
  21. package/dist/fundamentalTypes/integer/index.d.ts +4 -0
  22. package/dist/fundamentalTypes/integer/index.d.ts.map +1 -0
  23. package/dist/fundamentalTypes/integer/index.js +3 -0
  24. package/dist/fundamentalTypes/integer/inputValue.d.ts +14 -0
  25. package/dist/fundamentalTypes/integer/inputValue.d.ts.map +1 -0
  26. package/dist/fundamentalTypes/integer/inputValue.js +22 -0
  27. package/dist/fundamentalTypes/integer/valueType.d.ts +14 -0
  28. package/dist/fundamentalTypes/integer/valueType.d.ts.map +1 -0
  29. package/dist/fundamentalTypes/integer/valueType.js +6 -0
  30. package/dist/fundamentalTypes/multipleChoice/equality.d.ts +9 -0
  31. package/dist/fundamentalTypes/multipleChoice/equality.d.ts.map +1 -0
  32. package/dist/fundamentalTypes/multipleChoice/equality.js +20 -0
  33. package/dist/fundamentalTypes/multipleChoice/generation.d.ts +8 -0
  34. package/dist/fundamentalTypes/multipleChoice/generation.d.ts.map +1 -0
  35. package/dist/fundamentalTypes/multipleChoice/generation.js +33 -0
  36. package/dist/fundamentalTypes/multipleChoice/index.d.ts +5 -0
  37. package/dist/fundamentalTypes/multipleChoice/index.d.ts.map +1 -0
  38. package/dist/fundamentalTypes/multipleChoice/index.js +4 -0
  39. package/dist/fundamentalTypes/multipleChoice/inputValue.d.ts +16 -0
  40. package/dist/fundamentalTypes/multipleChoice/inputValue.d.ts.map +1 -0
  41. package/dist/fundamentalTypes/multipleChoice/inputValue.js +34 -0
  42. package/dist/fundamentalTypes/multipleChoice/valueType.d.ts +13 -0
  43. package/dist/fundamentalTypes/multipleChoice/valueType.d.ts.map +1 -0
  44. package/dist/fundamentalTypes/multipleChoice/valueType.js +6 -0
  45. package/dist/index.d.ts +3 -0
  46. package/dist/index.d.ts.map +1 -0
  47. package/dist/index.js +2 -0
  48. package/dist/tsconfig.tsbuildinfo +1 -0
  49. package/package.json +50 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Step-Wise
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,152 @@
1
+ # @step-wise/value-types
2
+
3
+ Combine the independent adapters that let application-specific values participate in input interpretation, serialization, and equality checks. It contains the shared adapter definitions and registry utilities, together with the fundamental Integer and MultipleChoice value types. Other domain-specific value types live in separate integration packages or private exercise tooling.
4
+
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ npm install @step-wise/value-types
10
+ ```
11
+
12
+
13
+ ## Fundamental value types
14
+
15
+ `fundamentalValueTypes` contains the Integer and MultipleChoice definitions used by input exercises by default. Each combines its input-value and equality adapters under one discriminator:
16
+
17
+ ```ts
18
+ import { IntegerType, MultipleChoiceType, fundamentalValueTypes } from '@step-wise/value-types'
19
+ ```
20
+
21
+ The package also exports the individual `integerValueType` and `multipleChoiceValueType`, their input-value types, and their adapter implementations. Input-exercise builders combine these definitions with the registry supplied by an exercise; conflicting definitions with the same type name are rejected at that boundary.
22
+
23
+
24
+ ## Multiple-choice mappings
25
+
26
+ Use `generateMultipleChoiceMapping` to select and optionally shuffle indexes from a larger collection of choices:
27
+
28
+ ```ts
29
+ import { generateMultipleChoiceMapping } from '@step-wise/value-types'
30
+
31
+ const mapping = generateMultipleChoiceMapping({
32
+ numChoices: 6,
33
+ pick: 4,
34
+ include: 2,
35
+ randomOrder: true,
36
+ })
37
+ ```
38
+
39
+ The result contains four unique indexes and always includes index `2`. `pick` defaults to all choices, `include` defaults to no required choices, and `randomOrder` defaults to `false`.
40
+
41
+ Store the resulting mapping in the exercise parameters and pass it to a `MultipleChoiceInput` field. This keeps the displayed selection and order of choices stable for the generated exercise. The corresponding `MultipleChoiceMappingOptions` type is also exported.
42
+
43
+
44
+ ## Defining a value type
45
+
46
+ A value type groups the available capabilities for one type discriminator:
47
+
48
+ ```ts
49
+ import type { ValueType } from '@step-wise/value-types'
50
+
51
+ const expressionValueType = {
52
+ inputValue: expressionInputValueAdapter,
53
+ serialization: expressionSerializationAdapter,
54
+ equality: expressionEqualityAdapter,
55
+ } satisfies ValueType
56
+ ```
57
+
58
+ All three capabilities are optional. A type used only in stored exercise parameters can provide serialization alone, while a type used only for student input can provide input interpretation and equality:
59
+
60
+ ```ts
61
+ const vectorValueType = {
62
+ serialization: vectorSerializationAdapter,
63
+ } satisfies ValueType
64
+
65
+ const freeBodyDiagramValueType = {
66
+ inputValue: freeBodyDiagramInputValueAdapter,
67
+ equality: freeBodyDiagramEqualityAdapter,
68
+ } satisfies ValueType
69
+ ```
70
+
71
+ The adapter contracts remain owned by their respective packages:
72
+
73
+ - `InputValueAdapter` comes from [@step-wise/input-interpretation](https://www.npmjs.com/package/@step-wise/input-interpretation).
74
+ - `SerializationAdapter` comes from [@step-wise/serialization](https://www.npmjs.com/package/@step-wise/serialization).
75
+ - `ValueEqualityAdapter` comes from [@step-wise/value-equality](https://www.npmjs.com/package/@step-wise/value-equality).
76
+
77
+ This package imports and combines those contracts instead of redefining them.
78
+
79
+
80
+ ## Creating a registry
81
+
82
+ Key value types by the discriminator used for the corresponding input, serialized, and domain values:
83
+
84
+ ```ts
85
+ import type { ValueTypes } from '@step-wise/value-types'
86
+
87
+ const mathematicsValueTypes = {
88
+ Expression: expressionValueType,
89
+ Equation: equationValueType,
90
+ } satisfies ValueTypes
91
+ ```
92
+
93
+ The registry key is authoritative. The current adapter contracts do not carry a separate type discriminator themselves, so `value-types` cannot independently verify that an adapter was placed under the intended key.
94
+
95
+ Only the fundamental Integer and MultipleChoice value types are built into this package. Engine-specific integrations remain external.
96
+
97
+
98
+ ## Combining registries
99
+
100
+ Use `combineValueTypes` when an exercise needs capabilities from multiple domains:
101
+
102
+ ```ts
103
+ import { combineValueTypes } from '@step-wise/value-types'
104
+
105
+ const valueTypes = combineValueTypes(
106
+ mathematicsValueTypes,
107
+ physicsValueTypes,
108
+ mechanicsValueTypes,
109
+ )
110
+ ```
111
+
112
+ The helper returns a new registry and preserves the value-type definitions themselves. Reusing the same definition is allowed, while conflicting definitions with the same type key throw an error. This prevents one domain integration from silently overriding another.
113
+
114
+ Malformed registries, unknown capability names, and incomplete adapters are also rejected. `isValueType` and `isValueTypes` expose the same validation as type guards. They delegate each supplied adapter to the guard owned by its capability package, so changes to an adapter contract remain defined in one place.
115
+
116
+
117
+ ## Extracting adapter registries
118
+
119
+ The receiving orchestration layer can derive the registry required by each capability package:
120
+
121
+ ```ts
122
+ import { extractValueTypeAdapters } from '@step-wise/value-types'
123
+
124
+ const {
125
+ inputValueAdapters,
126
+ serializationAdapters,
127
+ equalityAdapters,
128
+ } = extractValueTypeAdapters(valueTypes)
129
+ ```
130
+
131
+ The helper validates the complete registry once and includes only value types that provide each requested capability. Empty and partial value types are allowed. Registry-backed equality operations are created by passing the extracted equality adapters to `createAreValuesEqual` from `@step-wise/value-equality`.
132
+
133
+ These helpers are intended for orchestration packages such as `input-exercises`. Domain packages should generally define adapters, while orchestration packages decide which adapters are active for a particular exercise.
134
+
135
+
136
+ ## Dependency direction
137
+
138
+ `value-types` directly depends only on the three capability packages and generic JavaScript utilities. It does not import the CAS, physics engine, geometry tools, mechanics engine, exercise grading, or input exercises.
139
+
140
+ Input interpretation, serialization, and equality remain generic registry consumers; they do not import `value-types` back. The `input-exercises` orchestration layer adds `fundamentalValueTypes`, captures the extracted adapters privately, and exposes only exercise-bound value operations to consumers. This prevents dependency cycles while keeping the fundamental implementations centralized.
141
+
142
+
143
+ ## TypeScript types
144
+
145
+ The main public types are:
146
+
147
+ - `ValueType`, an optional combination of input-value, serialization, and equality adapters for one discriminator.
148
+ - `ValueTypes`, a registry of value types keyed by discriminator.
149
+ - `ValueTypeAdapters`, the three extracted capability registries.
150
+ - `isValueType` and `isValueTypes`, runtime guards for definitions and registries.
151
+
152
+ The package also reuses the erased heterogeneous-registry types owned by each capability package. It does not weaken the strongly typed adapter definitions used when creating individual value types.
@@ -0,0 +1,4 @@
1
+ import type { ValueType, ValueTypes } from './types.ts';
2
+ export declare function isValueType(value: unknown): value is ValueType;
3
+ export declare function isValueTypes(value: unknown): value is ValueTypes;
4
+ //# sourceMappingURL=guards.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"guards.d.ts","sourceRoot":"","sources":["../../src/definitions/guards.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAEvD,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,SAAS,CAK9D;AAED,wBAAgB,YAAY,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,UAAU,CAEhE"}
@@ -0,0 +1,13 @@
1
+ import { hasOnlyKeys, isPlainObject } from '@step-wise/js-utils';
2
+ import { isSerializationAdapter } from '@step-wise/serialization';
3
+ import { isInputValueAdapter } from '@step-wise/input-interpretation';
4
+ import { isValueEqualityAdapter } from '@step-wise/value-equality';
5
+ export function isValueType(value) {
6
+ return isPlainObject(value) && hasOnlyKeys(value, ['inputValue', 'serialization', 'equality'])
7
+ && (value.serialization === undefined || isSerializationAdapter(value.serialization))
8
+ && (value.inputValue === undefined || isInputValueAdapter(value.inputValue))
9
+ && (value.equality === undefined || isValueEqualityAdapter(value.equality));
10
+ }
11
+ export function isValueTypes(value) {
12
+ return isPlainObject(value) && Object.values(value).every(isValueType);
13
+ }
@@ -0,0 +1,4 @@
1
+ export * from './types.ts';
2
+ export * from './guards.ts';
3
+ export * from './registries.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/definitions/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA"}
@@ -0,0 +1,3 @@
1
+ export * from './types.js';
2
+ export * from './guards.js';
3
+ export * from './registries.js';
@@ -0,0 +1,4 @@
1
+ import type { ValueTypeAdapters, ValueTypes } from './types.ts';
2
+ export declare function combineValueTypes(...registries: readonly ValueTypes[]): ValueTypes;
3
+ export declare function extractValueTypeAdapters(registries: ValueTypes): ValueTypeAdapters;
4
+ //# sourceMappingURL=registries.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"registries.d.ts","sourceRoot":"","sources":["../../src/definitions/registries.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAI/D,wBAAgB,iBAAiB,CAAC,GAAG,UAAU,EAAE,SAAS,UAAU,EAAE,GAAG,UAAU,CAUlF;AAGD,wBAAgB,wBAAwB,CAAC,UAAU,EAAE,UAAU,GAAG,iBAAiB,CAalF"}
@@ -0,0 +1,41 @@
1
+ import { isPlainObject } from '@step-wise/js-utils';
2
+ import { isValueType } from './guards.js';
3
+ // Combine a set of ValueTypes registries into one, ensuring there are no duplicates. (Unless the ValueTypes are identical.)
4
+ export function combineValueTypes(...registries) {
5
+ const combined = Object.create(null);
6
+ for (const registry of registries) {
7
+ validateValueTypes(registry);
8
+ for (const [type, valueType] of Object.entries(registry)) {
9
+ if (Object.hasOwn(combined, type) && combined[type] !== valueType)
10
+ throw new TypeError(`Cannot combine value types: duplicate type "${type}".`);
11
+ combined[type] = valueType;
12
+ }
13
+ }
14
+ return combined;
15
+ }
16
+ // Turn a list of ValueTypes registries into an aggregated ValueTypeAdapters object.
17
+ export function extractValueTypeAdapters(registries) {
18
+ validateValueTypes(registries);
19
+ const adapters = {
20
+ serializationAdapters: Object.create(null),
21
+ inputValueAdapters: Object.create(null),
22
+ equalityAdapters: Object.create(null),
23
+ };
24
+ for (const [type, valueType] of Object.entries(registries)) {
25
+ if (valueType.serialization !== undefined)
26
+ adapters.serializationAdapters[type] = valueType.serialization;
27
+ if (valueType.inputValue !== undefined)
28
+ adapters.inputValueAdapters[type] = valueType.inputValue;
29
+ if (valueType.equality !== undefined)
30
+ adapters.equalityAdapters[type] = valueType.equality;
31
+ }
32
+ return adapters;
33
+ }
34
+ function validateValueTypes(valueTypes) {
35
+ if (!isPlainObject(valueTypes))
36
+ throw new TypeError(`Invalid value types: expected a plain object.`);
37
+ for (const [type, valueType] of Object.entries(valueTypes)) {
38
+ if (!isValueType(valueType))
39
+ throw new TypeError(`Invalid value type "${type}": expected a complete serialization, input-value, or equality adapter for each supplied capability.`);
40
+ }
41
+ }
@@ -0,0 +1,15 @@
1
+ import type { AnySerializationAdapter, SerializationAdapters } from '@step-wise/serialization';
2
+ import type { AnyInputValueAdapter, InputValueAdapters } from '@step-wise/input-interpretation';
3
+ import type { AnyValueEqualityAdapter, ValueEqualityAdapters } from '@step-wise/value-equality';
4
+ export type ValueType<TInputValueAdapter extends AnyInputValueAdapter = AnyInputValueAdapter, TSerializationAdapter extends AnySerializationAdapter = AnySerializationAdapter, TValueEqualityAdapter extends AnyValueEqualityAdapter = AnyValueEqualityAdapter> = {
5
+ inputValue?: TInputValueAdapter;
6
+ serialization?: TSerializationAdapter;
7
+ equality?: TValueEqualityAdapter;
8
+ };
9
+ export type ValueTypes = Record<string, ValueType>;
10
+ export type ValueTypeAdapters = {
11
+ inputValueAdapters: InputValueAdapters;
12
+ serializationAdapters: SerializationAdapters;
13
+ equalityAdapters: ValueEqualityAdapters;
14
+ };
15
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/definitions/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAA;AAC9F,OAAO,KAAK,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAC/F,OAAO,KAAK,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAA;AAM/F,MAAM,MAAM,SAAS,CACpB,kBAAkB,SAAS,oBAAoB,GAAG,oBAAoB,EACtE,qBAAqB,SAAS,uBAAuB,GAAG,uBAAuB,EAC/E,qBAAqB,SAAS,uBAAuB,GAAG,uBAAuB,IAC5E;IACH,UAAU,CAAC,EAAE,kBAAkB,CAAA;IAC/B,aAAa,CAAC,EAAE,qBAAqB,CAAA;IACrC,QAAQ,CAAC,EAAE,qBAAqB,CAAA;CAChC,CAAA;AAED,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAA;AAMlD,MAAM,MAAM,iBAAiB,GAAG;IAC/B,kBAAkB,EAAE,kBAAkB,CAAA;IACtC,qBAAqB,EAAE,qBAAqB,CAAA;IAC5C,gBAAgB,EAAE,qBAAqB,CAAA;CACvC,CAAA"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,30 @@
1
+ export * from './integer/index.ts';
2
+ export * from './multipleChoice/index.ts';
3
+ export declare const fundamentalValueTypes: {
4
+ Integer: {
5
+ inputValue: {
6
+ isInputValue: (value: unknown) => value is import("./integer/inputValue.ts").IntegerInputValue;
7
+ isDomainValue: (value: unknown) => value is number;
8
+ interpret: (inputValue: import("./integer/inputValue.ts").IntegerInputValue) => number;
9
+ toInputValue: (integer: number) => import("./integer/inputValue.ts").IntegerInputValue;
10
+ };
11
+ equality: {
12
+ isValue: typeof import("@step-wise/js-utils").isInteger;
13
+ isOptions: typeof import("@step-wise/js-utils").isNumberEqualityOptionsInput;
14
+ areEqual: typeof import("./integer/equality.ts").areIntegersEqual;
15
+ };
16
+ };
17
+ MultipleChoice: {
18
+ inputValue: {
19
+ isInputValue: (value: unknown) => value is import("./multipleChoice/inputValue.ts").MultipleChoiceInputValue;
20
+ isDomainValue: (value: unknown) => value is import("./multipleChoice/inputValue.ts").MultipleChoiceSelection;
21
+ interpret: (inputValue: import("./multipleChoice/inputValue.ts").MultipleChoiceInputValue) => import("./multipleChoice/inputValue.ts").MultipleChoiceSelection;
22
+ toInputValue: (value: import("./multipleChoice/inputValue.ts").MultipleChoiceSelection) => import("./multipleChoice/inputValue.ts").MultipleChoiceInputValue;
23
+ };
24
+ equality: {
25
+ isValue: (value: unknown) => value is import("./multipleChoice/inputValue.ts").MultipleChoiceSelection;
26
+ areEqual: typeof import("./multipleChoice/equality.ts").areMultipleChoiceSelectionsEqual;
27
+ };
28
+ };
29
+ };
30
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fundamentalTypes/index.ts"],"names":[],"mappings":"AAKA,cAAc,oBAAoB,CAAA;AAClC,cAAc,2BAA2B,CAAA;AAEzC,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;CAGZ,CAAA"}
@@ -0,0 +1,8 @@
1
+ import { IntegerType, integerValueType } from './integer/index.js';
2
+ import { MultipleChoiceType, multipleChoiceValueType } from './multipleChoice/index.js';
3
+ export * from './integer/index.js';
4
+ export * from './multipleChoice/index.js';
5
+ export const fundamentalValueTypes = {
6
+ [IntegerType]: integerValueType,
7
+ [MultipleChoiceType]: multipleChoiceValueType,
8
+ };
@@ -0,0 +1,8 @@
1
+ import { type NumberEqualityOptionsInput, isInteger, isNumberEqualityOptionsInput } from '@step-wise/js-utils';
2
+ export declare function areIntegersEqual(inputValue: number, expectedValue: number, options?: NumberEqualityOptionsInput): boolean;
3
+ export declare const integerEqualityAdapter: {
4
+ isValue: typeof isInteger;
5
+ isOptions: typeof isNumberEqualityOptionsInput;
6
+ areEqual: typeof areIntegersEqual;
7
+ };
8
+ //# sourceMappingURL=equality.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"equality.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/integer/equality.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,0BAA0B,EAAiB,SAAS,EAAE,4BAA4B,EAA8C,MAAM,qBAAqB,CAAA;AAGzK,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,GAAE,0BAA+B,GAAG,OAAO,CAK7H;AAED,eAAO,MAAM,sBAAsB;;;;CAIiC,CAAA"}
@@ -0,0 +1,12 @@
1
+ import { ensureInteger, isInteger, isNumberEqualityOptionsInput, numbersEqual, resolveNumberEqualityOptions } from '@step-wise/js-utils';
2
+ export function areIntegersEqual(inputValue, expectedValue, options = {}) {
3
+ inputValue = ensureInteger(inputValue);
4
+ expectedValue = ensureInteger(expectedValue);
5
+ const { absoluteTolerance, relativeTolerance } = resolveNumberEqualityOptions(options);
6
+ return numbersEqual(inputValue, expectedValue, { absoluteTolerance, relativeTolerance });
7
+ }
8
+ export const integerEqualityAdapter = {
9
+ isValue: isInteger,
10
+ isOptions: isNumberEqualityOptionsInput,
11
+ areEqual: areIntegersEqual,
12
+ };
@@ -0,0 +1,4 @@
1
+ export * from './inputValue.ts';
2
+ export * from './equality.ts';
3
+ export * from './valueType.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/integer/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,3 @@
1
+ export * from './inputValue.js';
2
+ export * from './equality.js';
3
+ export * from './valueType.js';
@@ -0,0 +1,14 @@
1
+ import { type InputValue } from '@step-wise/input-interpretation';
2
+ export declare const IntegerType = "Integer";
3
+ export type IntegerType = typeof IntegerType;
4
+ export type IntegerInputValue = InputValue<IntegerType, string>;
5
+ declare function interpretInteger(inputValue: IntegerInputValue): number;
6
+ declare function integerToInputValue(integer: number): IntegerInputValue;
7
+ export declare const integerInputValueAdapter: {
8
+ isInputValue: (value: unknown) => value is IntegerInputValue;
9
+ isDomainValue: (value: unknown) => value is number;
10
+ interpret: typeof interpretInteger;
11
+ toInputValue: typeof integerToInputValue;
12
+ };
13
+ export {};
14
+ //# sourceMappingURL=inputValue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inputValue.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/integer/inputValue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,UAAU,EAAgE,MAAM,iCAAiC,CAAA;AAE/H,eAAO,MAAM,WAAW,YAAY,CAAA;AACpC,MAAM,MAAM,WAAW,GAAG,OAAO,WAAW,CAAA;AAC5C,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,WAAW,EAAE,MAAM,CAAC,CAAA;AAE/D,iBAAS,gBAAgB,CAAC,UAAU,EAAE,iBAAiB,GAAG,MAAM,CAM/D;AAED,iBAAS,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,iBAAiB,CAE/D;AAED,eAAO,MAAM,wBAAwB;0BACd,OAAO,KAAG,KAAK,IAAI,iBAAiB;2BACnC,OAAO,KAAG,KAAK,IAAI,MAAM;;;CAGO,CAAA"}
@@ -0,0 +1,22 @@
1
+ import { isNumericInteger, ensureInteger, ensureNumericInteger, isString, InterpretationError } from '@step-wise/js-utils';
2
+ import { createInputValue, isInputValueOfType } from '@step-wise/input-interpretation';
3
+ export const IntegerType = 'Integer';
4
+ function interpretInteger(inputValue) {
5
+ const { value } = inputValue;
6
+ if (value === '')
7
+ throw new InterpretationError('Could not interpret an empty string into an integer.', 'Empty');
8
+ if (value === '-')
9
+ throw new InterpretationError('Could not interpret a number consisting only of a minus sign.', 'MinusSign');
10
+ if (!isNumericInteger(value) || !Number.isSafeInteger(Number(value.trim())))
11
+ throw new InterpretationError(`Could not interpret "${value}" as a safe integer.`, 'InvalidInteger');
12
+ return ensureNumericInteger(value, { safe: true });
13
+ }
14
+ function integerToInputValue(integer) {
15
+ return createInputValue(IntegerType, ensureInteger(integer, { safe: true }).toString());
16
+ }
17
+ export const integerInputValueAdapter = {
18
+ isInputValue: (value) => isInputValueOfType(value, IntegerType, isString),
19
+ isDomainValue: (value) => typeof value === 'number' && Number.isSafeInteger(value),
20
+ interpret: interpretInteger,
21
+ toInputValue: integerToInputValue,
22
+ };
@@ -0,0 +1,14 @@
1
+ export declare const integerValueType: {
2
+ inputValue: {
3
+ isInputValue: (value: unknown) => value is import("./inputValue.ts").IntegerInputValue;
4
+ isDomainValue: (value: unknown) => value is number;
5
+ interpret: (inputValue: import("./inputValue.ts").IntegerInputValue) => number;
6
+ toInputValue: (integer: number) => import("./inputValue.ts").IntegerInputValue;
7
+ };
8
+ equality: {
9
+ isValue: typeof import("@step-wise/js-utils").isInteger;
10
+ isOptions: typeof import("@step-wise/js-utils").isNumberEqualityOptionsInput;
11
+ areEqual: typeof import("./equality.ts").areIntegersEqual;
12
+ };
13
+ };
14
+ //# sourceMappingURL=valueType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"valueType.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/integer/valueType.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;CAGR,CAAA"}
@@ -0,0 +1,6 @@
1
+ import { integerEqualityAdapter } from './equality.js';
2
+ import { integerInputValueAdapter } from './inputValue.js';
3
+ export const integerValueType = {
4
+ inputValue: integerInputValueAdapter,
5
+ equality: integerEqualityAdapter,
6
+ };
@@ -0,0 +1,9 @@
1
+ import type { MultipleChoiceSelection } from './inputValue.ts';
2
+ export declare function areMultipleChoiceSelectionsEqual(inputValue: MultipleChoiceSelection, expectedValue: MultipleChoiceSelection): boolean;
3
+ declare function isMultipleChoiceSelection(value: unknown): value is MultipleChoiceSelection;
4
+ export declare const multipleChoiceEqualityAdapter: {
5
+ isValue: typeof isMultipleChoiceSelection;
6
+ areEqual: typeof areMultipleChoiceSelectionsEqual;
7
+ };
8
+ export {};
9
+ //# sourceMappingURL=equality.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"equality.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/multipleChoice/equality.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAA;AAE9D,wBAAgB,gCAAgC,CAAC,UAAU,EAAE,uBAAuB,EAAE,aAAa,EAAE,uBAAuB,GAAG,OAAO,CAIrI;AAED,iBAAS,yBAAyB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,uBAAuB,CAGnF;AAQD,eAAO,MAAM,6BAA6B;;;CAGe,CAAA"}
@@ -0,0 +1,20 @@
1
+ import { ensureInteger, hasDuplicates, isInteger } from '@step-wise/js-utils';
2
+ export function areMultipleChoiceSelectionsEqual(inputValue, expectedValue) {
3
+ const inputList = ensureMultipleChoiceSelection(inputValue);
4
+ const expectedList = ensureMultipleChoiceSelection(expectedValue);
5
+ return inputList.length === expectedList.length && inputList.every(item => expectedList.includes(item));
6
+ }
7
+ function isMultipleChoiceSelection(value) {
8
+ const values = Array.isArray(value) ? value : [value];
9
+ return values.every(option => isInteger(option) && option >= 0) && !hasDuplicates(values);
10
+ }
11
+ function ensureMultipleChoiceSelection(value) {
12
+ const values = (Array.isArray(value) ? value : [value]).map(option => ensureInteger(option, { nonNegative: true }));
13
+ if (hasDuplicates(values))
14
+ throw new Error(`Invalid multiple choice comparison: duplicate options are not allowed.`);
15
+ return values;
16
+ }
17
+ export const multipleChoiceEqualityAdapter = {
18
+ isValue: isMultipleChoiceSelection,
19
+ areEqual: areMultipleChoiceSelectionsEqual,
20
+ };
@@ -0,0 +1,8 @@
1
+ export type MultipleChoiceMappingOptions = {
2
+ numChoices: number;
3
+ pick?: number;
4
+ include?: number | number[];
5
+ randomOrder?: boolean;
6
+ };
7
+ export declare function generateMultipleChoiceMapping(options: MultipleChoiceMappingOptions): number[];
8
+ //# sourceMappingURL=generation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generation.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/multipleChoice/generation.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,4BAA4B,GAAG;IAC1C,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AASD,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,4BAA4B,GAAG,MAAM,EAAE,CAM7F"}
@@ -0,0 +1,33 @@
1
+ import { ensureBoolean, ensureInteger, integerRange, randomSubset, shuffle } from '@step-wise/js-utils';
2
+ export function generateMultipleChoiceMapping(options) {
3
+ const { numChoices, pick, include, randomOrder } = resolveMultipleChoiceMappingOptions(options);
4
+ const nonIncluded = integerRange(0, numChoices - 1).filter(index => !include.includes(index));
5
+ const numExtra = Math.max(pick - include.length, 0);
6
+ const mapping = [...include, ...randomSubset(nonIncluded, { count: numExtra })];
7
+ return randomOrder ? shuffle(mapping) : mapping.sort((a, b) => a - b);
8
+ }
9
+ function resolveMultipleChoiceMappingOptions(options) {
10
+ const numChoices = ensureInteger(options.numChoices, { nonNegative: true, nonZero: true });
11
+ const pick = ensureInteger(options.pick ?? numChoices, { nonNegative: true, nonZero: true });
12
+ const include = normalizeIncludedChoices(options.include, numChoices);
13
+ const randomOrder = ensureBoolean(options.randomOrder ?? false);
14
+ if (pick > numChoices)
15
+ throw new Error(`Invalid multiple choice mapping options: cannot pick ${pick} choices from only ${numChoices} choices.`);
16
+ if (include.length > pick)
17
+ throw new Error(`Invalid multiple choice mapping options: ${include.length} choices are included, but only ${pick} choices are requested.`);
18
+ return { numChoices, pick, include, randomOrder };
19
+ }
20
+ function normalizeIncludedChoices(include, numChoices) {
21
+ if (include === undefined)
22
+ return [];
23
+ const normalized = (Array.isArray(include) ? include : [include]).map(index => ensureChoiceIndex(index, numChoices));
24
+ if (new Set(normalized).size !== normalized.length)
25
+ throw new Error(`Invalid multiple choice mapping options: included choices must be unique.`);
26
+ return normalized;
27
+ }
28
+ function ensureChoiceIndex(index, numChoices) {
29
+ index = ensureInteger(index, { nonNegative: true });
30
+ if (index >= numChoices)
31
+ throw new Error(`Invalid multiple choice include index: expected an index below ${numChoices}, but received ${index}.`);
32
+ return index;
33
+ }
@@ -0,0 +1,5 @@
1
+ export * from './inputValue.ts';
2
+ export * from './equality.ts';
3
+ export * from './generation.ts';
4
+ export * from './valueType.ts';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/multipleChoice/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA"}
@@ -0,0 +1,4 @@
1
+ export * from './inputValue.js';
2
+ export * from './equality.js';
3
+ export * from './generation.js';
4
+ export * from './valueType.js';
@@ -0,0 +1,16 @@
1
+ import { type InputValue } from '@step-wise/input-interpretation';
2
+ export declare const MultipleChoiceType = "MultipleChoice";
3
+ export type MultipleChoiceType = typeof MultipleChoiceType;
4
+ export type MultipleChoiceSelection = number | number[];
5
+ export type MultipleChoiceInputValue = InputValue<MultipleChoiceType, MultipleChoiceSelection>;
6
+ declare function interpretMultipleChoice(inputValue: MultipleChoiceInputValue): MultipleChoiceSelection;
7
+ declare function multipleChoiceToInputValue(value: MultipleChoiceSelection): MultipleChoiceInputValue;
8
+ declare function isMultipleChoiceSelection(value: unknown): value is MultipleChoiceSelection;
9
+ export declare const multipleChoiceInputValueAdapter: {
10
+ isInputValue: (value: unknown) => value is MultipleChoiceInputValue;
11
+ isDomainValue: typeof isMultipleChoiceSelection;
12
+ interpret: typeof interpretMultipleChoice;
13
+ toInputValue: typeof multipleChoiceToInputValue;
14
+ };
15
+ export {};
16
+ //# sourceMappingURL=inputValue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inputValue.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/multipleChoice/inputValue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,UAAU,EAAgE,MAAM,iCAAiC,CAAA;AAE/H,eAAO,MAAM,kBAAkB,mBAAmB,CAAA;AAClD,MAAM,MAAM,kBAAkB,GAAG,OAAO,kBAAkB,CAAA;AAE1D,MAAM,MAAM,uBAAuB,GAAG,MAAM,GAAG,MAAM,EAAE,CAAA;AACvD,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,kBAAkB,EAAE,uBAAuB,CAAC,CAAA;AAE9F,iBAAS,uBAAuB,CAAC,UAAU,EAAE,wBAAwB,GAAG,uBAAuB,CAI9F;AAED,iBAAS,0BAA0B,CAAC,KAAK,EAAE,uBAAuB,GAAG,wBAAwB,CAG5F;AAED,iBAAS,yBAAyB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,uBAAuB,CAEnF;AAaD,eAAO,MAAM,+BAA+B;0BACrB,OAAO,KAAG,KAAK,IAAI,wBAAwB;;;;CAIc,CAAA"}
@@ -0,0 +1,34 @@
1
+ import { ensureInteger, hasDuplicates, isInteger, InterpretationError } from '@step-wise/js-utils';
2
+ import { createInputValue, isInputValueOfType } from '@step-wise/input-interpretation';
3
+ export const MultipleChoiceType = 'MultipleChoice';
4
+ function interpretMultipleChoice(inputValue) {
5
+ const { value } = inputValue;
6
+ if (!Array.isArray(value))
7
+ return validateOption(value);
8
+ return validateOptions(value);
9
+ }
10
+ function multipleChoiceToInputValue(value) {
11
+ if (!Array.isArray(value))
12
+ return createInputValue(MultipleChoiceType, validateOption(value));
13
+ return createInputValue(MultipleChoiceType, validateOptions(value));
14
+ }
15
+ function isMultipleChoiceSelection(value) {
16
+ return typeof value === 'number' || Array.isArray(value) && value.every(item => typeof item === 'number');
17
+ }
18
+ function validateOptions(values) {
19
+ const options = values.map(validateOption);
20
+ if (hasDuplicates(options))
21
+ throw new InterpretationError(`Invalid multiple choice selection: duplicate options are not allowed.`, 'DuplicateOptions');
22
+ return options;
23
+ }
24
+ function validateOption(value) {
25
+ if (!isInteger(value) || !Number.isSafeInteger(value) || value < 0)
26
+ throw new InterpretationError(`Invalid multiple choice option: expected a non-negative safe integer but received "${value}".`, 'InvalidOption');
27
+ return ensureInteger(value, { nonNegative: true, safe: true });
28
+ }
29
+ export const multipleChoiceInputValueAdapter = {
30
+ isInputValue: (value) => isInputValueOfType(value, MultipleChoiceType, isMultipleChoiceSelection),
31
+ isDomainValue: isMultipleChoiceSelection,
32
+ interpret: interpretMultipleChoice,
33
+ toInputValue: multipleChoiceToInputValue,
34
+ };
@@ -0,0 +1,13 @@
1
+ export declare const multipleChoiceValueType: {
2
+ inputValue: {
3
+ isInputValue: (value: unknown) => value is import("./inputValue.ts").MultipleChoiceInputValue;
4
+ isDomainValue: (value: unknown) => value is import("./inputValue.ts").MultipleChoiceSelection;
5
+ interpret: (inputValue: import("./inputValue.ts").MultipleChoiceInputValue) => import("./inputValue.ts").MultipleChoiceSelection;
6
+ toInputValue: (value: import("./inputValue.ts").MultipleChoiceSelection) => import("./inputValue.ts").MultipleChoiceInputValue;
7
+ };
8
+ equality: {
9
+ isValue: (value: unknown) => value is import("./inputValue.ts").MultipleChoiceSelection;
10
+ areEqual: typeof import("./equality.ts").areMultipleChoiceSelectionsEqual;
11
+ };
12
+ };
13
+ //# sourceMappingURL=valueType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"valueType.d.ts","sourceRoot":"","sources":["../../../src/fundamentalTypes/multipleChoice/valueType.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,uBAAuB;;;;;;;;;;;CAGf,CAAA"}
@@ -0,0 +1,6 @@
1
+ import { multipleChoiceEqualityAdapter } from './equality.js';
2
+ import { multipleChoiceInputValueAdapter } from './inputValue.js';
3
+ export const multipleChoiceValueType = {
4
+ inputValue: multipleChoiceInputValueAdapter,
5
+ equality: multipleChoiceEqualityAdapter,
6
+ };
@@ -0,0 +1,3 @@
1
+ export * from './definitions/index.ts';
2
+ export * from './fundamentalTypes/index.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './definitions/index.js';
2
+ export * from './fundamentalTypes/index.js';
@@ -0,0 +1 @@
1
+ {"version":"7.0.2","root":[[126,140]],"packageJsons":["../../../node_modules/@types/node/package.json","../../../node_modules/punycode/package.json","../../../node_modules/undici-types/package.json","../../input-interpretation/package.json","../../js-utils/package.json","../../serialization/package.json","../../value-equality/package.json","../package.json"],"missingPackageJsons":["../../../node_modules/@types/assert/package.json","../../../node_modules/@types/assert/strict/package.json","../../../node_modules/@types/async_hooks/package.json","../../../node_modules/@types/buffer/package.json","../../../node_modules/@types/child_process/package.json","../../../node_modules/@types/cluster/package.json","../../../node_modules/@types/console/package.json","../../../node_modules/@types/constants/package.json","../../../node_modules/@types/crypto/package.json","../../../node_modules/@types/dgram/package.json","../../../node_modules/@types/diagnostics_channel/package.json","../../../node_modules/@types/dns/package.json","../../../node_modules/@types/dns/promises/package.json","../../../node_modules/@types/domain/package.json","../../../node_modules/@types/events/package.json","../../../node_modules/@types/fs/package.json","../../../node_modules/@types/fs/promises/package.json","../../../node_modules/@types/http/package.json","../../../node_modules/@types/http2/package.json","../../../node_modules/@types/https/package.json","../../../node_modules/@types/inspector/package.json","../../../node_modules/@types/inspector/promises/package.json","../../../node_modules/@types/module/package.json","../../../node_modules/@types/net/package.json","../../../node_modules/@types/node/assert/package.json","../../../node_modules/@types/node/compatibility/package.json","../../../node_modules/@types/node/dns/package.json","../../../node_modules/@types/node/fs/package.json","../../../node_modules/@types/node/readline/package.json","../../../node_modules/@types/node/stream/package.json","../../../node_modules/@types/node/timers/package.json","../../../node_modules/@types/node/web-globals/package.json","../../../node_modules/@types/os/package.json","../../../node_modules/@types/path/package.json","../../../node_modules/@types/path/posix/package.json","../../../node_modules/@types/path/win32/package.json","../../../node_modules/@types/perf_hooks/package.json","../../../node_modules/@types/process/package.json","../../../node_modules/@types/punycode/package.json","../../../node_modules/@types/querystring/package.json","../../../node_modules/@types/readline/package.json","../../../node_modules/@types/readline/promises/package.json","../../../node_modules/@types/repl/package.json","../../../node_modules/@types/stream/consumers/package.json","../../../node_modules/@types/stream/package.json","../../../node_modules/@types/stream/promises/package.json","../../../node_modules/@types/stream/web/package.json","../../../node_modules/@types/string_decoder/package.json","../../../node_modules/@types/timers/package.json","../../../node_modules/@types/timers/promises/package.json","../../../node_modules/@types/tls/package.json","../../../node_modules/@types/trace_events/package.json","../../../node_modules/@types/tty/package.json","../../../node_modules/@types/url/package.json","../../../node_modules/@types/util/package.json","../../../node_modules/@types/util/types/package.json","../../../node_modules/@types/v8/package.json","../../../node_modules/@types/vm/package.json","../../../node_modules/@types/wasi/package.json","../../../node_modules/@types/worker_threads/package.json","../../../node_modules/@types/zlib/package.json","../../../node_modules/assert/package.json","../../../node_modules/assert/strict/package.json","../../../node_modules/async_hooks/package.json","../../../node_modules/buffer/package.json","../../../node_modules/child_process/package.json","../../../node_modules/cluster/package.json","../../../node_modules/console/package.json","../../../node_modules/constants/package.json","../../../node_modules/crypto/package.json","../../../node_modules/dgram/package.json","../../../node_modules/diagnostics_channel/package.json","../../../node_modules/dns/package.json","../../../node_modules/dns/promises/package.json","../../../node_modules/domain/package.json","../../../node_modules/events/package.json","../../../node_modules/fs/package.json","../../../node_modules/fs/promises/package.json","../../../node_modules/http/package.json","../../../node_modules/http2/package.json","../../../node_modules/https/package.json","../../../node_modules/inspector/package.json","../../../node_modules/inspector/promises/package.json","../../../node_modules/module/package.json","../../../node_modules/net/package.json","../../../node_modules/os/package.json","../../../node_modules/path/package.json","../../../node_modules/path/posix/package.json","../../../node_modules/path/win32/package.json","../../../node_modules/perf_hooks/package.json","../../../node_modules/process/package.json","../../../node_modules/querystring/package.json","../../../node_modules/readline/package.json","../../../node_modules/readline/promises/package.json","../../../node_modules/repl/package.json","../../../node_modules/stream/consumers/package.json","../../../node_modules/stream/package.json","../../../node_modules/stream/promises/package.json","../../../node_modules/stream/web/package.json","../../../node_modules/string_decoder/package.json","../../../node_modules/timers/package.json","../../../node_modules/timers/promises/package.json","../../../node_modules/tls/package.json","../../../node_modules/trace_events/package.json","../../../node_modules/tty/package.json","../../../node_modules/url/package.json","../../../node_modules/util/package.json","../../../node_modules/util/types/package.json","../../../node_modules/v8/package.json","../../../node_modules/vm/package.json","../../../node_modules/wasi/package.json","../../../node_modules/worker_threads/package.json","../../../node_modules/zlib/package.json"],"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.es2023.d.ts","lib.dom.d.ts","lib.dom.iterable.d.ts","lib.dom.asynciterable.d.ts","lib.webworker.importscripts.d.ts","lib.scripthost.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.es2023.array.d.ts","lib.es2023.collection.d.ts","lib.es2023.intl.d.ts","lib.es2025.float16.d.ts","lib.esnext.disposable.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","lib.es2023.full.d.ts","../../js-utils/dist/objects/checks.d.ts","../../js-utils/dist/objects/plainnesschecks.d.ts","../../js-utils/dist/objects/comparisons.d.ts","../../js-utils/dist/objects/nesting.d.ts","../../js-utils/dist/objects/creation.d.ts","../../js-utils/dist/objects/manipulation.d.ts","../../js-utils/dist/objects/index.d.ts","../../js-utils/dist/numbers/checks.d.ts","../../js-utils/dist/numbers/comparisons.d.ts","../../js-utils/dist/numbers/limiting.d.ts","../../js-utils/dist/numbers/rounding.d.ts","../../js-utils/dist/numbers/angles.d.ts","../../js-utils/dist/numbers/random.d.ts","../../js-utils/dist/numbers/index.d.ts","../../js-utils/dist/arrays/checks.d.ts","../../js-utils/dist/arrays/comparisons.d.ts","../../js-utils/dist/arrays/reading.d.ts","../../js-utils/dist/arrays/iteration.d.ts","../../js-utils/dist/arrays/finding.d.ts","../../js-utils/dist/arrays/creation.d.ts","../../js-utils/dist/arrays/manipulation.d.ts","../../js-utils/dist/arrays/shaping.d.ts","../../js-utils/dist/arrays/sorting.d.ts","../../js-utils/dist/arrays/random.d.ts","../../js-utils/dist/arrays/multidimensional.d.ts","../../js-utils/dist/arrays/index.d.ts","../../js-utils/dist/strings/checks.d.ts","../../js-utils/dist/strings/search.d.ts","../../js-utils/dist/strings/manipulation.d.ts","../../js-utils/dist/strings/creation.d.ts","../../js-utils/dist/strings/index.d.ts","../../js-utils/dist/functions/fundamentals.d.ts","../../js-utils/dist/functions/repeating.d.ts","../../js-utils/dist/functions/resolving.d.ts","../../js-utils/dist/functions/index.d.ts","../../js-utils/dist/sets/checks.d.ts","../../js-utils/dist/sets/manipulation.d.ts","../../js-utils/dist/sets/index.d.ts","../../js-utils/dist/errors/interpretationerror.d.ts","../../js-utils/dist/errors/index.d.ts","../../js-utils/dist/dates/checks.d.ts","../../js-utils/dist/dates/formatting.d.ts","../../js-utils/dist/dates/index.d.ts","../../js-utils/dist/index.d.ts","../../serialization/dist/types.d.ts","../../serialization/dist/serialize.d.ts","../../serialization/dist/deserialize.d.ts","../../serialization/dist/index.d.ts","../../input-interpretation/dist/types.d.ts","../../input-interpretation/dist/support.d.ts","../../input-interpretation/dist/interpret.d.ts","../../input-interpretation/dist/toinputvalue.d.ts","../../input-interpretation/dist/index.d.ts","../../value-equality/dist/types.d.ts","../../value-equality/dist/arevaluesequal.d.ts","../../value-equality/dist/index.d.ts","../src/definitions/types.ts","../src/definitions/guards.ts","../src/definitions/registries.ts","../src/definitions/index.ts","../src/fundamentaltypes/integer/inputvalue.ts","../src/fundamentaltypes/integer/equality.ts","../src/fundamentaltypes/integer/valuetype.ts","../src/fundamentaltypes/integer/index.ts","../src/fundamentaltypes/multiplechoice/inputvalue.ts","../src/fundamentaltypes/multiplechoice/equality.ts","../src/fundamentaltypes/multiplechoice/generation.ts","../src/fundamentaltypes/multiplechoice/valuetype.ts","../src/fundamentaltypes/multiplechoice/index.ts","../src/fundamentaltypes/index.ts","../src/index.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/inspector.generated.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/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.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/test.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/index.d.ts"],"fileInfos":[{"version":"16934abaab7026ac114da441aabea1a0","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f","feb6c6fb19cdb246a5d8acb36a6901c7","9443a7f109277ffaa79d893ed2549995",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},"abad6dd56cc8caf095c165df8124d237","abad6dd56cc8caf095c165df8124d237",{"version":"2a9941db0809c9ad0e8837ed629b1dcc","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d051b93324f36bcc68d152a5ca0988cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"926204c28cd3d073865348473ae28d2e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f25e42c801b2cb3cf2b39792006a9beb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1708ea4d34dc37fadadc63ca01127e80","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2b056277dd138e8f5650fc04e20eaa8d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1da2c1f258970fd3cc91184f69e91a9d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4fc71cf4a15b8d99675a31df77f26e07","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d1b49564ddaeca3df5b6dbae925d2242","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6a25be566d60ccfc2d6e8b7bfdeefa83","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8a20e27646985dfd58c57ca6566553dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9969f02ad3cdcbf4f709405cda44167f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9c9be4792a7a4f42c15ae7360bf28779","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8cf777fe00349b71ee9c4b6f3fe7fd19","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"74f96bc192530c9723f572bfff3d3078","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1df91c56b25955c56387426f378173c5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0219894bfe5042c7e1aa2d22e4a91ed0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"be41035d7b941482a1e1ae6a5c5dcca5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},"e1c7e28ac89b8a663c388c275b41bf44",{"version":"0a5f9ea1a2907d0c3acce959f667e7d6","impliedNodeFormat":99},{"version":"62064d4505a357a7b3bd5fc002f01a6c","impliedNodeFormat":99},{"version":"b261d377ba6cab61b65229f8926d6c96","impliedNodeFormat":99},{"version":"5192a8f4e703e7fde6730938025f5623","impliedNodeFormat":99},{"version":"be9bcaaed12642dcb4f4b544382c0358","impliedNodeFormat":99},{"version":"21ccea272ffdebf648e4836834ea03f0","impliedNodeFormat":99},{"version":"d270959207f8e0d77bc290cb9b9fd246","impliedNodeFormat":99},{"version":"0adefc42b494adacd96ce55e2f64f9da","impliedNodeFormat":99},{"version":"17e818460750c7024b6b3d9ef9d489ca","impliedNodeFormat":99},{"version":"4c488904ad7ff9227d0d8f3704a586f6","impliedNodeFormat":99},{"version":"af0629723a39c856ba0958eb355a5cbe","impliedNodeFormat":99},{"version":"81a34d18a0ae9698642df2775695856d","impliedNodeFormat":99},{"version":"de24a9130664ba61652244cd2a232aed","impliedNodeFormat":99},{"version":"22b5d13c1a4f6516b6d7983939a8afc8","impliedNodeFormat":99},{"version":"72eb493e0bdad7f4ce302f0dbcce2641","impliedNodeFormat":99},{"version":"8ea7ff3dda12c32e077979de0e96715a","impliedNodeFormat":99},{"version":"a72446394410a3b03a7944e1780db6d3","impliedNodeFormat":99},{"version":"ded14b0e81fbadee602d95eba42ff17f","impliedNodeFormat":99},{"version":"ecb00340e935f501e79ab8d899bc370e","impliedNodeFormat":99},{"version":"a087d7ff39aa2c3d8cc870d8f05110e3","impliedNodeFormat":99},{"version":"f1d1cd98c334c216129f02b5f2adf9ee","impliedNodeFormat":99},{"version":"ac9a7aeb0ced50c8f83b661dd3d07a81","impliedNodeFormat":99},{"version":"089d4dd21214ba138c00815377853c5a","impliedNodeFormat":99},{"version":"2e346c22cde3aa31556967609b18c3f1","impliedNodeFormat":99},{"version":"0c0bbfc7dc00995d89bd217b45988ebb","impliedNodeFormat":99},{"version":"3ce013a7452ce40a72df47bd8ec12c0d","impliedNodeFormat":99},{"version":"b96e5eb97d6ed420b3367ca1888799df","impliedNodeFormat":99},{"version":"fa30278ec533c6d335d9aa86c30a8e8c","impliedNodeFormat":99},{"version":"89eac0e3c015c350fe1ebac681a1a743","impliedNodeFormat":99},{"version":"34eeab91b34ead376cdf527ad00a7ca5","impliedNodeFormat":99},{"version":"c3dddbbb572f9063bc1dc3fc4a92eaf2","impliedNodeFormat":99},{"version":"78f92c2ed83abd1fad7a4bd2d60b303e","impliedNodeFormat":99},{"version":"ae7cbf0166aad0aa133e9822dc26111d","impliedNodeFormat":99},{"version":"2458cb653e64298b96bc887a530c517a","impliedNodeFormat":99},{"version":"8cdcb64a3be9d482f7122864d95a9397","impliedNodeFormat":99},{"version":"cca1fe32626ac20ce59f0cb719c8e76a","impliedNodeFormat":99},{"version":"a9132f160817b236f8ed6177f83d83f0","impliedNodeFormat":99},{"version":"c5bcd18cf7ef8e12a0b5622e135b7dd5","impliedNodeFormat":99},{"version":"e2cfa86440881bab6e1c64d446adc5e3","impliedNodeFormat":99},{"version":"1073ad741b156bbaa728b8ccc8445788","impliedNodeFormat":99},{"version":"4c8efa49ef555631b0239d6431361d61","impliedNodeFormat":99},{"version":"ab880af2d4e78f1be40ab8b6672342c4","impliedNodeFormat":99},{"version":"dd03d213f167f308786e240f22f88383","impliedNodeFormat":99},{"version":"7ae7b3c7d629106dbc4d3d9995cd61de","impliedNodeFormat":99},{"version":"c504002db1f6e5d77653c922f1c4d92a","impliedNodeFormat":99},{"version":"b1f0af4d551691b7087223b99e705756","impliedNodeFormat":99},{"version":"4f9bf396dc1afe08381fda01b3017715","impliedNodeFormat":99},{"version":"b887409eaf6de22d6ff97a4b240a17f7","impliedNodeFormat":99},{"version":"7265116b661d2d20721626f5dd84ec7e","impliedNodeFormat":99},{"version":"9e52b7817c1122075bc706f3ba394bc5","impliedNodeFormat":99},{"version":"47cba85178df0231a6183f12d27df804","impliedNodeFormat":99},{"version":"20cf21693fc002ac95d5aa278de12b58","impliedNodeFormat":99},{"version":"a8628dfe9eb5c88dac1bb65291140491","impliedNodeFormat":99},{"version":"59ba3ae51107742d7ac2366c2c9bf201","impliedNodeFormat":99},{"version":"40b88a6ab474a8283b3af2262a5a2e28","impliedNodeFormat":99},{"version":"1ef69e9f17a1c58c67055d9673007372","impliedNodeFormat":99},{"version":"f8d66444306dde9579c244f5439e0939","signature":"61ebbcc9e08b786d6d05203ab5a026fe","impliedNodeFormat":99},{"version":"f30eabfc6657880d4982ddc78170bc45","signature":"1d6483db45859d4e7d93d0e6bd2deeb4","impliedNodeFormat":99},{"version":"f9ff99fbc1497ac9bc524c1dc7478378","signature":"20e74d056d47115a4c9a016cd75d7c00","impliedNodeFormat":99},{"version":"3ec628459dd10ce444fb9f4b100efcd3","signature":"2826eb8e3d490c2cbf0d6a4b4c31d79f","impliedNodeFormat":99},{"version":"9bae59febc150f8fcf59d7072048b4c5","signature":"17591b6aa4c658813da6acfdf99cabca","impliedNodeFormat":99},{"version":"96f4166ed93fcc10437e41a2d4212ee6","signature":"9b8810d83523c2e4ec6faf535164d334","impliedNodeFormat":99},{"version":"f82c1d51b02aef0f1b1e179b59558f36","signature":"896330fe321a40efb4ff7096a81c8b3b","impliedNodeFormat":99},{"version":"503277a04100a39f1f5bd873ad350ba6","signature":"2d396d615dc72ec8559272996b7fe0d8","impliedNodeFormat":99},{"version":"fdb55c319e3eae7291ef60d8ddfc458b","signature":"8bc7554bd3a785b8cb684a769acbc6a1","impliedNodeFormat":99},{"version":"5ba4dae442bfd7093ec42df71620b55a","signature":"d55e6c8119974ca425ce022c4e71f2d1","impliedNodeFormat":99},{"version":"2edc62548a337d16f8db5a1242dc117f","signature":"25e952cf619bd859379d0170798303be","impliedNodeFormat":99},{"version":"0d223ea840d4c18a148f281bb7997a6e","signature":"ac9760d72742f487f5f39c00e8504206","impliedNodeFormat":99},{"version":"83d2cfa4891bcf699e5a3bac62ffe84e","signature":"9c81190b43680a0d8b3027da99564db6","impliedNodeFormat":99},{"version":"f7b871f53c75378590225202da67beb0","signature":"75f08b986f6ea757954de5b2a61eceb3","impliedNodeFormat":99},{"version":"53480997c0ea4b696502bd1f6e1f7f5a","signature":"2ad42c300840b617ba8021b1f1e1aeaa","impliedNodeFormat":99},{"version":"2514e9a2749c0fc18d2f478e9e1e641e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6ae4c332ecb24e76c1e47c0e21d4663d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"69ee0752d1e70c56ca160360425752a9","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"bf33440030f0a0fae7d1efd6c293a8d2","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9af0a7e3ef1c42cd066b9f8d365cc1ba","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7b772cebc7136c34fc77954aef70519d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"9eca652586205dc5b07f9ba57b1c8500","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ec5f75939754ce94652189ec7d0d3058","affectsGlobalScope":true,"impliedNodeFormat":1},"49133c0dfbc32ab95668c3443dea49e5","85c2cf74d24d4069fac4686501a2d7e3","9f970a4ba4bb3ed6326d46b3ddab3f63","f444b82bb192c8ecc7c9a06cba5c1fba","75de66fc4824402123c0d694ccc0a085","db51f206bae5021bd84c7079251e08e9","fcd1a513c1e5802916fa602e8b8e64bc","aedc93367cdc148d7dd56ef6fd5ef308","8e2bc11d0328ba95e490a741c44a215d","d63481078bffe02fbaf6694a35815dc7","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","44d3b7d58481743f4726cf411e667164","679024f8e9f58a112f4badf119c4d612","74d351e4ed233e82c6d74c444c1a6b86","94d8e37d28e92494f484dd9afe8f043c","79db245997e9261ae21e5f3d93e3493b","c3659054228b00c4e2a22d9ebea8b4f0","d7e5f7a0f1f883f28458f684106e7643","c2364011a80b6a9e3cc0e77895bad577","38da5c670190f4a35cbc204ca6c616bf","d95cc0eb29beed58f5ce72db21398f53","ecd53256b1ec7379c73316eaf392a69c","db5a9211b779628398011a5b8f5b8b5d","69c7bb9c3befe9ae37eed0e6a6310fee","1cba93fafccb7b2655f0e75229185e83","094ecadae30f65a82b77343dde77a666","f75df12d75dd783b03a0329b95abdb25","b438b08b2f0ed94a95a75c8990d9021b","f2becd2589591db92ab14e803eb8bdd5","8dec66ce34e6fe771e58a92b7068edc0","30f12c2660896a33bd3c3a126392c80a","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","22111ccb71c0e95ff0796144b40eed2b","add85ec26ba695fc99c698dbec065f8c","5bfde23f96fc502b5413d772c35e1abf","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","acaa6ef6fcd5ba662929d6036121a616",{"version":"dd1cf1cc3aa21cd78b4869a44d98c6d9","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"292c9398a407b33b1d9c9812b673387a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"45df94b3c51b898624bacc2bcd6d9eb2","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7d352f71d1b1bcc12c79dd0e4597537c","affectsGlobalScope":true,"impliedNodeFormat":1},"db11b80743ed5356b81d763a708788e6","39078ea063fcaf72bd3cca7e0d13d017","f81aa09811fa65ac6f354ab0018d3c38",{"version":"282318b178d190157a4deacb14f3040a","affectsGlobalScope":true,"impliedNodeFormat":1},"aafe512c4216100fd65028f9b2afce83","54c5c3dcfdb5f7cf5fbbccfff6ead3fa",{"version":"dc14f078230582a2f8fb2138bfcf4f85","affectsGlobalScope":true,"impliedNodeFormat":1},"b2b472cd0bf0f8d5f022e00ca1c401f4","370d966b810b687a9e58851208cb3d4c","39b3089f3df8d14e0f2ddac0479872d9","cc7a57e86f908c313649aea8d90377e1","5c271f10d8a9b9a1206bc82a4fe5b84d","fbe31979333ec391d8b59e8f42236e8e","6751c8c175fac6bbe7b935582cdfdca7",{"version":"a3f111d2a29b6cdd04fc4b41aa560c86","affectsGlobalScope":true,"impliedNodeFormat":1},"5f4ac576bcdc670a8489c881b23a2b17","a500e7362abeae2d2f1fefea525dc869","02a1ccf1ef65bfbf65865ac4ce346974","d589d01c82f6793f20d2f5c838462e3d","dbe700f7f1fa52fd220c7ee2c6617ebc","579675a2c3b0f8c532a82ad9cbd5d384","b2e8f93606aeb2dee2a4cc9272c56973",{"version":"a8e5d3e42303570b1114b6cd9ef9f38a","affectsGlobalScope":true,"impliedNodeFormat":1},"0003c8459d069181cc4856724fcf2832","c9053dbbe4fa2853f2d3f73b9a2fee81","4e458316a6083cbd2bba2fd29f674dd5",{"version":"3cccee1f2c106192d18ac4e08119f872","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"057189402e597cd50262b082723f21ff","affectsGlobalScope":true,"impliedNodeFormat":1},"6b26581aa2587701d570206a0db8c9ee","88a29e2aac8082c0910733950159e1ca","10282f14d9c2a5cbf3bcf2b1c8cebeaf","0f80958d77cd6301b43c1d7904e3e4bc","3bdc645524ab0d2f6795d3a008833bd7","deb50b47eb75a5566532a763fa1324fa","6e61cd09c2e15845909de3ed59a00b37","3e4ffe5f2733e0589b2612bd86f6cec3","c8206d568b54e5ea06131963eecd576a","15878f4f50c2e562c0768eb735c2aed5",{"version":"cb8f7733bee3d973c152a75fad9f6da6","affectsGlobalScope":true,"impliedNodeFormat":1},"dd404118e8bd70aff746f7d31e46270b","a0fa4618173795c74b488178ea77f951",{"version":"6b8649a280031d9e86955db721cfad87","affectsGlobalScope":true,"impliedNodeFormat":1},"4bc8f13c472858fb74f77388c0c5d885","75ab229142dad0ca2ff14d02d52f11f9","c72d2516d1e8910caca33c4dff75fcd4","f0231f36cb7117fbe9271ff19ef0f5f4",{"version":"8a642eed2a45ac7028479b6089a04842","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1e6ddb6b86dc5d86e75ba797d5324346","affectsGlobalScope":true,"impliedNodeFormat":1},"701aef085585b152042aa216b06bb4b8","e9bc5b1de50e48fa9857b64091673883","9268959cff1006c82e6abbd73824db97",{"version":"8f1c048bd5761910f5ea340fe4d792cd","affectsGlobalScope":true,"impliedNodeFormat":1},"6b1f3649b0eabeaca20c778fcc5f270c","eb567c7b5824aab578f75bbccf9f4b05"],"fileIdsList":[[143,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,190,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[141,142,143,144,145,146,147,148,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247],[143,190,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,190,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246],[143,155,158,161,162,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,162,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,152,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,156,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,154,155,158,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[143,152,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[143,154,158,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,149,150,151,153,157,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,167,175,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,150,156,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,184,185,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,150,153,158,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[143,149,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,152,153,154,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,177,180,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,167,168,169,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,156,158,168,170,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,157,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,150,152,158,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,162,168,170,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,162,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,156,158,161,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,150,154,158,167,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,158,177,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,170,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[143,152,158,184,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[118,119,120,121,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[118,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,118,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[83,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[84,85,86,87,88,89,90,91,92,93,94,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[76,86,88,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[88,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[110,111,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[108,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[101,102,103,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[95,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[76,83,95,100,104,107,109,112,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[77,78,79,80,81,82,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[70,71,72,73,74,75,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[105,106,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[96,97,98,99,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[114,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[114,115,116,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[123,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[123,124,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,117,122,125,126,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[126,127,128,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,126,127,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[117,122,125,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[129,133,138,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,125,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[130,131,132,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,122,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[129,130,131,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[113,125,134,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[134,135,136,137,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[129,134,135,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247],[129,139,143,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"outDir":"./","rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"target":10,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","esModuleInterop":true},"referencedMap":[[195,1],[196,2],[197,3],[143,4],[198,5],[199,6],[200,7],[141,8],[201,9],[202,10],[203,11],[204,12],[205,13],[206,14],[207,15],[208,16],[209,17],[210,18],[211,19],[144,8],[142,8],[212,20],[213,21],[214,22],[248,23],[215,24],[216,25],[217,26],[218,27],[219,28],[220,29],[221,30],[222,31],[223,32],[224,33],[225,34],[226,35],[227,36],[228,37],[229,38],[230,39],[232,40],[231,41],[233,42],[234,43],[235,44],[236,45],[237,46],[238,47],[239,48],[240,49],[241,50],[242,51],[243,52],[244,53],[245,54],[145,8],[146,8],[147,8],[148,8],[191,55],[192,8],[193,8],[194,8],[246,56],[247,57],[67,8],[68,8],[13,8],[11,8],[12,8],[17,8],[16,8],[2,8],[18,8],[19,8],[20,8],[21,8],[22,8],[23,8],[24,8],[25,8],[3,8],[26,8],[27,8],[4,8],[28,8],[32,8],[29,8],[30,8],[31,8],[33,8],[34,8],[35,8],[5,8],[36,8],[37,8],[38,8],[39,8],[6,8],[43,8],[40,8],[41,8],[42,8],[44,8],[7,8],[45,8],[50,8],[51,8],[46,8],[47,8],[48,8],[49,8],[8,8],[55,8],[52,8],[53,8],[54,8],[56,8],[9,8],[57,8],[58,8],[59,8],[61,8],[60,8],[62,8],[63,8],[10,8],[69,8],[64,8],[65,8],[1,8],[66,8],[15,8],[14,8],[167,58],[179,59],[164,60],[180,8],[189,61],[155,62],[156,63],[154,8],[188,64],[183,65],[187,66],[158,67],[176,68],[157,69],[186,70],[152,71],[153,65],[159,59],[160,8],[166,66],[163,59],[150,72],[190,73],[181,74],[170,75],[169,59],[171,76],[174,77],[168,78],[172,79],[184,64],[161,80],[162,81],[175,82],[151,8],[178,83],[177,59],[165,81],[173,84],[182,8],[149,8],[185,85],[122,86],[120,87],[119,88],[121,87],[118,89],[84,90],[85,8],[89,8],[88,8],[95,91],[87,8],[90,8],[94,92],[93,8],[86,8],[91,93],[92,8],[110,8],[111,8],[112,94],[109,95],[108,8],[101,8],[104,96],[102,97],[103,8],[113,98],[81,8],[77,8],[78,8],[83,99],[79,8],[82,8],[80,8],[70,8],[72,8],[74,8],[76,100],[75,8],[73,8],[71,8],[105,8],[107,101],[106,8],[96,8],[99,8],[100,102],[98,8],[97,8],[116,103],[117,104],[115,103],[114,89],[124,105],[125,106],[123,8],[127,107],[129,108],[128,109],[126,110],[139,111],[131,112],[133,113],[130,114],[132,115],[135,116],[136,89],[138,117],[134,114],[137,118],[140,119]],"latestChangedDtsFile":"./index.d.ts"}
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@step-wise/value-types",
3
+ "version": "0.1.0",
4
+ "description": "Combine adapters for domain-value interpretation, serialization, and equality checks.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/HildoBijl/stepwise.git",
9
+ "directory": "packages/value-types"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/HildoBijl/stepwise/issues"
13
+ },
14
+ "homepage": "https://github.com/HildoBijl/stepwise/tree/main/packages/value-types#readme",
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "engines": {
19
+ "node": ">=24.12.0"
20
+ },
21
+ "type": "module",
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "scripts": {
36
+ "build": "tsc -b tsconfig.build.json",
37
+ "watch": "tsc -b tsconfig.build.json --watch",
38
+ "test": "vitest run",
39
+ "test:watch": "vitest"
40
+ },
41
+ "dependencies": {
42
+ "@step-wise/input-interpretation": "^0.1.0",
43
+ "@step-wise/serialization": "^0.1.0",
44
+ "@step-wise/value-equality": "^0.1.0",
45
+ "@step-wise/js-utils": "^0.1.0"
46
+ },
47
+ "devDependencies": {
48
+ "vitest": "^5.0.0"
49
+ }
50
+ }