math-exercises 3.0.192 → 3.0.193
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/lib/exercises/math/dataRepresentations/dataToGraphGraphToData.d.ts.map +1 -1
- package/lib/exercises/math/dataRepresentations/dataToGraphGraphToData.js +1 -1
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionInSituation.d.ts +10 -0
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionInSituation.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionInSituation.js +96 -0
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionWithUnitChange.d.ts +11 -0
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionWithUnitChange.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponentials/computeImageByExponentialFunctionWithUnitChange.js +116 -0
- package/lib/exercises/math/functions/exponentials/index.d.ts +3 -0
- package/lib/exercises/math/functions/exponentials/index.d.ts.map +1 -1
- package/lib/exercises/math/functions/exponentials/index.js +3 -0
- package/lib/exercises/math/functions/exponentials/modelizeSituationByExponentialFunction.d.ts +9 -0
- package/lib/exercises/math/functions/exponentials/modelizeSituationByExponentialFunction.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponentials/modelizeSituationByExponentialFunction.js +105 -0
- package/lib/exercises/math/functions/exponentials/plausibleExponentialFunctionExpressionFromGraph.js +2 -2
- package/lib/exercises/math/probaStat/stats2var/buildDataTableFromScatterplot.d.ts +8 -0
- package/lib/exercises/math/probaStat/stats2var/buildDataTableFromScatterplot.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/stats2var/buildDataTableFromScatterplot.js +114 -0
- package/lib/exercises/math/probaStat/stats2var/buildScatterPlotFromDataTable.d.ts +8 -0
- package/lib/exercises/math/probaStat/stats2var/buildScatterPlotFromDataTable.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/stats2var/buildScatterPlotFromDataTable.js +110 -0
- package/lib/exercises/math/probaStat/stats2var/index.d.ts +2 -0
- package/lib/exercises/math/probaStat/stats2var/index.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/stats2var/index.js +2 -0
- package/lib/exercises/math/sequences/geometric/graph/compareGeometricReasonWithOneFromGraph.d.ts +8 -0
- package/lib/exercises/math/sequences/geometric/graph/compareGeometricReasonWithOneFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/sequences/geometric/graph/compareGeometricReasonWithOneFromGraph.js +87 -0
- package/lib/exercises/math/sequences/geometric/graph/index.d.ts +4 -1
- package/lib/exercises/math/sequences/geometric/graph/index.d.ts.map +1 -1
- package/lib/exercises/math/sequences/geometric/graph/index.js +4 -1
- package/lib/exercises/math/sequences/geometric/graph/plausibleGeometricSequenceExpressionFromGraph.d.ts +12 -0
- package/lib/exercises/math/sequences/geometric/graph/plausibleGeometricSequenceExpressionFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/sequences/geometric/graph/plausibleGeometricSequenceExpressionFromGraph.js +133 -0
- package/lib/exercises/math/sequences/geometric/graph/readGeometricExpressionFromGraph.d.ts +8 -0
- package/lib/exercises/math/sequences/geometric/graph/readGeometricExpressionFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/sequences/geometric/graph/readGeometricExpressionFromGraph.js +132 -0
- package/lib/exercises/math/sequences/geometric/graph/recognizeGeometricFromGraph.d.ts +11 -0
- package/lib/exercises/math/sequences/geometric/graph/recognizeGeometricFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/sequences/geometric/graph/recognizeGeometricFromGraph.js +137 -0
- package/lib/exercises/math/sequences/geometric/index.d.ts +1 -0
- package/lib/exercises/math/sequences/geometric/index.d.ts.map +1 -1
- package/lib/exercises/math/sequences/geometric/index.js +1 -0
- package/lib/index.d.ts +39 -0
- package/lib/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { GeneratorOptionTarget, GeneratorOptionType, addValidProp, shuffleProps, tryToAddWrongProp, } from "../../../../../exercises/exercise.js";
|
|
2
|
+
import { getDistinctQuestions } from "../../../../../exercises/utils/getDistinctQuestions.js";
|
|
3
|
+
import { GeogebraConstructor } from "../../../../../geogebra/geogebraConstructor.js";
|
|
4
|
+
import { Point } from "../../../../../math/geometry/point.js";
|
|
5
|
+
import { randint } from "../../../../../math/utils/random/randint.js";
|
|
6
|
+
import { round } from "../../../../../math/utils/round.js";
|
|
7
|
+
import { coinFlip } from "../../../../../utils/alea/coinFlip.js";
|
|
8
|
+
import { random } from "../../../../../utils/alea/random.js";
|
|
9
|
+
const getInstruction = () => {
|
|
10
|
+
return `La suite $u$ représentée ci-dessous semble-t-elle géométrique ?`;
|
|
11
|
+
};
|
|
12
|
+
const getAnswer = (identifiers) => {
|
|
13
|
+
const { isGeo } = identifiers;
|
|
14
|
+
return isGeo ? "Oui" : "Non";
|
|
15
|
+
};
|
|
16
|
+
const getGGBOptions = (identifiers, opts) => {
|
|
17
|
+
const { sequence } = identifiers;
|
|
18
|
+
const rankOne = opts?.firstTermRankOne ? 1 : 0;
|
|
19
|
+
const commands = sequence.flatMap((nb, index) => new Point(`A_{${index + rankOne}}`, (index + rankOne).toTree(), nb.toTree()).toGGBCommand({
|
|
20
|
+
showLabel: false,
|
|
21
|
+
}));
|
|
22
|
+
const ggb = new GeogebraConstructor({
|
|
23
|
+
commands,
|
|
24
|
+
lockedAxesRatio: false,
|
|
25
|
+
xAxis: { natural: true },
|
|
26
|
+
});
|
|
27
|
+
const yMin = Math.min(...sequence.slice(0, 5));
|
|
28
|
+
const yMax = Math.max(...sequence.slice(0, 5));
|
|
29
|
+
return ggb.getOptions({
|
|
30
|
+
coords: [-1, 7, Math.min(-1, yMin - 2), Math.max(1, yMax + 2)],
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
const getHint = () => {
|
|
34
|
+
return `Une suite est géométrique si, pour passer d'un terme au suivant, on multiplie toujours par le même nombre (appelé la raison de la suite).
|
|
35
|
+
|
|
36
|
+
Sur le graphique, retrouve-t-on ce comportement ?`;
|
|
37
|
+
};
|
|
38
|
+
const getCorrection = (identifiers, opts) => {
|
|
39
|
+
const rankOne = opts?.firstTermRankOne ? 1 : 0;
|
|
40
|
+
const { isGeo, sequence } = identifiers;
|
|
41
|
+
const reason = round(sequence[1] / sequence[0], 2);
|
|
42
|
+
return `On peut lire graphiquement les premiers termes de la suite :
|
|
43
|
+
|
|
44
|
+
${sequence
|
|
45
|
+
.slice(0, 5)
|
|
46
|
+
.map((e, i) => `$$
|
|
47
|
+
u_{${i + rankOne}} = ${e.frenchify()}
|
|
48
|
+
$$`)
|
|
49
|
+
.join("\n \n")}
|
|
50
|
+
|
|
51
|
+
${isGeo
|
|
52
|
+
? `Sur ces premiers termes, on multiple donc par $${reason.frenchify()}$ pour passer d'un terme à l'autre. La suite semble donc bien géométrique.`
|
|
53
|
+
: "Puisqu'on ne multiplie pas toujours par le même nombre pour passer d'un terme à l'autre, la suite n'est donc pas géométrique."}`;
|
|
54
|
+
};
|
|
55
|
+
const getQuestionFromIdentifiers = (identifiers, opts) => {
|
|
56
|
+
return {
|
|
57
|
+
answer: getAnswer(identifiers),
|
|
58
|
+
instruction: getInstruction(identifiers),
|
|
59
|
+
keys: [],
|
|
60
|
+
ggbOptions: getGGBOptions(identifiers, opts),
|
|
61
|
+
answerFormat: "raw",
|
|
62
|
+
identifiers,
|
|
63
|
+
hint: getHint(identifiers),
|
|
64
|
+
correction: getCorrection(identifiers, opts),
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
const getRandomFirstNonGeoTerms = () => {
|
|
68
|
+
const type = randint(0, 3);
|
|
69
|
+
switch (type) {
|
|
70
|
+
case 0: {
|
|
71
|
+
const firstAriTerm = randint(-5, 10);
|
|
72
|
+
const ariReason = randint(-4, 6, [0]);
|
|
73
|
+
return new Array(10)
|
|
74
|
+
.fill(0)
|
|
75
|
+
.map((_el, index) => firstAriTerm + ariReason * index);
|
|
76
|
+
}
|
|
77
|
+
case 1: {
|
|
78
|
+
const firstBernoulliTerm = randint(1, 10);
|
|
79
|
+
const secondBernoulliTerm = randint(1, 10, [firstBernoulliTerm]);
|
|
80
|
+
return new Array(10)
|
|
81
|
+
.fill(0)
|
|
82
|
+
.map((_el, index) => index % 2 ? firstBernoulliTerm : secondBernoulliTerm);
|
|
83
|
+
}
|
|
84
|
+
case 2:
|
|
85
|
+
default: {
|
|
86
|
+
const firstFakeAriTerm = randint(1, 20);
|
|
87
|
+
const res = new Array(10)
|
|
88
|
+
.fill(0)
|
|
89
|
+
.map(() => firstFakeAriTerm + randint(1, 4));
|
|
90
|
+
const disruptionIndex = randint(0, 5);
|
|
91
|
+
res[disruptionIndex] = res[disruptionIndex] + random([-1, 1]);
|
|
92
|
+
return res;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
const getRecognizeArithmeticFromGraphQuestion = (opts) => {
|
|
97
|
+
const isGeo = coinFlip();
|
|
98
|
+
const firstGeoTerm = randint(1, 4);
|
|
99
|
+
const geoReason = random([0.5, 2, 3]);
|
|
100
|
+
const sequence = isGeo
|
|
101
|
+
? new Array(10)
|
|
102
|
+
.fill(0)
|
|
103
|
+
.map((_el, index) => firstGeoTerm * geoReason ** index)
|
|
104
|
+
: getRandomFirstNonGeoTerms();
|
|
105
|
+
const identifiers = { sequence, isGeo };
|
|
106
|
+
return getQuestionFromIdentifiers(identifiers, opts);
|
|
107
|
+
};
|
|
108
|
+
const getPropositions = (n, { answer }) => {
|
|
109
|
+
const propositions = [];
|
|
110
|
+
addValidProp(propositions, answer, "raw");
|
|
111
|
+
tryToAddWrongProp(propositions, "Oui", "raw");
|
|
112
|
+
tryToAddWrongProp(propositions, "Non", "raw");
|
|
113
|
+
return shuffleProps(propositions, n);
|
|
114
|
+
};
|
|
115
|
+
const options = [
|
|
116
|
+
{
|
|
117
|
+
id: "firstTermRankOne",
|
|
118
|
+
label: "Utiliser $u_1$ comme premier terme",
|
|
119
|
+
target: GeneratorOptionTarget.generation,
|
|
120
|
+
type: GeneratorOptionType.checkbox,
|
|
121
|
+
},
|
|
122
|
+
];
|
|
123
|
+
export const recognizeGeometricFromGraph = {
|
|
124
|
+
id: "recognizeGeometricFromGraph",
|
|
125
|
+
label: "Reconnaître graphiquement si une suite est géométrique",
|
|
126
|
+
isSingleStep: true,
|
|
127
|
+
generator: (nb, opts) => getDistinctQuestions(() => getRecognizeArithmeticFromGraphQuestion(opts), nb),
|
|
128
|
+
qcmTimer: 60,
|
|
129
|
+
freeTimer: 60,
|
|
130
|
+
getPropositions,
|
|
131
|
+
answerType: "QCU",
|
|
132
|
+
hasGeogebra: true,
|
|
133
|
+
subject: "Mathématiques",
|
|
134
|
+
getQuestionFromIdentifiers,
|
|
135
|
+
hasHintAndCorrection: true,
|
|
136
|
+
options,
|
|
137
|
+
};
|
|
@@ -15,4 +15,5 @@ export * from "./situations/index.js";
|
|
|
15
15
|
export * from "./geometricFindExplicitFormulaFromTwoTerms.js";
|
|
16
16
|
export * from "./geometricFindExplicitFormulaFromTwoConsecutiveTerms.js";
|
|
17
17
|
export * from "./geometricFindRandomTermFromTwoConsecutiveTerms.js";
|
|
18
|
+
export * from "./graph/index.js";
|
|
18
19
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/exercises/math/sequences/geometric/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+CAA+C,CAAC;AAE9D,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AAEnD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,0BAA0B,CAAC;AAEzC,cAAc,0CAA0C,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAE/B,cAAc,uBAAuB,CAAC;AAEtC,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0DAA0D,CAAC;AACzE,cAAc,qDAAqD,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/exercises/math/sequences/geometric/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,mCAAmC,CAAC;AAClD,cAAc,+CAA+C,CAAC;AAE9D,cAAc,0BAA0B,CAAC;AACzC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sCAAsC,CAAC;AACrD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wBAAwB,CAAC;AACvC,cAAc,oCAAoC,CAAC;AAEnD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,0BAA0B,CAAC;AAEzC,cAAc,0CAA0C,CAAC;AAEzD,cAAc,gBAAgB,CAAC;AAE/B,cAAc,uBAAuB,CAAC;AAEtC,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0DAA0D,CAAC;AACzE,cAAc,qDAAqD,CAAC;AACpE,cAAc,kBAAkB,CAAC"}
|
|
@@ -15,3 +15,4 @@ export * from "./situations/index.js";
|
|
|
15
15
|
export * from "./geometricFindExplicitFormulaFromTwoTerms.js";
|
|
16
16
|
export * from "./geometricFindExplicitFormulaFromTwoConsecutiveTerms.js";
|
|
17
17
|
export * from "./geometricFindRandomTermFromTwoConsecutiveTerms.js";
|
|
18
|
+
export * from "./graph/index.js";
|
package/lib/index.d.ts
CHANGED
|
@@ -1971,6 +1971,21 @@ declare const mathExercises: (Exercise<{
|
|
|
1971
1971
|
yIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
|
|
1972
1972
|
zIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
|
|
1973
1973
|
tIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
|
|
1974
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
1975
|
+
situation: number;
|
|
1976
|
+
start: number;
|
|
1977
|
+
reason: number;
|
|
1978
|
+
x: number;
|
|
1979
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
1980
|
+
situation: number;
|
|
1981
|
+
start: number;
|
|
1982
|
+
rate: number;
|
|
1983
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
1984
|
+
situation: number;
|
|
1985
|
+
start: number;
|
|
1986
|
+
rate: number;
|
|
1987
|
+
x: number;
|
|
1988
|
+
displayedX: string;
|
|
1974
1989
|
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
1975
1990
|
affine1Ids: import("./math/polynomials/generalAffine.js").GeneralAffineIdentifiers;
|
|
1976
1991
|
affine2Ids: import("./math/polynomials/generalAffine.js").GeneralAffineIdentifiers;
|
|
@@ -3231,6 +3246,12 @@ declare const mathExercises: (Exercise<{
|
|
|
3231
3246
|
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3232
3247
|
isJustified: boolean;
|
|
3233
3248
|
cloudPointsIdentifiers: import("./math/geometry/CloudPoints.js").CloudPointsIdentifiers;
|
|
3249
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3250
|
+
xs: number[];
|
|
3251
|
+
ys: number[];
|
|
3252
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3253
|
+
xs: number[];
|
|
3254
|
+
ys: number[];
|
|
3234
3255
|
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3235
3256
|
pA: number;
|
|
3236
3257
|
pB: number;
|
|
@@ -3772,6 +3793,24 @@ declare const mathExercises: (Exercise<{
|
|
|
3772
3793
|
precisionReason: number;
|
|
3773
3794
|
rankAsked: number;
|
|
3774
3795
|
}, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
|
|
3796
|
+
isGeo: boolean;
|
|
3797
|
+
sequence: number[];
|
|
3798
|
+
}, {
|
|
3799
|
+
firstTermRankOne?: boolean;
|
|
3800
|
+
}> | Exercise<{
|
|
3801
|
+
q: number;
|
|
3802
|
+
start: number;
|
|
3803
|
+
fakeParams: {
|
|
3804
|
+
start: number;
|
|
3805
|
+
q: number;
|
|
3806
|
+
}[];
|
|
3807
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3808
|
+
start: number;
|
|
3809
|
+
q: number;
|
|
3810
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3811
|
+
q: number;
|
|
3812
|
+
start: number;
|
|
3813
|
+
}, Record<string, string | boolean | string[]>> | Exercise<{
|
|
3775
3814
|
rank: number;
|
|
3776
3815
|
coeffs: number[];
|
|
3777
3816
|
}, {
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,KAAK,aAAa,MAAM,2BAA2B,CAAC;AAE3D,OAAO,4BAA4B,CAAC;AACpC,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,KAAK,aAAa,MAAM,2BAA2B,CAAC;AAE3D,OAAO,4BAA4B,CAAC;AACpC,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kDAA+B,CAAC;AACnD,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kDAA6B,CAAC;AAE/C,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,cAAc,EAAE,CAAC"}
|