@elaraai/east-py-datascience 0.0.2-beta.19 → 0.0.2-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/torch/torch.d.ts +440 -18
- package/dist/torch/torch.d.ts.map +1 -1
- package/dist/torch/torch.js +73 -3
- package/dist/torch/torch.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/torch/torch.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* @packageDocumentation
|
|
12
12
|
*/
|
|
13
|
-
import { StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, ArrayType, NullType } from "@elaraai/east";
|
|
13
|
+
import { StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, ArrayType, NullType, BooleanType } from "@elaraai/east";
|
|
14
14
|
export { VectorType, MatrixType } from "../types.js";
|
|
15
15
|
/**
|
|
16
16
|
* Activation function type for hidden layers.
|
|
@@ -33,10 +33,14 @@ export declare const TorchLossType: VariantType<{
|
|
|
33
33
|
mse: NullType;
|
|
34
34
|
/** Mean Absolute Error (regression) */
|
|
35
35
|
mae: NullType;
|
|
36
|
-
/** Cross Entropy (classification) */
|
|
36
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
37
37
|
cross_entropy: NullType;
|
|
38
38
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
39
39
|
kl_div: NullType;
|
|
40
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
41
|
+
bce: NullType;
|
|
42
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
43
|
+
bce_with_logits: NullType;
|
|
40
44
|
}>;
|
|
41
45
|
/**
|
|
42
46
|
* Optimizer type for training.
|
|
@@ -63,6 +67,77 @@ export declare const TorchOutputActivationType: VariantType<{
|
|
|
63
67
|
/** Sigmoid (each output independently in [0,1]) */
|
|
64
68
|
sigmoid: NullType;
|
|
65
69
|
}>;
|
|
70
|
+
/**
|
|
71
|
+
* Per-row output constraint for structured/constrained outputs.
|
|
72
|
+
*
|
|
73
|
+
* Each row of the output matrix can have its own constraint type,
|
|
74
|
+
* enabling architecturally-enforced constraints like mutual exclusivity
|
|
75
|
+
* or position masking.
|
|
76
|
+
*
|
|
77
|
+
* @example
|
|
78
|
+
* ```ts
|
|
79
|
+
* // Binary output with some positions masked (impossible)
|
|
80
|
+
* variant("binary", { mask: variant("some", [true, true, false, true]) })
|
|
81
|
+
*
|
|
82
|
+
* // Mutually exclusive - exactly one position active (softmax)
|
|
83
|
+
* variant("mutex", { mask: variant("none", null), allow_none: variant("some", true) })
|
|
84
|
+
*
|
|
85
|
+
* // At most 2 positions active
|
|
86
|
+
* variant("at_most", { max_count: 2n, mask: variant("none", null) })
|
|
87
|
+
* ```
|
|
88
|
+
*/
|
|
89
|
+
export declare const RowConstraintType: VariantType<{
|
|
90
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
91
|
+
binary: StructType<{
|
|
92
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
93
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
94
|
+
}>;
|
|
95
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
96
|
+
mutex: StructType<{
|
|
97
|
+
/** Which positions are valid. None = all valid */
|
|
98
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
99
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
100
|
+
allow_none: OptionType<BooleanType>;
|
|
101
|
+
}>;
|
|
102
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
103
|
+
at_most: StructType<{
|
|
104
|
+
/** Maximum number of active positions */
|
|
105
|
+
max_count: IntegerType;
|
|
106
|
+
/** Which positions are valid. None = all valid */
|
|
107
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
108
|
+
}>;
|
|
109
|
+
}>;
|
|
110
|
+
/**
|
|
111
|
+
* Configuration for constrained multi-output.
|
|
112
|
+
*
|
|
113
|
+
* Specifies per-row constraints that are architecturally enforced
|
|
114
|
+
* (not just penalized in the loss). This guarantees constraint
|
|
115
|
+
* satisfaction at inference time.
|
|
116
|
+
*/
|
|
117
|
+
export declare const ConstrainedOutputConfigType: StructType<{
|
|
118
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
119
|
+
row_constraints: ArrayType<VariantType<{
|
|
120
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
121
|
+
binary: StructType<{
|
|
122
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
123
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
124
|
+
}>;
|
|
125
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
126
|
+
mutex: StructType<{
|
|
127
|
+
/** Which positions are valid. None = all valid */
|
|
128
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
129
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
130
|
+
allow_none: OptionType<BooleanType>;
|
|
131
|
+
}>;
|
|
132
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
133
|
+
at_most: StructType<{
|
|
134
|
+
/** Maximum number of active positions */
|
|
135
|
+
max_count: IntegerType;
|
|
136
|
+
/** Which positions are valid. None = all valid */
|
|
137
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
138
|
+
}>;
|
|
139
|
+
}>>;
|
|
140
|
+
}>;
|
|
66
141
|
/**
|
|
67
142
|
* Configuration for MLP architecture.
|
|
68
143
|
*/
|
|
@@ -80,7 +155,7 @@ export declare const TorchMLPConfigType: StructType<{
|
|
|
80
155
|
/** Leaky ReLU */
|
|
81
156
|
leaky_relu: NullType;
|
|
82
157
|
}>>;
|
|
83
|
-
/** Output activation function (default none/linear) */
|
|
158
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
84
159
|
output_activation: OptionType<VariantType<{
|
|
85
160
|
/** No activation (linear output) - default */
|
|
86
161
|
none: NullType;
|
|
@@ -93,6 +168,35 @@ export declare const TorchMLPConfigType: StructType<{
|
|
|
93
168
|
dropout: OptionType<FloatType>;
|
|
94
169
|
/** Output dimension (default 1) */
|
|
95
170
|
output_dim: OptionType<IntegerType>;
|
|
171
|
+
/**
|
|
172
|
+
* Per-row output constraints for structured outputs.
|
|
173
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
174
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
175
|
+
*/
|
|
176
|
+
output_constraints: OptionType<StructType<{
|
|
177
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
178
|
+
row_constraints: ArrayType<VariantType<{
|
|
179
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
180
|
+
binary: StructType<{
|
|
181
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
182
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
183
|
+
}>;
|
|
184
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
185
|
+
mutex: StructType<{
|
|
186
|
+
/** Which positions are valid. None = all valid */
|
|
187
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
188
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
189
|
+
allow_none: OptionType<BooleanType>;
|
|
190
|
+
}>;
|
|
191
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
192
|
+
at_most: StructType<{
|
|
193
|
+
/** Maximum number of active positions */
|
|
194
|
+
max_count: IntegerType;
|
|
195
|
+
/** Which positions are valid. None = all valid */
|
|
196
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
197
|
+
}>;
|
|
198
|
+
}>>;
|
|
199
|
+
}>>;
|
|
96
200
|
}>;
|
|
97
201
|
/**
|
|
98
202
|
* Configuration for training.
|
|
@@ -110,10 +214,14 @@ export declare const TorchTrainConfigType: StructType<{
|
|
|
110
214
|
mse: NullType;
|
|
111
215
|
/** Mean Absolute Error (regression) */
|
|
112
216
|
mae: NullType;
|
|
113
|
-
/** Cross Entropy (classification) */
|
|
217
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
114
218
|
cross_entropy: NullType;
|
|
115
219
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
116
220
|
kl_div: NullType;
|
|
221
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
222
|
+
bce: NullType;
|
|
223
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
224
|
+
bce_with_logits: NullType;
|
|
117
225
|
}>>;
|
|
118
226
|
/** Optimizer (default adam) */
|
|
119
227
|
optimizer: OptionType<VariantType<{
|
|
@@ -132,6 +240,8 @@ export declare const TorchTrainConfigType: StructType<{
|
|
|
132
240
|
validation_split: OptionType<FloatType>;
|
|
133
241
|
/** Random seed for reproducibility */
|
|
134
242
|
random_state: OptionType<IntegerType>;
|
|
243
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
244
|
+
pos_weight: OptionType<FloatType>;
|
|
135
245
|
}>;
|
|
136
246
|
/**
|
|
137
247
|
* Result type for training.
|
|
@@ -206,7 +316,7 @@ export declare const torch_mlp_train: import("@elaraai/east").PlatformDefinition
|
|
|
206
316
|
/** Leaky ReLU */
|
|
207
317
|
leaky_relu: NullType;
|
|
208
318
|
}>>;
|
|
209
|
-
/** Output activation function (default none/linear) */
|
|
319
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
210
320
|
output_activation: OptionType<VariantType<{
|
|
211
321
|
/** No activation (linear output) - default */
|
|
212
322
|
none: NullType;
|
|
@@ -219,6 +329,35 @@ export declare const torch_mlp_train: import("@elaraai/east").PlatformDefinition
|
|
|
219
329
|
dropout: OptionType<FloatType>;
|
|
220
330
|
/** Output dimension (default 1) */
|
|
221
331
|
output_dim: OptionType<IntegerType>;
|
|
332
|
+
/**
|
|
333
|
+
* Per-row output constraints for structured outputs.
|
|
334
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
335
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
336
|
+
*/
|
|
337
|
+
output_constraints: OptionType<StructType<{
|
|
338
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
339
|
+
row_constraints: ArrayType<VariantType<{
|
|
340
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
341
|
+
binary: StructType<{
|
|
342
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
343
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
344
|
+
}>;
|
|
345
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
346
|
+
mutex: StructType<{
|
|
347
|
+
/** Which positions are valid. None = all valid */
|
|
348
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
349
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
350
|
+
allow_none: OptionType<BooleanType>;
|
|
351
|
+
}>;
|
|
352
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
353
|
+
at_most: StructType<{
|
|
354
|
+
/** Maximum number of active positions */
|
|
355
|
+
max_count: IntegerType;
|
|
356
|
+
/** Which positions are valid. None = all valid */
|
|
357
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
358
|
+
}>;
|
|
359
|
+
}>>;
|
|
360
|
+
}>>;
|
|
222
361
|
}>, StructType<{
|
|
223
362
|
/** Number of epochs (default 100) */
|
|
224
363
|
epochs: OptionType<IntegerType>;
|
|
@@ -232,10 +371,14 @@ export declare const torch_mlp_train: import("@elaraai/east").PlatformDefinition
|
|
|
232
371
|
mse: NullType;
|
|
233
372
|
/** Mean Absolute Error (regression) */
|
|
234
373
|
mae: NullType;
|
|
235
|
-
/** Cross Entropy (classification) */
|
|
374
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
236
375
|
cross_entropy: NullType;
|
|
237
376
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
238
377
|
kl_div: NullType;
|
|
378
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
379
|
+
bce: NullType;
|
|
380
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
381
|
+
bce_with_logits: NullType;
|
|
239
382
|
}>>;
|
|
240
383
|
/** Optimizer (default adam) */
|
|
241
384
|
optimizer: OptionType<VariantType<{
|
|
@@ -254,6 +397,8 @@ export declare const torch_mlp_train: import("@elaraai/east").PlatformDefinition
|
|
|
254
397
|
validation_split: OptionType<FloatType>;
|
|
255
398
|
/** Random seed for reproducibility */
|
|
256
399
|
random_state: OptionType<IntegerType>;
|
|
400
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
401
|
+
pos_weight: OptionType<FloatType>;
|
|
257
402
|
}>], StructType<{
|
|
258
403
|
/** Trained model blob */
|
|
259
404
|
model: VariantType<{
|
|
@@ -321,7 +466,7 @@ export declare const torch_mlp_train_multi: import("@elaraai/east").PlatformDefi
|
|
|
321
466
|
/** Leaky ReLU */
|
|
322
467
|
leaky_relu: NullType;
|
|
323
468
|
}>>;
|
|
324
|
-
/** Output activation function (default none/linear) */
|
|
469
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
325
470
|
output_activation: OptionType<VariantType<{
|
|
326
471
|
/** No activation (linear output) - default */
|
|
327
472
|
none: NullType;
|
|
@@ -334,6 +479,35 @@ export declare const torch_mlp_train_multi: import("@elaraai/east").PlatformDefi
|
|
|
334
479
|
dropout: OptionType<FloatType>;
|
|
335
480
|
/** Output dimension (default 1) */
|
|
336
481
|
output_dim: OptionType<IntegerType>;
|
|
482
|
+
/**
|
|
483
|
+
* Per-row output constraints for structured outputs.
|
|
484
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
485
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
486
|
+
*/
|
|
487
|
+
output_constraints: OptionType<StructType<{
|
|
488
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
489
|
+
row_constraints: ArrayType<VariantType<{
|
|
490
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
491
|
+
binary: StructType<{
|
|
492
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
493
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
494
|
+
}>;
|
|
495
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
496
|
+
mutex: StructType<{
|
|
497
|
+
/** Which positions are valid. None = all valid */
|
|
498
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
499
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
500
|
+
allow_none: OptionType<BooleanType>;
|
|
501
|
+
}>;
|
|
502
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
503
|
+
at_most: StructType<{
|
|
504
|
+
/** Maximum number of active positions */
|
|
505
|
+
max_count: IntegerType;
|
|
506
|
+
/** Which positions are valid. None = all valid */
|
|
507
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
508
|
+
}>;
|
|
509
|
+
}>>;
|
|
510
|
+
}>>;
|
|
337
511
|
}>, StructType<{
|
|
338
512
|
/** Number of epochs (default 100) */
|
|
339
513
|
epochs: OptionType<IntegerType>;
|
|
@@ -347,10 +521,14 @@ export declare const torch_mlp_train_multi: import("@elaraai/east").PlatformDefi
|
|
|
347
521
|
mse: NullType;
|
|
348
522
|
/** Mean Absolute Error (regression) */
|
|
349
523
|
mae: NullType;
|
|
350
|
-
/** Cross Entropy (classification) */
|
|
524
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
351
525
|
cross_entropy: NullType;
|
|
352
526
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
353
527
|
kl_div: NullType;
|
|
528
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
529
|
+
bce: NullType;
|
|
530
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
531
|
+
bce_with_logits: NullType;
|
|
354
532
|
}>>;
|
|
355
533
|
/** Optimizer (default adam) */
|
|
356
534
|
optimizer: OptionType<VariantType<{
|
|
@@ -369,6 +547,8 @@ export declare const torch_mlp_train_multi: import("@elaraai/east").PlatformDefi
|
|
|
369
547
|
validation_split: OptionType<FloatType>;
|
|
370
548
|
/** Random seed for reproducibility */
|
|
371
549
|
random_state: OptionType<IntegerType>;
|
|
550
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
551
|
+
pos_weight: OptionType<FloatType>;
|
|
372
552
|
}>], StructType<{
|
|
373
553
|
/** Trained model blob */
|
|
374
554
|
model: VariantType<{
|
|
@@ -535,10 +715,14 @@ export declare const TorchTypes: {
|
|
|
535
715
|
mse: NullType;
|
|
536
716
|
/** Mean Absolute Error (regression) */
|
|
537
717
|
mae: NullType;
|
|
538
|
-
/** Cross Entropy (classification) */
|
|
718
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
539
719
|
cross_entropy: NullType;
|
|
540
720
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
541
721
|
kl_div: NullType;
|
|
722
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
723
|
+
bce: NullType;
|
|
724
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
725
|
+
bce_with_logits: NullType;
|
|
542
726
|
}>;
|
|
543
727
|
/** Optimizer type */
|
|
544
728
|
readonly TorchOptimizerType: VariantType<{
|
|
@@ -551,6 +735,53 @@ export declare const TorchTypes: {
|
|
|
551
735
|
/** RMSprop optimizer */
|
|
552
736
|
rmsprop: NullType;
|
|
553
737
|
}>;
|
|
738
|
+
/** Per-row output constraint type */
|
|
739
|
+
readonly RowConstraintType: VariantType<{
|
|
740
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
741
|
+
binary: StructType<{
|
|
742
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
743
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
744
|
+
}>;
|
|
745
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
746
|
+
mutex: StructType<{
|
|
747
|
+
/** Which positions are valid. None = all valid */
|
|
748
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
749
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
750
|
+
allow_none: OptionType<BooleanType>;
|
|
751
|
+
}>;
|
|
752
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
753
|
+
at_most: StructType<{
|
|
754
|
+
/** Maximum number of active positions */
|
|
755
|
+
max_count: IntegerType;
|
|
756
|
+
/** Which positions are valid. None = all valid */
|
|
757
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
758
|
+
}>;
|
|
759
|
+
}>;
|
|
760
|
+
/** Constrained output configuration type */
|
|
761
|
+
readonly ConstrainedOutputConfigType: StructType<{
|
|
762
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
763
|
+
row_constraints: ArrayType<VariantType<{
|
|
764
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
765
|
+
binary: StructType<{
|
|
766
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
767
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
768
|
+
}>;
|
|
769
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
770
|
+
mutex: StructType<{
|
|
771
|
+
/** Which positions are valid. None = all valid */
|
|
772
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
773
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
774
|
+
allow_none: OptionType<BooleanType>;
|
|
775
|
+
}>;
|
|
776
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
777
|
+
at_most: StructType<{
|
|
778
|
+
/** Maximum number of active positions */
|
|
779
|
+
max_count: IntegerType;
|
|
780
|
+
/** Which positions are valid. None = all valid */
|
|
781
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
782
|
+
}>;
|
|
783
|
+
}>>;
|
|
784
|
+
}>;
|
|
554
785
|
/** MLP configuration type */
|
|
555
786
|
readonly TorchMLPConfigType: StructType<{
|
|
556
787
|
/** Hidden layer sizes, e.g., [64, 32] */
|
|
@@ -566,7 +797,7 @@ export declare const TorchTypes: {
|
|
|
566
797
|
/** Leaky ReLU */
|
|
567
798
|
leaky_relu: NullType;
|
|
568
799
|
}>>;
|
|
569
|
-
/** Output activation function (default none/linear) */
|
|
800
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
570
801
|
output_activation: OptionType<VariantType<{
|
|
571
802
|
/** No activation (linear output) - default */
|
|
572
803
|
none: NullType;
|
|
@@ -579,6 +810,35 @@ export declare const TorchTypes: {
|
|
|
579
810
|
dropout: OptionType<FloatType>;
|
|
580
811
|
/** Output dimension (default 1) */
|
|
581
812
|
output_dim: OptionType<IntegerType>;
|
|
813
|
+
/**
|
|
814
|
+
* Per-row output constraints for structured outputs.
|
|
815
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
816
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
817
|
+
*/
|
|
818
|
+
output_constraints: OptionType<StructType<{
|
|
819
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
820
|
+
row_constraints: ArrayType<VariantType<{
|
|
821
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
822
|
+
binary: StructType<{
|
|
823
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
824
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
825
|
+
}>;
|
|
826
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
827
|
+
mutex: StructType<{
|
|
828
|
+
/** Which positions are valid. None = all valid */
|
|
829
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
830
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
831
|
+
allow_none: OptionType<BooleanType>;
|
|
832
|
+
}>;
|
|
833
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
834
|
+
at_most: StructType<{
|
|
835
|
+
/** Maximum number of active positions */
|
|
836
|
+
max_count: IntegerType;
|
|
837
|
+
/** Which positions are valid. None = all valid */
|
|
838
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
839
|
+
}>;
|
|
840
|
+
}>>;
|
|
841
|
+
}>>;
|
|
582
842
|
}>;
|
|
583
843
|
/** Training configuration type */
|
|
584
844
|
readonly TorchTrainConfigType: StructType<{
|
|
@@ -594,10 +854,14 @@ export declare const TorchTypes: {
|
|
|
594
854
|
mse: NullType;
|
|
595
855
|
/** Mean Absolute Error (regression) */
|
|
596
856
|
mae: NullType;
|
|
597
|
-
/** Cross Entropy (classification) */
|
|
857
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
598
858
|
cross_entropy: NullType;
|
|
599
859
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
600
860
|
kl_div: NullType;
|
|
861
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
862
|
+
bce: NullType;
|
|
863
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
864
|
+
bce_with_logits: NullType;
|
|
601
865
|
}>>;
|
|
602
866
|
/** Optimizer (default adam) */
|
|
603
867
|
optimizer: OptionType<VariantType<{
|
|
@@ -616,6 +880,8 @@ export declare const TorchTypes: {
|
|
|
616
880
|
validation_split: OptionType<FloatType>;
|
|
617
881
|
/** Random seed for reproducibility */
|
|
618
882
|
random_state: OptionType<IntegerType>;
|
|
883
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
884
|
+
pos_weight: OptionType<FloatType>;
|
|
619
885
|
}>;
|
|
620
886
|
/** Training result type */
|
|
621
887
|
readonly TorchTrainResultType: StructType<{
|
|
@@ -711,7 +977,7 @@ export declare const Torch: {
|
|
|
711
977
|
/** Leaky ReLU */
|
|
712
978
|
leaky_relu: NullType;
|
|
713
979
|
}>>;
|
|
714
|
-
/** Output activation function (default none/linear) */
|
|
980
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
715
981
|
output_activation: OptionType<VariantType<{
|
|
716
982
|
/** No activation (linear output) - default */
|
|
717
983
|
none: NullType;
|
|
@@ -724,6 +990,35 @@ export declare const Torch: {
|
|
|
724
990
|
dropout: OptionType<FloatType>;
|
|
725
991
|
/** Output dimension (default 1) */
|
|
726
992
|
output_dim: OptionType<IntegerType>;
|
|
993
|
+
/**
|
|
994
|
+
* Per-row output constraints for structured outputs.
|
|
995
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
996
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
997
|
+
*/
|
|
998
|
+
output_constraints: OptionType<StructType<{
|
|
999
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
1000
|
+
row_constraints: ArrayType<VariantType<{
|
|
1001
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
1002
|
+
binary: StructType<{
|
|
1003
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
1004
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1005
|
+
}>;
|
|
1006
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
1007
|
+
mutex: StructType<{
|
|
1008
|
+
/** Which positions are valid. None = all valid */
|
|
1009
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1010
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
1011
|
+
allow_none: OptionType<BooleanType>;
|
|
1012
|
+
}>;
|
|
1013
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
1014
|
+
at_most: StructType<{
|
|
1015
|
+
/** Maximum number of active positions */
|
|
1016
|
+
max_count: IntegerType;
|
|
1017
|
+
/** Which positions are valid. None = all valid */
|
|
1018
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1019
|
+
}>;
|
|
1020
|
+
}>>;
|
|
1021
|
+
}>>;
|
|
727
1022
|
}>, StructType<{
|
|
728
1023
|
/** Number of epochs (default 100) */
|
|
729
1024
|
epochs: OptionType<IntegerType>;
|
|
@@ -737,10 +1032,14 @@ export declare const Torch: {
|
|
|
737
1032
|
mse: NullType;
|
|
738
1033
|
/** Mean Absolute Error (regression) */
|
|
739
1034
|
mae: NullType;
|
|
740
|
-
/** Cross Entropy (classification) */
|
|
1035
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
741
1036
|
cross_entropy: NullType;
|
|
742
1037
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
743
1038
|
kl_div: NullType;
|
|
1039
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
1040
|
+
bce: NullType;
|
|
1041
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
1042
|
+
bce_with_logits: NullType;
|
|
744
1043
|
}>>;
|
|
745
1044
|
/** Optimizer (default adam) */
|
|
746
1045
|
optimizer: OptionType<VariantType<{
|
|
@@ -759,6 +1058,8 @@ export declare const Torch: {
|
|
|
759
1058
|
validation_split: OptionType<FloatType>;
|
|
760
1059
|
/** Random seed for reproducibility */
|
|
761
1060
|
random_state: OptionType<IntegerType>;
|
|
1061
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
1062
|
+
pos_weight: OptionType<FloatType>;
|
|
762
1063
|
}>], StructType<{
|
|
763
1064
|
/** Trained model blob */
|
|
764
1065
|
model: VariantType<{
|
|
@@ -808,7 +1109,7 @@ export declare const Torch: {
|
|
|
808
1109
|
/** Leaky ReLU */
|
|
809
1110
|
leaky_relu: NullType;
|
|
810
1111
|
}>>;
|
|
811
|
-
/** Output activation function (default none/linear) */
|
|
1112
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
812
1113
|
output_activation: OptionType<VariantType<{
|
|
813
1114
|
/** No activation (linear output) - default */
|
|
814
1115
|
none: NullType;
|
|
@@ -821,6 +1122,35 @@ export declare const Torch: {
|
|
|
821
1122
|
dropout: OptionType<FloatType>;
|
|
822
1123
|
/** Output dimension (default 1) */
|
|
823
1124
|
output_dim: OptionType<IntegerType>;
|
|
1125
|
+
/**
|
|
1126
|
+
* Per-row output constraints for structured outputs.
|
|
1127
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
1128
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
1129
|
+
*/
|
|
1130
|
+
output_constraints: OptionType<StructType<{
|
|
1131
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
1132
|
+
row_constraints: ArrayType<VariantType<{
|
|
1133
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
1134
|
+
binary: StructType<{
|
|
1135
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
1136
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1137
|
+
}>;
|
|
1138
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
1139
|
+
mutex: StructType<{
|
|
1140
|
+
/** Which positions are valid. None = all valid */
|
|
1141
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1142
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
1143
|
+
allow_none: OptionType<BooleanType>;
|
|
1144
|
+
}>;
|
|
1145
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
1146
|
+
at_most: StructType<{
|
|
1147
|
+
/** Maximum number of active positions */
|
|
1148
|
+
max_count: IntegerType;
|
|
1149
|
+
/** Which positions are valid. None = all valid */
|
|
1150
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1151
|
+
}>;
|
|
1152
|
+
}>>;
|
|
1153
|
+
}>>;
|
|
824
1154
|
}>, StructType<{
|
|
825
1155
|
/** Number of epochs (default 100) */
|
|
826
1156
|
epochs: OptionType<IntegerType>;
|
|
@@ -834,10 +1164,14 @@ export declare const Torch: {
|
|
|
834
1164
|
mse: NullType;
|
|
835
1165
|
/** Mean Absolute Error (regression) */
|
|
836
1166
|
mae: NullType;
|
|
837
|
-
/** Cross Entropy (classification) */
|
|
1167
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
838
1168
|
cross_entropy: NullType;
|
|
839
1169
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
840
1170
|
kl_div: NullType;
|
|
1171
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
1172
|
+
bce: NullType;
|
|
1173
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
1174
|
+
bce_with_logits: NullType;
|
|
841
1175
|
}>>;
|
|
842
1176
|
/** Optimizer (default adam) */
|
|
843
1177
|
optimizer: OptionType<VariantType<{
|
|
@@ -856,6 +1190,8 @@ export declare const Torch: {
|
|
|
856
1190
|
validation_split: OptionType<FloatType>;
|
|
857
1191
|
/** Random seed for reproducibility */
|
|
858
1192
|
random_state: OptionType<IntegerType>;
|
|
1193
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
1194
|
+
pos_weight: OptionType<FloatType>;
|
|
859
1195
|
}>], StructType<{
|
|
860
1196
|
/** Trained model blob */
|
|
861
1197
|
model: VariantType<{
|
|
@@ -950,10 +1286,14 @@ export declare const Torch: {
|
|
|
950
1286
|
mse: NullType;
|
|
951
1287
|
/** Mean Absolute Error (regression) */
|
|
952
1288
|
mae: NullType;
|
|
953
|
-
/** Cross Entropy (classification) */
|
|
1289
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
954
1290
|
cross_entropy: NullType;
|
|
955
1291
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
956
1292
|
kl_div: NullType;
|
|
1293
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
1294
|
+
bce: NullType;
|
|
1295
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
1296
|
+
bce_with_logits: NullType;
|
|
957
1297
|
}>;
|
|
958
1298
|
/** Optimizer type */
|
|
959
1299
|
readonly TorchOptimizerType: VariantType<{
|
|
@@ -966,6 +1306,53 @@ export declare const Torch: {
|
|
|
966
1306
|
/** RMSprop optimizer */
|
|
967
1307
|
rmsprop: NullType;
|
|
968
1308
|
}>;
|
|
1309
|
+
/** Per-row output constraint type */
|
|
1310
|
+
readonly RowConstraintType: VariantType<{
|
|
1311
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
1312
|
+
binary: StructType<{
|
|
1313
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
1314
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1315
|
+
}>;
|
|
1316
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
1317
|
+
mutex: StructType<{
|
|
1318
|
+
/** Which positions are valid. None = all valid */
|
|
1319
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1320
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
1321
|
+
allow_none: OptionType<BooleanType>;
|
|
1322
|
+
}>;
|
|
1323
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
1324
|
+
at_most: StructType<{
|
|
1325
|
+
/** Maximum number of active positions */
|
|
1326
|
+
max_count: IntegerType;
|
|
1327
|
+
/** Which positions are valid. None = all valid */
|
|
1328
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1329
|
+
}>;
|
|
1330
|
+
}>;
|
|
1331
|
+
/** Constrained output configuration type */
|
|
1332
|
+
readonly ConstrainedOutputConfigType: StructType<{
|
|
1333
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
1334
|
+
row_constraints: ArrayType<VariantType<{
|
|
1335
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
1336
|
+
binary: StructType<{
|
|
1337
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
1338
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1339
|
+
}>;
|
|
1340
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
1341
|
+
mutex: StructType<{
|
|
1342
|
+
/** Which positions are valid. None = all valid */
|
|
1343
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1344
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
1345
|
+
allow_none: OptionType<BooleanType>;
|
|
1346
|
+
}>;
|
|
1347
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
1348
|
+
at_most: StructType<{
|
|
1349
|
+
/** Maximum number of active positions */
|
|
1350
|
+
max_count: IntegerType;
|
|
1351
|
+
/** Which positions are valid. None = all valid */
|
|
1352
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1353
|
+
}>;
|
|
1354
|
+
}>>;
|
|
1355
|
+
}>;
|
|
969
1356
|
/** MLP configuration type */
|
|
970
1357
|
readonly TorchMLPConfigType: StructType<{
|
|
971
1358
|
/** Hidden layer sizes, e.g., [64, 32] */
|
|
@@ -981,7 +1368,7 @@ export declare const Torch: {
|
|
|
981
1368
|
/** Leaky ReLU */
|
|
982
1369
|
leaky_relu: NullType;
|
|
983
1370
|
}>>;
|
|
984
|
-
/** Output activation function (default none/linear) */
|
|
1371
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
985
1372
|
output_activation: OptionType<VariantType<{
|
|
986
1373
|
/** No activation (linear output) - default */
|
|
987
1374
|
none: NullType;
|
|
@@ -994,6 +1381,35 @@ export declare const Torch: {
|
|
|
994
1381
|
dropout: OptionType<FloatType>;
|
|
995
1382
|
/** Output dimension (default 1) */
|
|
996
1383
|
output_dim: OptionType<IntegerType>;
|
|
1384
|
+
/**
|
|
1385
|
+
* Per-row output constraints for structured outputs.
|
|
1386
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
1387
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
1388
|
+
*/
|
|
1389
|
+
output_constraints: OptionType<StructType<{
|
|
1390
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
1391
|
+
row_constraints: ArrayType<VariantType<{
|
|
1392
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
1393
|
+
binary: StructType<{
|
|
1394
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
1395
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1396
|
+
}>;
|
|
1397
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
1398
|
+
mutex: StructType<{
|
|
1399
|
+
/** Which positions are valid. None = all valid */
|
|
1400
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1401
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
1402
|
+
allow_none: OptionType<BooleanType>;
|
|
1403
|
+
}>;
|
|
1404
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
1405
|
+
at_most: StructType<{
|
|
1406
|
+
/** Maximum number of active positions */
|
|
1407
|
+
max_count: IntegerType;
|
|
1408
|
+
/** Which positions are valid. None = all valid */
|
|
1409
|
+
mask: OptionType<ArrayType<BooleanType>>;
|
|
1410
|
+
}>;
|
|
1411
|
+
}>>;
|
|
1412
|
+
}>>;
|
|
997
1413
|
}>;
|
|
998
1414
|
/** Training configuration type */
|
|
999
1415
|
readonly TorchTrainConfigType: StructType<{
|
|
@@ -1009,10 +1425,14 @@ export declare const Torch: {
|
|
|
1009
1425
|
mse: NullType;
|
|
1010
1426
|
/** Mean Absolute Error (regression) */
|
|
1011
1427
|
mae: NullType;
|
|
1012
|
-
/** Cross Entropy (classification) */
|
|
1428
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
1013
1429
|
cross_entropy: NullType;
|
|
1014
1430
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
1015
1431
|
kl_div: NullType;
|
|
1432
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
1433
|
+
bce: NullType;
|
|
1434
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
1435
|
+
bce_with_logits: NullType;
|
|
1016
1436
|
}>>;
|
|
1017
1437
|
/** Optimizer (default adam) */
|
|
1018
1438
|
optimizer: OptionType<VariantType<{
|
|
@@ -1031,6 +1451,8 @@ export declare const Torch: {
|
|
|
1031
1451
|
validation_split: OptionType<FloatType>;
|
|
1032
1452
|
/** Random seed for reproducibility */
|
|
1033
1453
|
random_state: OptionType<IntegerType>;
|
|
1454
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
1455
|
+
pos_weight: OptionType<FloatType>;
|
|
1034
1456
|
}>;
|
|
1035
1457
|
/** Training result type */
|
|
1036
1458
|
readonly TorchTrainResultType: StructType<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"torch.d.ts","sourceRoot":"","sources":["../../src/torch/torch.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;GAOG;AAEH,OAAO,EAEH,UAAU,EACV,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,QAAQ,EACR,SAAS,EACT,QAAQ,
|
|
1
|
+
{"version":3,"file":"torch.d.ts","sourceRoot":"","sources":["../../src/torch/torch.ts"],"names":[],"mappings":"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"}
|
package/dist/torch/torch.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*
|
|
11
11
|
* @packageDocumentation
|
|
12
12
|
*/
|
|
13
|
-
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, ArrayType, NullType, } from "@elaraai/east";
|
|
13
|
+
import { East, StructType, VariantType, OptionType, IntegerType, FloatType, BlobType, ArrayType, NullType, BooleanType, } from "@elaraai/east";
|
|
14
14
|
import { VectorType, MatrixType } from "../types.js";
|
|
15
15
|
// Re-export shared types for convenience
|
|
16
16
|
export { VectorType, MatrixType } from "../types.js";
|
|
@@ -38,10 +38,14 @@ export const TorchLossType = VariantType({
|
|
|
38
38
|
mse: NullType,
|
|
39
39
|
/** Mean Absolute Error (regression) */
|
|
40
40
|
mae: NullType,
|
|
41
|
-
/** Cross Entropy (classification) */
|
|
41
|
+
/** Cross Entropy (multi-class classification with integer targets) */
|
|
42
42
|
cross_entropy: NullType,
|
|
43
43
|
/** KL Divergence (distribution matching, use with softmax output) */
|
|
44
44
|
kl_div: NullType,
|
|
45
|
+
/** Binary Cross Entropy (multi-label binary, requires sigmoid output) */
|
|
46
|
+
bce: NullType,
|
|
47
|
+
/** Binary Cross Entropy with Logits (more stable, applies sigmoid internally - do NOT use with sigmoid output_activation) */
|
|
48
|
+
bce_with_logits: NullType,
|
|
45
49
|
});
|
|
46
50
|
/**
|
|
47
51
|
* Optimizer type for training.
|
|
@@ -69,6 +73,60 @@ export const TorchOutputActivationType = VariantType({
|
|
|
69
73
|
sigmoid: NullType,
|
|
70
74
|
});
|
|
71
75
|
// ============================================================================
|
|
76
|
+
// Output Constraint Types
|
|
77
|
+
// ============================================================================
|
|
78
|
+
/**
|
|
79
|
+
* Per-row output constraint for structured/constrained outputs.
|
|
80
|
+
*
|
|
81
|
+
* Each row of the output matrix can have its own constraint type,
|
|
82
|
+
* enabling architecturally-enforced constraints like mutual exclusivity
|
|
83
|
+
* or position masking.
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* ```ts
|
|
87
|
+
* // Binary output with some positions masked (impossible)
|
|
88
|
+
* variant("binary", { mask: variant("some", [true, true, false, true]) })
|
|
89
|
+
*
|
|
90
|
+
* // Mutually exclusive - exactly one position active (softmax)
|
|
91
|
+
* variant("mutex", { mask: variant("none", null), allow_none: variant("some", true) })
|
|
92
|
+
*
|
|
93
|
+
* // At most 2 positions active
|
|
94
|
+
* variant("at_most", { max_count: 2n, mask: variant("none", null) })
|
|
95
|
+
* ```
|
|
96
|
+
*/
|
|
97
|
+
export const RowConstraintType = VariantType({
|
|
98
|
+
/** Independent binary outputs (sigmoid), optionally masked */
|
|
99
|
+
binary: StructType({
|
|
100
|
+
/** Which positions are valid (true = valid). None = all valid */
|
|
101
|
+
mask: OptionType(ArrayType(BooleanType)),
|
|
102
|
+
}),
|
|
103
|
+
/** Mutually exclusive - at most one position active (softmax) */
|
|
104
|
+
mutex: StructType({
|
|
105
|
+
/** Which positions are valid. None = all valid */
|
|
106
|
+
mask: OptionType(ArrayType(BooleanType)),
|
|
107
|
+
/** Allow "none selected" by outputting all zeros when no position dominates */
|
|
108
|
+
allow_none: OptionType(BooleanType),
|
|
109
|
+
}),
|
|
110
|
+
/** At most N positions active (top-k selection with sigmoid) */
|
|
111
|
+
at_most: StructType({
|
|
112
|
+
/** Maximum number of active positions */
|
|
113
|
+
max_count: IntegerType,
|
|
114
|
+
/** Which positions are valid. None = all valid */
|
|
115
|
+
mask: OptionType(ArrayType(BooleanType)),
|
|
116
|
+
}),
|
|
117
|
+
});
|
|
118
|
+
/**
|
|
119
|
+
* Configuration for constrained multi-output.
|
|
120
|
+
*
|
|
121
|
+
* Specifies per-row constraints that are architecturally enforced
|
|
122
|
+
* (not just penalized in the loss). This guarantees constraint
|
|
123
|
+
* satisfaction at inference time.
|
|
124
|
+
*/
|
|
125
|
+
export const ConstrainedOutputConfigType = StructType({
|
|
126
|
+
/** Constraint for each output row. Length must match output dimension. */
|
|
127
|
+
row_constraints: ArrayType(RowConstraintType),
|
|
128
|
+
});
|
|
129
|
+
// ============================================================================
|
|
72
130
|
// Config Types
|
|
73
131
|
// ============================================================================
|
|
74
132
|
/**
|
|
@@ -79,12 +137,18 @@ export const TorchMLPConfigType = StructType({
|
|
|
79
137
|
hidden_layers: ArrayType(IntegerType),
|
|
80
138
|
/** Activation function for hidden layers (default relu) */
|
|
81
139
|
activation: OptionType(TorchActivationType),
|
|
82
|
-
/** Output activation function (default none/linear) */
|
|
140
|
+
/** Output activation function (default none/linear). Ignored if output_constraints is set. */
|
|
83
141
|
output_activation: OptionType(TorchOutputActivationType),
|
|
84
142
|
/** Dropout rate (default 0.0) */
|
|
85
143
|
dropout: OptionType(FloatType),
|
|
86
144
|
/** Output dimension (default 1) */
|
|
87
145
|
output_dim: OptionType(IntegerType),
|
|
146
|
+
/**
|
|
147
|
+
* Per-row output constraints for structured outputs.
|
|
148
|
+
* When set, overrides output_activation with per-row constraint handling.
|
|
149
|
+
* Each constraint specifies how that row of the output is activated/constrained.
|
|
150
|
+
*/
|
|
151
|
+
output_constraints: OptionType(ConstrainedOutputConfigType),
|
|
88
152
|
});
|
|
89
153
|
/**
|
|
90
154
|
* Configuration for training.
|
|
@@ -106,6 +170,8 @@ export const TorchTrainConfigType = StructType({
|
|
|
106
170
|
validation_split: OptionType(FloatType),
|
|
107
171
|
/** Random seed for reproducibility */
|
|
108
172
|
random_state: OptionType(IntegerType),
|
|
173
|
+
/** Positive class weight for BCE losses (for imbalanced data, e.g., sparse binary matrices) */
|
|
174
|
+
pos_weight: OptionType(FloatType),
|
|
109
175
|
});
|
|
110
176
|
// ============================================================================
|
|
111
177
|
// Result Types
|
|
@@ -286,6 +352,10 @@ export const TorchTypes = {
|
|
|
286
352
|
TorchLossType,
|
|
287
353
|
/** Optimizer type */
|
|
288
354
|
TorchOptimizerType,
|
|
355
|
+
/** Per-row output constraint type */
|
|
356
|
+
RowConstraintType,
|
|
357
|
+
/** Constrained output configuration type */
|
|
358
|
+
ConstrainedOutputConfigType,
|
|
289
359
|
/** MLP configuration type */
|
|
290
360
|
TorchMLPConfigType,
|
|
291
361
|
/** Training configuration type */
|
package/dist/torch/torch.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"torch.js","sourceRoot":"","sources":["../../src/torch/torch.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;GAOG;AAEH,OAAO,EACH,IAAI,EACJ,UAAU,EACV,WAAW,EACX,UAAU,EACV,WAAW,EACX,SAAS,EACT,QAAQ,EACR,SAAS,EACT,QAAQ,
|
|
1
|
+
{"version":3,"file":"torch.js","sourceRoot":"","sources":["../../src/torch/torch.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/index.spec.ts","../node_modules/@elaraai/east/dist/src/location.d.ts","../node_modules/@elaraai/east/dist/src/containers/ref.d.ts","../node_modules/@elaraai/east/dist/src/containers/variant.d.ts","../node_modules/@elaraai/east/dist/src/containers/sortedset.d.ts","../node_modules/@elaraai/east/dist/src/containers/sortedmap.d.ts","../node_modules/@elaraai/east/dist/src/types.d.ts","../node_modules/@elaraai/east/dist/src/type_of_type.d.ts","../node_modules/@elaraai/east/dist/src/serialization/east.d.ts","../node_modules/@elaraai/east/dist/src/serialization/binary-utils.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast.d.ts","../node_modules/@elaraai/east/dist/src/builtins.d.ts","../node_modules/@elaraai/east/dist/src/ir.d.ts","../node_modules/@elaraai/east/dist/src/platform.d.ts","../node_modules/@elaraai/east/dist/src/analyze.d.ts","../node_modules/@elaraai/east/dist/src/compile.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast2.d.ts","../node_modules/@elaraai/east/dist/src/serialization/json.d.ts","../node_modules/@elaraai/east/dist/src/serialization/csv.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast2-stream.d.ts","../node_modules/@elaraai/east/dist/src/serialization/index.d.ts","../node_modules/@elaraai/east/dist/src/comparison.d.ts","../node_modules/@elaraai/east/dist/src/ast.d.ts","../node_modules/@elaraai/east/dist/src/expr/never.d.ts","../node_modules/@elaraai/east/dist/src/expr/null.d.ts","../node_modules/@elaraai/east/dist/src/expr/boolean.d.ts","../node_modules/@elaraai/east/dist/src/expr/float.d.ts","../node_modules/@elaraai/east/dist/src/expr/integer.d.ts","../node_modules/@elaraai/east/dist/src/expr/dict.d.ts","../node_modules/@elaraai/east/dist/src/expr/set.d.ts","../node_modules/@elaraai/east/dist/src/expr/blob.d.ts","../node_modules/@elaraai/east/dist/src/expr/array.d.ts","../node_modules/@elaraai/east/dist/src/expr/string.d.ts","../node_modules/@elaraai/east/dist/src/eastir.d.ts","../node_modules/@elaraai/east/dist/src/expr/function.d.ts","../node_modules/@elaraai/east/dist/src/expr/asyncfunction.d.ts","../node_modules/@elaraai/east/dist/src/expr/block.d.ts","../node_modules/@elaraai/east/dist/src/expr/expr.d.ts","../node_modules/@elaraai/east/dist/src/expr/datetime.d.ts","../node_modules/@elaraai/east/dist/src/expr/struct.d.ts","../node_modules/@elaraai/east/dist/src/expr/variant.d.ts","../node_modules/@elaraai/east/dist/src/expr/recursive.d.ts","../node_modules/@elaraai/east/dist/src/expr/ref.d.ts","../node_modules/@elaraai/east/dist/src/expr/types.d.ts","../node_modules/@elaraai/east/dist/src/expr/index.d.ts","../node_modules/@elaraai/east/dist/src/error.d.ts","../node_modules/@elaraai/east/dist/src/default.d.ts","../node_modules/@elaraai/east/dist/src/index.d.ts","../src/types.ts","../src/mads/mads.ts","../src/optuna/optuna.ts","../src/simanneal/simanneal.ts","../src/xgboost/xgboost.ts","../src/lightgbm/lightgbm.ts","../src/ngboost/ngboost.ts","../src/gp/gp.ts","../src/sklearn/sklearn.ts","../src/scipy/scipy.ts","../src/shap/shap.ts","../src/torch/torch.ts","../src/index.ts","../node_modules/@elaraai/east/dist/src/ast_to_ir.d.ts","../node_modules/@elaraai/east/dist/src/fuzz.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/types.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/tokenize.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/print.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/parse.d.ts","../node_modules/@elaraai/east/dist/src/internal.d.ts","../node_modules/@elaraai/east-node-std/dist/test.d.ts","../node_modules/@elaraai/east-node-std/dist/console.d.ts","../node_modules/@elaraai/east-node-std/dist/fs.d.ts","../node_modules/@elaraai/east-node-std/dist/path.d.ts","../node_modules/@elaraai/east-node-std/dist/crypto.d.ts","../node_modules/@elaraai/east-node-std/dist/time.d.ts","../node_modules/@elaraai/east-node-std/dist/fetch.d.ts","../node_modules/@elaraai/east-node-std/dist/random.d.ts","../node_modules/@elaraai/east-node-std/dist/index.d.ts","../src/gp/gp.spec.ts","../src/lightgbm/lightgbm.spec.ts","../src/mads/mads.spec.ts","../src/ngboost/ngboost.spec.ts","../src/optuna/optuna.spec.ts","../src/scipy/scipy.spec.ts","../src/shap/shap.spec.ts","../src/simanneal/simanneal.spec.ts","../src/sklearn/sklearn.spec.ts","../src/torch/torch.spec.ts","../src/xgboost/xgboost.spec.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.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/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.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.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/agent.d.ts","../node_modules/undici-types/mock-interceptor.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/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/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/filereader.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/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"],"fileIdsList":[[128,148,174,222,239,240],[148,149,150,151,152,153,154,155,156,157,174,222,239,240],[88,93,174,222,239,240],[82,87,92,174,222,239,240],[82,87,93,103,174,222,239,240],[87,174,222,239,240],[87,88,174,222,239,240],[88,93,94,95,174,222,239,240],[174,222,239,240],[144,174,222,239,240],[84,87,174,222,239,240],[87,93,94,174,222,239,240],[93,174,222,239,240],[87,99,103,105,106,107,108,109,110,111,113,117,118,124,174,222,239,240],[87,103,114,118,124,174,222,239,240],[87,99,103,106,108,112,113,118,124,174,222,239,240],[82,87,94,103,104,105,106,108,109,110,112,113,115,116,118,124,174,222,239,240],[87,103,117,118,124,174,222,239,240],[87,103,106,107,108,113,118,124,174,222,239,240],[87,103,105,106,107,108,110,112,117,118,124,174,222,239,240],[82,87,103,104,115,116,117,124,174,222,239,240],[87,103,106,108,118,174,222,239,240],[87,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,174,222,239,240],[87,103,106,107,118,174,222,239,240],[87,103,118,174,222,239,240],[87,103,118,124,174,222,239,240],[87,103,105,106,107,108,109,112,117,118,124,174,222,239,240],[87,103,106,108,112,118,124,174,222,239,240],[82,87,103,104,115,116,117,118,124,174,222,239,240],[83,84,87,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,174,222,239,240],[87,103,106,117,118,124,174,222,239,240],[82,83,84,85,86,87,88,93,96,101,102,103,114,125,126,127,174,222,239,240],[87,88,93,94,95,96,97,114,115,117,118,126,142,143,144,145,146,147,174,222,239,240],[84,87,88,92,174,222,239,240],[88,174,222,239,240],[87,88,90,174,222,239,240],[87,88,90,93,94,96,174,222,239,240],[89,90,91,97,98,99,100,174,222,239,240],[83,84,174,222,239,240],[174,219,220,222,239,240],[174,221,222,239,240],[222,239,240],[174,222,227,239,240,257],[174,222,223,228,233,239,240,242,254,265],[174,222,223,224,233,239,240,242],[169,170,171,174,222,239,240],[174,222,225,239,240,266],[174,222,226,227,234,239,240,243],[174,222,227,239,240,254,262],[174,222,228,230,233,239,240,242],[174,221,222,229,239,240],[174,222,230,231,239,240],[174,222,232,233,239,240],[174,221,222,233,239,240],[174,222,233,234,235,239,240,254,265],[174,222,233,234,235,239,240,249,254,257],[174,215,222,230,233,236,239,240,242,254,265],[174,222,233,234,236,237,239,240,242,254,262,265],[174,222,236,238,239,240,254,262,265],[172,173,174,175,176,177,178,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,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[174,222,233,239,240],[174,222,239,240,241,265],[174,222,230,233,239,240,242,254],[174,222,239,240,243],[174,222,239,240,244],[174,221,222,239,240,245],[174,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,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[174,222,239,240,247],[174,222,239,240,248],[174,222,233,239,240,249,250],[174,222,239,240,249,251,266,268],[174,222,234,239,240],[174,222,233,239,240,254,255,257],[174,222,239,240,256,257],[174,222,239,240,254,255],[174,222,239,240,257],[174,222,239,240,258],[174,219,222,239,240,254,259],[174,222,233,239,240,260,261],[174,222,239,240,260,261],[174,222,227,239,240,242,254,262],[174,222,239,240,263],[174,222,239,240,242,264],[174,222,236,239,240,248,265],[174,222,227,239,240,266],[174,222,239,240,254,267],[174,222,239,240,241,268],[174,222,239,240,269],[174,215,222,239,240],[174,215,222,233,235,239,240,245,254,257,265,267,268,270],[174,222,239,240,254,271],[174,187,191,222,239,240,265],[174,187,222,239,240,254,265],[174,182,222,239,240],[174,184,187,222,239,240,262,265],[174,222,239,240,242,262],[174,222,239,240,272],[174,182,222,239,240,272],[174,184,187,222,239,240,242,265],[174,179,180,183,186,222,233,239,240,254,265],[174,187,194,222,239,240],[174,179,185,222,239,240],[174,187,208,209,222,239,240],[174,183,187,222,239,240,257,265,272],[174,208,222,239,240,272],[174,181,182,222,239,240,272],[174,187,222,239,240],[174,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,222,239,240],[174,187,202,222,239,240],[174,187,194,195,222,239,240],[174,185,187,195,196,222,239,240],[174,186,222,239,240],[174,179,182,187,222,239,240],[174,187,191,195,196,222,239,240],[174,191,222,239,240],[174,185,187,190,222,239,240,265],[174,179,184,187,194,222,239,240],[174,222,239,240,254],[174,182,187,208,222,239,240,270,272],[128,136,157,174,222,239,240],[128,129,174,222,239,240],[129,130,131,132,133,134,135,136,137,138,139,140,174,222,239,240],[128,134,157,174,222,239,240],[128,130,157,174,222,239,240],[128,135,157,174,222,239,240],[128,131,157,174,222,239,240],[128,174,222,239,240],[128,138,157,174,222,239,240],[128,133,134,135,136,137,139,140,157,174,222,239,240],[128,132,157,174,222,239,240],[128,137,157,174,222,239,240],[128,129,133,134,135,136,174,222,239,240],[128,140,157,174,222,239,240],[128,133,157,174,222,239,240]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"47210182da8ad977773f5533ab5fd87b836f6edf5f31fabfd2794aac5e708df8","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"47e36c37ed14f1cacc41d970137cfe2bf5cc7b9bc9fe3f2a5a621d960d2aa773","impliedFormat":99},{"version":"b333fa3ccdd4df1687b38fa6b5a2430ca722e9fbf452eedb701ef9b58b15e7ef","impliedFormat":99},{"version":"5382a91735d16463fbb83324108c082a31b4e2499a47482a3cddfeb16fd5c3de","impliedFormat":99},{"version":"c79073e5142075fd937d4b8e0fd20ce2423898b99f16975ffdda1023c4c594f4","impliedFormat":99},{"version":"2852adff4529cad13f4597b1aa61d0ba46565878911b448217659cee534bd631","impliedFormat":99},{"version":"b16726b5731ece2e20ea694aeebab8c2fea4b305d16515b44f471b2a34fad34c","impliedFormat":99},{"version":"032fdfa10c9c5e5901d9817ab6338fabc1cd9a9a7d57f175d848286ac47618be","impliedFormat":99},{"version":"407554562796edc6c559081fb57977bffb4786dcf507a1f440729b478a44297a","impliedFormat":99},{"version":"a2c743c1da725252c01e76d5f6254e882a259bfa02ebd337bfb8f0d50949d290","impliedFormat":99},{"version":"7c85c07f65589d6e3780ba29dc6933f6a98f561b296f74098c690c451b3fb367","impliedFormat":99},{"version":"d403ae1927b0fbd41c0d17f2ce98a225211f1e65160d1ccd48c053a3724825bb","impliedFormat":99},{"version":"7a078f6383d0740e836449f13e8ef086bf127525d1c2bc42349daad1a94d3a7e","impliedFormat":99},{"version":"3378f2e798825c3edbdaa649be53726db2f4324fe51cea033795325737a48517","impliedFormat":99},{"version":"9ac8e3a2de1c84bd65af6f353f6331bf91f7199abe05744a3139cb7d38c32397","impliedFormat":99},{"version":"2b63e8d7323e5f52ef1817760b1a9786abb2344caa956d1e3e718b0346ce80df","impliedFormat":99},{"version":"431637dff7df8e796e270649175b806b71bf260aab77fbba4418771f7e62b20f","impliedFormat":99},{"version":"f6b0a14adf6712c62c7444520da24c64dfc024817ec2fd21d454fdb29739ef08","impliedFormat":99},{"version":"a7c6eeaa05bf9b93c15f63c3456490b0f8320330cc685f2c7cd9978beef111a0","impliedFormat":99},{"version":"66081025ebe2d7fa39706f08c16235984f3a102cad20995953cb518baf190a45","impliedFormat":99},{"version":"e372ed137f636aca0e6007f9ae2b211bc0603ca9d4df9ae6e42a3ea949360601","impliedFormat":99},{"version":"78d6aab776c61097d3cb653891415efd7908cd5f945c4bafe3655a74d4f3c92d","impliedFormat":99},{"version":"0bf05a5a28d2e256d9efdd4929d4d5d84c02dd18d2c617f15ecca24c0ccf1daa","impliedFormat":99},{"version":"8393864c3d8b2b420af956e1cbd792869bbd4f2941a6fad8050d7525d105aa08","impliedFormat":99},{"version":"db667ebb38c791f2f4f5478c2cf30437134981a0061ae8c04ca1d0752411ee56","impliedFormat":99},{"version":"676a93513b4683861b840ad22cb8ec142e0660c4e05b20e294f16f433b67006a","impliedFormat":99},{"version":"a5e18027f76f88c48ac1fc563774769675ac3dd98583ec53b88d0e460d26312e","impliedFormat":99},{"version":"bf54c728756b0eeea6a5961922cbe4fc952b9087c18e4b8a6d3d6c3e146ceec6","impliedFormat":99},{"version":"a3ae550d2b186a33d19024fa3fed5cab5a78c8b975ba1ed4d8e2009d30a1b4c5","impliedFormat":99},{"version":"5288f4c3d6f1b409e21e57540b61c44f5900551ccb41e7ca9defcdd439a6ac03","impliedFormat":99},{"version":"e922e37e66655a44bf1fdb190bd829c31a26a6eb6d8ad955ace9030d761e49d4","impliedFormat":99},{"version":"cb7ae8e3ee690db79ad443ede893ad451a50c537cccf65239ea6dbeb4af07cac","impliedFormat":99},{"version":"3d7c5f1434c6fd2a4a8761ae5d225e607c85a4a9ed97e2728003d224a5e9d301","impliedFormat":99},{"version":"5b346bec8fae055eb7fdfa8a2013206ea35333f2e9570907bdd55e3845b79680","impliedFormat":99},{"version":"b792edfd5c125f702e972eff909f60a8260f47472506559b9433fafb0fdeca30","impliedFormat":99},{"version":"210aa7218f99d395dac5ad11ecd5896920faed6a147087bad5fe1f91ad408b6a","impliedFormat":99},{"version":"efa0cdaf1a20df235da0b6bfbd10e81137819d1e0dcf1ac4021d6c9d9b2ae922","impliedFormat":99},{"version":"5d54ac09b477260b05f5b7eefd8a4ed3a68bf83c065932d64d96f6f4c27f005d","impliedFormat":99},{"version":"d903e1ec3dadd08248504987461a920aba6f05d8f91a9b2a38c088c2b25cd0a2","impliedFormat":99},{"version":"da44eb09eb50cea297690c8e2415ea9f12d2286b11d3e0021b4f64fd382c7155","impliedFormat":99},{"version":"fb3ea6a81f268fc9c8e3f815cb042a72a9e852ed8f2da92f292a58713349c9ce","impliedFormat":99},{"version":"252345f561bb24ce7f79cbbd7e40685ebcb4689cfd95973d2244c9b6bb2ace36","impliedFormat":99},{"version":"b12376d613a4c40d90b80c8f90652daf12c2db98f4432eed64ab9278cecd423a","impliedFormat":99},{"version":"e17f13fde24b78e2bfeca0290168db554f4b20244bfbaf16cd8e005bfb44fd45","impliedFormat":99},{"version":"c5753f9ed33fa7c0585bf3cdc60d7ec921fd9f4604e5b9df0c9e2cfc832884c7","impliedFormat":99},{"version":"8abc854935ec7099027ca34f22c06da84b503935095d1491bd7213a0ad13848b","impliedFormat":99},{"version":"bac5cadcfda77492e3a14181f472503521b5a5f5c6d188fd7757bd2d699b286d","impliedFormat":99},{"version":"a91ff031a2e3a708750fc1959d73bfc68dbf35d0c4048f5a2098a0cc98bc23b9","impliedFormat":99},{"version":"aea25c1674cf96c1ee23b5e7ce2476d3997b9d78cd76053f6df00e86e0dc45d6","signature":"04627232eaf090d961b55e03c1f879e3826cf7d82f4234981f14cbb005e0ed1e","impliedFormat":99},{"version":"1ba751c27d5264a9f4e0704ea732c7a84e90a08366e7a574b1c67408416e336c","signature":"d59f01034c121ad0f417c61aa75d6e821d252863c1b6744d0f62c8187c453fb6","impliedFormat":99},{"version":"aab7b474647c95d23ad4c740a4584969ea7803e6b22501d501cbc50aa576a320","signature":"effde4cd7261baa3d170d0c1622e38a18edd64a798739d87fa03daf7bfaf7fe4","impliedFormat":99},{"version":"8d7dc5c27daf3168547cbb1340b1de8b90223ea724747610d60141000203725f","signature":"cfcb6c8bca982ce13d003fadead54f4226527d23e2eadb8b6be902d4c7161d71","impliedFormat":99},{"version":"bfef7ec675c140a2624f4e879824289be1e1f9a70b78f34f854024f07458664e","signature":"ae9c3f340a841d5877ca2d51b225cca50b406c069cab657726e6ef24e5168d49","impliedFormat":99},{"version":"244f8bbfc011a9ab3e89f7dbe8f22bfd793bfd796497c259b3173684614ae63e","signature":"e1c2074e796ea48683a299b9b9ac37e55aac9e879cd161ce536f011337ff507c","impliedFormat":99},{"version":"a13313c924d7316fffc6b4a5fd84bcd6c9413891213544c23914a684cda1de31","signature":"ccca8bcd5f048948444e29a85f49787312c2efffab857836593f2e16edf66e1d","impliedFormat":99},{"version":"619f14043bb121f0d3b398fa11d548de45c8738a9c7ed5408283fd888219d687","signature":"ab927312ed83aeba17849cceeb05ae3049109f32e564a3d6948400823965c414","impliedFormat":99},{"version":"c36b7e790f49f919bbed711b577d36c52f45067857bdae686aaedf795f0b66ce","signature":"b81db6950155b59516b9e9fec91abb25db88dc0777a9763a85430a0dae57f3c7","impliedFormat":99},{"version":"91b6bf29cd86fe644ee2b276071ae1fc71f90cfb2bfcfa3220c5017d9ba145ba","signature":"1caae3f824b3b7c23eae72db13142f1336185b620fe36a2802efd73430853a78","impliedFormat":99},{"version":"aa3b8d65f7043fedd7673e599059441f64b331dca9725cefe93f8d414340f37d","signature":"67297039683fc1ce74aa4af5cc1a4754f629a1c1e35a890dfcd1e9493e041e92","impliedFormat":99},{"version":"1f4695b7d6942598a9b9b8a40f8daffef59b0fc47d6292f1eb1b2daa6aa5842f","signature":"43e987c9344385b2b30586c71cf0dbe2f2b905abd6796a7ff827ac28d15fdcd3","impliedFormat":99},{"version":"bb52464922037a5b37011daa05765f3f66c0f373244b480d6c391713de9020a1","signature":"d8d58a44909516b50eb7b5c516c31d5995f7442b1f555ca8f59a04d93728b8e7","impliedFormat":99},{"version":"9e7673f24c0189975a8cbd5bdc4ffb1508e24946ed6a7147926d0f4918291779","impliedFormat":99},{"version":"44ffc62ff2b7f0a4503a492b61156b92aa710a1b9cb17644d7406ab5e3f79188","impliedFormat":99},{"version":"3c3934b6e883a63aa7f0157e565b4f07a4fe64ba81fc5464a685fef28873447d","impliedFormat":99},{"version":"7792f3bbf535eb436836c886e6e55f4404ca2a4ec29ed6fd12f373c6617bec87","impliedFormat":99},{"version":"277a7ed5f08fb20ae8713ec7b961169d315b32e9db904f0801eba2717e5ff7b4","impliedFormat":99},{"version":"d652b253c65cf86950970c05420f6beb4fba89af91f598a0adf558b8bd74a84c","impliedFormat":99},{"version":"0e7692e960c03225263e91fd46775345be78986dd10ae1a3627a7c9cd82b8a39","impliedFormat":99},{"version":"18bc0ef68e1c63aefc62485fd05135b344da06e84bfc8a89bce70d05621a11ba","impliedFormat":99},{"version":"a532f0bf95b3606b79984e7cd7f213d721af3fab1b0d1d48d4ad5b48777c1767","impliedFormat":99},{"version":"4763b8bd522c618f9d77957a18204b054140fb787bc8fb3f5856a1dbd990f7ff","impliedFormat":99},{"version":"3e79f39b42298bc81959dc988b5f784aa4432c528bac62438327d4da1d80ec1e","impliedFormat":99},{"version":"81c04199236b236ea5224332a8d0513754e2bda377b05d375877622c45810833","impliedFormat":99},{"version":"244768e5dfb4016a59b37f4b247e47705f3924dfe16c4a06a38baa3692f53e2b","impliedFormat":99},{"version":"7c97b262c8bb04ec02a99f0cd1ecba1d6d6e99751e9a1f1b27b9c93625c2b7a0","impliedFormat":99},{"version":"6f2c57a319445c5cb73443b2b954467c0d250193bce4c3309f0a1d47961af4da","impliedFormat":99},{"version":"2f86105c38961f98ac1a431d2985f30321de2aabd1d5de7630d0f5542081c347","impliedFormat":99},{"version":"3abe6f70c4f45539b22db4cb94e37364fdf2ab2f4b9457081916233583cc9189","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"8e4059129432e85607d5466b3a16cc3471bd0edeb7defa58fd0f5866c7f4d703","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"add4827537b94e4d5db319628f2860beb13cc06ba4cefa15dffe6d5d96dc9d4e","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"08a3d14ce96f3c79ab9a54cc233ba03b5bd6af3482a1886027139b2f1cdceaa4","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"eab9ea4ec5971afef08bcc0248f92fa26a752cfb35c62eb3c793820d69076aec","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"a067f42f774d664b136f18c478f1ce70736c7a115e66094f456cb14a999961a6","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"4a3c2652b42f55523191f36954c9f0e6fb3e4a2b70de1fceb4e5e7da79ab1f8a","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"8ea7977f835ac6efbb7e0f95958e87b88dc3b27e08364e52e87e3a9af40dde75","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"d8be187128a4546da93c3e1aef53f5800445ad903e633c8215aba4e05fc8751c","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"a5be47252bb09d7b5a8e2db5d202059cac052986ebe1e4cb627047ce6beb5ac1","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"ecf1c26b047aaa4948dc56dfd2f54c4d90135e252f075d331c0c1304a2430a50","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[81,[129,141],[158,168]],"options":{"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"jsx":4,"module":199,"noErrorTruncation":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[150,1],[153,1],[155,1],[151,1],[157,2],[152,1],[156,1],[149,1],[154,1],[95,3],[103,4],[142,5],[92,6],[102,7],[96,8],[83,9],[86,9],[85,9],[84,9],[147,10],[146,10],[145,10],[144,11],[127,7],[114,12],[126,13],[112,14],[116,15],[111,16],[117,17],[106,18],[119,19],[109,20],[118,21],[107,22],[115,15],[125,23],[108,24],[104,25],[105,25],[122,26],[123,26],[110,27],[113,28],[120,29],[124,30],[121,31],[143,7],[128,32],[148,33],[93,34],[82,9],[94,35],[91,36],[100,7],[97,37],[90,9],[99,7],[89,7],[101,38],[98,7],[88,11],[87,39],[219,40],[220,40],[221,41],[174,42],[222,43],[223,44],[224,45],[169,9],[172,46],[170,9],[171,9],[225,47],[226,48],[227,49],[228,50],[229,51],[230,52],[231,52],[232,53],[233,54],[234,55],[235,56],[175,9],[173,9],[236,57],[237,58],[238,59],[272,60],[239,61],[240,9],[241,62],[242,63],[243,64],[244,65],[245,66],[246,67],[247,68],[248,69],[249,70],[250,70],[251,71],[252,9],[253,72],[254,73],[256,74],[255,75],[257,76],[258,77],[259,78],[260,79],[261,80],[262,81],[263,82],[264,83],[265,84],[266,85],[267,86],[268,87],[269,88],[176,9],[177,9],[178,9],[216,89],[217,9],[218,9],[270,90],[271,91],[79,9],[80,9],[14,9],[13,9],[2,9],[15,9],[16,9],[17,9],[18,9],[19,9],[20,9],[21,9],[22,9],[3,9],[23,9],[24,9],[4,9],[25,9],[29,9],[26,9],[27,9],[28,9],[30,9],[31,9],[32,9],[5,9],[33,9],[34,9],[35,9],[36,9],[6,9],[40,9],[37,9],[38,9],[39,9],[41,9],[7,9],[42,9],[47,9],[48,9],[43,9],[44,9],[45,9],[46,9],[8,9],[52,9],[49,9],[50,9],[51,9],[53,9],[9,9],[54,9],[55,9],[56,9],[58,9],[57,9],[59,9],[60,9],[10,9],[61,9],[62,9],[63,9],[11,9],[64,9],[65,9],[66,9],[67,9],[68,9],[1,9],[69,9],[70,9],[12,9],[74,9],[72,9],[77,9],[76,9],[71,9],[75,9],[73,9],[78,9],[194,92],[204,93],[193,92],[214,94],[185,95],[184,96],[213,97],[207,98],[212,99],[187,100],[201,101],[186,102],[210,103],[182,104],[181,97],[211,105],[183,106],[188,107],[189,9],[192,107],[179,9],[215,108],[205,109],[196,110],[197,111],[199,112],[195,113],[198,114],[208,97],[190,115],[191,116],[200,117],[180,118],[203,109],[202,107],[206,9],[209,119],[158,120],[136,121],[81,9],[141,122],[159,123],[134,121],[160,124],[130,121],[161,125],[135,121],[162,126],[131,127],[163,128],[138,121],[164,129],[139,121],[165,130],[132,127],[166,131],[137,132],[167,133],[140,121],[129,127],[168,134],[133,121]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.esnext.error.d.ts","../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/index.spec.ts","../node_modules/@elaraai/east/dist/src/location.d.ts","../node_modules/@elaraai/east/dist/src/containers/ref.d.ts","../node_modules/@elaraai/east/dist/src/containers/variant.d.ts","../node_modules/@elaraai/east/dist/src/containers/sortedset.d.ts","../node_modules/@elaraai/east/dist/src/containers/sortedmap.d.ts","../node_modules/@elaraai/east/dist/src/types.d.ts","../node_modules/@elaraai/east/dist/src/type_of_type.d.ts","../node_modules/@elaraai/east/dist/src/serialization/east.d.ts","../node_modules/@elaraai/east/dist/src/serialization/binary-utils.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast.d.ts","../node_modules/@elaraai/east/dist/src/builtins.d.ts","../node_modules/@elaraai/east/dist/src/ir.d.ts","../node_modules/@elaraai/east/dist/src/platform.d.ts","../node_modules/@elaraai/east/dist/src/analyze.d.ts","../node_modules/@elaraai/east/dist/src/compile.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast2.d.ts","../node_modules/@elaraai/east/dist/src/serialization/json.d.ts","../node_modules/@elaraai/east/dist/src/serialization/csv.d.ts","../node_modules/@elaraai/east/dist/src/serialization/beast2-stream.d.ts","../node_modules/@elaraai/east/dist/src/serialization/index.d.ts","../node_modules/@elaraai/east/dist/src/comparison.d.ts","../node_modules/@elaraai/east/dist/src/ast.d.ts","../node_modules/@elaraai/east/dist/src/expr/never.d.ts","../node_modules/@elaraai/east/dist/src/expr/null.d.ts","../node_modules/@elaraai/east/dist/src/expr/boolean.d.ts","../node_modules/@elaraai/east/dist/src/expr/float.d.ts","../node_modules/@elaraai/east/dist/src/expr/integer.d.ts","../node_modules/@elaraai/east/dist/src/expr/dict.d.ts","../node_modules/@elaraai/east/dist/src/expr/set.d.ts","../node_modules/@elaraai/east/dist/src/expr/blob.d.ts","../node_modules/@elaraai/east/dist/src/expr/array.d.ts","../node_modules/@elaraai/east/dist/src/expr/string.d.ts","../node_modules/@elaraai/east/dist/src/eastir.d.ts","../node_modules/@elaraai/east/dist/src/expr/function.d.ts","../node_modules/@elaraai/east/dist/src/expr/asyncfunction.d.ts","../node_modules/@elaraai/east/dist/src/expr/block.d.ts","../node_modules/@elaraai/east/dist/src/expr/expr.d.ts","../node_modules/@elaraai/east/dist/src/expr/datetime.d.ts","../node_modules/@elaraai/east/dist/src/expr/struct.d.ts","../node_modules/@elaraai/east/dist/src/expr/variant.d.ts","../node_modules/@elaraai/east/dist/src/expr/recursive.d.ts","../node_modules/@elaraai/east/dist/src/expr/ref.d.ts","../node_modules/@elaraai/east/dist/src/expr/types.d.ts","../node_modules/@elaraai/east/dist/src/expr/index.d.ts","../node_modules/@elaraai/east/dist/src/error.d.ts","../node_modules/@elaraai/east/dist/src/default.d.ts","../node_modules/@elaraai/east/dist/src/index.d.ts","../src/types.ts","../src/mads/mads.ts","../src/optuna/optuna.ts","../src/simanneal/simanneal.ts","../src/xgboost/xgboost.ts","../src/lightgbm/lightgbm.ts","../src/ngboost/ngboost.ts","../src/gp/gp.ts","../src/sklearn/sklearn.ts","../src/scipy/scipy.ts","../src/shap/shap.ts","../src/torch/torch.ts","../src/index.ts","../node_modules/@elaraai/east/dist/src/ast_to_ir.d.ts","../node_modules/@elaraai/east/dist/src/fuzz.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/types.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/tokenize.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/print.d.ts","../node_modules/@elaraai/east/dist/src/datetime_format/parse.d.ts","../node_modules/@elaraai/east/dist/src/internal.d.ts","../node_modules/@elaraai/east-node-std/dist/test.d.ts","../node_modules/@elaraai/east-node-std/dist/console.d.ts","../node_modules/@elaraai/east-node-std/dist/fs.d.ts","../node_modules/@elaraai/east-node-std/dist/path.d.ts","../node_modules/@elaraai/east-node-std/dist/crypto.d.ts","../node_modules/@elaraai/east-node-std/dist/time.d.ts","../node_modules/@elaraai/east-node-std/dist/fetch.d.ts","../node_modules/@elaraai/east-node-std/dist/random.d.ts","../node_modules/@elaraai/east-node-std/dist/index.d.ts","../src/gp/gp.spec.ts","../src/lightgbm/lightgbm.spec.ts","../src/mads/mads.spec.ts","../src/ngboost/ngboost.spec.ts","../src/optuna/optuna.spec.ts","../src/scipy/scipy.spec.ts","../src/shap/shap.spec.ts","../src/simanneal/simanneal.spec.ts","../src/sklearn/sklearn.spec.ts","../src/torch/torch.spec.ts","../src/xgboost/xgboost.spec.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.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/domexception.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.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.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/agent.d.ts","../node_modules/undici-types/mock-interceptor.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/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/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/filereader.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/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"],"fileIdsList":[[128,148,174,222,239,240],[148,149,150,151,152,153,154,155,156,157,174,222,239,240],[88,93,174,222,239,240],[82,87,92,174,222,239,240],[82,87,93,103,174,222,239,240],[87,174,222,239,240],[87,88,174,222,239,240],[88,93,94,95,174,222,239,240],[174,222,239,240],[144,174,222,239,240],[84,87,174,222,239,240],[87,93,94,174,222,239,240],[93,174,222,239,240],[87,99,103,105,106,107,108,109,110,111,113,117,118,124,174,222,239,240],[87,103,114,118,124,174,222,239,240],[87,99,103,106,108,112,113,118,124,174,222,239,240],[82,87,94,103,104,105,106,108,109,110,112,113,115,116,118,124,174,222,239,240],[87,103,117,118,124,174,222,239,240],[87,103,106,107,108,113,118,124,174,222,239,240],[87,103,105,106,107,108,110,112,117,118,124,174,222,239,240],[82,87,103,104,115,116,117,124,174,222,239,240],[87,103,106,108,118,174,222,239,240],[87,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,124,174,222,239,240],[87,103,106,107,118,174,222,239,240],[87,103,118,174,222,239,240],[87,103,118,124,174,222,239,240],[87,103,105,106,107,108,109,112,117,118,124,174,222,239,240],[87,103,106,108,112,118,124,174,222,239,240],[82,87,103,104,115,116,117,118,124,174,222,239,240],[83,84,87,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,121,122,123,174,222,239,240],[87,103,106,117,118,124,174,222,239,240],[82,83,84,85,86,87,88,93,96,101,102,103,114,125,126,127,174,222,239,240],[87,88,93,94,95,96,97,114,115,117,118,126,142,143,144,145,146,147,174,222,239,240],[84,87,88,92,174,222,239,240],[88,174,222,239,240],[87,88,90,174,222,239,240],[87,88,90,93,94,96,174,222,239,240],[89,90,91,97,98,99,100,174,222,239,240],[83,84,174,222,239,240],[174,219,220,222,239,240],[174,221,222,239,240],[222,239,240],[174,222,227,239,240,257],[174,222,223,228,233,239,240,242,254,265],[174,222,223,224,233,239,240,242],[169,170,171,174,222,239,240],[174,222,225,239,240,266],[174,222,226,227,234,239,240,243],[174,222,227,239,240,254,262],[174,222,228,230,233,239,240,242],[174,221,222,229,239,240],[174,222,230,231,239,240],[174,222,232,233,239,240],[174,221,222,233,239,240],[174,222,233,234,235,239,240,254,265],[174,222,233,234,235,239,240,249,254,257],[174,215,222,230,233,236,239,240,242,254,265],[174,222,233,234,236,237,239,240,242,254,262,265],[174,222,236,238,239,240,254,262,265],[172,173,174,175,176,177,178,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,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[174,222,233,239,240],[174,222,239,240,241,265],[174,222,230,233,239,240,242,254],[174,222,239,240,243],[174,222,239,240,244],[174,221,222,239,240,245],[174,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,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271],[174,222,239,240,247],[174,222,239,240,248],[174,222,233,239,240,249,250],[174,222,239,240,249,251,266,268],[174,222,234,239,240],[174,222,233,239,240,254,255,257],[174,222,239,240,256,257],[174,222,239,240,254,255],[174,222,239,240,257],[174,222,239,240,258],[174,219,222,239,240,254,259],[174,222,233,239,240,260,261],[174,222,239,240,260,261],[174,222,227,239,240,242,254,262],[174,222,239,240,263],[174,222,239,240,242,264],[174,222,236,239,240,248,265],[174,222,227,239,240,266],[174,222,239,240,254,267],[174,222,239,240,241,268],[174,222,239,240,269],[174,215,222,239,240],[174,215,222,233,235,239,240,245,254,257,265,267,268,270],[174,222,239,240,254,271],[174,187,191,222,239,240,265],[174,187,222,239,240,254,265],[174,182,222,239,240],[174,184,187,222,239,240,262,265],[174,222,239,240,242,262],[174,222,239,240,272],[174,182,222,239,240,272],[174,184,187,222,239,240,242,265],[174,179,180,183,186,222,233,239,240,254,265],[174,187,194,222,239,240],[174,179,185,222,239,240],[174,187,208,209,222,239,240],[174,183,187,222,239,240,257,265,272],[174,208,222,239,240,272],[174,181,182,222,239,240,272],[174,187,222,239,240],[174,181,182,183,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,209,210,211,212,213,214,222,239,240],[174,187,202,222,239,240],[174,187,194,195,222,239,240],[174,185,187,195,196,222,239,240],[174,186,222,239,240],[174,179,182,187,222,239,240],[174,187,191,195,196,222,239,240],[174,191,222,239,240],[174,185,187,190,222,239,240,265],[174,179,184,187,194,222,239,240],[174,222,239,240,254],[174,182,187,208,222,239,240,270,272],[128,136,157,174,222,239,240],[128,129,174,222,239,240],[129,130,131,132,133,134,135,136,137,138,139,140,174,222,239,240],[128,134,157,174,222,239,240],[128,130,157,174,222,239,240],[128,135,157,174,222,239,240],[128,131,157,174,222,239,240],[128,174,222,239,240],[128,138,157,174,222,239,240],[128,133,134,135,136,137,139,140,157,174,222,239,240],[128,132,157,174,222,239,240],[128,137,157,174,222,239,240],[128,129,133,134,135,136,174,222,239,240],[128,140,157,174,222,239,240],[128,133,157,174,222,239,240]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"47210182da8ad977773f5533ab5fd87b836f6edf5f31fabfd2794aac5e708df8","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"47e36c37ed14f1cacc41d970137cfe2bf5cc7b9bc9fe3f2a5a621d960d2aa773","impliedFormat":99},{"version":"b333fa3ccdd4df1687b38fa6b5a2430ca722e9fbf452eedb701ef9b58b15e7ef","impliedFormat":99},{"version":"5382a91735d16463fbb83324108c082a31b4e2499a47482a3cddfeb16fd5c3de","impliedFormat":99},{"version":"c79073e5142075fd937d4b8e0fd20ce2423898b99f16975ffdda1023c4c594f4","impliedFormat":99},{"version":"2852adff4529cad13f4597b1aa61d0ba46565878911b448217659cee534bd631","impliedFormat":99},{"version":"b16726b5731ece2e20ea694aeebab8c2fea4b305d16515b44f471b2a34fad34c","impliedFormat":99},{"version":"032fdfa10c9c5e5901d9817ab6338fabc1cd9a9a7d57f175d848286ac47618be","impliedFormat":99},{"version":"407554562796edc6c559081fb57977bffb4786dcf507a1f440729b478a44297a","impliedFormat":99},{"version":"a2c743c1da725252c01e76d5f6254e882a259bfa02ebd337bfb8f0d50949d290","impliedFormat":99},{"version":"7c85c07f65589d6e3780ba29dc6933f6a98f561b296f74098c690c451b3fb367","impliedFormat":99},{"version":"d403ae1927b0fbd41c0d17f2ce98a225211f1e65160d1ccd48c053a3724825bb","impliedFormat":99},{"version":"7a078f6383d0740e836449f13e8ef086bf127525d1c2bc42349daad1a94d3a7e","impliedFormat":99},{"version":"3378f2e798825c3edbdaa649be53726db2f4324fe51cea033795325737a48517","impliedFormat":99},{"version":"9ac8e3a2de1c84bd65af6f353f6331bf91f7199abe05744a3139cb7d38c32397","impliedFormat":99},{"version":"2b63e8d7323e5f52ef1817760b1a9786abb2344caa956d1e3e718b0346ce80df","impliedFormat":99},{"version":"431637dff7df8e796e270649175b806b71bf260aab77fbba4418771f7e62b20f","impliedFormat":99},{"version":"f6b0a14adf6712c62c7444520da24c64dfc024817ec2fd21d454fdb29739ef08","impliedFormat":99},{"version":"a7c6eeaa05bf9b93c15f63c3456490b0f8320330cc685f2c7cd9978beef111a0","impliedFormat":99},{"version":"66081025ebe2d7fa39706f08c16235984f3a102cad20995953cb518baf190a45","impliedFormat":99},{"version":"e372ed137f636aca0e6007f9ae2b211bc0603ca9d4df9ae6e42a3ea949360601","impliedFormat":99},{"version":"78d6aab776c61097d3cb653891415efd7908cd5f945c4bafe3655a74d4f3c92d","impliedFormat":99},{"version":"0bf05a5a28d2e256d9efdd4929d4d5d84c02dd18d2c617f15ecca24c0ccf1daa","impliedFormat":99},{"version":"8393864c3d8b2b420af956e1cbd792869bbd4f2941a6fad8050d7525d105aa08","impliedFormat":99},{"version":"db667ebb38c791f2f4f5478c2cf30437134981a0061ae8c04ca1d0752411ee56","impliedFormat":99},{"version":"676a93513b4683861b840ad22cb8ec142e0660c4e05b20e294f16f433b67006a","impliedFormat":99},{"version":"a5e18027f76f88c48ac1fc563774769675ac3dd98583ec53b88d0e460d26312e","impliedFormat":99},{"version":"bf54c728756b0eeea6a5961922cbe4fc952b9087c18e4b8a6d3d6c3e146ceec6","impliedFormat":99},{"version":"a3ae550d2b186a33d19024fa3fed5cab5a78c8b975ba1ed4d8e2009d30a1b4c5","impliedFormat":99},{"version":"5288f4c3d6f1b409e21e57540b61c44f5900551ccb41e7ca9defcdd439a6ac03","impliedFormat":99},{"version":"e922e37e66655a44bf1fdb190bd829c31a26a6eb6d8ad955ace9030d761e49d4","impliedFormat":99},{"version":"cb7ae8e3ee690db79ad443ede893ad451a50c537cccf65239ea6dbeb4af07cac","impliedFormat":99},{"version":"3d7c5f1434c6fd2a4a8761ae5d225e607c85a4a9ed97e2728003d224a5e9d301","impliedFormat":99},{"version":"5b346bec8fae055eb7fdfa8a2013206ea35333f2e9570907bdd55e3845b79680","impliedFormat":99},{"version":"b792edfd5c125f702e972eff909f60a8260f47472506559b9433fafb0fdeca30","impliedFormat":99},{"version":"210aa7218f99d395dac5ad11ecd5896920faed6a147087bad5fe1f91ad408b6a","impliedFormat":99},{"version":"3e4ab3ef7ea914018c11c886e210e5a30daed59e198e35b124c76c588b49dff6","impliedFormat":99},{"version":"5d54ac09b477260b05f5b7eefd8a4ed3a68bf83c065932d64d96f6f4c27f005d","impliedFormat":99},{"version":"d903e1ec3dadd08248504987461a920aba6f05d8f91a9b2a38c088c2b25cd0a2","impliedFormat":99},{"version":"da44eb09eb50cea297690c8e2415ea9f12d2286b11d3e0021b4f64fd382c7155","impliedFormat":99},{"version":"fb3ea6a81f268fc9c8e3f815cb042a72a9e852ed8f2da92f292a58713349c9ce","impliedFormat":99},{"version":"252345f561bb24ce7f79cbbd7e40685ebcb4689cfd95973d2244c9b6bb2ace36","impliedFormat":99},{"version":"b12376d613a4c40d90b80c8f90652daf12c2db98f4432eed64ab9278cecd423a","impliedFormat":99},{"version":"e17f13fde24b78e2bfeca0290168db554f4b20244bfbaf16cd8e005bfb44fd45","impliedFormat":99},{"version":"c5753f9ed33fa7c0585bf3cdc60d7ec921fd9f4604e5b9df0c9e2cfc832884c7","impliedFormat":99},{"version":"8abc854935ec7099027ca34f22c06da84b503935095d1491bd7213a0ad13848b","impliedFormat":99},{"version":"bac5cadcfda77492e3a14181f472503521b5a5f5c6d188fd7757bd2d699b286d","impliedFormat":99},{"version":"a91ff031a2e3a708750fc1959d73bfc68dbf35d0c4048f5a2098a0cc98bc23b9","impliedFormat":99},{"version":"aea25c1674cf96c1ee23b5e7ce2476d3997b9d78cd76053f6df00e86e0dc45d6","signature":"04627232eaf090d961b55e03c1f879e3826cf7d82f4234981f14cbb005e0ed1e","impliedFormat":99},{"version":"1ba751c27d5264a9f4e0704ea732c7a84e90a08366e7a574b1c67408416e336c","signature":"d59f01034c121ad0f417c61aa75d6e821d252863c1b6744d0f62c8187c453fb6","impliedFormat":99},{"version":"aab7b474647c95d23ad4c740a4584969ea7803e6b22501d501cbc50aa576a320","signature":"effde4cd7261baa3d170d0c1622e38a18edd64a798739d87fa03daf7bfaf7fe4","impliedFormat":99},{"version":"8d7dc5c27daf3168547cbb1340b1de8b90223ea724747610d60141000203725f","signature":"cfcb6c8bca982ce13d003fadead54f4226527d23e2eadb8b6be902d4c7161d71","impliedFormat":99},{"version":"bfef7ec675c140a2624f4e879824289be1e1f9a70b78f34f854024f07458664e","signature":"ae9c3f340a841d5877ca2d51b225cca50b406c069cab657726e6ef24e5168d49","impliedFormat":99},{"version":"244f8bbfc011a9ab3e89f7dbe8f22bfd793bfd796497c259b3173684614ae63e","signature":"e1c2074e796ea48683a299b9b9ac37e55aac9e879cd161ce536f011337ff507c","impliedFormat":99},{"version":"a13313c924d7316fffc6b4a5fd84bcd6c9413891213544c23914a684cda1de31","signature":"ccca8bcd5f048948444e29a85f49787312c2efffab857836593f2e16edf66e1d","impliedFormat":99},{"version":"619f14043bb121f0d3b398fa11d548de45c8738a9c7ed5408283fd888219d687","signature":"ab927312ed83aeba17849cceeb05ae3049109f32e564a3d6948400823965c414","impliedFormat":99},{"version":"c36b7e790f49f919bbed711b577d36c52f45067857bdae686aaedf795f0b66ce","signature":"b81db6950155b59516b9e9fec91abb25db88dc0777a9763a85430a0dae57f3c7","impliedFormat":99},{"version":"91b6bf29cd86fe644ee2b276071ae1fc71f90cfb2bfcfa3220c5017d9ba145ba","signature":"1caae3f824b3b7c23eae72db13142f1336185b620fe36a2802efd73430853a78","impliedFormat":99},{"version":"aa3b8d65f7043fedd7673e599059441f64b331dca9725cefe93f8d414340f37d","signature":"67297039683fc1ce74aa4af5cc1a4754f629a1c1e35a890dfcd1e9493e041e92","impliedFormat":99},{"version":"06119f5e544d6e2f89529718eead7c1a027a72ae30d67466b148fa8fe2313861","signature":"001e505923c26c4950341e4a480fa5418a628830f7197ca229996d6447bbb6be","impliedFormat":99},{"version":"bb52464922037a5b37011daa05765f3f66c0f373244b480d6c391713de9020a1","signature":"d8d58a44909516b50eb7b5c516c31d5995f7442b1f555ca8f59a04d93728b8e7","impliedFormat":99},{"version":"9e7673f24c0189975a8cbd5bdc4ffb1508e24946ed6a7147926d0f4918291779","impliedFormat":99},{"version":"44ffc62ff2b7f0a4503a492b61156b92aa710a1b9cb17644d7406ab5e3f79188","impliedFormat":99},{"version":"3c3934b6e883a63aa7f0157e565b4f07a4fe64ba81fc5464a685fef28873447d","impliedFormat":99},{"version":"7792f3bbf535eb436836c886e6e55f4404ca2a4ec29ed6fd12f373c6617bec87","impliedFormat":99},{"version":"277a7ed5f08fb20ae8713ec7b961169d315b32e9db904f0801eba2717e5ff7b4","impliedFormat":99},{"version":"d652b253c65cf86950970c05420f6beb4fba89af91f598a0adf558b8bd74a84c","impliedFormat":99},{"version":"0e7692e960c03225263e91fd46775345be78986dd10ae1a3627a7c9cd82b8a39","impliedFormat":99},{"version":"18bc0ef68e1c63aefc62485fd05135b344da06e84bfc8a89bce70d05621a11ba","impliedFormat":99},{"version":"a532f0bf95b3606b79984e7cd7f213d721af3fab1b0d1d48d4ad5b48777c1767","impliedFormat":99},{"version":"4763b8bd522c618f9d77957a18204b054140fb787bc8fb3f5856a1dbd990f7ff","impliedFormat":99},{"version":"3e79f39b42298bc81959dc988b5f784aa4432c528bac62438327d4da1d80ec1e","impliedFormat":99},{"version":"81c04199236b236ea5224332a8d0513754e2bda377b05d375877622c45810833","impliedFormat":99},{"version":"244768e5dfb4016a59b37f4b247e47705f3924dfe16c4a06a38baa3692f53e2b","impliedFormat":99},{"version":"7c97b262c8bb04ec02a99f0cd1ecba1d6d6e99751e9a1f1b27b9c93625c2b7a0","impliedFormat":99},{"version":"6f2c57a319445c5cb73443b2b954467c0d250193bce4c3309f0a1d47961af4da","impliedFormat":99},{"version":"2f86105c38961f98ac1a431d2985f30321de2aabd1d5de7630d0f5542081c347","impliedFormat":99},{"version":"3abe6f70c4f45539b22db4cb94e37364fdf2ab2f4b9457081916233583cc9189","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"8e4059129432e85607d5466b3a16cc3471bd0edeb7defa58fd0f5866c7f4d703","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"add4827537b94e4d5db319628f2860beb13cc06ba4cefa15dffe6d5d96dc9d4e","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"08a3d14ce96f3c79ab9a54cc233ba03b5bd6af3482a1886027139b2f1cdceaa4","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"eab9ea4ec5971afef08bcc0248f92fa26a752cfb35c62eb3c793820d69076aec","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"a067f42f774d664b136f18c478f1ce70736c7a115e66094f456cb14a999961a6","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"27a1fca81b7a2a10403ac14c551f2088019a7279576da40a84df60b496d7560f","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"8ea7977f835ac6efbb7e0f95958e87b88dc3b27e08364e52e87e3a9af40dde75","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"225e0a580deb3b34b6c58c6a1c5e5c053b424482107d717a1d17ad277084e86e","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"ac3ad6dd6b3bd2bb6f948ce04b6aca3c01fc32902244a2926b3569b4fe40778d","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"ecf1c26b047aaa4948dc56dfd2f54c4d90135e252f075d331c0c1304a2430a50","signature":"a5190a3be8583730e6cbbdf24e485d9aee6cb9d0e503f30fca65fc66d2c385b0","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[81,[129,141],[158,168]],"options":{"declaration":true,"declarationMap":true,"exactOptionalPropertyTypes":true,"jsx":4,"module":199,"noErrorTruncation":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[150,1],[153,1],[155,1],[151,1],[157,2],[152,1],[156,1],[149,1],[154,1],[95,3],[103,4],[142,5],[92,6],[102,7],[96,8],[83,9],[86,9],[85,9],[84,9],[147,10],[146,10],[145,10],[144,11],[127,7],[114,12],[126,13],[112,14],[116,15],[111,16],[117,17],[106,18],[119,19],[109,20],[118,21],[107,22],[115,15],[125,23],[108,24],[104,25],[105,25],[122,26],[123,26],[110,27],[113,28],[120,29],[124,30],[121,31],[143,7],[128,32],[148,33],[93,34],[82,9],[94,35],[91,36],[100,7],[97,37],[90,9],[99,7],[89,7],[101,38],[98,7],[88,11],[87,39],[219,40],[220,40],[221,41],[174,42],[222,43],[223,44],[224,45],[169,9],[172,46],[170,9],[171,9],[225,47],[226,48],[227,49],[228,50],[229,51],[230,52],[231,52],[232,53],[233,54],[234,55],[235,56],[175,9],[173,9],[236,57],[237,58],[238,59],[272,60],[239,61],[240,9],[241,62],[242,63],[243,64],[244,65],[245,66],[246,67],[247,68],[248,69],[249,70],[250,70],[251,71],[252,9],[253,72],[254,73],[256,74],[255,75],[257,76],[258,77],[259,78],[260,79],[261,80],[262,81],[263,82],[264,83],[265,84],[266,85],[267,86],[268,87],[269,88],[176,9],[177,9],[178,9],[216,89],[217,9],[218,9],[270,90],[271,91],[79,9],[80,9],[14,9],[13,9],[2,9],[15,9],[16,9],[17,9],[18,9],[19,9],[20,9],[21,9],[22,9],[3,9],[23,9],[24,9],[4,9],[25,9],[29,9],[26,9],[27,9],[28,9],[30,9],[31,9],[32,9],[5,9],[33,9],[34,9],[35,9],[36,9],[6,9],[40,9],[37,9],[38,9],[39,9],[41,9],[7,9],[42,9],[47,9],[48,9],[43,9],[44,9],[45,9],[46,9],[8,9],[52,9],[49,9],[50,9],[51,9],[53,9],[9,9],[54,9],[55,9],[56,9],[58,9],[57,9],[59,9],[60,9],[10,9],[61,9],[62,9],[63,9],[11,9],[64,9],[65,9],[66,9],[67,9],[68,9],[1,9],[69,9],[70,9],[12,9],[74,9],[72,9],[77,9],[76,9],[71,9],[75,9],[73,9],[78,9],[194,92],[204,93],[193,92],[214,94],[185,95],[184,96],[213,97],[207,98],[212,99],[187,100],[201,101],[186,102],[210,103],[182,104],[181,97],[211,105],[183,106],[188,107],[189,9],[192,107],[179,9],[215,108],[205,109],[196,110],[197,111],[199,112],[195,113],[198,114],[208,97],[190,115],[191,116],[200,117],[180,118],[203,109],[202,107],[206,9],[209,119],[158,120],[136,121],[81,9],[141,122],[159,123],[134,121],[160,124],[130,121],[161,125],[135,121],[162,126],[131,127],[163,128],[138,121],[164,129],[139,121],[165,130],[132,127],[166,131],[137,132],[167,133],[140,121],[129,127],[168,134],[133,121]],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elaraai/east-py-datascience",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.21",
|
|
4
4
|
"description": "East Data Science - ML/optimization platform functions for East (TypeScript definitions)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"typescript": "~5.9.2"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
|
-
"@elaraai/east": "^0.0.1-beta.
|
|
80
|
-
"@elaraai/east-node-std": "^0.0.1-beta.
|
|
79
|
+
"@elaraai/east": "^0.0.1-beta.25",
|
|
80
|
+
"@elaraai/east-node-std": "^0.0.1-beta.15"
|
|
81
81
|
}
|
|
82
82
|
}
|